/*FONTS*/
/* @font-face {
    font-family: 'sweet-sans-pro';
    src: url(fonts/sweet-sans-pro-regular.ttf);
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MinionPro';
    src: url(fonts/MinionPro-Regular.otf);
    font-weight: normal;
    font-style: normal;
} */
html{
    font-size: 75%;
}
:root{
    --text-font: "sweet-sans-pro",sans-serif;
    --heading-font: "minion-pro-display",serif;
}
.elementor-element,
p,
body{
    font-size: 1.125rem;
    line-height: 2rem;
    font-family: var(--text-font) !important;
}

h1,h2,h3,h4,h5,h6{
    font-family: var(--heading-font) !important;
    font-weight: normal !important;
} 
h2{
    font-size: 2.5rem;
    letter-spacing: -.32px;
    line-height: 3.125rem;
}
.site-branding {
    position: fixed;
    top: 3.4375rem;
    left: 3.4375rem;
    z-index: 22;
}
.site-header.has-scroll .site-branding .custom-logo-link {
    display: none;
}
.site-header.has-scroll .site-branding .logo-black {
    display: block !important;
}
.site-branding a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.site-branding a {
    display: block;
    max-width: 11rem;
}
footer#colophon {
    display: none;
}
.main-navigation {
    display: block;
    width: 3.75rem;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #5F7361;
    height: 100%;
    z-index: 22;
}

.menu-vertical {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding-bottom: 5rem;
}

.menu-vertical .line {
    width: 0.0625rem;
    height: 100%;
    max-height: 20.9375rem;
    background-color: #fff;
    margin-bottom: 1.5625rem;
}

.title-menu {
    writing-mode: vertical-rl;
    transform: rotate(180deg); 
    font-size: 1.125rem;
    letter-spacing: 0;
    color: #FAFAF8;
    margin: 0;
}

.menu-bar {
    width: 1.5rem;
    height: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 1.875rem;
}

.menu-bar span {
    display: block;
    height: 0.1875rem;
    background: #fff;
    border-radius: 0.1875rem;
    position: relative;
    transition: all 0.3s ease;
}

.menu-bar span::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:0.125rem;
    background:#fff;
    transform:translateY(-50%);
    transition: all 0.3s ease;
}

.menu-bar.active span:nth-child(1) {
    transform: translateY(0.40625rem) rotate(45deg);
}

.menu-bar.active span:nth-child(2) {
    opacity: 0;
}

.menu-bar.active span:nth-child(3) {
    transform: translateY(-0.40625rem) rotate(-45deg);
}
.menu-bar.active span {
    background-color: #DAA78A;
}
.menu-bar.active span::after {
    opacity: 0;
}
.menu-main-menu-container {
    position: fixed;
    top: 0;
    right: 3.75rem;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.main-navigation ul {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: 100%;
    background-color: rgb(95 116 98 / 100%);
    width: calc(50% - 3.75rem);
    padding: 5rem;
    justify-content: center;
    border-right: .1px solid #fff;
}
.main-navigation ul a {
    color: #fff;
    font-size: 2.6667rem;
    line-height: 1.5;
    padding: 1rem 0;
    display: block;
    font-family: var(--heading-font);
    text-align: right;
}
.main-navigation ul li.li-map a{
    color: #DAA78A;
    font-weight: 700;
    padding-top: 0;
}
.main-navigation ul li.li-map a,
.main-navigation ul li.li-address a{
    font-size: 1.33rem;
    font-family: var(--text-font);
    line-height: 1.875rem;
}
.main-navigation ul li.li-social a {
    font-size: 1.5rem;
    font-family: var(--text-font);
    line-height: 1.875rem;
    letter-spacing: .09px;
    text-decoration: underline;
    margin-right: 0;
    font-size: 1.33rem;
    font-family: var(--text-font);
    line-height: 1.875rem;
}
.main-navigation ul a:hover{
    text-decoration: underline;
}
.menu-main-menu-container {
    opacity: 0;
    visibility: hidden;
    transition: 
        opacity 0.4s ease,
        visibility 0s linear 0.5s; 
}
.menu-main-menu-container:after {
    background: url(images/bg-menu-2.png) no-repeat center / cover;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% + 3.75rem);
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.menu-main-menu-container.active:after{
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}
.menu-main-menu-container.active {
    opacity: 1;
    visibility: visible;
    transition: 
        opacity 0.4s ease,
        visibility 0s linear 0s;
}

/* panel slide */
.main-navigation ul {
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.main-navigation .menu-main-menu-container.active ul {
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}
.hero-banner .elementor-widget-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner .elementor-widget-image {
    position: absolute;
    width: 46.625rem;
    height: 100%;
    top: 0;
    right: 3.75rem;
}

.hero-banner{
    min-height: 67.5rem !important;
}

.hero-banner .e-con-inner{
    padding-left: 8.75rem !important;
    padding-top: 0 !important;
}
.hero-banner h1{
    margin-top: 10vw;
}
.hero-banner h2{
    margin-top: 0rem;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    border: 2px solid #E5C1A9;
    height: 3.125rem;
    background-color: transparent;
    color: #FAFAF8;
    font-size: .938rem;
    line-height: 1;
    font-family: var(--text-font);
    padding: 0 1.625rem;
    cursor: pointer;
    transition: all .5s;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
    background-color: #E5C1A9;
    color: #000;
}
.form-gr input:not([type="submit"])::placeholder{
    color: transparent !important;
}
.form-gr br {
    display: none;
}
.form-gr p {
    margin: 0;
    padding: 0;
}
.form-gr .item{
    position: relative;
}
.form-gr label {
    color: #FAFAF8;
    font-size: .875rem;
    font-family: var(--text-font);
    position: absolute;
    top: 0;
    left: 0;
}
.form-gr span.wpcf7-spinner {
    display: none;
}
.form-gr input:not([type="submit"]) {
    height: 5rem;
    background-color: transparent !important;
    font-size: .875rem;
    line-height: 1.5;
    font-family: var(--text-font);
    color: #FAFAF8 !important;
    border: 0;
    border-bottom: 1px solid #FAFAF8;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
    padding-top: 2.5rem;
    border-radius: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: none !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
	background-color: transparent !important;
}
.wpcf7 form .wpcf7-response-output {
    color: #fff;
}
.form-gr {
    max-width: 50rem;
    display: flex;
    align-items: flex-end;
}
.wpcf7-not-valid-tip {
    position: absolute;
    bottom: auto;
}
.form-gr > * {
    max-width: 33.33%;
    width: 100%;
    margin-right: 2rem;
}
.elementor-widget-button .elementor-button {
    background-color: transparent !important;
    font-size: 1.125rem;
    color: #5F7361 !important;
    border: 0;
    padding: 0;
    margin: 0;
    line-height: normal;
    display: flex;
    align-items: center;
    font-family: var(--text-font) !important;
}
.elementor-widget-button .elementor-button:hover:after{
    transform: translateX(1rem);
}
.elementor-widget-button .elementor-button:after {
    content: url(images/link.svg);
    display: inline-block;
    margin-left: 1rem;
    position: relative;
    top: .15rem;
    transition: all .5s;
    transform: translateX(0);
}
.elementor-widget-button.no-icon .elementor-button:after{
    display: none;
}
.row-button > * {
    width: auto;
    max-width: max-content !important;
}
.row-button {
    display: flex;
    padding: 0 !important;
    gap: 0 5rem !important;
    flex-direction: initial !important;
}
.st-delivared p a{
    text-decoration: underline;
    font-weight: 700;
}
.footer-bottom .row-button{
    justify-content: flex-end;
    margin-top: 2.5rem;
}
/* .elementor-widget-image:hover img {
    opacity: .8;
    cursor: pointer;
}
.elementor-widget-image img{
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
} */
.form-last input.wpcf7-form-control.wpcf7-submit.has-spinner {
    margin-top: 1rem;
}
.form-last > .e-con-inner {
    padding: 0px !important;
}
.form-last .form-gr{
    display: none;
}
.form-last .form-gr > * {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
}
.form-last .form-gr {
    max-width: 100%;
    display: none;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
.form-last h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: -10px;
    font-size: 20px !important;
    line-height: 30px !important;
}
.form-last h2:after {
    content: url(images/arrow.svg);
    display: inline-block;
    margin-left: 1rem;
    transform: translateY(-5px);
    transition: all .5s;
}
.form-last h2.active:after {
    transform: translateY(5px) rotate(180deg);
}
.form-last {
    position: fixed !important;
    width: 100% !important;
    z-index: 2 !important;
    bottom: 0;
    left: 0;
}
.mobile{
    display: none;
}
@media screen and (min-width: 1600px){
    html{
        font-size: 100%;
    }
}
@media screen and (max-width: 1024px){
    html{
        font-size: 100%;
    }
    header#masthead {
        position: absolute;
        width: 100%;
        z-index: 22;
        height: 80px;
        background-color: #5F7361;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px;
    }
    header#masthead.has-scroll{
        position: fixed;
    }
    .site-branding {
        position: relative;
        top: auto;
        left: auto;
        z-index: 222;
        width: 94px;
    }
    .main-navigation {
        width: 30px;
        top: auto;
        right: auto;
        height: 30px;
        z-index: 22;
        position: relative;
    }
    .mobile{
        display: block;
    }
    .desktop,
    .menu-vertical{
        display: none;
    }
    .menu-bar {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        margin: 0 auto;
        margin-top: 0;
        z-index: 3;
        position: relative;
        width: 2.5rem;
        height: 1.5rem;
    }
    .menu-bar.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-bar.active span:nth-child(3) {
        transform: translateY(-15px) rotate(-45deg);
    }
    .menu-main-menu-container {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2;
    }
    .form-gr {
        display: block;
    }
    .form-last .form-gr {
        display: none;
        padding: 0 40px 20px;
    }
    .form-gr > * {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    input.wpcf7-form-control.wpcf7-submit.has-spinner {
        width: 100%;
    }
    .row-button > * {
        width: 100%;
        max-width: 100% !important;
        margin-top: 15px !important;
    }
    .row-button {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
    }
    h2 {
        font-size: 35px !important;
        letter-spacing: 0 !important;
        line-height: 45px !important;
    }
    .st-delivared h2 {
        font-size: 46px !important;
        letter-spacing: -.69px !important;
        line-height: 52px !important;
    }
    .elementor-element, p, body {
        font-size: 17px;
        line-height: 30px;
    }
    .st-delivared p {
        font-size: 18px;
        line-height: 32px;
    }
    .main-navigation ul {
        max-width: 100%;
        padding: 30px;
        justify-content: flex-start;
        padding-top: 100px;
        width: 100%;
    }
    .main-navigation ul a {
        font-size: 32px;
        line-height: 44px;
    }
    .main-navigation ul li.li-social a {
        font-size: 1rem;
        font-family: var(--text-font);
        line-height: 1.5;
        letter-spacing: .09px;
        text-decoration: underline;
        margin-right: 0;
    }
    .main-navigation ul li.li-map a, .main-navigation ul li.li-address a {
        font-size: 16px;
        line-height: 1.875rem;
    }
    .footer-bottom .elementor-widget-button .elementor-button {
        justify-content: center;
    }
    .footer-bottom>.e-con-inner{
        display: block !important;
        text-align: center !important;
    }
    .footer-bottom p{
        margin-bottom: 0;
    }
    .footer-bottom .row-button {
        margin-top: 0;
    }
    .hero-banner p br{
        display: none;
    }
    .site-branding a {
        display: block !important;
    }
    .elementor-widget-button .elementor-button:after,
    .site-header.has-scroll .site-branding .logo-black,
    .site-branding a.logo-black {
        display: none !important;
    }
    .elementor-button span {
        text-decoration: underline !important;
    }
    .footer-bottom .elementor-widget-button .elementor-button {
        justify-content: center;
    }
    .hero-banner h1 {
        margin-top: 0;
    }
}
@media screen and (max-width: 767px){
    .site-branding a {
        display: block;
        max-width: 100px;
    }
    .site-header .site-branding {
        width: 120px;
        transition: all 1s;
     }
     .site-branding a{
         max-width: 120px;
     }
     .site-header.is-loading .site-branding {
        width: 94px;
        transition: all 1s;
     }
    .hero-banner h2 {
        margin-top: 0;
    }
    .hero-banner .elementor-widget-image {
        position: relative;
        width: 100%;
        height: 100%;
        top: auto;
        right: auto;
    }
    .e-con.e-flex>.e-con-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .no-padding-mb >.e-con-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    header#masthead + div{
        padding-top: 80px;
    }
    .hero-banner {
        min-height: auto  !important;
    }
    .elementor-element {
        gap: 0 !important;
    }
    .footer-bottom {
        padding-bottom: 100px;
    }
    .elementor-widget-button .elementor-button {
        font-size: 14px;
    }
    .row-button {
        gap: 1rem !important;   
    }
    .menu-main-menu-container:after,
    .elementor-widget-text-editor p br{
        display: none;
    }
    html {
        scroll-padding-top: 80px;
    }
    .main-navigation ul a {
        font-size: 32px;
        line-height: 32px;
    }
    .main-navigation ul li.li-social a {
        padding: 10px 0;
    }
}
@media screen  and (max-width: 400px){
    .main-navigation ul a {
        font-size: 26px;
        line-height: 26px;
        padding: 10px 0;
    }
}