/*
    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: "Playfair Display", serif;
    --bodyFont: "Galano Grotesque", sans-serif;
    --iconFont: "font awesome 6 pro";
}

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

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

::selection {
    background-color: var(--mainColor);
    color: white;
}

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

h3,
h4,
h5,
h6 {
    font-weight: 200;
}

.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: 600;
    margin-bottom: 2rem;
}

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

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
---------------------------------------------------------------------------- */
.site-header,
.js .nav-primary,
.nav-primary {
    padding: 0;
}

.nav-primary .genesis-nav-menu a {
    outline: 0;
    font-size: 2rem;
}

.nav-primary .genesis-nav-menu .button.menu-item {
    padding: 0;
    background-color: unset;
}

.nav-primary .genesis-nav-menu .button.menu-item a {
    color: var(--secondColor);
    background-color: white;
    border: .2rem solid var(--secondColor);
}

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

.site-header .title-area .site-title {
    font-family: var(--bodyFont);
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: #6d6f71;
}

.site-header .title-area .site-title a {
    color: #6d6f71;
}

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

.wp-custom-logo .site-container .title-area {
    padding: 1.3rem 0;
}

.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: 600;
    font-size: 2.6rem;
}

.site-header .header-phone li {
    list-style-type: none;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100vw;
    transition: .5s ease all;
    z-index: 999;
}

.site-header:not(.appear) {
    box-shadow: unset;
}

.site-container .menu-toggle {
    padding: 2.5rem 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;
    margin-bottom: -10px;
}

.site-container .gform_wrapper.gravity-theme .ginput_container {
    border-radius: 1rem;
    /*box-shadow: 0rem 1rem 1.5rem rgb(0 0 0 / 20%);*/
}

.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;
    margin-top: 1.5rem;
}

.site-container .gform_wrapper.gravity-theme .gfield_required {
    color: white;
}

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

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

body.error404 .site-inner h1.page-title {
    font-size: 10rem;
    font-weight: 600;
    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;
    padding: 2rem;
}

.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: 600;
    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;
    display: block;
}

.sidebar .widget ul>li .post-date {
    color: var(--mainColor);
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.sidebar .widget ul>li a:hover {
    color: var(--mainColor);
}

/* Footer Widgets
---------------------------------------------------------------------------- */
.footer-widgets {
    border-top: none;
    background-color: var(--secondColor);
    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 a {
    color: #fff;
    font-weight: 600;
}

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

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

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

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

.footer-widgets span.jsmt-shortcode.jsmt-hours-shortcode li {
    font-size: inherit;
    margin-left: 2.6rem;
}

.footer-widgets span.jsmt-shortcode.jsmt-social,
.footer-widgets .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label.form_sublabel_below li.gfield {
    padding: 0;
    margin: 0;
}

.footer-widgets .gform_wrapper.gravity-theme .gf_simple_horizontal {
    margin: 0;
}

.footer-widgets .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label {
    vertical-align: top;
}

.footer-widgets .gform_wrapper.gravity-theme .gform_validation_errors {
    padding-block: 10px;
    padding-inline-end: 10px;
    margin-block-start: 0px;
}

.footer-widgets .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 14px;
}

.footer-widgets .gform_wrapper.gravity-theme .gfield_validation_message,
.footer-widgets .gform_wrapper.gravity-theme .validation_message {
    padding: 10px;
    font-size: 14px;
    width: fit-content;
    border-radius: .5rem;
}

body .footer-widgets .gform_wrapper .top_label div.ginput_container {
    margin: 0;
}

.site-container .footer-widgets .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    border-radius: 30px 0 0 30px;
    border: none;
    padding: 10px 15px;
}

.site-container .footer-widgets .gform_wrapper.gravity-theme .gfield input {
    margin-bottom: 0;
}

.footer-widgets .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body {
    max-width: 65%;
    width: 100%;
}

.footer-widgets .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type=submit] {
    opacity: 1;
    border-radius: 0 30px 30px 0;
    padding: 13px 20px;
    line-height: 1;
    min-height: auto;
    width: auto;
    margin: 0;
    background-color: var(--mainColor);
    color: white;
}

.footer-widgets .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type=submit]:hover {
    background-color: var(--secondColor);
}

.footer-widgets .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield {
    padding-right: 0;
}

.site-container .footer-widgets .gform_wrapper .gform_footer {
    padding: 0;
    width: auto;
    margin: 0;
    padding: 0;
}

.footer-widgets .gform_wrapper .gform_ajax_spinner {
    margin-top: 1.2rem;
    margin-left: -15.2rem;
    position: absolute;
}

.footer-widgets .widget {
    margin-bottom: 2rem;
}

.site-container .footer-widgets .gform_wrapper.gravity-theme .ginput_container {
    box-shadow: unset;
}

.footer-widgets .widget .textwidget a[href="/contact-us"] {
    border-radius: .5rem;
    background-color: var(--mainColor);
    display: inline-block;
    border: .2rem solid var(--mainColor);
    color: white;
    padding: 10px 30px;
}

.footer-widgets .widget .textwidget a[href="/contact-us"]:hover {
    background-color: transparent;
    border-color: var(--mainColor);
}

/* Site Footer
---------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--secondColor);
    color: #999;
    padding: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: justify;
    border: none;
}

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

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

.site-footer .wrap {
    display: flex;
    flex-flow: column wrap;
}

.site-footer .wrap .nav-secondary {
    order: -1;
    text-align: left;
    margin: 0 0 1rem 0
}

.site-footer .nav-secondary a {
    font-size: 1.6rem;
    font-weight: 400;
    margin-left: 0;
    margin-right: 0;
}

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

span.jsmt-shortcode .social-links i {
    margin-right: 2rem;
}

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

span.jsmt-shortcode a.button i::before {
    height: 1.6rem;
}

span.jsmt-shortcode a.button {
    line-height: 1.3;
}

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 ul.social-links>li i {
    height: 3.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: .5s ease all;
}

span.jsmt-shortcode ul.social-links>li i:hover {
    color: var(--mainColor);
}

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;
}

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;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.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;
    z-index: 9;
}

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

/* Announcement
---------------------------------------------------------------------------- */
.announcement {
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    position: relative;
    line-height: 1.2;
    padding: 1rem 0;
    transition: .5s ease all;
    display: block;
    width: 100%;
}

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

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

.announcement p {
    margin: 0;
}

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

.announcement a:hover {
    color: var(--mainColor);
    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.5rem 2.5rem;
}

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

/* 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: 600;
    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: 600;
    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 {
    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: 600;
}

.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.secondary-button {
    color: white;
    outline-color: white;
}

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

/* 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;
}

a.read-more:hover i,
a.ui-tabs-anchor:hover i {
    animation: none;
}

/* Privacy Policy
---------------------------------------------------------------------------- */

.privacy-policy table {
    border-collapse: collapse;
    width: 100%;
}

.privacy-policy td,
.privacy-policy th {
    padding: 15px;
    border: 1px solid;
    line-height: 30px;
    vertical-align: top;
}

.privacy-policy td h3:only-child {
    margin: 0;
}

.privacy-policy .entry-content td ul:last-child,
.privacy-policy .entry-content td p:last-child {
    margin: 0;
}

.privacy-policy table tbody tr:nth-of-type(even) {
    background-color: #d6d6d6;
}

/* Before Header
---------------------------------------------------------------------------- */

.before-header {
    background-color: var(--mainColor);
}

.before-header .widget {
    margin: 0;
}

.before-header .menu {
    list-style-type: none;
    text-align: right;
}

.before-header .menu>.menu-item {
    display: inline-block;
    margin: 0;
}

.before-header .menu>.menu-item a {
    color: white;
    padding: .5rem 1.5rem;
    display: block;
    font-weight: 400;
}

.before-header .menu>.menu-item.social-link a {
    padding: 1.2rem .75rem;
}

.before-header .social-link i {
    font-size: 1.8rem;
    width: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-header .social-link i::before {
    font-size: 1.8rem;
    height: 1.8rem;
}

.video-wrapper {
    position: relative;
}

.video-wrapper video {
    border-radius: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 0;
    height: 100%;
    box-shadow: unset;
    background-color: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
}

.video-wrapper video {
    box-shadow: var(--boxShadow);
    border-radius: 2rem;
    margin-top: -2px;
    height: 100%;
}

.video-wrapper img {
    border-radius: 2rem;
    object-fit: cover;
    position: relative;
    object-position: center center;
    height: 100%;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0 0 0 / 15%);
    overflow: hidden;
    border-radius: 2rem;
}

.video-wrapper .play-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 99;
    border-radius: 2rem;
}

.video-wrapper .play-link:hover {
    cursor: pointer;
}

.video-wrapper .play-link i {
    border: 5px solid white;
    padding: 20px;
    border-radius: 50%;
    background-color: transparent;
    transition: 0.5s ease all;
}

.video-wrapper .play-link:hover i {
    background-color: white;
    color: #333;
}

.video-wrapper .play-link i::before {
    font-size: 40px;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    margin-left: 5px;
}

/* Landing Pages
---------------------------------------------------------------------------- */

.single-landing .floating-cta {
    z-index: 999;
}

.single-landing .floating-cta .button {
    background-color: var(--secondColor);
    box-shadow: 0 .2rem 1rem rgba(255 255 255 / 25%);
}

.single-landing .floating-cta .button:hover {
    background-color: var(--mainColor);
}

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

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

    .site-header>.wrap {
        align-items: center;
        max-width: unset;
        padding: 0 5%;
    }

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

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

    .site-header>.wrap .nav-primary .genesis-nav-menu .menu-item#menu-item-719 {
        margin-right: 1rem;
    }

    .site-header>.wrap,
    .footer-widgets .wrap,
    .flexbox {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

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

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

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

    .nav-primary .genesis-nav-menu a {
        padding: 3.6rem .75rem;
        font-size: 1.6rem;
        position: relative;
    }

    .nav-primary .genesis-nav-menu .button.menu-item a {
        padding: 1rem 2rem;
        border-radius: .2rem;
    }

    .nav-primary .genesis-nav-menu .button.menu-item a::before {
        content: unset;
    }

    .nav-primary .genesis-nav-menu a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: auto;
        right: 0;
        width: 0;
        height: .4rem;
        transition: all .4s;
        background-color: var(--mainColor);
    }

    .nav-primary .genesis-nav-menu .current-menu-item a::before,
    .nav-primary .genesis-nav-menu a:hover:before {
        width: 100%;
        left: 0;
        right: auto;
    }

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

    .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;
    }

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

    .footer-widgets .wrap {
        max-width: 128rem;
    }

    .footer-widgets .footer-widget-area:first-of-type {
        padding-right: 4rem;
    }

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

    .footer-widgets .footer-widgets-2 .widget_media_image {
        text-align: center;
    }

    .footer-widgets .footer-widgets-3:last-of-type .widget_media_image {
        text-align: right;
    }

    .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);
    }

    .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: 600;
    }
}

@media only screen and (min-width: 1280px) {
    .nav-primary .genesis-nav-menu .button.menu-item:not(:last-of-type) {
        margin-right: 1rem;
    }
}

@media only screen and (min-width:1520px) {
    .site-inner {
        padding: 6rem 0;
    }
}

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

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

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

@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%;
    }
}

@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:1439px) and (min-width: 960px) {
    .nav-primary .genesis-nav-menu .menu-item.button#menu-item-1537 {
        left: unset;
        right: 0;
        border-radius: 0;
    }

    .nav-primary .genesis-nav-menu .menu-item.button {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 50%;
        margin: 0;
        box-shadow: 0 1.5rem 4rem rgba(255 255 255 / 20%);
    }

    .nav-primary .genesis-nav-menu .button.menu-item a {
        border-radius: 0;
        text-align: center;
    }

    .site-footer {
        padding-bottom: 6.7rem;
    }
}

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

    .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 a {
        padding: 1.5rem 0;
    }

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

    .nav-primary .genesis-nav-menu .button.menu-item {
        margin-bottom: 1rem;
    }

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

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

    .nav-primary .genesis-nav-menu .menu-item:not(:last-of-type).social-link a {
        border-bottom: 0;
    }

    .genesis-nav-menu .menu-item.social-link {
        display: inline-block;
    }

    .nav-primary .genesis-nav-menu .menu-item.social-link a {
        padding: 1.5rem;
    }

    .before-header .menu {
        text-align: center;
    }

    .single-landing .site-header .title-area {
        float: unset;
        margin: 0 auto 1rem;
    }

}

@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;
    }

    .page .site-inner {
        padding: 0;
    }

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

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

    .before-header .menu .menu-item:first-of-type {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 99999;
    }

    .before-header .menu .menu-item:first-of-type a {
        display: block;
        width: 100%;
        background-color: var(--mainColor);
    }

    .site-footer {
        padding: 2rem 0;
    }
}

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

@media only screen and (max-width:480px) {
    .wp-custom-logo .site-container .title-area {
        max-width: 25rem;
    }
}