* {
    padding: 0;
    margin: 0;
    border: none;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Black.woff2') format('woff2'),
        url('../fonts/Aeonik-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-BlackItalic.woff2') format('woff2'),
        url('../fonts/Aeonik-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Bold.woff2') format('woff2'),
        url('../fonts/Aeonik-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-BoldItalic.woff2') format('woff2'),
        url('../fonts/Aeonik-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Medium.woff2') format('woff2'),
        url('../fonts/Aeonik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-MediumItalic.woff2') format('woff2'),
        url('../fonts/Aeonik-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Regular.woff2') format('woff2'),
        url('../fonts/Aeonik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-RegularItalic.woff2') format('woff2'),
        url('../fonts/Aeonik-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    --app-height: 100vh;
    --combined-height: 0;
    --header-height: 0;
    --white: #FFFFFF;
    --black: #000000;
    --pink: #AC2C73;
    --violet: #5F2775;
    --grey: #333333;
    --pink-gradient: linear-gradient(90deg, #AC2C73 0%, #5F2775 100%);
    --trans: all 0.4s ease-in-out;
}

body {
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    font-family: 'Aeonik';
    overflow-x: hidden;
    background-color: var(--white);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    color: #000;
}

button {
    cursor: pointer;
    opacity: 1;
}

img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--grey);
}

*:focus {
    outline: none;
}

.wrapper {
    display: block;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.container-xl {
    max-width: 1500px;
    padding: 0 30px;
    margin: 0 auto;
}

.container {
    max-width: 1356px;
    padding: 0 30px;
    margin: 0 auto;
}

.common-sec {
    padding: 120px 0;
}

.common-half-sec {
    padding: 50px 0
}

/* button */
.btn {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    border-radius: 10px;
    padding: 17px 16px;
    min-width: auto;
    overflow: hidden;
    border: 1px solid var(--black);
    z-index: 2;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.btn::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -40px;
    background-color: var(--white);
    border-radius: 50%;
    aspect-ratio: 1;
    width: 5%;
    margin: auto;
    transform: translate(-50%, 30%);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn .icon {
    background-color: var(--white);
    height: 14px;
}

.btn.btn-outline {
    background-color: transparent;
    color: var(--pink);
    border-color: var(--pink);
}

.btn.btn-outline:before {
    background: var(--pink-gradient);
}

.btn.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn.btn-outline-white:before {
    background-color: var(--pink);
}

.btn.btn-white {
    background-color: var(--white);
    color: var(--pink);
    border-color: var(--white);
}

.btn.btn-white:before {
    background-color: var(--black);
}

.btn.btn-white .icon {
    background-color: var(--pink);
}

.btn.btn-black {
    background-color: rgba(0, 0, 0, 0.48);
    color: var(--white);
    border-color: transparent;
    backdrop-filter: blur(10px);
}

.btn.btn-black:before {
    background-color: var(--black);
}

.btn.btn-black .icon {
    background-color: var(--white);
}

.btn.btn-blue {
    background-color: var(--pink);
    color: var(--white);
    border-color: transparent;
}

.btn.btn-blue:before {
    background-color: var(--black);
}

.btn.btn-blue .icon {
    background-color: var(--white);
}


.btn:focus {
    box-shadow: none;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 14px;
}

.btn.btn-gradient {
    border: none;
    background: linear-gradient(90deg, #CF3272 0%, #6F2E76 100%);
    color: #fff;
}

.btn.btn-gradient::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 100%;
    left: 0;
    top: 0;
    background: 100px;
    transition: all 0.5s;
    z-index: -1;
    border-radius: unset;
    transform: unset;
    bottom: inherit;
    background: linear-gradient(90deg, #CF3272 0%, #6F2E76 85%, #CF3272 100%);
}


@media (hover:hover) {
    .btn:hover::before {
        width: 140%;
    }

    .btn:hover {
        color: var(--black);
        background-color: transparent;
        border-color: var(--black);
    }

    .btn:hover .icon {
        background-color: var(--black);
    }

    .btn:active,
    .btn:first-child:active {
        background-color: var(--black) !important;
        color: var(--white) !important;
    }

    .btn.btn-outline:hover {
        color: var(--white);
        background-color: var(--pink);
        border-color: var(--pink);
    }

    .btn.btn-outline:active,
    .btn.btn-outline:first-child:active {
        color: var(--white);
        background-color: var(--pink) !important;
    }

    .btn.btn-outline-white:hover {
        color: var(--white);
        background-color: var(--pink);
        border-color: var(--pink);
    }

    .btn.btn-outline-white:active,
    .btn.btn-outline-white:first-child:active {
        color: var(--white);
        background-color: var(--pink) !important;
        border-color: var(--pink);
    }

    .btn.btn-white:hover {
        color: var(--white);
        background-color: transparent;
        border-color: var(--black);
    }

    .btn.btn-white:hover .icon {
        background-color: var(--white);
    }

    .btn.btn-white:active,
    .btn.btn-white:first-child:active {
        background-color: var(--sky-blue) !important;
        color: var(--white) !important;
        border-color: var(--sky-blue) !important;
    }

    .btn.btn-white:active .icon,
    .btn.btn-white:first-child:active .icon {
        background-color: var(--white) !important;
    }

    .btn.btn-black:hover {
        color: var(--white);
        background-color: transparent;
        border-color: var(--black);
    }

    .btn.btn-black:hover .icon {
        background-color: var(--white);
    }

    .btn.btn-black:active,
    .btn.btn-black:first-child:active {
        background-color: var(--black) !important;
        color: var(--white) !important;
        border-color: var(--black) !important;
    }

    .btn.btn-black:active .icon,
    .btn.btn-black:first-child:active .icon {
        background-color: var(--white) !important;
    }

    .btn.btn-blue:hover {
        color: var(--pink);
        background-color: transparent;
        border-color: var(--pink);
    }

    .btn.btn-blue:hover .icon {
        background-color: var(--white);
    }

    .btn.btn-blue:active,
    .btn.btn-blue:first-child:active {
        background-color: var(--pink) !important;
        color: var(--white) !important;
        border-color: var(--pink) !important;
    }

    .btn.btn-blue:active .icon,
    .btn.btn-blue:first-child:active .icon {
        background-color: var(--white) !important;
    }

    .btn.btn-gradient:hover {
        color: var(--white);
    }

    .btn.btn-gradient:hover::before {
        left: 0;
        background-position: -350px 260px;
        width: 160%;
    }
}

/* button */
/* slick-silder */
.slick-slide {
    outline: none;
}

.slick-dots {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.slick-dots li {
    display: inline-block;
    width: auto;
    list-style: none;
    padding: 0 3px;
}

.slick-dots li button {
    font-size: 0;
    height: 10px;
    width: 10px;
    border: none;
    border-radius: 50%;
    position: relative;
    background-color: #E9EAEB;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    outline: none;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.slick-dots li.slick-active button {
    background-color: #000000;
}

.slick-arrow {
    width: 40px;
    height: 40px;
    background: rgb(1 107 207 / 59%);
    position: absolute;
    z-index: 9;
    font-size: 0;
    border: 1px solid transparent;
    outline-color: transparent;
    top: 0;
    border-radius: 100px;
    transition: all .4s ease-in-out;
}

.slick-arrow:hover {
    background-color: rgb(1 107 207 / 1);
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-arrow:before {
    content: "";
    width: 16px;
    height: 16px;
    mask-image: url(../img/svg/arrow.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s ease-in-out;
}

.slick-prev:before {
    transform: rotate(180deg);
}

@media only screen and (max-width: 1199px) {
    .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .slick-arrow:before {
        width: 16px;
        height: 16px;
    }
}

/* slick-silder */
.sec-head {
    margin-bottom: 55px;
}

.sec-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 15px;
}

.sec-title-xl {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 15px;
}

.sec-title-md {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 15px;
}

.sub-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pink);
    margin-bottom: 10px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(207, 50, 114, 0.2) 0%, rgba(136, 48, 117, 0.2) 100%);
    display: inline-block;
    padding: 4px 7px;
}

.sub-title span {
    background: linear-gradient(269.68deg, #6F2E76 3%, #CF3272 65.32%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sec-head.style-2 p {
    font-size: 14px;
}



/* Header */
.header-main {
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 991;
}

.site-logo {
    display: block;
    width: 218px
}

.navigation-bar {
    display: inline-block;
    vertical-align: middle
}

.sticky-header .header-main .site-logo {
    display: block;
    width: 180px
}

.sticky-header .navigation-bar {
    padding-left: 0
}

.mb-menu-logo {
    display: none
}

.navbar-main .nav-menu-main ul {
    margin-bottom: 0;
    list-style: none
}

.navbar-main ul:first-child {
    display: flex;
    justify-content: center;
    align-items: center
}

.navbar-main .nav-menu-main>ul>li {
    margin-right: 30px;
    position: relative;
    line-height: 0;
}

.navbar-main .nav-menu-main>ul>li.menu-item-has-children {
    padding-right: 20px;
}

.navbar-main .nav-menu-main ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey);
    line-height: 1;
    position: relative;
    padding: 10px;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.navbar-main .nav-menu-main>ul>li .sub-menu li {
    padding: 0;
    position: relative;
    margin-right: 0;
    width: 100%
}

.navbar-main .nav-menu-main>ul>li>.sub-menu>li>a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, .6);
    display: block;
    padding: 10px 12px;
    text-transform: unset;
    border-bottom: 1px solid rgb(204 210 225 / 30%);
}

.navbar-main .nav-menu-main>ul>li>.sub-menu>li:last-child>a {
    border-bottom: none
}

.sidebar-overlay {
    visibility: hidden;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: var(--black);
    z-index: 998
}

.header.has-sticky .header-main {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    background: #272727;
    backdrop-filter: blur(50px);
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 999;
    padding: 15px 0
}

.header.has-sticky::before {
    display: none
}

.navbar-main .nav-menu-main ul li .arrow {
    position: absolute;
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, .6);
    border-right: 2px solid rgba(0, 0, 0, .6);
    transform: rotate(45deg);
    right: 14px;
    top: 3px;
    transition: border 0.4s ease-in-out;
    padding-right: 0;
    cursor: pointer
}

.navbar-main .nav-menu-main>ul>li>.sub-menu {
    position: absolute;
    left: -30px;
    top: 85%;
    right: 0;
    margin: auto;
    background: var(--grey);
    box-shadow: rgba(0, 13, 18, .2) 0 2px 8px 0;
    z-index: 9;
    display: block;
    -webkit-transform: translateY(36px);
    transform: translateY(36px);
    visibility: hidden;
    opacity: 0;
    width: 242px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out
}

.navbar-main .nav-menu-main>ul>li:hover>.sub-menu {
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
    opacity: 1;
    visibility: visible
}

.navbar-main .nav-menu-main>ul>li>.sub-menu::before {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 10px solid var(--grey);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    left: 40px;
    top: 0;
    transform: translateY(-100%)
}

.header.has-sticky .site-logo {
    display: block;
    width: 201px
}

.menu-icon {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    padding: 0;
    margin-top: 0;
    margin-left: 15px;
    color: var(--black);
}

.menu-icon span {
    display: block;
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: var(--black);
    margin: auto
}

.menu-icon span:before {
    content: "";
    width: 25px;
    position: absolute;
    top: -8px;
    right: 0;
    height: 2px;
    background: currentColor
}

.menu-icon span:after {
    content: "";
    width: 25px;
    position: absolute;
    bottom: -8px;
    right: 0;
    height: 2px;
    background: currentColor
}

.body-fixed {
    overflow: hidden
}

.body-fixed .sidebar-overlay {
    opacity: .8;
    visibility: visible;
    left: 0;
    transition: all 0.6s ease-in-out
}

.navbar-main .nav-menu-main ul li.current-menu-item a,
.navbar-main .nav-menu-main ul li.current-menu-parent .sub-menu li.current-menu-item a,
.navbar-main .nav-menu-main ul li.current-menu-parent a,
.footer-col ul li.current-menu-parent a,
.footer-col ul li.current-menu-item a {
    color: var(--black);
}

.navbar-main .nav-menu-main>ul>li>.sub-menu>li.current-menu-item>a {
    color: var(--black) !important;
}

.sticky-header .header-main {
    position: fixed;
    z-index: 9;
    padding: 10px 0;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    background: var(--white);
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 999
}

.hero-top-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.hero-top-bg::before {
    position: absolute;
    content: "";
    width: 768px;
    height: 768px;
    top: 0;
    left: 0;
    background: url(../img/hero-shape-left.svg) no-repeat top left;
}

.hero-top-bg::after {
    position: absolute;
    content: "";
    width: 827px;
    height: 765px;
    bottom: 0;
    right: 0;
    background: url(../img/hero-shape-right.svg) no-repeat bottom right;
    background-size: contain;
}

.banner-sec {
    position: relative;
    padding-top: 135px;
    overflow: clip;
}

.banner-title {
    background: linear-gradient(90deg, #AC2C73 0%, #5F2775 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 88px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 23px;
}

.banner-smalltitle {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
}

.banner-row {
    display: flex;
    flex-wrap: wrap;
}

.banner-row>* {
    width: 50%;
    position: relative;
}

.banner-img {
    margin-right: -40%;
}

.banner-text {
    padding-top: 150px;
    padding-bottom: 130px;
}

.banner-head {
    max-width: 521px;
    margin-bottom: 60px;
}

.properties-main {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
}

.properties-main>* {
    max-width: 130px;
}

.properties-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--grey);
    line-height: 1.2;
    opacity: 0.7;
    margin-bottom: 20px;
    display: block;
}

.properties-num {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.properties-num small {
    color: var(--pink);
}

.timer-wrap {
    width: 100%;
    max-width: 344px;
    position: absolute;
    bottom: 95px;
    left: 77px;
}

.timer-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 94%;
    height: 30px;
    border-radius: 12px;
    background: #FABEDE;
    z-index: 0;
    box-shadow: 0px 2px 24px 0px #C9C4C440;
}

.timer-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 86%;
    height: 30px;
    border-radius: 12px;
    background: #FFCFE8;
    z-index: -1;
    box-shadow: 0px 2px 24px 0px #C9C4C440;
}

.timer-card {
    position: relative;
    z-index: 1;
    padding: 30px 15px;
    padding-top: 42px;
    border-radius: 12px;
    background: linear-gradient(205.84deg, #CF3272 9.51%, #6F2E76 130.65%);
}

.timer-pill {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-table;
    padding: 10px 26px;
    border-radius: 99px;
    background: var(--violet);
    border: 1px solid var(--white);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
}

.rings {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
    justify-items: center;
}

.ring {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.ring-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.5;
    line-height: 1;
    text-transform: uppercase;
}

.ring-svg {
    width: 68px;
    height: 68px;
    display: block;
}

.ring-bg {
    stroke: rgba(255, 255, 255, 0.18);
}

.ring-glow {
    stroke: var(--black);
    opacity: 0.6;
}

.ring-fg {
    stroke: var(--white);
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 450ms ease;
}

.ring-inner {
    fill: #923075;
}

.ring-value {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 500;
    font-size: 22px;
    border: 4px solid rgba(0, 0, 0, .2);
    border-radius: 50%;
}

.ring-box {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
}

.private-sale-sec .sec-head {
    margin-bottom: 22px;
}

.private-sale-sec .sec-head .sec-title {
    margin-bottom: 5px;
}

.private-sale-sec .sec-head p {
    opacity: 0.7;
}


.private-sale-box {
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px #CF32721A;
    border-radius: 12px;
    border-top: 6px solid rgba(41, 104, 25, 0.2);
}

.private-sale-sec .row>*:nth-child(2) .private-sale-box {
    border-color: rgba(2, 89, 194, 0.5);
}

.private-sale-sec .row>*:nth-child(3) .private-sale-box {
    border-color: rgba(252, 137, 43, 0.5);
}

.private-sale-img {
    margin-bottom: 50px;
}

.private-sale-text {
    padding-inline: 25px;
    padding-bottom: 30px;
}

.private-sale-head {
    margin-bottom: 38px;
}

.private-sale-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--violet);
    margin-bottom: 4px;
}

.private-sale-title small {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1;
    opacity: 0.7;
}

.investment-role {
    font-size: 18px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.2;
    opacity: 0.7;
}

.supply-purchase ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.supply-purchase li {
    width: calc(33.33% - 15px);
}

.supply-purchase li small {
    font-size: 18px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.2;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.supply-purchase li span {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 1;
}

.investor-strip {
    padding: 85px 0;
    overflow: hidden;
}

.investor-inner {
    position: relative;
    max-width: 897px;
    margin: 0 auto;
    text-align: center;
    padding: 16px 40px;
}

.investor-strip-title,
.investor-sub {
    opacity: 0;
    transform: translateY(18px);
    will-change: transform, opacity, filter;
}

.investor-strip-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pink);
    line-height: 1.2;
}

.investor-sub {
    font-size: 24px;
    font-weight: 500;
    color: var(--violet);
    line-height: 1;
    text-transform: uppercase;
}

.investor-line {
    height: 2px;
    background: var(--violet);
    margin: 10px auto 16px;
    width: 0;
    will-change: width;
}

.bracket {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 100%;
    pointer-events: none;
}

.bracket::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 2px;
    height: 100%;
    background: var(--violet);
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
    will-change: transform;
}

.bracket::after {
    content: "";
    position: absolute;
    top: 0;
    width: 27px;
    height: 100%;
    background-image:
        linear-gradient(var(--violet), var(--violet)),
        linear-gradient(var(--violet), var(--violet));
    background-repeat: no-repeat;
    background-size: 0 2px, 0 2px;
    will-change: background-size;
}

.bracket.left {
    left: 0;
}

.bracket.left::before {
    left: 0;
}

.bracket.left::after {
    left: 0;
    background-position: left top, left bottom;
}

.bracket.right {
    right: 0;
}

.bracket.right::before {
    right: 0;
}

.bracket.right::after {
    right: 0;
    background-position: right top, right bottom;
}

.bracket.is-on::before {
    animation: bracketYCenter 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
}

.bracket.is-on::after {
    animation: bracketX 0.70s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: 0.45s;
}

.investor-line.is-on {
    animation: lineGrow 0.9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.investor-strip-title.is-on {
    animation: textIn 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
}

.investor-sub.is-on {
    animation: textIn 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes bracketYCenter {
    from {
        transform: translateY(-50%) scaleY(0);
    }

    to {
        transform: translateY(-50%) scaleY(1);
    }
}

@keyframes bracketX {
    from {
        background-size: 0 2px, 0 2px;
    }

    to {
        background-size: 27px 2px, 27px 2px;
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes textIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.dubai-land-sec {
    overflow: clip;
}

.dubai-land-inner {
    padding: 70px 0;
    padding-left: 98px;
    background-color: #F3F3F3;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.dubai-land-left {
    max-width: 438px;
    width: 44%;
}

.dubai-land-right {
    width: 56%;
    margin-left: auto;
}

.dubai-land-img {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 50%;
    background-color: var(--violet);
}

.dubai-land-img img {
    width: 40px;
    height: 40px;
}

.dubai-land-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

.dubai-land-box {
    background-color: var(--white);
    border: 1px solid #E7E9EF;
    border-radius: 10px;
    padding: 40px 30px;
}

.dubai-land-main {
    margin: 0 -10px;
}

.dubai-land-item {
    padding: 0 10px;
}

.dubai-land-slide .slick-list {
    margin-right: -70%;
}

.dubai-land-slide .slick-list::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(to left, #fff 10%, rgba(255, 255, 255, 0) 90%);
    width: 80px;
    z-index: 1;
    pointer-events: none;
}

.dubai-land-sec .sec-title-xl {
    margin-bottom: 24px;
}

.dubai-land-sec .sec-head p {
    font-size: 18px;
}

/* Thank-you */



.thank-you-sec {
    position: relative;

}

.thank-you-sec p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    margin-bottom: 22px;
}

.thank-you-sec .thank-you-img {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
}

.thank-you-title {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.coming-soon-sec {
    padding: 50px 0;
}

.coming-soon-sec .marquee span {
    display: flex;
    align-items: center;
    font-size: 55px;
    font-weight: 500;
    gap: 10px;
    line-height: 1;
}

.coming-soon-sec .marquee {
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
}

.coming-soon-sec .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.coming-soon-sec .marquee span {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 60px;
}

.coming-soon-sec .marquee span img {
    width: 52px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}