/* ==========================================================================
 Author's Variables
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --cubic: cubic-bezier(0.33, 1, 0.68, 1);
    --text: "Montserrat", sans-serif;
    --grren: #76B729;
    --blue: #104F9E;
    --lightBrown: #393631;
    --brown: #2B2926;
    --lightBlue: #B5E7FF;
    --gray: #FAFAFA;
}

#master{
	position: relative;
	width: 100vw;
	padding: 0;
	margin: 0; 
	overflow-x:hidden;
	z-index: 4;
    
}
#smooth-wrapper{
    margin: 0;
}
body{
    overflow-y: hidden;
    height: 100vh;

}
body *{
    font-family: var(--text);
}
body.dom-is-loaded{
    overflow-y: visible;
    height: auto;
}

header{
    position: fixed;
    top:0;
    width: 100vw;
    left: 0;
    background-color: white;
    z-index: 20;
    box-sizing: border-box;
}

.wa-bubble{
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 80px;
    height: 80px;
    z-index: 20;
}
.wa-bubble a svg{
    transition: all 0.3s;
    will-change: transform;
    text-decoration: none;
}
.wa-bubble a:hover svg{
    transform: scale(1.04);
    transform-origin: 50% 50%;
}

nav ul li a{
    font-family: var(--text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.09px;
    position: relative;
}
nav ul li a[aria-current="page"]{
	font-weight: 600;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 25%;
    height: 1px;
    left: 0;
    background-color: var(--grren);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 0;
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s var(--cubic);
    -moz-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -ms-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -o-transition: opacity 0.3s, transform 0.5s var(--cubic);
    transition: opacity 0.3s, transform 0.5s var(--cubic), -webkit-transform 0.5s var(--cubic);
}
nav ul li a:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.footer-nav ul li a{
    font-size: 10px;
}


.small-text{
    width: 20%;
}
.padding-top-bottom{
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.padding-top{
    padding-top: 6rem;
}
.first-padding-top{
    padding-top: 10rem;
}
.padding-bottom{
    padding-bottom: 8rem;
}
.small-padding-bottom{
    padding-bottom: 4rem;
}
.margin-bottom{
    margin-bottom: 4rem;
}
.small-margin-bottom{
    margin-bottom: 2rem;
}
.mini-padding-top-bottom{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.micro-padding-top-bottom{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.margin-top-regular{
    margin-top:5rem;
}
.padding-bottom-regular{
    padding-bottom: 5rem;
}
.mini-padding-top{
    padding-top: 3rem;
}
p, li{
    font-family: var(--text);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
p a{
    color: var(--brown);
    transition: all 0.3s;
}
p a:hover{
    color: var(--grren);
}
h1{
    text-align: center;
    font-family: var(--text);
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; 
}
h1 mark{
    font-weight: 600;
}
h2{
    font-family: var(--text);
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
h2 strong{
    font-weight: 700;
}

h3{
    font-family: var(--text);
    font-size: 35px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%; /* 35px */
}
h3 strong{
    font-weight: 700;
}

h4{
    font-family: var(--text);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; 
}
h5{
    font-family: var(--text);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; 
}


.service-box{
    padding: 50px;
    gap: 30px;
    transition: all 0.3s;
    position: relative;
}
.service-box:hover{
    background-color: var(--lightBrown);
}

/* .plus-icon{
    position: absolute;
    bottom:30px;
    right:30px;
    transition: all 0.3s;
    will-change: transform;
} */
.plus-icon a{
    position: absolute;
    width: 100% !important;
    height: 100%;
    top:0;
    left:0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.plus-icon a svg{
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
    margin-right: 30px;
    transition: all 0.3s;
}
.service-box:hover .plus-icon a svg{
    transform: scale(1.3) rotate(90deg);
}

.about-home-big-text{
    font-family: var(--text);
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%; /* 45px */
    padding-left: 400px;
}
body[class*="-72"] .qodef-block-95deac3b .qi-block-counter .qodef-m-digit-wrapper .qodef-m-icon{
    position: relative;
    left: 0;
    top: 0;
    right: unset;
    order: 1;
    transform: translate(0, 0);
}
.qi-block-counter .qodef-m-digit{
    order: 2;
}
.big-gap{
    gap:90px;
}
.value{
    text-align: center;
    font-family: var(--text);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; 
    letter-spacing: 0px;
    text-transform: uppercase;
}
.half-width{
    max-width: 60%;
}

.convenios .qodef-block-swiper .swiper-slide img{
    max-width: 200px;
    text-align: center;
}

.testi-box{
    position: relative;
    max-width: 450px;
    border-radius: 20px;
    padding: 50px;
    box-sizing: border-box;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.testi-video{
    width: 100px !important;
    height: 100px !important;
}
.wp-block-post-date a{
text-decoration: none !important; 
}
time{
    color: #939598;
    font-family: var(--text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    
}
.taxonomy-category a{
    color: var(--grren);
    font-family: var(--text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
}
.avatar{
    border-radius: 100%;
}
.single-post-container .wp-block-post-title{
    font-family: var(--text);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
}
.home-loop .wp-block-post-title{
    font-family: var(--text);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.wp-block-post-featured-image img{
    border-radius: 20px;
}

.post-navigation-link-previous a,.post-navigation-link-next a{
    color:var(--grren);
}

.home-loop .wp-block-post-template{
    gap:90px;
}
.wp-block-button__link{
    font-family: var(--text);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 230.5%;
    letter-spacing: -0.07px;
    transition: all 0.3s;
    will-change: transform;
    padding-top: 8px;
    padding-bottom: 8px;
}
.wp-block-button__link:hover{
    transform: scale(1.04);
    transform-origin: 50% 50%;
}

.wc-block-customer-account__link svg{
    width: 29px;
    height: 29px;
}
.big-footer-box{
    padding: 5rem;
    border-radius: 20px;
    box-sizing: border-box;
    width: 100%;
}
.small-footer-box{
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 20px;
    width: 100%;
}
/* .logos-cd img{
    max-height: 50px;
    width: auto;
} */

.big-text{
    font-family: var(--text);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.services-loop .wp-block-post-excerpt__more-link{
    padding: 10px 20px;
    border-radius: 40px;
    box-sizing: border-box;
    background-color:var(--grren);
    color: white;
    font-family: var(--text);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 230.5%;
    letter-spacing: -0.07px;
    transition: all 0.3s;
    will-change: transform;
    text-decoration: none;
}
.services-loop .wp-block-post-excerpt__more-link:hover{
    transform: scale(1.04);
    transform-origin: 50% 50%;
}
.services-loop .wp-block-post-title{
    font-family: var(--text);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.services-loop .wp-block-post-template{
    column-gap:150px;
    row-gap: 100px;
}

.year-size{
    font-family: var(--text);
    font-size: 130px;
    font-style: normal;
    font-weight: 700;
    line-height: 80%;
}

.about-landing{
    padding: 8rem 7.5% 4rem;
}
.careers-landing{
    padding: 8rem 7.5% 4rem;
}
.medium-text{
    width: 50%;
}

.all-padding{
    padding: 0 15%;
}
.small-padding{
    padding: 0 3%;
}
hr{
    background-color: #2B2926;
    height: 1px;
    border: 0 none !important;
    margin-top: 20px !important;
}

/* Video Popup */
.over-cover.wpzoom-video-popup-block{
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top:-50px;
    left:0;
}
.over-cover .wpzoom-video-popup-block_icon{
    background-color:var(--grren);
    width: 70px !important;
    height: 70px !important;
    padding: 25px;
    margin: 0;
    border-radius: 100%;
    transition: all 0.3s;
    outline: 0 none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    animation: pulse 2s infinite;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s var(--cubic);
    -moz-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -ms-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -o-transition: opacity 0.3s, transform 0.5s var(--cubic);
    transition: opacity 0.3s, transform 0.5s var(--cubic), -webkit-transform 0.5s var(--cubic);
    
} 
.over-cover .wpzoom-video-popup-block_icon svg path{
    fill:white;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.over-regular.wpzoom-video-popup-block{
    justify-content: flex-start !important;
    padding-left: 15px;
}
.over-regular .wpzoom-video-popup-block_icon{
    background-color:var(--grren);
    width: 70px !important;
    height: 70px !important;
    padding: 25px;
    margin: 0;
    border-radius: 100%;
    transition: all 0.3s;
    outline: 0 none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    animation: pulse 2s infinite;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s var(--cubic);
    -moz-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -ms-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -o-transition: opacity 0.3s, transform 0.5s var(--cubic);
    transition: opacity 0.3s, transform 0.5s var(--cubic), -webkit-transform 0.5s var(--cubic);
} 
.over-regular.with-text .wpzoom-video-popup-block_icon{
    width: 40px !important;
    height: 40px !important;
    padding: 15px;
}
.over-regular.with-text{
    font-size: 16px;
}

.over-testi.wpzoom-video-popup-block{
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    background-color: transparent;
    align-items: flex-end;
    justify-content: flex-end;
}
.over-testi .wpzoom-video-popup-block_icon{
    background-color:var(--grren);
    width: 40px !important;
    height: 40px !important;
    padding: 13px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-top: 0;
    margin-left: 0;
    border-radius: 100%;
    transition: all 0.3s;
    outline: 0 none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    animation: pulse 2s infinite;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s var(--cubic);
    -moz-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -ms-transition: opacity 0.3s, transform 0.5s var(--cubic);
    -o-transition: opacity 0.3s, transform 0.5s var(--cubic);
    transition: opacity 0.3s, transform 0.5s var(--cubic), -webkit-transform 0.5s var(--cubic);
    
} 
.over-testi .wpzoom-video-popup-block_icon svg path{
    fill:white;
}

.wpgmza_infowindow_address{
    display: none;
}


/* Mapa */
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-basic-listing-image-holder{
    order: 1;
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-basic-listing-image-holder img{
    max-width: 70px;
}

.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-address,.wpgmza_marker_icon{
    display: none !important;
}
.wpgmza_map .leaflet-popup .leaflet-popup-content-wrapper{
    border-radius: 15px;
}
.wpgmza-infowindow{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.wpgmza-gallery .wpgmza-gallery-stage .wpgmza-gallery-item{
    width:150px;
}
.wpgmza-gallery .wpgmza-gallery-stage .wpgmza-gallery-item img{
    border-radius: 10px;
}
.wpgmza_infowindow_description{
    width: 100%;
    margin-top: 20px;
}
.wpgmza_infowindow_title{
    margin: 1.3em 10px !important;
}
.leaflet-container a.leaflet-popup-close-button{
    font-size: 24px;
}
.fa{
    color:var(--blue);
    margin-right: 15px;
}
.wpgmza-desc{
    display: none;
}
.wpgmza_custom_fields *:not([data-custom-field-name="Dirección"]){
    display: none;
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza_marker_title a{
    position: relative;
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza_marker_title a::before{
    content: '';
    width: 14px;
    height: 20px;
    margin-right: 10px;
    background-image: url(../images/marcador.png);
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    top: 2px;
    
}
.wpgmza_infowindow_description{
    margin-bottom: 15px;
}
.wpgmza-address-container{
    display: flex !important;
    flex-direction: row !important;
    text-align: left !important;
    width: 100%;
    align-items: center;
    justify-content:flex-start;
}
.addressInput{
    width: 60%;
}
label.wpgmza-address {
    width: auto;
}
.wpgmza-standalone-component input:not([type="checkbox"]), .wpgmza-standalone-component select{
    font-size: 16px;
}
.wpgmza-standalone-component .wpgmza_basic_row{
    border-radius: 10px !important;
}
.wpgmza_marker_title a{
    color: var(--brown);
}
/* .wpgmza-standalone-component .wpgmza-store-locator svg{
    background-color: #2B2926;
    border-radius: 5px;
}
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc .line, .wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc .circle_outer, .wpgmza-standalone-component svg.wpgmza-use-loc .line, .wpgmza-standalone-component svg.wpgmza-use-loc .circle_outer{
    stroke: white;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator svg, .wpgmza-standalone-component .wpgmza-store-locator svg{
    stroke: white;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location:hover svg.wpgmza-use-loc .line, .wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location:hover svg.wpgmza-use-loc .circle_outer, .wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc:hover .line, .wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc:hover .circle_outer, .wpgmza-standalone-component .wpgmza-use-my-location:hover svg.wpgmza-use-loc .line, .wpgmza-standalone-component .wpgmza-use-my-location:hover svg.wpgmza-use-loc .circle_outer, .wpgmza-standalone-component svg.wpgmza-use-loc:hover .line, .wpgmza-standalone-component svg.wpgmza-use-loc:hover .circle_outer{
    stroke: rgb(238, 238, 238);
} */

.wp-block-post-excerpt__more-link{
    color: var(--grren);
}
.medium-gap{
    gap:40px;
}

.home-cover h1 mark{
    position: relative;
}
.home-cover h1 mark::before{
    content: '';
    position: absolute;
    height: 20px;
    background-color: var(--blue);
    width: 100%;
    bottom:5px;
    left:0;
    z-index: 1;
}
.home-cover h1 mark strong{
    position: relative;
    z-index: 2;
    font-weight: 600;
}
.home-cover{
    position: relative;
}
.ccss-box{
    position: absolute;
    bottom:30px;
    left:7.5%;
    padding: 10px 15px;
    box-sizing: border-box;
}
.ccss-box p{
    font-size: 13px;
}
.ccss-box a{
	text-decoration:none;
}
.ccss-box a:hover{
	color:var(--brown);
}
.custom-column{
    justify-content: center;
    display: flex;
}
.testi-1{
    margin-right: 50px;
}
.testi-2{
    margin-left: 50px;
}
.testi-3{
    margin-left: 150px;
}
.testi-4{
    margin-right: 150px;
}

.service-description ul{
    list-style: none;
}
.service-description ul li{
    padding-left: 35px;
    position: relative;
    margin-bottom: 30px;
}
.service-description ul li ul{
    margin-top: 30px;
}
.service-description ul li ul li{
    margin-bottom: 15px;
}
.service-description ul li::before{
    content: '';
    height: 20px;
    width: 20px;
    background-image: url('../images/check.svg');
    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    left:0;
    top:2px;
}

.testi-big-box{
    position: relative;
    border-radius: 20px;
    padding: 50px;
    box-sizing: border-box;
}

:root :where(.wp-element-button, .wp-block-button__link){
    background-color: var(--grren);
    border-radius: 30px !important;
    transition: all 0.3s;
    will-change: transform;
    transform-origin: 50% 50%;
}
:root :where(.wp-element-button, .wp-block-button__link):hover{
    transform: scale(1.04);
}
.wp-block-button__link img{
    margin-right: 5px;
    position: relative;
    top: 3px;
}
.wc-block-components-product-name{
    font-size: 20px !important;
    color: var(--grren);
}
.wc-block-mini-cart__title{
    font-size: 1em !important;
}

.product-box{   
    padding: 20px 40px;
    box-sizing: border-box;
}
.product-box h3{
    font-weight: 600;
    color: var(--brown);
}
.product-box h3 a{
    color: var(--brown);
    transition: all 0.3s;
}
.product-box h3 a:hover{
    color: var(--grren);
}
.single-product-container h2{
    font-size: 40px;
    font-weight: 600;
}
.location-title{
    margin-top: 40px !important;
}
div[data-custom-field-id]{
    margin-bottom: 10px;
}

.listado-holder{
    max-height: 60vh;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;

    /* Permite que la página continúe bajando
       cuando el listado llegue al final */
    overscroll-behavior-y: auto;
}
.wpgmaps_mlist_row{
    margin-bottom: 15px;
}
.wp-block-social-link-anchor{
    font-size: 24px;
}

.blog-content h2{
    font-size: 30px;
}
.blog-content h3{
    font-size: 27px;
}
.blog-content h4{
    font-size: 22px;
}
.blog-content h5{
    font-size: 18px;
}
.blog-content h6{
    font-size: 14px;
}

.search-filter-input-button{
    border: 1px solid var(--grren);
    background-color: white;
    color: var(--brown);
    border-radius: 30px;
}

.search-filter-label{
    font-family: var(--text);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    color: var(--blue);
}
.wa-menu{
    margin-left: 20px !important;
}
.wp-block-accordion{
    width: 100%;
}
.wp-block-accordion-heading__toggle-title{
    font-size: 17px;
    
}
.wp-block-accordion-heading{
    border-bottom: 1px solid #E3E3E3;
}
.wp-block-accordion-heading__toggle-icon {
    display: inline-block;
    transition: transform 0.4s ease;
}

.wp-block-accordion-item.is-open
.wp-block-accordion-heading__toggle-icon {
    transform: rotate(45deg);
}

.wp-block-accordion-panel {
    overflow: hidden;
}

.wp-block-accordion-panel > :first-child {
    margin-top: 0;
}

.wp-block-accordion-panel > :last-child {
    margin-bottom: 0;
}
.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title{
    text-decoration: none;
}

/* Mobile */


.mobile-menu{
    position: fixed;
    z-index: 19;
    display: block;
    top:0;
    right: 0;
    height: 100vh;
    width: 30vw;
    padding: 50px;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.3s;
    /* display: none; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.home .mobile-menu nav ul li a, .single-project .mobile-menu nav ul li a, .page-id-146 .mobile-menu nav ul li a {
    color: var(--raisin) !important;
}
.open-menu .mobile-menu{
    transform: translateX(0);
    pointer-events: auto;
}
.truck{
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: all 0.3s;
    transform: translateX(150%);
     transition-delay: 400ms;
     pointer-events: none;
}
.open-menu .truck{
    transform: translateX(0);
}
.internal-nav li{
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(100px);
}
.open-menu .internal-nav li{
    transform: translateX(0);
    opacity: 1;
}
.internal-nav li a{
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    transform: translateX(0);
}
.internal-nav li:nth-child(1){
    transition-delay: 30ms;
}
.internal-nav li:nth-child(2){
    transition-delay: 60ms;
}
.internal-nav li:nth-child(3){
    transition-delay: 90ms;
}
.internal-nav li:nth-child(4){
    transition-delay: 120ms;
}
.internal-nav li:nth-child(5){
    transition-delay: 150ms;
}
.internal-nav li:nth-child(6){
    transition-delay: 180ms;
}
.internal-nav li:nth-child(7){
    transition-delay: 210ms;
}
.internal-nav li:nth-child(8){
    transition-delay: 240ms;
}
.internal-nav li:nth-child(9){
    transition-delay: 270ms;
}
.internal-nav li a:hover{
    transform: translateX(10px);
}


/* Toggle */
.nav-toggle{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-decoration: none !important;
    cursor: pointer;
    width: 80px;
    height: 60px;
    transition: all 0.3s;
    border-radius: 10px;
    z-index: 20;
    position: relative;
    display: none;
}

.nav-toggle span {
    background-color: var(--brown) !important;
    width: 40%;
    height: 1px;
    border-radius: 1px;
    display: block;
    position: absolute;
    left: 25px;
    content: '';
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.open-menu .nav-toggle span{
    background-color: var(--brown) !important;
}

.nav-toggle span:nth-child(1) {
    top: 22px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
.nav-toggle span:nth-child(2) {
    top: 29px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.nav-toggle span:nth-child(3) {
    top: 36px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
.open-menu .nav-toggle span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 16px;
    left: 29px;
}
.open-menu .nav-toggle span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.open-menu .nav-toggle span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 39px;
    left: 28px;
}



/* Animations */
.load-left-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleX(1);
    transform-origin: 0 0;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-left-mask::before{
    transform: scaleX(0);
}

.load-right-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleX(1);
    transform-origin: 100% 0;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-right-mask::before{
    transform: scaleX(0);
}

.load-up-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleY(1);
    transform-origin: 0 0;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-up-mask::before{
    transform: scaleY(0);
}
.light-img-cover img{
    transform-origin: 50% 50%;
    transition: transform 0.5s var(--cubic);
}
.light-img-cover:hover img{
    transform: scale(1.02);
}
.load-down-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleY(1);
    transform-origin: 0 100%;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-down-mask::before{
    transform: scaleY(0);
}
.load-fade{
    opacity: 0;
}
.dom-is-loaded .load-fade{
    opacity: 1;
    transition: opacity 0.4s;
    transition-delay: 300ms;
}

.load-scale{
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s var(--cubic);
    transition-delay: 300ms;
}
.dom-is-loaded .load-scale{
    opacity: 1;
    transform: scale(1);
}

.load-title{
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s;
}
.dom-is-loaded .load-title{
    transform: translateY(0);
    opacity: 1;
}
.load-line{
    transform-origin: 0 0;
    transform: scaleX(0);
    transition: all 0.4s;
}
.dom-is-loaded .load-line{
    transform: scaleX(1);
}
.load-text{
    opacity: 0;
}
.dom-is-loaded .load-text{
    opacity: 1;
    transition: opacity 0.4s;
    transition-delay: 400ms;
}
.anim-fade{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s;
}
.is-active .anim-fade{
    opacity: 1;
    transform: translateY(0);
}

.anim-title{
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s;
}
.is-active .anim-title{
    opacity: 1;
    transform: translateY(0);
}
.wpgmza-standalone-component{
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s;
}
.dom-is-loaded .wpgmza-standalone-component{
    opacity: 1;
    transform: translateY(0);
}

.regular-text{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s;
}
.is-active .regular-text{
    opacity: 1;
    transform: translateY(0);
}

.anim-move{
    opacity: 0;
    transform: translateX(50%);
    transition: all 0.4s;
}
.is-active .anim-move{
    opacity: 1;
    transform: translateY(0);
}

.anim-scale{
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s;
}
.is-active .anim-scale{
    opacity: 1;
    transform: scale(1);
}
.delayed{
    transition-delay: 200ms;
}
.delayed-2{
    transition-delay: 300ms;
}
.delayed-3{
    transition-delay: 400ms;
}
.delayed-4{
    transition-delay: 500ms;
}

.anim-button{
    opacity: 0;
    transform: button(0.9);
    transition: all 0.4s;
}
.is-active .anim-button{
    opacity: 1;
    transform: scale(1);
}
.show-up{
    position: relative;
    overflow: hidden;
}
.show-up::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleY(1);
    transform-origin: 0 0;
    transition: transform 0.8s var(--cubic);
    transition-delay: 100ms;
}
.show-up.blue::before{
    background-color:var(--lightBlue);
}
.is-active .show-up::before{
    transform: scaleY(0);
}

.landing-beige{
    position: relative;
}
.landing-beige::after{
    content:'';
    position: absolute;
    background-color: var(--beige);
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    transition: all 0.6s;
    transform: scaleY(0);
    transform-origin: 100% 100%;
    z-index: -1;
}
.dom-is-loaded .landing-beige::after{
    transform: scaleY(1);
}
.internal-cover-load video{
    position: relative;
    opacity:0;
    transform: scale(1.1);
    transition: all 0.6s;
}
.dom-is-loaded .internal-cover-load video{
    transform: scale(1);
    opacity: 1;
}
.internal-cover-load img{
    position: relative;
    opacity:0;
    transform: scale(1.1);
    transition: all 0.6s;
}
.dom-is-loaded .internal-cover-load img{
    transform: scale(1);
    opacity: 1;
}
.service-holder{
    position:relative;
}
.service-holder::before{
    content:'';
    position: absolute;
    background-color:#CECECE;
    width: 100%;
    height: 1px;
    top:0;
    left:0;
    transition: all 0.6s;
    transform: scaleX(0);
    transform-origin: 0 0;
}
.is-active .service-holder::before{
    transform: scaleX(1);
}

.wpgmza-infowindow .wpgmza-gallery .wpgmza-gallery-stage {
    width: 80px;
    height: 80px;
}
.wpgmza-gallery .wpgmza-gallery-stage .wpgmza-gallery-item {
    width: 80px;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content{
	font-size: 15px;
}
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{
	border: 1px solid #ffffff26;
}

.senior-badge img{
	width: 180px !important;
}
.page-id-569 .senior-badge{
	width: 400px !important;
}
.page-id-569 .senior-badge img{
	width: 100% !important;
}

