:root {
    --cream: #F4F1EC;
    --black: #0B0B0B;
    --orange: #F59A00;
    --deeper-orange: #FF404D;
    --dark-gray: #1A1A1A;
    --mid-gray: #6B6B6B;
    --font-hero: 'Playfair Display', serif;
    --font-ui: 'Inter', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body {
    font-family: var(--font-ui);
    background-color: var(--cream);
    color: var(--black);
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}
a {
    text-decoration: none;
    color: var(--orange);
}
a:hover {
    color: var(--deeper-orange);
}
.mobile-view {
    display: none;
}
/* Common Button Css Start */
.btn-primary-custom {
    background-color: var(--dark-gray);
    color: var(--cream);
    border: none;
    border-radius: 5px;
    padding: 10px 25px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    font-family: var(--font-ui);
    transition: all 0.3s ease;
    text-decoration: none;
    outline: 0 !important;
    box-shadow: none !important;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.btn-primary-custom:hover {
    background: var(--deeper-orange);
    color: var(--cream);
}
/* Common Button Css End */
.container {
    max-width: 1600px;
}
/* Header Css Start */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 30px 60px;
    z-index: 100;
}
.header .logo,
.custom-modal .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header .logo .logo-img,
.custom-modal .logo .logo-img {
    width: 50px;
}
.header .logo .logo-txt-img,
.custom-modal .logo .logo-txt-img {
    width: 80px;
    margin: 5px 0 0 15px;
}
.header .logo p,
.custom-modal .logo p {
    font-size: 36px;
    line-height: 36px;
    color: var(--deeper-orange);
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0 15px;
}
/* Header Css End */
/* Footer Section Start */
.footer-section {
    background-color: var(--black);
    padding: 30px 100px;
    position: relative;
    z-index: 3;
}
.footer-section .footer-title {
    font-size: 70px;
    line-height: 74px;
    color: var(--cream);
    font-family: var(--font-hero);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
    margin-bottom: 15px;
    width: fit-content;
    position: relative;
}
.footer-section .footer-title .text-orange {
    font-size: 100px;
    line-height: 104px;
    color: var(--deeper-orange);
    font-family: var(--font-ui);
    font-weight: 900;
    position: absolute;
    right: -80px;
}
.footer-section .footer-underline {
    width: 450px;
}
.footer-section .footer-underline img {
    width: 100%;
}
.footer-section .footer-inner {
    height: 100%;
}
.footer-section .footer-inner .footer-txt:not(:last-child) {
    margin-right: 20px;
}
.footer-section .footer-inner .footer-txt {
    font-size: 16px;
    line-height: 16px;
    color: var(--cream);
    font-family: var(--font-ui);
    font-weight: 500;
    text-decoration: none;
}
.footer-section .footer-inner .footer-txt:hover {
    color: var(--orange);
}
/* Footer Section End */
/* Hero Section Css Start */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    background-color: var(--cream);
    overflow: hidden;
    padding-left: 60px;
}
.hero-section .hero-bg-dark {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}
.hero-section .hero-bg-dark .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.hero-section .hero-split-cream {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-color: var(--cream);
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.hero-section .hero-content {
    position: relative;
    z-index: 3;
    width: 50%;
    padding: 160px 60px 80px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.hero-section .hero-content .subtitle {
    font-size: 20px;
    line-height: 26px;
    color: var(--deeper-orange);
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: 0.04rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.hero-section .hero-content .title {
    font-size: 80px;
    line-height: 84px;
    color: var(--black);
    font-family: var(--font-hero);
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 30px;
}
.hero-section .hero-content .highlight-wrap {
    position: relative;
    display: inline-block;
    font-size: 100px;
    line-height: 104px;
    font-weight: 900;
}
.hero-section .hero-content .highlight-wrap .highlight-circle {
    position: absolute;
    top: 2%;
    left: -2%;
    width: 110%;
    height: 110%;
    border: 5px solid var(--deeper-orange);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-3deg);
    pointer-events: none;
}
.hero-section .hero-content .description {
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
    font-family: var(--font-ui);
    font-weight: 500;
    margin-bottom: 40px;
}
.hero-section .hero-content .app-store-btn {
    background-color: var(--black);
    color: var(--cream);
    padding: 10px 30px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s;
}
.hero-section .hero-content .app-store-btn:hover {
    background-color: var(--deeper-orange);
    color: var(--cream);
}
.hero-section .hero-content .app-store-btn i {
    font-size: 30px;
}
.hero-section .hero-content .app-store-btn .btn-text {
    display: flex;
    flex-direction: column;
}
.hero-section .hero-content .app-store-btn .btn-text .small {
    font-size: 11px;
    line-height: 13px;
}
.hero-section .hero-content .app-store-btn .btn-text .big {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}
/* Hero Section Css End */
/* Curated Work Section Css Start */
.curated-work-section {
    padding: 20px 60px;
    position: relative;
}
.curated-work-section .curated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.curated-work-section .curated-grid .grid-col-middle,
.curated-work-section .curated-grid .grid-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.curated-work-section .curated-grid .grid-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--black);
    cursor: pointer;
    z-index: 3;
}
.curated-work-section .curated-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.4s;
}
.curated-work-section .curated-grid .grid-item:hover img {
    transform: scale(1.1);
}
.curated-work-section .curated-grid .grid-item .item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 40%);
}
.curated-work-section .curated-grid .grid-item .item-overlay .item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text h3 {
    font-size: 40px;
    line-height: 44px;
    color: var(--cream);
    font-family: var(--font-hero);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text p {
    font-size: 20px;
    line-height: 24px;
    color: var(--cream);
    font-family: var(--font-ui);
    font-weight: 500;
    margin: 0;
}
.curated-work-section .curated-grid .grid-item.item-large {
    height: 650px;
}
.curated-work-section .curated-grid .grid-item.item-medium {
    height: calc((650px - 20px) / 2);
}
.curated-work-section .curated-grid .grid-item.item-wide {
    height: 280px;
}
.curated-work-section .curated-grid .grid-col-right {
    position: relative;
}
.curated-work-section .curated-grid .grid-col-right::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    height: 120%;
    width: 600%;
    background: var(--deeper-orange);
    z-index: 1;
}
.curated-work-section .curated-grid .grid-col-right::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 20%;
    height: 20px;
    background: var(--cream);
    z-index: 2;
}
.curated-work-section .curated-grid .statement-box {
    padding: 40px;
    height: calc(650px - 300px);
    display: flex;
    align-items: center;
    z-index: 3;
}
.curated-work-section .curated-grid .statement-box h2 {
    font-size: 50px;
    line-height: 54px;
    color: var(--black);
    font-family: var(--font-hero);
    font-weight: 900;
    margin-bottom: 0;
}
.curated-work-section .curated-grid .statement-box .underline {
    position: relative;
    display: inline-block;
}
.curated-work-section .curated-grid .statement-box .underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 110%;
    height: 1px;
    border: 5px solid var(--black);
    border-radius: 39% 20% 22% 23% / 28% 36% 63% 2%;
    transform: rotate(-3deg);
    pointer-events: none;
}
/* Curated Work Section Css End */
/* Privacy and Terms Page Css Start */
.privacy-content {
    padding: 120px 0 40px;
}
.privacy-content .container {
    max-width: 1320px;
}
/* Privacy and Terms Page Css End */
/* Verification Css Start */
.verification-content {
    min-height: 100vh;
    padding: 40px 20px;
}
.verification-container {
    max-width: 760px;
    margin: 0 auto;
}
.verification-card {
    color: var(--black);
    border-radius: 8px;
}
.verification-card .policy-title {
    color: var(--black);
    font-family: 'Inter', var(--font-hero);
    font-weight: 700;
}
.verification-card p {
    color: var(--mid-gray);
    font-size: 18px;
    line-height: 28px;
}
/* Verification Css End */
/* Modal Css Start */
.modal {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(2px);
}
.custom-modal .modal-content {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.custom-modal {
    transition: max-width 0.3s ease;
}
.modal-left-top {
    background-color: var(--black);
    color: var(--cream);
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.modal-right-top {
    background-color: var(--cream);
    color: var(--black);
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.modal-left-top .logo-wrap, .modal-right-top .logo-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.modal-right-top .logo-wrap {
    margin-bottom: 40px;
}
.left-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
.left-content-wrap .btn-primary-custom {
    background-color: var(--deeper-orange);
    color: var(--cream);
}
.left-content-wrap .btn-primary-custom:hover {
    background: var(--orange);
    color: var(--cream);
}
.right-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
.modal-left-title {
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--font-ui);
    font-weight: 700;
    margin-bottom: 25px;
}
.modal-left-title span {
    color: var(--deeper-orange);
}
.modal-left-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 400;
}
.modal-left-btn {
    align-self: flex-start;
    padding: 14px 40px;
}
.modal-logo-right p {
    color: var(--deeper-orange) !important;
}
.modal-form-title {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-ui);
    margin-bottom: 5px;
    color: var(--black);
}
.modal-form-subtitle {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 500;
}
.modal-form .form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}
.modal-form .form-control, .modal-form .form-select {
    border: 1px solid var(--mid-gray);
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--black);
    background-color: transparent;
    box-shadow: none;
}
.modal-form .form-control::placeholder {
    color: var(--mid-gray);
}
.modal-form .form-text {
    font-size: 13px;
    color: var(--black);
    margin-top: 6px;
}
.modal-form .mb-3 {
    margin-bottom: 20px !important;
}
.modal-right-btn {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    font-size: 16px;
}
.privacy-note {
    text-align: center;
    font-size: 13px;
    color: var(--black);
    margin-top: 15px;
    font-weight: 500;
}
.privacy-note i {
    margin-right: 5px;
}
.modal-bottom-row {
    background-color: var(--deeper-orange);
}
.modal-left-bottom {
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-right: 1px solid var(--cream);
}
.modal-left-bottom .feature-box {
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid var(--cream);
}
.modal-left-bottom .feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: var(--cream);
}
.modal-left-bottom .feature-text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--cream);
}
.modal-right-bottom {
    padding: 40px;
    text-align: center;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-right-bottom .create-earn {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.modal-right-bottom .icons-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 24px;
}
.btn-rect {
    border-radius: 6px !important;
}
#modalRightTop,
#modalRightBottom {
    display: none;
}
@media (min-width: 992px) {
    .custom-modal:not(.is-expanded) {
        max-width: 400px;
    }
    .custom-modal:not(.is-expanded) .modal-left-top .close-btn {
        display: block !important;
    }
}
@media (min-width: 1200px) {
    .custom-modal:not(.is-expanded) {
        max-width: 570px;
    }
}
/* Modal Css End */

/* Responsive */
@media (min-width: 1800px) {
    .container,
    .privacy-content .container {
        max-width: 1700px;
    }
    /* Common Button Css Start */
    .btn-primary-custom {
        font-size: 20px;
        line-height: 20px;
        height: 54px;
    }
    /* Common Button Css End */
    /* Header Css Start */
    .header {
        padding: 40px 80px;
    }
    .header .logo .logo-img,
    .custom-modal .logo .logo-img {
        width: 60px;
    }
    .header .logo .logo-txt-img,
    .custom-modal .logo .logo-txt-img {
        width: 100px;
    }
    .header .logo p,
    .custom-modal .logo p {
        font-size: 46px;
        line-height: 46px;
    }
    /* Header Css End */
    /* Footer Section Start */
    .footer-section {
        padding: 30px 160px;
    }
    .footer-section .container {
        padding: 0 50px !important;
    }
    .footer-section .footer-title {
        font-size: 90px;
        line-height: 94px;
    }
    .footer-section .footer-title .text-orange {
        font-size: 120px;
        line-height: 124px;
    }
    .footer-section .footer-underline {
        width: 600px;
    }
    /* Footer Section End */
    /* Hero Section Css Start */
    .hero-section {
        padding-left: 0;
    }
    .hero-section .hero-content {
        padding: 180px 80px 100px 0;
    }
    .hero-section .hero-content .subtitle {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .hero-section .hero-content .title {
        font-size: 100px;
        line-height: 104px;
        margin-bottom: 50px;
    }
    .hero-section .hero-content .highlight-wrap {
        font-size: 120px;
        line-height: 124px;
    }
    .hero-section .hero-content .description {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 50px;
    }
    .hero-section .hero-content .app-store-btn {
        padding: 15px 40px;
        gap: 20px;
    }
    .hero-section .hero-content .app-store-btn i {
        font-size: 40px;
    }
    .hero-section .hero-content .app-store-btn .btn-text .small {
        font-size: 14px;
        line-height: 18px;
    }
    .hero-section .hero-content .app-store-btn .btn-text .big {
        font-size: 22px;
        line-height: 26px;
    }
    /* Hero Section Css End */
    /* Curated Work Section Css Start */
    .curated-work-section {
        padding: 20px 80px;
    }
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text h3 {
        font-size: 50px;
        line-height: 54px;
    }
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text p {
        font-size: 24px;
        line-height: 28px;
    }
    .curated-work-section .curated-grid .grid-item.item-large {
        height: 750px;
    }
    .curated-work-section .curated-grid .grid-item.item-medium {
        height: calc((750px - 20px) / 2);
    }
    .curated-work-section .curated-grid .grid-item.item-wide {
        height: 320px;
    }
    .curated-work-section .curated-grid .statement-box {
        padding: 40px;
        height: calc(750px - 340px);
        display: flex;
        align-items: center;
        z-index: 3;
    }
    .curated-work-section .curated-grid .statement-box h2 {
        font-size: 56px;
        line-height: 60px;
    }
    /* Curated Work Section Css End */
    /* Privacy and Terms Page Css Start */
    .privacy-content {
        padding: 150px 0 40px;
    }
    /* Privacy and Terms Page Css End */
}
@media (max-width: 1400px) and (min-width: 1199px) {
    /* Curated Work Section Css Start */
    .curated-work-section .curated-grid .statement-box h2 {
        font-size: 44px;
        line-height: 50px;
    }
    /* Curated Work Section Css End */
    /* Privacy and Terms Page Css Start */
    .privacy-content .container {
        max-width: 1140px;
    }
    /* Privacy and Terms Page Css End */
}
@media (max-width: 1199px) {
    /* Footer Section Start */
    .footer-section .footer-inner {
        justify-content: center !important;
        margin-top: 20px;
        height: auto;
    }
    /* Footer Section End */
    /* Hero Section Css Start */
    .hero-section .hero-split-cream {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    }
    .hero-section .hero-content .subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    .hero-section .hero-content .title {
        font-size: 60px;
        line-height: 64px;
    }
    .hero-section .hero-content .highlight-wrap {
        font-size: 80px;
        line-height: 84px;
    }
    .hero-section .hero-content .description {
        font-size: 18px;
        line-height: 22px;
    }
    /* Hero Section Css End */
    /* Curated Work Section Css Start */
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text h3 {
        font-size: 30px;
        line-height: 36px;
    }
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text p {
        font-size: 16px;
        line-height: 20px;
    }
    .curated-work-section .curated-grid .grid-item.item-large {
        height: 520px;
    }
    .curated-work-section .curated-grid .grid-item.item-medium {
        height: calc((520px - 20px) / 2);
    }
    .curated-work-section .curated-grid .grid-item.item-wide {
        height: 240px;
    }
    .curated-work-section .curated-grid .statement-box {
        padding: 20px 40px;
        height: calc(520px - 260px);
    }
    .curated-work-section .curated-grid .statement-box h2 {
        font-size: 32px;
        line-height: 38px;
    }
    /* Curated Work Section Css End */
    /* Privacy and Terms Page Css Start */
    .privacy-content .container {
        max-width: 960px;
    }
    /* Privacy and Terms Page Css End */
}
@media (max-width: 991px) {
    .mobile-view {
        display: block;
    }
    /* Header Css Start */
    .header {
        padding: 20px;
    }
    .header .logo .logo-img,
    .custom-modal .logo .logo-img {
        width: 40px;
    }
    .header .logo .logo-txt-img,
    .custom-modal .logo .logo-txt-img {
        width: 70px;
    }
    .header .logo p,
    .custom-modal .logo p {
        font-size: 30px;
        line-height: 30px;
    }
    /* Header Css End */
    /* Footer Section Start */
    .footer-section {
        padding: 20px;
    }
    .footer-section .footer-title {
        font-size: 60px;
        line-height: 64px;
    }
    .footer-section .footer-title .text-orange {
        font-size: 90px;
        line-height: 94px;
    }
    .footer-section .footer-underline {
        width: 400px;
    }
    /* Footer Section End */
    /* Hero Section Css Start */
    .hero-section {
        padding-left: 20px;
    }
    .hero-section .hero-content {
        padding: 100px 20px 40px 0;
    }
    .hero-section .hero-content .subtitle {
        font-size: 16px;
        line-height: 20px;
    }
    .hero-section .hero-content .title {
        font-size: 50px;
        line-height: 54px;
    }
    .hero-section .hero-content .highlight-wrap {
        font-size: 70px;
        line-height: 74px;
    }
    .hero-section .hero-content .description {
        font-size: 16px;
        line-height: 20px;
    }
    /* Hero Section Css End */
    /* Curated Work Section Css Start */
    .curated-work-section {
        padding: 20px;
    }
    .curated-work-section .curated-grid {
        grid-template-columns: 1fr 1fr;
    }
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text h3 {
        font-size: 34px;
        line-height: 40px;
    }
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text p {
        font-size: 18px;
        line-height: 22px;
    }
    .curated-work-section .curated-grid .grid-item.item-large {
        height: 520px;
    }
    .curated-work-section .curated-grid .grid-item.item-medium {
        height: calc((520px - 20px) / 2);
    }
    .curated-work-section .curated-grid .grid-item.item-wide {
        height: 260px;
    }
    .curated-work-section .curated-grid .grid-col-right::after,
    .curated-work-section .curated-grid .grid-col-right::before,
    .curated-work-section .curated-grid .statement-box {
        display: none;
    }
    .curated-work-section .curated-grid .mobile-view .statement-box {
        display: block;
        background: var(--deeper-orange);
        padding: 30px 30px 50px;
        border-radius: 5px;
        height: 260px;
    }
    .curated-work-section .curated-grid .mobile-view .statement-box h2 {
        font-size: 42px;
        line-height: 46px;
    }
    /* Curated Work Section Css End */
    /* Privacy and Terms Page Css Start */
    .privacy-content {
        padding: 100px 12px 20px;
    }
    /* Privacy and Terms Page Css End */
    /* Modal Css Start */
    .modal-left-bottom {
        border-right: none;
        border-bottom: 1px solid var(--cream);
    }
    /* Modal Css End */
}
@media (max-width: 767px) {
    /* Footer Section Start */
    .footer-section .footer-title {
        font-size: 50px;
        line-height: 54px;
    }
    .footer-section .footer-title .text-orange {
        font-size: 80px;
        line-height: 84px;
        position: initial;
    }
    .footer-section .footer-underline {
        width: 100%;
    }
    /* Footer Section End */
    /* Hero Section Css Start */
    .hero-section {
        padding: 0;
    }
    .hero-section .container {
        display: flex;
        flex-direction: column;
    }
    .hero-section .hero-bg-dark {
        position: inherit;
        width: 100%;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
        order: 2;
        margin-top: -50px;
        max-height: 550px;
    }
    .hero-section .hero-split-cream {
        display: none;
    }
    .hero-section .hero-content {
        order: 1;
        width: 100%;
        padding: 100px 20px 20px;
    }
    .hero-section .hero-content .subtitle {
        font-size: 16px;
        line-height: 20px;
    }
    .hero-section .hero-content .title {
        font-size: 60px;
        line-height: 64px;
    }
    .hero-section .hero-content .highlight-wrap {
        font-size: 80px;
        line-height: 84px;
    }
    .hero-section .hero-content .description {
        font-size: 16px;
        line-height: 20px;
    }
    /* Hero Section Css End */
    /* Curated Work Section Css Start */
    .curated-work-section .curated-grid {
        grid-template-columns: 1fr;
    }
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text h3 {
        font-size: 30px;
        line-height: 34px;
    }
    .curated-work-section .curated-grid .grid-item .item-overlay .item-info .info-text p {
        font-size: 16px;
        line-height: 20px;
    }
    .curated-work-section .curated-grid .grid-item.item-large,
    .curated-work-section .curated-grid .grid-item.item-medium,
    .curated-work-section .curated-grid .grid-item.item-wide {
        height: 340px;
    }
    .curated-work-section .curated-grid .mobile-view .statement-box {
        padding: 30px 30px 60px;
        height: 100%;
    }
    .curated-work-section .curated-grid .mobile-view .statement-box h2 {
        font-size: 40px;
        line-height: 44px;
    }
    /* Curated Work Section Css End */
    /* Modal Css Start */
    .modal-dialog-centered {
        margin: 0;
        max-width: 100vw;
    }
    .custom-modal .modal-content {
        border-radius: 0;
    }
    .modal-left-title {
        font-size: 40px;
    }
    .modal-left-bottom {
        gap: 10px;
    }
    /* Modal Css End */
}
@media (max-width: 480px) {
    /* Hero Section Css Start */
    .hero-section .hero-content .title {
        font-size: 40px;
        line-height: 44px;
    }
    .hero-section .hero-content .highlight-wrap {
        font-size: 60px;
        line-height: 64px;
    }
    /* Hero Section Css End */
    /* Curated Work Section Css Start */
    .curated-work-section .curated-grid .grid-item.item-large,
    .curated-work-section .curated-grid .grid-item.item-medium,
    .curated-work-section .curated-grid .grid-item.item-wide {
        height: 260px;
    }
    /* Curated Work Section Css End */
}
