/*
    This CSS File will display on all pages and posts
*/

/* Table of Contents
  - CSS Variables
  - Typography
  - Buttons
  - Site Header
  - Pagination
  - Form
  - 404 Page
  - Sidebar
  - Footer Widgets
  - Site Footer
  - JSMT Shortcode
  - Fadeup Effect
  - Announcement
  - Search
  - Landing Page
  - Accordions
  - Video
  - Coming Soon Page
  - Media Queries
*/

/* CSS Variables
---------------------------------------------------------------------------- */
:root {
    --boxShadow: 0rem 1rem 4rem rgb(0 0 0 / 15%);
    --headingFont: 'BuenosAiresBlack', 'Poppins', sans-serif;
    --bodyFont: 'BuenosAiresBook', 'Poppins', sans-serif;
    --iconFont: "font awesome 6 pro";
}

@font-face {
    font-family: 'BuenosAiresBlack';
    src: url('/wp-content/themes/genesis-sample/fonts/BuenosAiresWeb-Black.woff2') format('woff2');
    src: url('/wp-content/themes/genesis-sample/fonts/BuenosAiresWeb-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BuenosAiresBook';
    src: url('/wp-content/themes/genesis-sample/fonts/BuenosAiresWeb-Book.woff2') format('woff2');
    src: url('/wp-content/themes/genesis-sample/fonts/BuenosAiresWeb-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Typography
---------------------------------------------------------------------------- */
html {
    font-size: 62.5%;
}

body {
    font-family: var(--bodyFont);
    line-height: 1.5;
    font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headingFont);
}

.site-container ul li li {
    list-style: circle;
}

.site-container ul li li li {
    list-style: square;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

p {
    margin: 0 0 1.6rem 0;
}

a {
    text-decoration: none;
    outline: 0;
    color: var(--mainColor);
}

.entry-title {
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Buttons
---------------------------------------------------------------------------- */
a.button {
    border-radius: 3rem;
    text-transform: uppercase;
    padding: 1.75rem 3rem 1.5rem 3rem;
    line-height: 1;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: var(--mainColor);
    transition: .5s ease color, .5s ease background-color, .5s ease outline, .5s ease border;
    font-family: var(--headingFont);
}

a.button:hover {
    background-color: var(--secondColor);
}

a.button.secondary-button {
    background-color: transparent;
    color: var(--mainColor);
    outline: .3rem solid var(--mainColor);
    outline-offset: -.3rem;
}

a.button.secondary-button:hover {
    background-color: var(--mainColor);
    color: #fff;
}

a.button.underlined-button {
    background-color: transparent;
    color: var(--mainColor);
    padding: 0 0 .3rem 0;
    border-bottom: .3rem solid var(--mainColor);
    border-radius: 0;
}

a.button.underlined-button:hover {
    color: var(--secondColor);
    border-color: var(--secondColor);
}

/* Site Header
---------------------------------------------------------------------------- */
.js .nav-primary,
.nav-primary {
    padding: 0;
}

.nav-primary .genesis-nav-menu a {
    outline: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--mainColor);
}

.nav-primary .genesis-nav-menu a:hover {
    color: var(--secondColor);
}

.site-header {
    padding: 0;
}

.wp-custom-logo .site-header .title-area {
    padding: 1rem 0;
}

.site-header .title-area .site-title {
    font-family: var(--headingFont);
    font-size: 2.4rem;
}

.has-icon-logo .site-header .title-area {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.has-icon-logo .site-header .title-area a.custom-logo-link {
    flex: 1;
}

.has-icon-logo .site-header .title-area a.header-link {
    flex: 3;
    margin-left: 1rem;
}

.has-icon-logo .site-header .title-area a.header-link p.site-description {
    line-height: 1;
    margin: 0;
}

.site-header .header-phone {
    text-align: center;
    font-weight: 700;
    font-size: 2.6rem;
}

.admin-bar .site-header {
    top: 7.1rem;
}

.site-container .menu-toggle {
    padding: 4.4rem 1.5rem;
    position: relative;
    z-index: 1000;
    text-align: right;
    margin: 0;
    margin-right: -1.5rem;
}

.site-container .menu-toggle::before {
    font-family: var(--iconFont);
    font-weight: 900;
    content: "\f0c9";
    font-size: 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    --fa-secondary-opacity: 0.5;
    margin: 0;
}

.site-container .menu-toggle.activated::before {
    content: '\f00d';
}

.site-container .sub-menu-toggle {
    float: right;
    padding: 1.5rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    line-height: 1;
    margin-right: -1.5rem;
}

.site-container .sub-menu-toggle::before {
    content: "\2b";
    font-family: var(--iconFont);
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    font-weight: 900;
}

.site-container .sub-menu-toggle.activated::before {
    content: '\f068';
}

.site-container .menu-toggle:focus,
.site-container .menu-toggle:hover,
.site-container .menu-toggle:visited,
.site-container .sub-menu-toggle:focus,
.site-container .sub-menu-toggle:hover,
.site-container .sub-menu-toggle:visited {
    outline: 0;
}

/* Pagination
---------------------------------------------------------------------------- */
.pagination {
    flex-basis: 100%;
    max-width: 100%;
    clear: both;
    margin: 6rem 0 0 0;
    text-align: center;
}

.archive-pagination li {
    display: inline;
}

.archive-pagination li a {
    background-color: #f5f5f5;
    color: #333;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
    background-color: #333;
    color: #fff;
}

/* Form
---------------------------------------------------------------------------- */
input:focus,
select:focus,
textarea:focus {
    border: .1rem solid var(--mainColor);
}

.site-container .gform_wrapper.gravity-theme .gfield input,
.site-container .gform_wrapper.gravity-theme .gfield select,
.site-container .gform_wrapper.gravity-theme .gfield textarea {
    padding: 1.2rem;
    font-size: 1.6rem;
    margin: 0;
    line-height: 1;
    border-radius: .5rem;
}

.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: 1;
}

.site-container .gform_wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.site-container .gform_wrapper select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 2rem) calc(1em + .2rem), calc(100% - 1.5rem) calc(1em + .2rem), calc(100% - 2.5em) .5em;
    background-size: .5rem .5rem, .5rem .5rem, .1rem 1.5em;
    background-repeat: no-repeat;
}

.site-container .gform_wrapper select:focus {
    background-image: linear-gradient(45deg, var(--mainColor) 50%, transparent 50%), linear-gradient(135deg, transparent 50%, var(--mainColor) 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 1.5rem) 1em, calc(100% - 2rem) 1em, calc(100% - 2.5em) .5em;
    background-size: .5rem .5rem, .5rem .5rem, .5rem 1.5em;
    background-repeat: no-repeat;
    outline: 0;
}

.site-container .gform_wrapper.gravity-theme .gfield_label {
    font-size: 1.6rem;
    margin-bottom: .8rem;
}

.site-container .gform_wrapper.gravity-theme .gform_footer {
    padding: 0;
}

.site-container .gform_wrapper.gravity-theme .gfield_validation_message,
.site-container .gform_wrapper.gravity-theme .validation_message {
    font-size: 1.2rem;
    padding: 1rem;
    font-family: var(--bodyFont);
    line-height: 1;
    border-radius: 0.5rem;
}

.site-container .gform_wrapper.gravity-theme .gform_validation_errors {
    padding: 1rem 1rem 1rem 5rem;
}

.site-container .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 1.2rem;
}

/* 404 Page
---------------------------------------------------------------------------- */
body.error404 .site-inner .page-content {
    padding: 8rem 0;
    text-align: center;
}

body.error404 .site-inner h1.page-title {
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--bodyFont);
    margin-bottom: 10px;
}

body.error404 .site-inner .page-content h3 {
    font-size: 4rem;
}

body.error404 .site-inner .page-content p {
    font-size: 2.2rem;
}

/* Sidebar
---------------------------------------------------------------------------- */
.sidebar {
    font-size: 1.8rem;
}

.sidebar .widget {
    margin-bottom: 4rem;
    border-radius: 1rem;
    background-color: #fff;
}

.sidebar .widget-title {
    font-size: 2.4rem;
    border-left: .4rem solid var(--mainColor);
    padding: .8rem 1.5rem;
    line-height: 1;
    color: #333;
}

.sidebar .widget.blog-posts ul>li::before {
    content: "\f105";
    font-family: var(--iconFont);
    color: var(--mainColor);
    font-size: 1.5rem;
    font-weight: 700;
    transition: .5s ease all;
    margin-right: .7rem;
    display: inline-block;
    vertical-align: text-bottom;
}

.sidebar .widget ul>li {
    line-height: 1.2;
    list-style-type: none;
}

.sidebar .widget ul>li:not(:last-of-type) {
    margin-bottom: 1.5rem;
}

.sidebar .widget ul>li a {
    color: #333;
}

/* Footer Widgets
---------------------------------------------------------------------------- */
.footer-widgets {
    border-top: none;
    background-color: var(--mainColor);
    color: #fff;
    clear: both;
    padding: 4rem 0;
    font-size: 1.4rem;
}

.footer-widget-area {
    padding: 0;
}

.footer-widgets ul>li {
    list-style-type: none;
}

.footer-widgets ul.menu li {
    line-height: 2;
}

.footer-widgets a {
    color: #fff;
}

.footer-widgets a:hover {
    color: var(--secondColor);
}

.footer-widgets .widget-title {
    font-size: 2.2rem;
}

.footer-widgets span.jsmt-shortcode {
    margin-bottom: 1.5rem;
}

.footer-widgets span.jsmt-shortcode.jsmt-social {
    margin: 0;
    padding: 0;
}

.footer-widgets span.jsmt-shortcode i::before {
    font-size: 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
}

.footer-widgets span.jsmt-shortcode.jsmt-hours-shortcode li {
    font-size: inherit;
    margin-left: 0rem;
    list-style-type: none;
}

span.jsmt-shortcode a:hover {
    color: var(--secondColor);
}


.footer-widgets .widget .widget-title {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-widgets .widget .widget-title::before,
.footer-widgets .widget .widget-title::after {
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.footer-widgets .widget .widget-title::before {
    left: 0;
    transform: translateX(0);
    z-index: 4;
    width: 50%;
    height: 1px;
    bottom: 0px;
    background-color: white;
}

.footer-widgets .widget .widget-title::after {
    z-index: 5;
    left: 25%;
    transform: translateX(-50%);
    bottom: -1rem;
    font-size: 0rem;
    font-weight: 400;
    color: var(--secondColor);
    padding: 0 2rem;
    background-color: var(--mainColor);
    background-image: url(/wp-content/uploads/2025/03/SHCares_Logo_transparent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 4rem;
    box-sizing: border-box;
    height: 2rem;

}

/* Site Footer
---------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--mainColor);
    color: #fff;
    padding: 2rem 0;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
}

.site-footer a {
    color: #fff;
    transition: .25s ease all;
    font-size: inherit;
}

.site-footer a:hover {
    color: var(--secondColor);
}

/* JSMT Shortcode
---------------------------------------------------------------------------- */
span.jsmt-shortcode i {
    display: inline-block;
    margin-right: 1rem;
}

span.jsmt-shortcode i::before {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    display: block;
    text-align: center;
}

span.jsmt-shortcode ul.social-links>li {
    margin: 0;
    display: inline-block;
}

span.jsmt-shortcode ul.social-links>li:not(:last-of-type) {
    margin: 0;
}

span.jsmt-shortcode .social-links a:hover i {
    background-color: var(--secondColor);
    color: white;
}

span.jsmt-shortcode ul.social-links>li i {
    width: 3.2rem;
    height: 3.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    border-radius: 50%;
    transition: .35s ease all;
}

span.jsmt-shortcode ul.social-links>li i::before {
    font-size: 1.6rem;
    height: 1.6rem;
    width: 1.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

span.jsmt-shortcode {
    position: relative;
    display: block;
}

span.jsmt-shortcode.jsmt-social {
    margin: 0;
    padding: 0;
}

span.jsmt-shortcode .address {
    display: inline-block;
}

span.jsmt-shortcode.jsmt-hours-shortcode {
    padding: 0;
}

span.shortcode-label {
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

span.jsmt-shortcode.jsmt-hours-shortcode li:not(:last-of-type) {
    margin-bottom: 1rem;
}

span.jsmt-shortcode.jsmt-hours-shortcode li {
    font-size: 1.6rem;
}

.jsmt-shortcode ul.jsmt-hours {
    max-width: 40rem;
}

/* Fadeup Effect
---------------------------------------------------------------------------- */
.fadeup-effect {
    position: relative;
    bottom: -100px;
    opacity: 0;
    transition: opacity 1s ease-in-out, bottom 750ms linear;
}

.fadeup-effect.active {
    bottom: 0;
    opacity: 1;
}

/* Announcement
---------------------------------------------------------------------------- */
.announcement {
    background: var(--secondColor);
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    position: sticky;
    line-height: 1.2;
    padding: 1rem 0;
    transition: .5s ease all;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-sizing: border-box;
}

.admin-bar .announcement {
    top: 3.2rem;
}

.announcement.closed {
    height: 0;
    padding: 0;
}

.announcement .wrap {
    max-width: 128rem;
    padding: 0 5%;
    margin: 0 auto;
}

.announcement p {
    margin: 0;
    margin-bottom: -3px;
}

.announcement a {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.announcement a:hover {
    color: var(--secondColor);
    text-decoration: none;
}

.announcement div#announcement-close {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    opacity: .5;
    transition: opacity .3s ease;
}

.announcement div#announcement-close:hover {
    opacity: 1;
}

.announcement div#announcement-close span {
    font-size: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

/* Search
---------------------------------------------------------------------------- */
#search-form {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    max-width: 66rem;
    margin: 2.5rem auto 0;
    box-shadow: var(--boxShadow);
    border-radius: 3rem;
}

#search-form input {
    border-radius: 3rem 0 0 3rem;
    border-color: #fff;
    padding: 1.3rem 2.5rem;
}

#search-form [type=submit] {
    border-radius: 0 3rem 3rem 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

#fancybox-close:hover span {
    transform: none;
}

.search-results .search-results-header {
    background-color: var(--mainColor);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.search-results .search-results-header .page-title {
    font-weight: 700;
    font-size: 4rem;
}

.search-results .site-inner .flexcol {
    background-color: white;
    box-shadow: var(--boxShadow);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
}

.search-results .site-inner .flexcol .post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.search-results .site-inner .flexcol .post-type {
    background-color: var(--secondColor);
    display: inline-block;
    line-height: 1;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.search-results .site-inner .flexcol .post-name {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.4rem;
}

.search-results .site-inner .flexcol .post-excerpt {
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Landing Page
---------------------------------------------------------------------------- */
.landing-page .floating-cta,
.single-landing .floating-cta {
    position: fixed;
    bottom: 2rem;
    right: -8rem;
    opacity: 0;
    transition: 0.5s ease all;
}

.landing-page .floating-cta.appear,
.single-landing .floating-cta.appear {
    opacity: 1;
    right: 2rem;
}

/* Accordions
---------------------------------------------------------------------------- */
.accordion {
    overflow: hidden;
}

.accordion-header {
    padding: 1rem 3rem 1rem 1rem;
    cursor: pointer;
    outline: none;
    transition: 0.5s ease all;
    font-family: var(--headingFont);
    font-weight: 700;
    font-size: 1.8rem;
    list-style-type: none;
    position: relative;
    line-height: 1.2;
}

.accordion-header:hover,
.accordion[open] .accordion-header {
    background-color: #333;
    color: white;
}

.accordion-header::after {
    content: '+';
    font-weight: 700;
    font-family: var(--headingFont);
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translate(0, -50%);
    line-height: 1;
    font-size: 2.6rem;
}

.accordion[open] .accordion-header::after {
    content: '-';
}

.accordion:not(:last-of-type) {
    border-bottom: 0.1rem solid;
}

.accordion-content {
    padding: 2rem;
    background-color: #eee;
    margin-top: -10rem;
}

.accordion-content ul {
    padding-left: 3rem;
}

.accordion-content ul>li:not(:last-of-type) {
    margin-bottom: 1rem;
}

details summary {
    cursor: pointer;
    transition: margin 0.5s ease;
}

details[open] summary {
    margin-bottom: 10rem;
}

/* Video
---------------------------------------------------------------------------- */
.video-section {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.video-section .video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0 0 0 / 35%);
    color: white;
    font-size: 6rem;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.video-section .video-content:hover {
    transform: scale(1.1);
}

.video-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.video-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Coming Soon Page
---------------------------------------------------------------------------- */
.coming-soon-page .site-inner {
    padding: 0;
    max-width: none;
}

.coming-soon-page .coming-soon-section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.coming-soon-page .coming-soon-section .image-section {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

.coming-soon-page .coming-soon-section .image-section .wrap {
    padding: 0;
}

.coming-soon-page.admin-bar .coming-soon-section .image-section {
    min-height: calc(100vh - 3.2rem);
}

.coming-soon-page .coming-soon-section .content-wrap {
    text-align: center;
    padding: 2rem 5%;
    color: white;
}

.coming-soon-page .coming-soon-section .content-wrap .coming-logo {
    margin-bottom: 2rem;
}

.coming-soon-page .coming-soon-section .content-wrap .section-title {
    font-size: 4rem;
    font-weight: 700;
}

.coming-soon-page .coming-soon-section .content-wrap a.button {
    display: block;
    margin: 10px 0;
}

.coming-soon-page .coming-soon-section .content-wrap a.button.primary-button {
    background-color: white;
    color: var(--mainColor);
}

.coming-soon-page .coming-soon-section .content-wrap a.button.secondary-button {
    color: white;
    outline-color: white;
}

.coming-soon-page .coming-soon-section .content-wrap a.button.secondary-button:hover {
    background-color: white;
    color: var(--mainColor);
}

/* Core styles/functionality */
.tab {
    position: relative;
}

.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s;
}

.tab input:checked~.tab__content {
    max-height: 40rem;
}

/* Visual styles */
.accordion {
    overflow: hidden;
}

.accordion .tab:not(:last-of-type) {
    border-bottom: .1rem solid;
}

.accordion .tab label {
    padding: 1rem 3rem 1rem 1rem;
    cursor: pointer;
    outline: none;
    transition: 0.5s ease all;
    font-family: var(--headingFont);
    font-weight: 700;
    font-size: 1.8rem;
    list-style-type: none;
    position: relative;
    line-height: 1.2;
}

.accordion .tab input:checked+.tab__label,
.accordion .tab:hover label {
    background-color: var(--mainColor);
    color: white;
}

.tab__label,
.tab__close {
    display: flex;
    cursor: pointer;
}

.tab__label {
    justify-content: space-between;
    padding: 1rem;
}

.tab__label::after {
    content: '+';
    font-weight: 700;
    font-family: var(--headingFont);
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translate(0, -50%);
    line-height: 1;
    font-size: 2.6rem;
}

.tab input:checked+.tab__label::after {
    content: '-';
}

.tab__content {
    padding: 0 2rem;
}

.tab__content>*:last-child {
    padding-bottom: 2rem;
}

.tab__content>*:first-child {
    padding-top: 2rem;
}

.tab__content ul {
    padding-left: 2rem;
}

.tab__close {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* animations
---------------------------------------------------------- */
@keyframes shake {
    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-15deg);
    }

    80% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

a:hover i {
    animation: shake 0.75s;
}

.qgiv-embed-container iframe {
    max-height: 650px !important;
    overflow: auto;
}

.gform_wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}

.gform_wrapper .gform_heading {
    order: 2;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.gform_wrapper .gform_heading .gform_description {
    margin: 0;
}

.admin-bar .site-header-wrap {
    top: 3.2rem;
}

.site-header-wrap {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 999;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal div#field_2_6 {
    display: none;
}

/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 660px) {
    .footer-widgets ul.menu {
        column-count: 2;
    }
}

@media only screen and (min-width:960px) {
    .entry-title {
        font-size: 4rem;
    }

    .site-header>.wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .site-header>.wrap .nav-primary {
        flex: 1;
        text-align: right;
    }

    .site-header>.wrap .nav-primary .genesis-nav-menu .menu-item {
        text-align: left;
    }

    .flexbox {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .flexcol {
        flex: 1;
    }

    .full-width-content .content {
        width: 100%;
    }

    .genesis-nav-menu .sub-menu,
    .genesis-nav-menu .sub-menu a {
        width: 30rem;
    }

    .nav-primary .genesis-nav-menu a {
        padding: 4.7rem 1.5rem;
        font-size: 1.8rem;
        font-weight: 700;
    }

    .nav-primary .genesis-nav-menu .sub-menu a {
        padding: 1.5rem;
        font-size: 1.6rem;
        box-sizing: border-box;
    }

    .nav-primary .genesis-nav-menu .sub-menu .sub-menu a {
        min-height: 4.8rem;
        box-sizing: border-box;
    }

    .nav-primary .genesis-nav-menu .sub-menu .sub-menu {
        margin: -5rem 0 0 -30rem;
    }

    .genesis-nav-menu a.sf-with-ul::after {
        content: '\f0d7';
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        font-size: 1.6rem;
        font-weight: 900;
        font-family: var(--iconFont);
        vertical-align: baseline;
        padding-left: 1rem;
        line-height: 1;
    }

    .nav-primary .genesis-nav-menu .menu-item.nav-button a {
        padding: 1.5rem 3rem;
        background-color: var(--mainColor);
        color: white;
        border-radius: 3rem;
    }

    .nav-primary .genesis-nav-menu .menu-item.nav-button a:hover {
        background-color: var(--secondColor);
    }

    .content {
        width: calc(70% - 4rem);
    }

    .footer-widgets .wrap {
        max-width: 128rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .footer-widgets .footer-widget-area {
        flex: 1;
    }

    .footer-widgets .footer-widget-area:not(:first-of-type) {
        padding-left: 4rem;
    }

    .site-header .header-phone {
        text-align: right;
        flex: 1;
    }

    .sidebar .widget-title {
        font-size: 3.2rem;
    }

    .accordion-header {
        padding: 2rem;
        font-size: 2rem;
    }

    .accordion-header::after {
        right: 2rem;
        font-size: 3rem;
    }

    .sidebar .widget {
        box-shadow: var(--boxShadow);
        padding: 2rem;
    }

    .coming-soon-page .coming-soon-section .content-wrap {
        max-width: 96rem;
        margin: 0 auto;
        border-radius: 3rem;
        padding: 4rem;
        background-color: rgba(0, 0, 0, 0.35);
    }

    .coming-soon-page .coming-soon-section .content-wrap a.button {
        display: inline-block;
        margin: 0 1rem;
    }

    .coming-soon-page .coming-soon-section .content-wrap .section-title {
        font-size: 6rem;
        font-weight: 700;
    }

    .search-results .search-results-header {
        padding: 8rem 0;
    }

    .search-results .search-results-header .page-title {
        font-size: 5rem;
    }

    .search-results .site-inner .flexbox {
        gap: 3rem;
    }

    .search-results .site-inner .flexcol {
        flex-basis: calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }

    .accordion .tab label {
        padding: 2rem;
        font-size: 2rem;
    }
}

@media only screen and (min-width:1340px) {

    .site-inner,
    .wrap {
        max-width: 128rem;
        margin: 0 auto;
    }

    .site-inner {
        padding: 6rem 0;
    }

    .single-guides .wrap,
    .single-guides .site-inner {
        max-width: 144rem;
    }
}

@media only screen and (min-width:2000px) {
    html {
        font-size: 75%;
    }

    .footer-widgets .wrap,
    .site-inner,
    .wrap {
        max-width: 80%;
        margin: 0 auto;
    }

    .nav-primary>.wrap {
        max-width: 100%;
    }

    .site-inner {
        min-height: calc(100vh - 62.5rem);
    }
}

@media only screen and (max-width:1339px) {
    .site-inner {
        padding: 4rem 5%;
    }

    .wrap {
        padding: 0 5%;
    }

    .nav-primary>.wrap {
        padding: 0;
    }
}

@media only screen and (max-width:959px) {
    .footer-widgets {
        padding: 4rem 0;
    }

    .contact-page .site-inner .content-sidebar-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .contact-page .site-inner .content-sidebar-wrap .content {
        flex-basis: 100%;
        max-width: 100%;
        order: 2;
    }

    .contact-page .site-inner .content-sidebar-wrap .sidebar {
        flex-basis: 100%;
        max-width: 100%;
        order: 1;
    }

    .contact-page .site-inner .content-sidebar-wrap .sidebar .widget {
        box-shadow: none;
        margin: 0;
        border-bottom: .1rem solid #ccc;
    }

    .nav-primary .genesis-nav-menu .sub-menu a {
        font-size: 1.6rem;
        padding: 1.5rem;
        font-weight: 400;
    }

    .nav-primary .genesis-nav-menu {
        padding: 0 0 1.5rem 0;
    }

    .nav-primary .genesis-nav-menu a {
        padding: 1.5rem 0;
    }

    .nav-primary .genesis-nav-menu .menu-item:not(:last-of-type) a {
        border-bottom: .1rem solid #eee;
    }

    .landing-page .site-header {
        padding: 1rem 0;
    }

    .landing-page .title-area {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .search-results .site-inner .flexcol:not(:last-of-type) {
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 782px) {
    div#wpadminbar {
        height: 4.6rem;
    }

    .coming-soon-page.admin-bar .coming-soon-section .image-section {
        min-height: calc(100vh - 4.6rem);
    }
}

@media only screen and (max-width:659px) {
    body {
        font-size: 1.6rem;
    }

    .announcement div#close {
        top: 10rem;
        right: 0;
    }

    .coming-soon-page .coming-soon-section .content-wrap .coming-logo img {
        max-width: 20rem;
    }

    .single-landing .title-area,
    .single-landing .header-phone {
        display: block;
        width: 100%;
        text-align: center;
    }

    .wp-custom-logo .site-container .site-header .title-area {
        max-width: 20rem;
    }

    .site-container .site-header .menu-toggle {
        padding: 3.5rem 1.5rem;
    }

}

@media only screen and (max-width:480px) {
    html {
        font-size: 57%;
    }

    .qgiv-embed-container iframe {
        max-height: 760px !important;
        overflow: auto;
    }
}