:root {
    --colorTheme: #222f23;
    --colorGreen: #8ba657;
    --colorWhite: #ededed;
    --colorBlack: #191919;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    /*background: linear-gradient(34deg, #182c21 0%, #2a492d 100%);*/
    background-color: var(--colorTheme);
}
@font-face {
    font-family: "Gotham Light";
    src: url('../fonts/GothamLight.otf') format('opentype');
}
@font-face {
    font-family: 'Gotham Bold';
    src: url('../fonts/GothamBold.otf') format('opentype');
}
@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/GothamBook.otf') format('opentype');
}
input,
select,
button {
    outline: none;
    box-shadow: none;
}
input:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}
a {
    text-decoration: none;
}
a:hover {
    transition: all 0.4s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham Bold';
}
p, a {
    font-family: "Gotham Light";
}
.thm-btn {
    font-size: 16px;
    font-family: 'Gotham Book';
    color: #ededed;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorGreen);
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    display: inline-block;
}
.thm-btn:hover {
    color: var(--colorBlack);
    background-color: var(--colorWhite);
    transition: all 0.4s ease-in-out;
}
.thm-btn-1 {
    font-size: 16px;
    font-family: 'Gotham Book';
    color: var(--colorBlack);
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorWhite);
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    display: inline-block;
}
.thm-btn-1:hover {
    color: var(--colorBlack);
    background-color: var(--colorGreen);
    transition: all 0.4s ease-in-out;
}

/*-- Start Header --*/
.header {
    padding: 30px 18px 0;
    transition: all 0.4s ease-in-out;
} 
.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /*background-color: #2a492d;
    box-shadow: 0 0 10px #222f23;*/
    background-color: #222f23;
    box-shadow: 0 0 10px #0c110c;
}
.header.header-sticky.is-sticky {
    padding: 16px 18px;
}
.header .sidebar-menu .openbtn {
    width: 50px;
    height: 50px;
    background-color: var(--colorGreen);
    border-radius: 50px;
    border: none;
}
.header .sidebar-menu .openbtn img {
    width: 25px;
}
.header .header-logo img {
    height: 50px;
}
.sidepanel {
    width: 100%;
    min-height: 100vh;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background-color: var(--colorTheme);
    display: flex;              
    flex-direction: column;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.sidepanel.active {
    opacity: 1;            
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.header-menu-top {
    padding-bottom: 30px;
}
.sidebar-menu .close-box {
    position: relative;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .sidepanel .close-box button {
    font-size: 20px;
    font-family: 'Gotham Book';
    color: var(--colorWhite);
    text-align: center;
    background-color: transparent;
    padding: 0;
    border: none;
    margin-left: auto;
    border-radius: 0;
    float: right;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .sidepanel .close-box button i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--colorGreen);
    border-radius: 50px;
    margin-right: 15px;
    color: var(--colorWhite);
}
.sidebar-menu .sidepanel .close-box button:hover {
    color: var(--colorWhite);
}
.header-menu-logo img {
    height: 50px;
}
.header-menu-link {
    width: 66%;
    margin-top: 30px;
}
.header-menu-link ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.header-menu-link ul li {
    margin-bottom: 30px;
}
.header-menu-link ul li a {
    font-size: 50px;
    font-family: 'Gotham Bold';
    color: var(--colorWhite);
}
.header-menu-link ul li a:hover {
    color: var(--colorGreen);
    text-decoration: underline;
}
.header-menu-link ul li ul {
    margin-left: 85px;
}
.header-menu-link ul li ul li {
    margin-bottom: 12px;
}
.header-menu-link ul li ul li a {
    font-size: 46px;
    font-family: 'Gotham Light';
    color: var(--colorWhite);
}
.header-menu-btm {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-top: auto;
}
.header-menu-contact p {
    font-size: 16px;
    color: var(--colorWhite);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.header-menu-contact p a {
    color: var(--colorWhite);
}
.header-menu-contact p a:hover {
    color: var(--colorGreen);
}
.header-menu-contact p:last-child {
    margin-bottom: 0;
}
.header-menu-social ul {    
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    row-gap: 12px;
}
.header-menu-social ul li {
    position: relative;
}
.header-menu-social ul li a {
    font-size: 16px;
    color: var(--colorWhite);
    letter-spacing: 1px;
    padding: 0 12px;
}
.header-menu-social ul li a:hover {
    color: var(--colorGreen);
}
.header-menu-social ul li::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    width: 2px;
    height: 19px;
    background-color: var(--colorWhite);
}
.header-menu-social ul li:last-child a { 
    padding-right: 0;
}
.header-menu-social ul li:last-child::after {
    display: none;
}
/*-- End Header --*/

/*-- Start --*/
.main-slider {
    margin: 30px 30px 0;
    position: relative;
}
.main-slider .owl-carousel .owl-item img {
    width: auto;
    margin: 0;
}
.main-slider .owl-carousel .item .slide-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.main-slider .owl-carousel .item .slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    opacity: 0.1;
}
.main-slider .home-slide-cnt {
    position: relative;
    padding: 200px 80px;
}
.main-slider .home-slide-cnt h1 {
    font-size: 72px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 50px;
}
.main-slider .home-slide-cnt a {
    font-size: 20px;
    color: var(--colorBlack);
    letter-spacing: 2px;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
}
.main-slider .home-slide-cnt a:hover {
    color: var(--colorGreen);
}
/*-- End --*/

/*-- Start --*/
.opening {
    padding: 100px 0;
}
.g-100 {
    --bs-gutter-y: 100px;
    --bs-gutter-x: 100px;
}
.opening-images img {
    width: 550px;
    height: 700px;
    object-fit: cover;
    will-change: transform;
}
.opening-images-2 img {
    width: 716px;
    height: 434px;
    object-fit: cover;
    will-change: transform;
}
.opening-images-3 img {
    width: 650px;
    height: 580px;
    object-fit: cover;
    will-change: transform;
}
.opening-images-4 img {
    width: 650px;
    height: 803px;
    object-fit: cover;
    will-change: transform;
    margin-top: 200px;
}
.opening-images img,
.opening-images-2 img,
.opening-images-3 img,
.opening-images-4 img {
    filter: blur(10px);
    transition: filter 0.2s linear;
}
.opening-cnt {
    margin-top: 60px;
    margin-right: 277px;
    margin-bottom: 80px;
}
.opening-cnt h6 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    line-height: 48px;
    margin-bottom: 20px;
}
.opening-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 20px;
}
.opening-cnt p:last-child {
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start --*/
.studio-slider {
    position: relative;
    margin: 0 30px 100px;
}
.studio-slider .owl-carousel .item .studio-slide-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 850px;
    display: flex;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-studio-cnt {
    max-width: 616px;
    margin: 200px 70px;
    padding: 40px;
    background-color: rgb(0 0 0 / 70%);
    box-shadow: 0px 16px 38.22px 10.78px rgba(32, 32, 32, 0.43);
}
.home-studio-cnt h2 {
    font-size: 72px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 30px;
}
.home-studio-cnt p {
    font-size: 16px;
    color: var(--colorWhite);
    line-height: 32px;
}
.home-studio-desc {
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 7;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    height: 240px;
}
.home-studio-cnt .thm-btn {
    margin-top: 16px;
}
.studio-slider .owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent;
}
.studio-slider .owl-theme .owl-nav {
    position: absolute;
    bottom: 23px;
    width: 100%;
    margin-top: 0;
}
.studio-slider .owl-carousel .owl-nav button.owl-next {
    float: right;
    transform: rotate(-90deg);
    margin-right: 45px;
}
.studio-slider .owl-carousel .owl-nav button.owl-prev {
    float: left;
    transform: rotate(-90deg);
    margin-left: 45px;
}
.studio-slider .owl-theme .owl-dots {
    background-color: rgb(0 0 0 / 70%);
    margin-top: 20px;
    text-align: center;
    width: fit-content;
    padding: 12px 24px 12px 98px;
    position: absolute;
    left: 115px;
    bottom: 30px;
}
.studio-slider .owl-theme .owl-dots::before {
    content: "Studios";
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-family: 'Gotham Book';
    color: rgb(237 237 237 / 50%);
    position: absolute;
    left: 24px;
    top: 12px;
    letter-spacing: 1px;
}
.studio-slider .owl-theme .owl-dots .owl-dot {
    font-size: 16px;
    font-family: 'Gotham Book';
    color: rgb(237 237 237 / 50%);
    margin: 0;
    padding: 0 16px!important;
    border-right: 1px solid rgb(237 237 237 / 50%);
    line-height: 20px;
}
.studio-slider .owl-theme .owl-dots .owl-dot:last-child {
    border-right: 0;
    padding-right: 0!important;
} 
.studio-slider .owl-theme .owl-dots .owl-dot span,
.studio-slider .owl-theme .owl-dots .owl-dot.active span {
    display: none;
}
.studio-slider .owl-theme .owl-dots .owl-dot.active {
    color: var(--colorGreen);
}
/*-- End --*/

/*-- Start --*/
.gas-kit {
    position: relative;
    overflow: hidden;
    padding: 100px 12px;
    min-height: 756px;
    margin: 0 30px 100px;
    display: flex;
    align-items: center;
}
.gas-kit .gas-kit-bg {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    width: 100%;
    height: 100%;
    transition: filter 0.4s ease-in-out;
    z-index: -1;
}
.gas-kit.active .gas-kit-bg {
    filter: blur(10px);
}
.gas-kit-cnt {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.6s ease-in-out,
        visibility 0.6s ease-in-out;
}
.gas-kit.active .gas-kit-cnt {
    opacity: 1;
    visibility: visible;
}
.gas-kit-cnt img {
    margin-bottom: 40px;
}   
.gas-kit-cnt h6 {   
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    line-height: 48px;
    margin-bottom: 20px;
}
.gas-kit-cnt p {
    font-size: 16px;
    color: var(--colorWhite);
    line-height: 24px;
    margin-bottom: 30px;
}
/*-- End --*/

/*-- Start --*/
.noco {
    position: relative;
    overflow: hidden;
    padding: 100px 12px;
    min-height: 756px;
    margin: 0 30px 100px;
    display: flex;
    align-items: center;
}
.noco .noco-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    width: 100%;
    height: 100%;
    transition: filter 0.4s ease-in-out;
    z-index: -1;
}
.noco.active .noco-bg {
    filter: blur(10px);
}
.noco-cnt {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.6s ease-in-out,
        visibility 0.6s ease-in-out;
}
.noco.active .noco-cnt {
    opacity: 1;
    visibility: visible;
}
.noco-cnt img {
    margin-bottom: 40px;
}   
.noco-cnt h6 {   
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    line-height: 48px;
    margin-bottom: 20px;
}
.noco-cnt p {
    font-size: 16px;
    color: var(--colorWhite);
    line-height: 24px;
    margin-bottom: 30px;
}
/*-- End --*/

/*-- Start --*/
.studio-main {
    padding: 50px 0 100px;
}
.studio-main .g-5 {
    --bs-gutter-x: 60px;
}
.studio-main-cnt.mr-cnt {
    margin-right: 145px;
}
.studio-main-cnt h1 {
    font-size: 72px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 20px;
}
.studio-main-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 20px;
}
.studio-main-cnt p:last-child {
    margin-bottom: 0;
}
.food-drink-logo {
    width: max-content;
    text-align: center;
    margin-bottom: 30px;
}
.food-drink-logo img:first-child {
    max-height: 52px;
}
.food-drink-logo img:last-child {
    max-height: 50px;
}
.food-drink-logo span {
    font-size: 46px;
    font-family: 'Gotham Bold';
    color: #f7f2ec;
    display: block;
    margin: 8px 0;
}
.studio-main-img img {
    width: 100%;
    height: 850px;
    object-fit: cover;
}
.production-ready {
    padding: 100px 12px 148px;
    margin: 0 30px;
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.production-ready .production-ready-bg {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    height: 100%;
    transition: filter 0.4s ease;
    z-index: -1;
}
.production-ready.p-100 {
    padding: 100px 12px;
    min-height: 700px;
    display: flex;
    align-items: center;
}
.production-ready.m-50 {
    margin-top: 50px;
}
.production-ready::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorGreen);
    opacity: 0;
    transition: opacity 0.6s ease;
}
.production-ready > * {
    position: relative;
    z-index: 2;
}
.production-ready.overlay-active::before {
    opacity: 1;
}
.production-ready.overlay-remove::before {
    opacity: 0;
}
.production-ready-cnt {
    font-size: 128px;
    font-family: 'Gotham Bold';
    font-weight: bold;
    color: #ffffff;
    line-height: 170px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0s;
}
.production-ready-cnt.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
.production-ready-cnt h2 {
    font-size: 64px;
    color: #f2ece5;
    margin-bottom: 30px;
}
.production-ready-cnt p {
    font-size: 18px;
    color: #f2ece5;
    line-height: 36px;
    margin-bottom: 12px;
} 
.production-ready-cnt p:last-child {
    margin-bottom: 0;
}
.the-space {
    padding: 100px 0;
}
.the-space-cnt {
    width: 33%;
    position: absolute;
    z-index: 1;
    background-color: var(--colorTheme);
    padding: 30px;
}
.the-space-cnt h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 20px;
}
.the-space-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 12px;
}
.the-space-cnt p:last-child {
    margin-bottom: 0;
}
.the-space-img {
    padding-top: 30px;
    padding-left: 15%;
}
.the-space-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    will-change: transform;
}
.the-space-right {
    padding: 100px 0;
} 
.the-space-right .the-space-cnt {
    right: 12px;
}
.the-space-right .the-space-img {
    padding-right: 15%;
    padding-left: 0;
}
.the-space-img img,
.the-space-right .the-space-img img {
    filter: blur(5px);
    transition: filter 0.6s ease;
}
.technical-specifications {
    background-color: #f7f2ec;
    padding: 100px 12px;
    margin: 0 30px;
}
.technical-specifications-cnt h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 40px;
}
.technical-specifications-cnt h5 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorBlack);
}
.technical-specifications-cnt ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.technical-specifications-cnt ul li {
    font-size: 18px;
    font-family: "Gotham Light";
    color: var(--colorBlack);
    line-height: 36px;
}
.technical-specifications-link a {
    font-size: 16px;
    font-family: "Gotham Bold";
    color: var(--colorBlack);
    letter-spacing: 1px;
}
.technical-specifications-link a:hover {
    color: var(--colorGreen);
}
.technical-specifications-img-box {
    background-color: #ffffff;
    padding: 30px 0;
}
.technical-specifications-cnt-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.technical-specifications-img {
    padding: 50px 0 0;
}
.talk-to-the {
    background-color: var(--colorBlack);
    padding: 100px 12px;
    margin: 100px 30px;
}
.talk-to-the-cnt h2 {
    font-size: 36px;
    font-weight: bold;
    color: #f7f2ec;
    margin-bottom: 40px;
}
.talk-to-the-cnt h5 {
    font-size: 24px;
    font-weight: bold;
    color: #f7f2ec;
    margin-bottom: 30px;
}
.talk-to-the-cnt a {
    font-size: 20px;
    color: #f7f2ec;
    display: block;
    margin-bottom: 16px;
}
.talk-to-the-cnt a:hover {
    color: var(--colorGreen);
}
.talk-to-the-form {
    position: relative;
}
.talk-to-the-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: -48px;
    width: 1px;
    height: 100%;
    background-color: #ffffff;
}
.talk-to-the-form h5 {
    font-size: 24px;
    font-weight: bold;
    color: #f7f2ec;
    margin-bottom: 12px;
}
.talk-to-the-form .form-control {
    font-size: 16px;
    font-family: 'Gotham Book';
    font-weight: 600;
    background-color: #f7f2ec;
    border: none;
    border-radius: 0;
    padding: 12px 16px;
}
.talk-to-the-form .btn {
    font-size: 16px;
    font-weight: bold;
    color: var(--colorWhite);
    letter-spacing: 1px;
    border: none;
    background-color: transparent;
}
.talk-to-the-form .btn:hover {
    color: var(--colorGreen);
}
.studio-list {
    padding: 0 0 100px;
}
.studio-box {
    position: relative;
}
.studio-box img {
    width: 100%;
    height: 457px;
    object-fit: cover;
    will-change: transform;
}
.studio-box-cnt {
    padding: 20px;
    position: absolute;
    bottom: 0;
}
.studio-box-cnt h3 {
    font-size: 32px;
    font-weight: bold;
    color: #f7f2ec;
    margin-bottom: 0;
} 
.studio-box:hover img {
    filter: blur(5px);
    transition: all 0.5s ease-in-out;
}
/*-- End --*/

/*-- Start --*/
.fully-serviced-studio {
    position: relative;
    overflow: hidden;
    padding: 100px 12px;
    min-height: 756px;
    margin: 100px 30px;
    display: flex;
    align-items: center;
}
.fully-serviced-studio .fully-serviced-studio-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    height: 100%;
    transition: filter 0.4s ease;
    z-index: -1;
}
.fully-serviced-studio.active .fully-serviced-studio-bg {
    filter: blur(10px);
}
.fully-serviced-studio-cnt {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}
.fully-serviced-studio.active .fully-serviced-studio-cnt {
    opacity: 1;
    visibility: visible;
}  
.fully-serviced-studio-cnt h2 {   
    font-size: 60px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 30px;
}
.fully-serviced-studio-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 20px;
}
/*-- End --*/

/*-- Start --*/
.lunch-crew-main {
    background-color: #f2ece5;
    margin: 0 30px 100px;
}
.lunch-crew {
    padding: 100px 0;
}
.lunch-crew-cnt {
    width: 50%;
    position: absolute;
    right: 0;
    z-index: 1;
    background-color: #f2ece5;
    padding: 0 72px 60px 60px;
}
.lunch-crew-cnt h2 {
    font-size: 60px;
    font-weight: bold;
    color: var(--colorTheme);
    margin-bottom: 20px;
}
.lunch-crew-cnt p {
    font-size: 18px;
    color: var(--colorTheme);
    line-height: 36px;
    margin-bottom: 12px;
}
.lunch-crew-cnt p:last-child {
    margin-bottom: 0;
}
.lunch-crew-img {
    padding-top: 174px;
}
.lunch-crew-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    will-change: transform;
}
.lunch-crew-left {
    padding: 65px 0 100px;
} 
.lunch-crew-left .lunch-crew-cnt {
    left: 0;
    padding: 0 60px 60px 72px;
}
.lunch-crew-img img,
.lunch-crew-left .lunch-crew-img img {
    filter: blur(5px);
    transition: filter 0.6s ease;
}
/*-- End --*/

/*-- Start --*/
.green-energy {
    padding: 100px 12px;
    margin: 100px 30px 0;
    background-color: #f2ece5;
}
.green-energy-cnt {
    height: 100%;
}
.green-energy-cnt h3 {
    font-size: 46px;
    color: var(--colorTheme);
    margin-bottom: 30px;
}
.green-energy-cnt p {
    font-size: 18px;
    color: var(--colorTheme);
    line-height: 36px;
}
/*-- End --*/

/*-- Start --*/
.faqs {
    padding: 100px 12px;
    margin: 100px 30px 0;
    background-color: #f2ece5;
}
.faqs-cnt {
    margin-bottom: 30px;
}
.faqs-cnt:last-child {
    margin-bottom: 0;
}
.faqs-cnt h4 {
    font-size: 32px;
    color: var(--colorTheme);
    margin-bottom: 12px;
}
.faqs-cnt p {
    font-size: 18px;
    color: var(--colorTheme);
    line-height: 36px;
    margin-bottom: 20px;
}
.faqs-cnt p a {
    color: var(--colorTheme);
    font-family: 'Gotham Bold';
    text-decoration: underline;
}
.faqs-cnt p:last-child {
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start --*/
.terms-conditions {
    padding: 100px 12px;
    margin: 50px 30px 0;
    background-color: #f2ece5;
}
.terms-conditions h1 {
    font-size: 64px;
    color: var(--colorTheme);
    margin-bottom: 30px;
}
.terms-conditions-cnt {
    margin-bottom: 30px;
}
.terms-conditions-cnt:last-child {
    margin-bottom: 0;
}
.terms-conditions-cnt h4 {
    font-size: 32px;
    color: var(--colorTheme);
    margin-bottom: 12px;
}
.terms-conditions-cnt p {
    font-size: 18px;
    color: var(--colorTheme);
    line-height: 36px;
    margin-bottom: 20px;
}
.terms-conditions-cnt p a {
    color: var(--colorTheme);
    font-family: 'Gotham Bold';
    text-decoration: underline;
}
.terms-conditions-cnt p:last-child {
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start --*/
.contact {
    position: relative;
}
.contact-map {
    padding: 50px 0 0;
    margin: 0 18px;
}
.contact-map iframe {
    width: 100%;
    min-height: 700px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.contact-info {
    background-color: #0c0c0c;
    padding: 40px;
    position: absolute;
    left: 100px;
    bottom: 130px;
}
.contact-info img {
    max-height: 46px;
    margin-bottom: 30px;
}
.contact-info p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.contact-info p:last-child {
    margin-bottom: 0;
}
.contact-info p a {
    color: #f7f2ec;
    display: block;
}
.contact-info p a:hover {
    color: var(--colorGreen);
}
/*-- End --*/

/*-- Start --*/
.footer {
    margin: 0 30px;
}
.footer-sign-up {
    background-color: var(--colorGreen);
    padding: 18px 30px;
}
.footer-sign-up p {
    font-size: 16px;
    color: var(--colorWhite);
    letter-spacing: 2px;
    margin-bottom: 0;
}
.footer-sign-up .form-control {
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Gotham Book';
    font-weight: 600;
    color: var(--colorBlack);
    background-color: #f7f2ec;
    min-width: 360px;
    border: none;
    border-radius: 0;
}
.footer-sign-up .thm-btn-1 {
    background-color: #f7f2ec;
}
.footer-box {
    background-color: #f7f2ec;
    margin-top: 30px;
    padding: 50px 30px 0;
    overflow: hidden;
}
.footer .footer-link ul {
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.footer .footer-link ul li {
    margin-bottom: 12px;
}
.footer .footer-link ul li a {
    font-size: 16px;
    color: var(--colorBlack);
    letter-spacing: 1px;
}
.footer .footer-link ul li a:hover {
    color: var(--colorGreen);
}
.footer-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.footer-address p {
    font-size: 16px;
    color: var(--colorBlack);
    letter-spacing: 1px;
}
.footer-contact {
    margin-top: auto;
}
.footer-contact p {
    font-size: 16px;
    color: var(--colorBlack);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.footer-contact p a {
    color: var(--colorBlack);
}
.footer-contact p a:hover {
    color: var(--colorGreen);
}
.footer-logo {
    margin-top: 50px;
    margin-bottom: -8px;
}
.footer-logo img {
    max-width: 70%;
}
.footer-btm {
    padding: 30px 0;
}
.footer-btm img {
    max-width: 93px;
}
.footer-btm p {
    font-size: 16px;
    color: var(--colorWhite);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.footer-btm p a {
    color: var(--colorWhite);
}
.footer-btm p a:hover {
    color: var(--colorGreen);
}
/*-- End --*/

.wpcf7-spinner {
    position: absolute;
    right: 0;
    bottom: 0;
}