/* Base CSS */
:root {
    --primary-color: #193FFF;
    --white--color: #ffffff;
    --font: "Poppins", sans-serif;
}
html {
    font-size: 100%;
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a:hover, a:focus {
    color: inherit;
    text-decoration: none;
}
a:focus, input:focus, textarea:focus, button:focus {
    text-decoration: none;
    outline: none;
}
i, span, a {
    display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    font-family: var(--heading-font);
    opacity: 1;
}
h1{
    font-size: 48px;
}
h2{
    font-size: 40px;
}
h3{
    font-size: 27px;
    line-height: 33px;
}
h4{
    font-size: 20px;
    line-height: 30px;
}
ul, ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
p {
    margin: 0px;
    opacity: 0.7;
}
input, textarea {
    display: inherit;
}
label {
    margin-bottom: 0;
}
iframe {
    width: 100%;
    border: none;
    display: inherit;
}
img {
    max-width: 100%;
}
body {
    font-weight: normal;
    font-style: normal;
    font-weight: 400;
    font-family: var(--font);
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    background-color: var(--primary-dark-color);
    overflow-x: hidden;
}
@media (min-width: 1200px) {
    .container{
        max-width: 1364px;
    }
}
/*====== Extra CSS ======*/
.preloader{
    bottom: 0;
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}
.loader {
    animation: zoom-in-zoom-out 2s ease infinite;
}
@keyframes zoom-in-zoom-out {
    0% {
      scale: 1;
    }
    50% {
      scale: 1.1;
    }
    100% {
      scale: 1;
    }
}



.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.slick-slide {
    outline: 0;
}
.form_group {
    position: relative;
}
.form_control {
    width: 100%;
    border: none;
}
textarea.form_control {
    padding-top: 15px;
    display: inherit;
}
ul.social-link li {
    display: inline-block;
}
.p-r {
    position: relative;
}
.z-1 {
    z-index: 1;
}
.z--1 {
    z-index: -1;
}
.z-2 {
    z-index: 2;
}
.font-italic {
    font-style: italic;
}

@media (min-width: 1200px) {
    .container-1290 {
        max-width: 1320px;
    }
    .container-1520 {
        max-width: 1544px;
    }
    .container-1590 {
        max-width: 1614px;
    }
    .container-1780 {
        max-width: 1810px;
    }
    .row {
        --bs-gutter-x: 30px;
    }
    .pr-xl-40{
        padding-right: 40px;
    }
}
.g-0,.gx-0 {
    --bs-gutter-x: 0 !important;
}
.section-title span.sub-title{
    color: var(--primary-color);
    font-weight: 600;
    line-height: 27px;
}
.overlay{
    position: relative;
    z-index: 1;
}
.overlay:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 28, 0.60);
    backdrop-filter: blur(3px);
    z-index: -1;
}

/*===== All Bg =====*/

.primary-bg{
    background-color: var(--primary-color);
}
.secondary-dark-bg{
    background-color: var(--secondary-dark-color);
}

/*===== Theme Button =====*/

button{
    border: none;
}
.wrapper{
    padding: 50px;
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
}
.main-content{
    max-width: 1340px;
    margin: 0 auto;
}

.main-wrapper .left-content .brand-logo{
    margin-bottom: 200px;
}
.main-wrapper .left-content h1{
    font-weight: 600;
    margin-bottom: 35px;
}
.main-wrapper .left-content h6{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}
.main-wrapper .left-content p{
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.80);
}
.social-link li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-link li a:hover{
    background-color: var(--primary-color);
}

.opening-countdown .simply-countdown{
    display: flex;
    flex-wrap: wrap;
}
.opening-countdown .simply-countdown .simply-section{
    margin-right: 20px;
    margin-bottom: 30px;
}
.opening-countdown .simply-countdown .simply-section div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10)
}
.simply-amount{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-area{
    padding: 40px 50px 25px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px);
}


.contact-area  p{
    font-weight: 500;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
    opacity: 1;
}
.input-row{
    display: flex;
    flex-wrap: wrap;
}
.col-12{
    width: 100%;
}
.col-6{
    width: 50%;
}
.form-group{
    margin-bottom: 25px;
}
.text-center{
    text-align: center;
}
.form_control {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 28px;
}
.form_control::placeholder{
    color: rgba(255, 255, 255, 0.80);
}
.form-group h5,
label {
    color: #FFF;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}
.nice-select{
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1;
    z-index: 1;
    margin-bottom: 25px;
}
.nice-select:after{
    float: right;
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.nice-select.open:after{
    transform: rotate(-180deg);
}
.nice-select .list{
    color: #000;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-color: rgb(48 49 93);
    overflow-y: hidden;
    height: auto;
    padding: 0;
    width: 100%;
    margin-top: 0;
}
.nice-select .list li:not(:last-child){
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.nice-select .list li{
    color: rgba(255, 255, 255, 0.80);
    background-color: transparent;
    padding: 5px 20px;
    
}

.box-group{
    display: inline-flex;
}
.box-group label{
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.submit-button{
    width: 300px;
    margin: 0 auto;
    background-color: #193FFF;
    padding: 16px;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
}
.form-check{
    padding-left: 0;
}
.form-check  label{
    margin-bottom: 0;
}
.form-check .form-check-input{
    margin-left: 0;
    margin-right: 15px;
    background-color: transparent;
}


/* Modal styles */
.form-message.success{
    color: green;
}
.form-message.error{
    color: red;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}
.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;
    cursor: pointer;
}


/* Responsive CSS */

@media (min-width: 1200px) and (max-width: 1400px){
    .contact-area {
        padding: 40px 40px 25px;
    }
}
@media (max-width: 1200px){
    .left-content{
        margin-bottom: 50px;
    }
}
@media (max-width: 991px) {
    .main-wrapper .left-content .brand-logo {
        margin-bottom: 150px;
    }
    .left-content{
        text-align: center;
        margin-bottom: 50px;
    }
    .opening-countdown .simply-countdown{
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .contact-area{
        padding: 20px 12px;
    }
    .wrapper{
        padding: 20px 0;
    }
    .main-wrapper .left-content .brand-logo {
        margin-bottom: 120px;
    }
    .main-wrapper .left-content h1{
        font-size: 34px;
    }
    .left-content{
        text-align: center;
        margin-bottom: 50px;
    }
    .opening-countdown .simply-countdown{
        justify-content: center;
    }
    .opening-countdown .simply-countdown .simply-section div {
        width: 80px;
        height: 80px;
    }
    .opening-countdown .simply-countdown .simply-section {
        margin-right: 10px;
    }
    .simply-amount {
        font-size: 22px;
        margin-bottom: 2px;
    }
    .main-wrapper .left-content h6{
        font-size: 14px;
    }
    .main-wrapper .left-content p{
        font-size: 13px;
    }
    .contact-area p{
        font-size: 16px;
    }
}

@media (max-width: 450px) {

    .opening-countdown .simply-countdown{
        justify-content: center;
    }
    .opening-countdown .simply-countdown .simply-section div {
        width: 80px;
        height: 80px;
    }
    .opening-countdown .simply-countdown .simply-section {
        margin-right: 0;
        display: flex;
        justify-content: center;
        align-content: center;
        width:40%;
    }
    .main-wrapper .left-content h6{
        font-size: 13px;
    }
}