@font-face {
    font-family: against-regular;
    src: url("../fonts/against-regular.otf") format("opentype");
}

@font-face {
    font-family: Gotham-Book;
    src: url("../fonts/Gotham-Book.otf") format("opentype");
}

@font-face {
    font-family: Gotham-Medium;
    src: url("../fonts/Gotham-Medium.otf") format("opentype");
}

@font-face {
    font-family: 'BellezaRegular';
    src: url('../fonts/BellezaRegular.eot');
    src: url('../fonts/BellezaRegular.eot') format('embedded-opentype'),
        url('../fonts/BellezaRegular.woff2') format('woff2'),
        url('../fonts/BellezaRegular.woff') format('woff'),
        url('../fonts/BellezaRegular.ttf') format('truetype'),
        url('../fonts/BellezaRegular.svg#BellezaRegular') format('svg');
}

@font-face {
    font-family: 'AvenirBook';
    src: url('../fonts/AvenirBook.eot');
    src: url('../fonts/AvenirBook.eot') format('embedded-opentype'),
        url('../fonts/AvenirBook.woff2') format('woff2'),
        url('../fonts/AvenirBook.woff') format('woff'),
        url('../fonts/AvenirBook.ttf') format('truetype'),
        url('../fonts/AvenirBook.svg#AvenirBook') format('svg');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #000000;
    overflow-x: hidden;
}

a {
    color: #000000;
    text-decoration: none;
}

/*
a:hover {
    color: #73c5eb;
    text-decoration: none;
}
*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    font-family: against-regular;
    /* color: #942391; */
    color: #5D2F8F;
    font-size: 40px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #000;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #000;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 50px;
    z-index: 9999;
    background: #333;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    /* -webkit-transition: all 0.5s; */
    /* transition: all 0.5s; */
    z-index: 997;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px -2px 5px #000;
    box-shadow: 0px -2px 5px #000;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px -2px 5px #000;
    box-shadow: 0px -2px 5px #000;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-width: 180px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: Gotham-Medium;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #ac53aa;
}

.header-scrolled .navbar a {
    color: #5d2f8f;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    /* border: 2px solid #47b2e4; */
    font-weight: 600;
    /* background: transparent linear-gradient(80deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    border-radius: 36px;
    cursor: pointer;
    background: #942391;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    /* background: transparent linear-gradient(80deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #47b2e4;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #000000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #ac53aa;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    /* font-size: 14px; */
    /* background: #37517e; */
}


#footer .footer-bottom {
    /* padding-top: 30px; */
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    float: none;
    text-align: justify;
    font-family: Gotham-Book;
    font-size: 12px;
    margin: 5px;
}
#footer .copyright 
#footer .credits {
    float: right;
    font-size: 13px;
}

#footer .credits a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.desk-custom-text {
    display: block;
}

.mob-custom-text {
    display: none;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

@media(max-width:767px) {
    img.child-img {
        /* width: 100%; */
        height: 350px;
    }

    .desk-custom-text {
        display: none;
    }

    .mob-custom-text {
        display: block;
    }
}


/*  NEW CSS START*/
.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.banner{
    padding-top: 90px;
}

.banner .banner-image img {
    width: 100%;
    /* height: 100vh; */
}

span.thin-line {
    /* background: transparent linear-gradient(86deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    display: block;
    width: 100%;
    height: 2px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form-wrapper form .form-control {
    border: 0.8958795666694641px solid #000000;
    border-radius: 36px;
}

.form-wrapper form .form-control::-webkit-input-placeholder {
    font-family: Gotham-Book;
    font-size: 12px;
    color: #929497;
}

.form-wrapper form .form-control:-ms-input-placeholder {
    font-family: Gotham-Book;
    font-size: 12px;
    color: #929497;
}

.form-wrapper form .form-control::placeholder {
    font-family: Gotham-Book;
    font-size: 12px;
    color: #929497;
}

.form-wrapper form label {
    font-family: Gotham-Book;
    font-size: 16px;
}

.form-wrapper .row-cols-lg-auto .mb-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form-wrapper {
    margin-top: 0px;
    margin-bottom: 10px;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}

.submit-btn {
    background: #fff;
    border-radius: 36px;
    /* padding: 10px 20px; */
    color: #000;
    font-size: 15px;
    font-family: Gotham-Medium;
    border: 0;
    width: 100%;
    height: 38px;
}

.section-1 {
    padding-bottom: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 3px 0px 5px #000;
    box-shadow: 3px 0px 5px #000;
    padding-top: 15px;
}

#section-2 {
    /* padding-top: 0; */
    /* margin-top: -200px; */
    /* z-index: -1; */
    /* position: relative; */
    /* padding-bottom: 0; */
}

.sec-2-head h2 {
    margin-bottom: 1rem;
    /* font-size: 32px; */
    /* line-height: 1.3; */
}

.sec-2-detail {
    background: rgb(255 255 255 / 48%) 0% 0% no-repeat padding-box;
    margin-left: -350px;
    padding: 50px 25px;
    position: relative;
}

.sec-2-detail::before {
    position: absolute;
    content: "";
    top: 0;
    right: 30%;
    /* background: transparent linear-gradient(89deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    display: block;
    width: 50px;
    height: 2px;
}

.sec-2-detail::after {
    position: absolute;
    content: "";
    bottom: -4px;
    right: 10%;
    /* background: transparent linear-gradient(89deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    display: block;
    width: 100px;
    height: 2px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sec-2-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.sec-2-txt p {
    margin-bottom: 0;
    font-family: Gotham-Book;
    color: #000000;
    font-size: 18px;
}

.section-2 .row-2 {
    margin-top: -80px;
    position: relative;
    /* z-index: -1; */
}

.sec-3-detail {
    background: rgb(255 255 255 / 48%) 0% 0% no-repeat padding-box;
    margin-right: -30%;
    padding: 50px 25px;
    position: relative;
    /*    z-index: 99;*/
}

.present-box {
    z-index: 99;
}

.sec-3-head p {}

.sec-3-detail p {
    margin-bottom: 0;
/*    text-align: right;*/
    font-family: Gotham-Book;
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
}

.sec-3-head {
    /* text-align: right; */
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

span.thick-line {
    /* background: transparent linear-gradient(86deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    display: block;
    width: 100px;
    height: 10px;
}

.sec-3-head h2 {
    margin-bottom: 0;
}

.sec-3-detail::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    /* background: transparent linear-gradient(89deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    display: block;
    width: 300px;
    height: 2px;
}

.sec-3-detail::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    /* background: transparent linear-gradient(89deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    display: block;
    width: 100px;
    height: 2px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sec-4-head span.thick-line {
    /* background: transparent linear-gradient(86deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    display: block;
    width: 300px;
    height: 5px;
    margin-bottom: 20px;
}

.sec-4-head h3 {
    font-family: 'BellezaRegular';
    font-size: 18px;
    line-height: 1.5;
    font-family: Gotham-Book;
}

.sec-4-disclaim {
    font-family: 'AvenirBook';
    margin-bottom: 0;
    font-size: 10px;
    color: #231F20;
}

.section-5 {
    position: relative;
    background: url(../img/img_sand.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    /* padding-top: 0; */
}

.sec-5-detail {
    margin-right: -400px;
    padding: 50px 50px;
    z-index: 99;
    position: relative;
}

.sec-5-head p {
    font-family: Gotham-Book;
    color: #000000;
    font-size: 18px;
}

.sec-5-detail p {
    margin-bottom: 15px;
    font-family: Gotham-Book;
    color: #000000;
    font-size: 18px;
}

.sec-5-head h2 {
    /* font-size: 32px; */
}

.land-txt {
    position: relative;
}

.land-txt::after {
    position: absolute;
    content: "";
    display: block;
    background: #fff;
    width: 100%;
    height: 55px;
    top: 0;
    z-index: -1;
}

.sec-7-head h2 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 20px;
    /* font-size: 45px; */
}

.know-why-btn {
    /* background: transparent linear-gradient(81deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    border-radius: 36px;
    padding: 15px 40px;
    color: #fff;
    font-size: 16px;
    font-family: Gotham-Medium;
    cursor: pointer;
    display: block;
    text-align: center;
}

.sec-5-detail h3 {
    color: #BB975E;
    width: 100%;
    font-size: 16px;
    /* background: #fff; */
    padding: 10px 0;
    font-family: Gotham-Medium;
    margin-bottom: 20px;
}

.price-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.price-detail h4 {
    font-size: 14px;
    margin-bottom: 0;
    /*	font-family: 'BellezaRegular';*/
    font-family: 'Gotham-Book';
    color: #fff;
}

.price-detail p {
    margin-bottom: 0px;
    color: #942391;
    font-family: 'Gotham-Book';
}

.section-7 {
    position: relative;
    background: url(../img/sec-7-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.soon-box {
    position: relative;
    background: url(../img/golden-bg.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /*    padding: 50px 0;*/
    text-align: center;
}

.soon-box p {
    margin-bottom: 0;
    font-family: 'AvenirBook';
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.footer {
    position: relative;
    background: #e1dbdb;
    color: #000;
    padding-top: 50px;
    padding-bottom: 50px;
}
.footer .social-links a{
    font-size: 40px;
}
.sucess-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sucess-box p {
    margin-bottom: 0;
    color: #6D6E70;
    font-size: 20px;
    font-family: 'AvenirBook';
    font-weight: 600;
}

.sucess-detail h2 {
    color: #c88ec7;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'AvenirBook';
    font-weight: 600;
    font-size: 25px;
}

.sucess-detail:after {
    position: absolute;
    content: "";
    background: #c88ec7;
    width: 200px;
    height: 2px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    /* bottom: 0; */
    margin-top: 50px;
}

.partner-detail1 {
    padding: 20px 0 50px;
}

.partner-detail1 h2 {
    color: #c88ec7;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 50px;
    color: #c88ec7;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'AvenirBook';
    font-weight: 600;
    font-size: 25px;
    line-height: 1.5;
}

.partner-detail {
    padding: 20px 0 500px;
}

.partner-detail h2 {
    color: #c88ec7;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 50px;
    color: #c88ec7;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'AvenirBook';
    font-weight: 600;
    font-size: 25px;
    line-height: 1.5;
}

.social-icon {
    margin: 0 auto;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

span.number-box {
    display: block;
    font-family: auto;
    /* font-family: against-regular; */
}

.price-detail-box {
    margin-left: -30px;
}

.soon-box h2 {
    color: #fff;
    letter-spacing: 22.15px;
    font-size: 40px;
}

.sucess-box img {
    width: 75px;
}

.sec-1-head h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    font-family: Gotham-Medium;
    color: #ac53aa;
    font-size: 20px;
}

.scroll-images {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.scroll-images::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #aaa;
    display: none;
}

.scroll-images::-webkit-scrollbar-thumb {
    background-color: black;
}

.child {
    min-width: 100%;
    height: 100%;
    margin: 1px 10px;
    /* overflow: hidden; */
    background-color: transparent;
}

.cover {
    padding: 0px 30px;
    position: relative;
}

.cover button {
    background: transparent;
    outline: none;
    border: 0;
    /* border-radius: 50%; */
    z-index: 3;
}

.slick-prev,
.slick-next {
    background: transparent;
    outline: none;
    border: 0;
    border-radius: 50%;
    z-index: 3;
    font-size: 40px;
}

/*
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background: #8d8d8d;
}
*/

.cover button i {
    color: #fff;
    font-size: 40px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 15px;
}

.left {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.right {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#knowWhyModal .modal-dialog {
    max-width: 95%;
}

#knowWhyModal .modal-dialog .modal-body img {
    width: 100%;
}

.btn-close {
    position: absolute;
    top: -8%;
    z-index: 9;
    right: 20px;
    color: #fff;
    opacity: 1;
    -webkit-filter: invert(1);
    filter: invert(1);
}


/*  NEW CSS START*/
/*************************************** SIDEBAR FORM CSS ************************************/

.sidebar-contact {
    position: fixed;
    top: 56%;
    right: -350px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 20px 20px;
    background: #fff;
    /*    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .5);*/
    /*    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 99
}

.sidebar-contact.active {
    right: 0;
    -webkit-box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    z-index: 999;
}

/*
.sidebar-contact input {
	width: 100%;
	height: 36px;
	padding: 5px;
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
	margin-bottom: 0px
}
*/

.sidebar-contact h2 {
    margin: 0 0 15px;
    padding: 0;
    color: #ac53aa;
    text-transform: uppercase;
    text-align: center;
    font-size: 25px;
    /* font-family: 'TrajanProBold_0'; */
    /*	font-family: "Barlow-ExtraBold";*/
    /* font-family: Gotham-Medium; */
}

.sidebar-contact textarea {
    height: 60px;
    resize: none;

}

.sidebar-contact textarea {
    margin-bottom: 0;
}

/*
.sidebar-contact buuto[type=submit] {
	background: #ca9d75;
	border: 1px solid #ca9d75;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	height: auto;
	padding: 10px;
	-webkit-transition: all .2s linear;
	transition: all .2s linear
}
*/

/*
.sidebar-contact input[type=submit]:focus,
.sidebar-contact input[type=submit]:hover {
	background-color: transparent;
	color: #ca9d75;
	-webkit-box-shadow: none;
	box-shadow: none
}
*/

.form-check .form-check-input {
    width: 15px;
    height: 15px;
}

.toggle.active {
    height: 35px;
    width: 35px;
    line-height: 35px;
    top: 0;
    left: -35px;
}

.toggle {
    /* background: transparent linear-gradient(80deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
}

.toggle {
    position: absolute;
    height: 35px;
    width: 160px;
    text-align: center;
    cursor: pointer;
    /* background: transparent linear-gradient(80deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    top: 58px;
    left: -98px;
    line-height: 36px;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    color: #000;
    border-radius: 72px 72px 0px 0px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    font-family: Gotham-Medium;
}

.toggle.active:before {
    position: absolute;
    content: 'X';
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    /* top: -2px; */
    left: 37%;
}

.toggle.active:before {
    content: 'X';
}

.toggle:before {
    content: 'Enquire Now';
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    /* font-weight: 800; */
    letter-spacing: 1px;
    font-family: "Barlow-ExtraBold";
    font-family: Gotham-Medium;
}

.sidebar-contact label.form-label.invisible {
    display: none;
}

.sidebar-contact label.form-label {
    font-size: 14px;
}

/*************************************** SIDEBAR FORM CSS ************************************/

a.getstarted {
    /* background: transparent linear-gradient(81deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    border-radius: 36px;
    padding: 10px 20px;
    color: #fff;
    font-size: 15px;
    font-family: Gotham-Medium;
    border: 0;
    cursor: pointer;
}

.modal-content {
    background: -webkit-gradient(linear, left top, right top, from(#942391), color-stop(25%, #b7b8bb), color-stop(50%, #c88ec7), color-stop(75%, #b7b8bb), to(#942391));
    /* background: linear-gradient(90deg, #942391 0%, #b7b8bb 25%, #c88ec7 50%, #b7b8bb 75%, #942391 100%); */
    background: #942391;
    border: 1px solid #fff;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-header h1 {
    /* font-family: Gotham-Medium; */
    color: #fff;
    letter-spacing: 1.2px;
}

.section-1 .form-wrapper .submit-btn,
.sidebar-contact .form-wrapper .submit-btn {
    background: -webkit-gradient(linear, left top, right top, from(#942391), color-stop(25%, #b7b8bb), color-stop(50%, #c88ec7), color-stop(75%, #b7b8bb), to(#942391));
    /* background: linear-gradient(90deg, #942391 0%, #b7b8bb 25%, #c88ec7 50%, #b7b8bb 75%, #942391 100%); */
    background: #942391;
    color: #fff;
}

.hoabl-logo {
    margin: 0 auto;
    display: block;
    width: 170px;
    margin-bottom: 50px;
}

.sec-5-detailWrap {
    position: relative;
    z-index: 99;
}

.pinchZoom {
    bottom: 0;
    right: 20px;
}

section#section-2,
section#section-3,
section#section-4,
section#section-5,
section#section-6,
section#section-7 {
    overflow-x: hidden;
}

.partner-slider .slick-slide img {
    margin: 0 auto;
    width: 120px;
}

.partner-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.slick-next,
.slick-prev {
    width: 40px;
    height: 40px;
    display: none;
}
.slick-prev {
    left: 50px;
}
.slick-next {
    right: 50px;
}
.land-section-scroll .slick-next,
.land-section-scroll .slick-prev {
    top: -25px;
    font-size: 20px;
    background: #942391;
    border-radius: 0;
    padding: 13px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.land-section-scroll .slick-next:hover,.land-section-scroll .slick-next:focus
.land-section-scroll .slick-prev:hover,.land-section-scroll .slick-prev:focus{
background:#000;
}
.land-section-scroll .slick-prev {
    right: 37px;
    left: auto;
}
.land-section-scroll .slick-next {
    right: 0px;
}
.slick-prev:before,
.slick-next:before {
    display: none;
}

.magnify {
    width: 100%;
}
.img-magnifier-container {
  position:relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 300px;
  height: 300px;
  display:none
}
.img-magnifier-container:hover .img-magnifier-glass{
display:block
}
.text-justify {
    text-align: justify !important
}
.call-enquire {
    display: flex;
    height: 40px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    background: -webkit-gradient(linear, left top, right top, from(#942391), color-stop(25%, #b7b8bb), color-stop(50%, #c88ec7), color-stop(75%, #b7b8bb), to(#942391));
    /* background: linear-gradient(90deg, #942391 0%, #b7b8bb 25%, #c88ec7 50%, #b7b8bb 75%, #942391 100%); */
    background: #942391;
    bottom: 0;
    left: 0px;
    line-height: 44px;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-decoration: none;
    color: #fff;
    font-family: Gotham-Book;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: auto;
}

.btn-enquire-mob::after {
    background: #fff;
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    top: 0;
    left: 117%;
}

.btn-enquire-mob {
    position: relative;
}

.btn-call-desk {
    position: fixed;
    top: 55%;
    right: 3px;
    /* background: transparent linear-gradient(80deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 25px;
}

.btn-call-desk i {
    font-size: 20px;
}

/* .d-none{
    display: none !important;
} */

.project-highlights{
    padding: 4rem 0;

}

.project-highlights .highlight-box{
    padding: 1rem 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
}

.highlight-box .icon-box{
        /* background: transparent linear-gradient(40deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
        background: #942391;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            text-align: center;
            padding: 5%;
            margin: 1rem 2rem;
            position: relative;
}

.highlight-box .text-box{
    padding: 0 4rem 0 1rem;
}

.highlight-box .icon-box i{
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    display: flex;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

.highlight-box .text-box p{
    font-size: 18px;
        line-height: 1.5;
}

.inner_box .text_format{
    display: block;
        margin-bottom: 1rem;
        padding-left: 4rem;
}

.inner_box .text_format .big_text{
    font-size: 40px;
        color: #942391;
        font-weight: 500;
        font-family: "EB Garamond", serif;
        margin-right: 10px;
}

.inner_box .text_format .small_text{
    font-weight: 600;
}

.inventory{
    /* background: transparent linear-gradient(80deg, #942391 0%, #ac53aa 20%, #c88ec7 39%, #c88ec7 64%, #ac53aa 81%, #942391 100%) 0% 0% no-repeat padding-box; */
    background: #942391;
}

.inventory .inventory-heading h3{
    color: #fff;
}

.inventory .inventory-sub-head h2{
        font-size: 4rem;
            color: #fff;
}

.icon{
    margin-bottom: 1rem;
    text-align: center;
}

.icon i{
    font-size: 60px;
}

.text-desc{
    text-align: center;
    line-height: 1.5;
}

.offer-box{
    padding: 2rem 1rem;
        text-align: center;
        background: #5d2f8f;
        color: #fff;
}

.accordion-header{
    font-family: 'Gotham-Book';
}

.bg-grey{
    background: #f8f8f8;
}
.bg-white{
    background: #fff !important;
}
@media (max-width: 768px) {
    .banner {
            padding-top: 0;
        }

    .project-highlights .highlight-box{
        flex-flow: column;
        padding: 1rem;
    }
    .highlight-box .icon-box {
        width: 80px;
        text-align: center;
    }

    .highlight-box .text-box {
        padding: 0 1rem;
        text-align: center;
    }

    .inventory .inventory-heading h3{
        font-size: 28px;
    }
    .inventory .inventory-sub-head h2 {
        font-size: 2rem;
        color: #fff;
    }
}