@font-face {
    font-family: 'Champagne & Limousines';
    src: url('fonts/ChampagneLimousines.woff2') format('woff2'),
        url('fonts/ChampagneLimousines.woff') format('woff'),
        url('fonts/ChampagneLimousines.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Champagne & Limousines';
    src: url('fonts/ChampagneLimousines-BoldItalic.woff2') format('woff2'),
        url('fonts/ChampagneLimousines-BoldItalic.woff') format('woff'),
        url('fonts/ChampagneLimousines-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Champagne & Limousines';
    src: url('fonts/ChampagneLimousines-Italic.woff2') format('woff2'),
        url('fonts/ChampagneLimousines-Italic.woff') format('woff'),
        url('fonts/ChampagneLimousines-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Champagne & Limousines';
    src: url('fonts/ChampagneLimousines-Bold.woff2') format('woff2'),
        url('fonts/ChampagneLimousines-Bold.woff') format('woff'),
        url('fonts/ChampagneLimousines-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



html {
    height: 100%;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Champagne & Limousines', Arial, sans-serif !important;
}

#loader {
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    opacity: 1;
}
#loader.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s linear 1s;
}
#loader>.container {
    position: relative;
    width: 100%;
    height: 100%;
}
.spinningLogoCont {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
}

.spinningLogo {
    width: 100%;
}

.anim-scale {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-animation: scale 1s ease-in-out infinite both;
            animation: scale 1s ease-in-out infinite both;
}

/**
* ----------------------------------------
* animation scale
* ----------------------------------------
*/
@-webkit-keyframes scale {
    0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    }
    50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    }
}
@keyframes scale {
    0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    }
    50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    }
}

.header {
    z-index: 998;
    width: 100%;
    /* padding: 10px; */
    /* box-shadow: 0px 0px 20px 0px var(--bg-color); */
}

.header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.header .logo-link {
    display: inline-block;
    background: var(--bg-color);
    padding: 10px;
    pointer-events: all;
}

.header .logo-link img {
    height: 80px;
}

.header .mobile-horizontal-menu {
    display: none;
    justify-content: left;
    background: white;
    margin: 5px 0px;
    padding: 5px 5px 5px 10px;
    text-align: center;
    color: #42b1d6;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: all;
}

.header .mobile-horizontal-menu span {
    line-height: 22px;
    display: inline-block;
    letter-spacing: 8px;
}

.hamburger-mini {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    transition-duration: 0.5s;
}
.hamburger-mini .icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 3px;
    width: 20px;
    top: 9px;
    right: 0px;
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
}
.hamburger-mini .icon:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 20px;
    height: 3px;
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
    content: "";
    left: 0px;
    top: -6px;
}
.hamburger-mini .icon:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 20px;
    height: 3px;
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
    content: "";
    left: 0px;
    top: 6px;
}
.menu.open .hamburger-mini .icon {
    transition: 0.5s;
}
.menu.open .hamburger-mini .icon:before {
    transform: rotateZ(-45deg) scaleX(0.75) translate(-7px, -3px);
}
.menu.open .hamburger-mini .icon:after {
    transform: rotateZ(45deg) scaleX(0.75) translate(-7px, 3px);
}
.hamburger-mini:hover {
    cursor: pointer;
}

.hamburger {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 35px;
    transition-duration: 0.5s;
}
.hamburger .icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 5px;
    width: 30px;
    top: 10px;
    right: 0px;
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
}
.hamburger .icon:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 30px;
    height: 5px;
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
    content: "";
    top: -10px;
}
.hamburger .icon:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 30px;
    height: 5px;
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
    content: "";
    top: 10px;
}
.hamburger.open .icon {
    transition: 0.5s;
}
.hamburger.open .icon:before {
    transform: rotateZ(-45deg) scaleX(0.75) translate(-11px, -3px);
}
.hamburger.open .icon:after {
    transform: rotateZ(45deg) scaleX(0.75) translate(-11px, 3px);
}
.hamburger:hover {
    cursor: pointer;
}

.header .nav-main {
    display: none;
}

.header .nav-main a {
    text-decoration: none;
    font-weight: 500;
    font-weight: bold;
    font-size: 18px;
    /* margin-left: 10px; */
}

.header .nav-main img {
    width: 24px;
}

.header .nav-main>ul {
    list-style: none;
    -webkit-padding-start: 0;
    /* margin: 0px 20px 0px 0px; */
}

.header .nav-mobile .lang-item img {
    width: 32px !important;
    height: 32px !important;
}

.header .nav-main .pll-parent-menu-item {
    backdrop-filter: none;
    border-radius: 20px;
    padding: 6px;
    background: #00000000;
    transition-duration: 0.25s;
}

.header .nav-main .pll-parent-menu-item:hover {
    background: #00000033;
}

.header .nav-main .pll-parent-menu-item ul {
    display: none;
}

.header .nav-mobile {
    position: absolute;
    top: 100px;
    left: 0px;
    width: 100%;
    height: calc(100% - 100px);
    overflow: hidden;
    z-index: 900;
    background: #ffffffbb;
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.4s;
}

.header .nav-mobile.open {
    opacity: 1;
    pointer-events: initial;
}

.header .nav-mobile>ul {
    list-style: none;
    -webkit-padding-start: 0px;
    text-align: center;
    padding: 30px;
    overflow: auto;
    max-height: 100%;
}

.header .nav-mobile .submenu {
    list-style: none;
    -webkit-padding-start: 0px;
    margin-top: 5px;
}

.header .nav-mobile li:not(.pll-parent-menu-item) .submenu {
    position: absolute;
    bottom: 20%;
    left: 8%;
}

.header .nav-mobile li:not(.pll-parent-menu-item) .submenu a::before {
    content: " ";
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid white;
    height: 10px;
    width: 10px;
    display: inline-block;
    margin-bottom: 3px;
    margin-left: 5px;
}

.header .nav-mobile li:not(.pll-parent-menu-item) .submenu a {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 20px;
    text-decoration: none;
    font-weight: 400;
    display: block;
    width: auto;
    margin-top: 5px;
    text-transform: uppercase;
    text-align: left;
}

.header .nav-mobile .pll-parent-menu-item>a {
    
}

.header .nav-mobile .pll-parent-menu-item .submenu li {
    display: inline;
}

.header .nav-mobile .mobile-menu-item {
    position: relative;
    margin-top: 20px;
}

.mobile-menu-inner {
    display: inline-block;
    position: relative;
}

.header .nav-mobile .mobile-menu-item>a, .header .nav-mobile .mobile-menu-item .mobile-menu-inner>a {
    position: absolute;
    top: 1%;
    left: 55%;
    width: 33%;
    text-align: right;
    color: #487497;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}

.header .nav-mobile .mobile-menu-item img {
    width: 100%;
}

.header .nav-mobile .mobile-menu-item span {
    position: absolute;
    top: 74%;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    color: rgb(96 211 232);
}

#content {
    flex: 1;
    overflow: auto;
}

#content .wrapper {
    height: 100%;
}

#content .wrapper .content-wrapper {
    height: 100%;
}

#pano {
    height: 100%;
}

#footer {
    box-shadow: 0px 0px 20px 0px var(--bg-color);
}

.message-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    padding: 20px;
    background: #00000033;
    border-radius: 100%;
    backdrop-filter: blur(40px);
}
.message-icon img {
    width: 42px;
}

#ajax-modal {
    display: none;
    transition: all 0.5s;
    opacity: 0;

    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 95%;
    z-index: 999;
    background: #ffffff;
    padding: 40px 0px 0px 0px;
}

#ajax-modal.active {
    display: block;
}

#ajax-modal.active.visible {
    display: block;
    opacity: 1;
    height: 100%;
}

#ajax-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-weight: 700;
    border: 1px solid black;
    border-radius: 10px;
    padding: 0px 10px;
    text-transform: uppercase;
}

#ajax-modal .content {
    max-height: 100%;
    overflow: auto;
}

#ajax-modal .content .infopoint-title-bg {
    background: #02a7ad1f;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#ajax-modal .content .infopoint-title-bg .copy {
    color: #49747f;
    font-size: 24px;
}

#ajax-modal .content h1, #ajax-modal .content h1 p {
    color: #49747f;
    font-size: 32px;
    font-weight: bold;
}

#ajax-modal .content h2, #ajax-modal .content h2 p {
    color: #49747f;
    font-size: 24px;
}

#ajax-modal .content p {
    color: #49747f;
}

#ajax-modal .content .full-width {
    width: 100%;
}

.spritespin-progress {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 45%;
}
.spritespin-progress-label {
    color: grey;
}
.spritespin-progress-bar {
    background-color: grey;
    height: 1px;
}

#splash {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 997;
    background: #00000040;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#splash img {
    -moz-user-select: none;
    pointer-events: none;
    max-width: 50%;
    max-height: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}

#contact-form {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
    display: none;
}

#contact-form .mobile {
    height: 100%;
}

#contact-form .header {
    background: #92ddda40;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#contact-form .header .logo {
    padding: 10px;
    display: inline-block;
}

#contact-form .header .logo img {
    height: 80px;
}

#contact-form .menu.cross {

}

#contact-form .menu.cross {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 35px;
    transition-duration: 0.5s;
    cursor: pointer;
}
#contact-form .menu.cross .icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 0px;
    width: 30px;
    top: 10px;
    right: 0px;
}

#contact-form .menu.cross .icon::before {
    content: " ";
    position: absolute;
    width: 50px;
    height: 6px;
    left: 50%;
    top: calc(50% + 6px);
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
    transform: translate(-50%, -50%) rotateZ(-45deg) scaleX(0.75);
}

#contact-form .menu.cross .icon::after {
    content: " ";
    position: absolute;
    width: 50px;
    height: 6px;
    left: 50%;
    top: calc(50% + 6px);
    background: rgb(96,211,232);
    background: linear-gradient(90deg, rgba(96,211,232,1) 20%, rgba(146,221,218,1) 66%);
    transform: translate(-50%, -50%) rotateZ(45deg) scaleX(0.75);
}

#contact-form .body {
    padding: 40px 50px 20px 50px;
    overflow: auto;
    height: calc(100% - 100px);
}

#contact-form .body h1 {
    font-size: 42px;
    font-weight: 600;
    color: #29abe2;
}

#contact-form .body input, #contact-form .body textarea {
    border: 0px;
    font-size: 24px;
    border-bottom: 1px solid #00000030;
    width: 100%;
}

#contact-form .wpcf7-spinner {
    display: none;
}

.wpcf7-checkbox .wpcf7-list-item {
    display: flex;
    align-items: baseline;
    margin: 0px;
    text-align: justify;
}

.wpcf7-checkbox .wpcf7-list-item input {
    flex: 1;
    margin-right: 10px;
}

.wpcf7-submit {
    background: #6ccce9;
    color: white;
    font-size: 32px;
    font-weight: 100;
    border-radius: 9999px;
    line-height: 40px;
}

#contact-form .desktop {
    display: none;
}

.grecaptcha-badge {
    opacity: 0;
    pointer-events: none;
}