:root{
    --yellow: #F3C521;
    --black: #000;
    --white: #fff;
}
*{
    margin: 0;
    padding: 0;
}

@import url(assets/fonts/inter/inter.css);

@font-face{
    font-family: "TeX Gyre Heros";
    src: url(assets/fonts/texgyreheros-regular.otf);
}

@font-face {
    font-family: "Uncut Sans Variable";
    src: url(assets/fonts/UncutSans-Variable.ttf)
}
@font-face{
    font-family: "Manrope";
    src: url(assets/fonts/Manrope.ttf);
}

html {
    scroll-behavior: smooth;
    transition: all 0.4s ease-in-out;
}

body{
    font-family: "Uncut Sans Variable", sans-serif;
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.wrapper {
    max-width: 100%;
    margin: 0 150px 0 150px;
    overflow-x: hidden;
}

/*Header + Nav*/
/*
header {
    position: relative;
    background-image: url(assets/photos/01\ WEBSITE\ HEADER-sy-01.webp);
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} 
*/
header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    z-index: 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    padding: 36px 0;
    margin-left: -150px;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
}
nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
nav.scrolled::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
}
nav .logo{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    font-style: bold;
    color: var(--white);
    margin-left: 150px;
}
nav img{
    width: 150px;
    height: auto;
}
nav ul{
    display: flex;
    align-items: center;
    gap: 120px;
    list-style: none;
    margin: 0;
    margin-right: 150px;
}
nav ul li{
    flex-direction: column;
}
nav ul li a{
    position:relative;
    text-decoration: none;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}
nav ul li a:hover{
    color: var(--yellow);
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}
nav ul li a:hover::after {
    width: 100%;
}

nav.mobile-nav, .mobile-menu-container{
    display: none;
}
@media only screen and (max-width: 1366px) {
    .wrapper {
        margin: 0 50px 0 50px;
    }
    nav{
        width: calc(100% + 100px); 
    }
    nav ul{
        gap: 80px;
        margin-right: 50px;
    }
}
@media only screen and (max-width: 900px) {
    nav ul, nav.scrolled::before{
        display: none;
    }
    nav.mobile-nav{
        display: flex;
    }
    nav.mobile-nav .menu-icon img{
        width: 50px;
        height: auto;
        margin-right: 50px;
        cursor: pointer;
    }
    nav.mobile-nav.scrolled{
        background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(5px);
        top: 0;
    }
    .mobile-menu-container{
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease-in-out;
    }
    .mobile-menu-container.active{
        left: 0;
    }
    .mobile-menu-container.close-icon{
        position: fixed;
        top: 32px;
        right: 100px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s ease-in-out;
    }
    .mobile-menu-container.active.close-icon {
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-menu-container ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu-container ul li {
        margin: 30px 0;
        text-align: center;
    }
    .mobile-menu-container ul li a {
        position: relative;
        text-decoration: none;
        color: var(--white);
        font-family: "Inter", sans-serif;
        font-size: 24px;
    }
    .mobile-menu-container ul li a:hover{
        color: var(--yellow);
    }
    .mobile-menu-container ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--yellow);
        transition: all 0.3s ease-in-out;
        transform: translateX(-50%);
    }
    .mobile-menu-container ul li a:hover::after {
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    nav img{
        width: 100px;
        height: auto;
    }
}


/*Landing Section*/
.landing {
    background-image: url(./images/01\ WEBSITE\ HEADER-sy-01\ resized.webp);
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    align-items: center;
    justify-content: center;
} 

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.hero-section .left,
.hero-section .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hero-section .right { 
    position: relative;
    justify-content: center; 
    text-align: left;
    z-index: 10;
}
.hero-section .right h1{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 128px;
    color: #FCC64A;
    line-height: 100%;
    margin: 0;
    text-align: left;
}
.hero-section .right p {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 114%;
    max-width: 410px;
    text-align: left;
    margin-top: 16px;
    margin-bottom: 16px;
}

.hero-section .right .top-right {
    justify-content: center;
}

.hero-section .right .bottom-right {
    position: absolute;
    bottom: 30px;    
    right: 0;
    margin-top: 16px;
    margin-bottom: 16px;
    padding-right: 15%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    visibility: visible;
}

.hero-section .right .bottom-right p {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 114%;
    max-width: 220px;
    align-self: flex-end;
}

.hero-section .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 90%;              
  padding-left: 5%;
}

.hero-section .left .bottom-left {
    padding-left: 10%;
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.hero-section .left .bottom-left img {
  transform: scaleX(-1);
  display: block;
}

.hero-section .left .bottom-left p {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 114%;
    max-width: 220px;
    margin: 0;
    align-self: flex-end;
}

.btn {
    max-width: none;
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 114%;
    width: fit-content;
    text-decoration: none;
    background-color: #FFFFFF;
    color: #000000;
    display: inline-block;
    padding: 10px 32px;
    border: none;
    border-radius: 111px;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: block;
    margin: 0;
    position: relative;
    text-align: right;
    white-space: nowrap;
    transition: transform 0.3s ease-in-out;
}
.btn:hover {
  transform: scale(1.05); /* hover bigger */
}

@media only screen and (max-width: 1100px) {
    .hero-section .right h1{
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 98px;
        color: #FCC64A;
        line-height: 100%;
        margin: 0;
        text-align: left;
    }

    .hero-section .right .bottom-right {
        position: absolute;
        bottom: 30px;
        right: 0;
        margin-top: 16px;
        margin-bottom: 0;
        padding-right: 15%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        visibility: visible;
    }

    .hero-section .left .bottom-left {
        padding-left: 0%;
        display: flex;
        align-items: flex-end;
        gap: 50px;
    }
}
@media only screen and (max-width: 770px) and (min-width: 435px){
    .hero-section .right h1 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 70px;
        color: #FCC64A;
        line-height: 100%;
        margin: 0;
        text-align: left;
    }
    
    .hero-section .right p {
        font-weight: 400;
        font-size: 16px;
        color: #ffffff;
        line-height: 114%;
        max-width: 330px;
        text-align: left;
        margin-top: 0;
        margin-bottom: 0;
    }

    .btn {
        margin-top: 16px;
    }

    .hero-section .right .bottom-right {
        position: absolute;
        bottom: 30px;
        right: 0;
        margin-top: 16px;
        margin-bottom: 0;
        padding-right: 15%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        visibility: visible;
    }

    .hero-section .right .bottom-right p {
        font-weight: 400;
        font-size: 16px;
        color: #ffffff;
        line-height: 114%;
        max-width: 220px;
        align-self: flex-end;
        margin: 0;
    }

    .hero-section .left .bottom-left {
        padding-left: 0%;
        display: flex;
        align-items: flex-end;
        gap: 25px;
    }

    .hero-section .left .bottom-left img {
        transform: scaleX(-1);
        display: block;
        max-width: 75px;
    }
}
@media only screen and (max-width: 435px) {
    .hero-section .right { 
        position: relative;
        justify-content: center; 
        text-align: left;
        z-index: 10;
    }
    .hero-section .right h1 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 59.5px;
        color: #FCC64A;
        line-height: 100%;
        margin: 0;
        text-align: left;
    }

    .hero-section .right p {
        font-weight: 400;
        font-size: 13.6px;
        color: #ffffff;
        line-height: 114%;
        max-width: 160px;
        text-align: left;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .hero-section .right .bottom-right {
        position: absolute;
        bottom: 30px;    
        right: 0;
        margin-top: 0px;
        margin-bottom: 0px;
        padding-right: 15%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        visibility: visible;
    }

    .hero-section .right .bottom-right p {
        font-weight: 400;
        font-size: 13.6px;
        color: #ffffff;
        line-height: 114%;
        max-width: 220px;
        align-self: flex-end;
        margin: 0;
    }

    .hero-section .left {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 90%;              
        padding-left: 0%;
        visibility: show;
    }

    .hero-section .left .bottom-left {
        padding-left: 15%;
        display: flex;
        align-items: flex-end;
        gap: 15px;
    }

    .hero-section .left .bottom-left img {
        transform: scaleX(-1);
        display: block;
        max-width: 34px;
    }

    .hero-section .left .bottom-left p {
        font-weight: 400;
        font-size: 13.6px;
        color: #ffffff;
        line-height: 114%;
        max-width: 80px;
        margin: 0;
        align-self: flex-end;
    }
}

/*Testimonials*/
.testimonials .wrapper{
    display: flex;
    flex-direction: column;
    margin-top: 150px;
    margin-bottom: 75px;
}
.testimonials .wrapper .content-wrapper{
    display: flex;
}
.testimonials .wrapper .left{
    flex: 1;
    max-width: 50%;
    position: relative;
}
.testimonials .wrapper .left .img-container{
    background-image: url(assets/photos/02\ WEBSITE\ -\ AFTERMATH\ OVER\ CLIMAX\ -CHUA_s-24.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(100%) contrast(90%);
    -webkit-filter: grayscale(100%) contrast(90%);
    width: 100%;
    height: 152px;
}
.testimonials .wrapper .left p{
    color: #F3C521;
    flex-direction: column;
    max-width: 20px;
    mix-blend-mode: multiply;
    font-size: 64px;
    font-weight: 500;
    margin-left: calc(50% - 200px);
    transform: translateY(-45px);
}
.testimonials .wrapper .right{
    display: flex;
    max-width: 50%;
    flex-direction: column;
    margin-left: 30px;
}
.testimonials .wrapper .right p{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: bold;
    font-size: 128px;
    align-self: flex-end;
    margin-bottom: 24px;
}
.testimonials .wrapper .right .text{
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -4%;
    align-self: flex-start;
    width: 67%;
}
.testimonials .wrapper .right .text p{
    margin-bottom: 16px;
}
.testimonials .wrapper .arrow{
    margin-top: 0px;
    width: 128px;
    height: auto;
}
@media only screen and (max-width: 1600px) {
    .testimonials .wrapper .left p{
        font-size: 56px;
        transform: translateY(-35px);
        margin-left: calc(50% - 200px);
    }
}
@media only screen and (max-width: 1366px) {
    .testimonials .wrapper .right .text{
        width: 90%;
    }
}
@media only screen and (max-width: 1170px) {
    .testimonials .wrapper .left p{
        font-size: 48px;
        margin-left: calc(50% - 175px);
    }
}
@media only screen and (max-width: 900px) {
    .testimonials .wrapper, .testimonials .wrapper .content-wrapper{
        flex-direction: column;
    }
    .testimonials .wrapper .left, .testimonials .wrapper .right{
        max-width: 100%;
        width: 100%;
    }
    .testimonials .wrapper .right{
        order: -1;
        margin-bottom: 50px;
        margin-left: 0px;
    }
    .testimonials .wrapper .right p{
        font-size: 108px;
    }
}
@media only screen and (max-width: 768px) {
    .testimonials .wrapper .arrow{
        width: 75px;
        height: auto;
    }
}
@media only screen and (max-width: 600px) {
    .testimonials .wrapper .right p{
        font-size: 84px;
    }
    .testimonials .wrapper .left p{
        font-size: 36px;
        margin-left: calc(50% - 100px);
        transform: translateY(-25px);
    }
}
@media screen and (max-width: 480px) {
    .testimonials .wrapper .left p{
        font-size: 34px;
        margin-left: calc(50% - 125px);
    }
    .testimonials .wrapper .right .text{
        font-size: 14px;
    }
}


/*Entries*/
.entries {
  background-color: #FFFFFF; 
  padding: 75px 50px 75px;
}

.grid-container .grid-left .arrow{
    margin-top: 0px;
    width: 128px;
    height: auto;
}

.wrapper-entries {
    margin: 0 auto;
    max-width: 1200px;
    overflow-x: hidden;
}

.entry-grid {
    padding: 60px 20px;
    background-color: #000;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.overlay-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.overlay-wrapper p {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 114%;
    max-width: none;
    margin: 0;
    text-align: right;
    text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 2px rgba(0, 0, 0, 0.6);
}

.grid-middle .overlay-wrapper p {
  font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 114%;
    max-width: none;
    margin: 0;
    text-align: right;
}

.overlay-arrow {
    bottom: 20px;
    height: auto;
    width: 77px;
    z-index: 10;
    transform: scaleX(-1);
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.caption-arrow {
    position: relative;
    justify-content: flex-start;
    height: auto;
    width: 77px;
    z-index: 10;
    transform: scaleX(-1);
    margin-bottom: 12px;
}

.image-caption h2 {
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 90%;
    letter-spacing: -4%;
    margin-bottom: 12px;
}

.image-caption p {
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -4%;
    margin: 0;
}

.grid-middle .image-caption p {
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -4%;
    margin: 0;
}

.image-caption {
    position: absolute;
    inset: 0;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    font-family: "Uncut Sans Variable", sans-serif;
    font-size: 20px;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.3s ease;
    z-index: 9;
    pointer-events: none;
}

.image-wrapper-left:hover .image-caption,
.image-wrapper-middle-top:hover .image-caption,
.image-wrapper-middle-bottom:hover .image-caption,
.image-wrapper-right-top:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

.image-wrapper-left .left-only:hover,
.image-wrapper-middle-top .middle-top:hover,
.image-wrapper-middle-bottom .middle-bottom:hover,
.image-wrapper-right-top .right-top:hover {
    filter: blur(4px);
}

.image-caption {
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.image-wrapper-left:hover .overlay-wrapper,
.image-wrapper-middle-top:hover .overlay-wrapper,
.image-wrapper-middle-bottom:hover .overlay-wrapper,
.image-wrapper-right-top:hover .overlay-wrapper {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/*Left column*/
.grid-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-wrapper-left {
    position: relative;
    width: 100%;
    height: 630px; 
    overflow: hidden;
}

.image-wrapper-left .left-only {
    width: 100%;
    height: 630px;
    object-fit: cover;
    display: block;
}

.grid-container .grid-left h1{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 124px;
    letter-spacing: -5px;
    color: #000000;
    line-height: 90%;
    margin: 0;
    text-align: left;
    justify-content: flex-start;
}

/*Middle column stacking the two images*/
.grid-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}

.grid-middle p {
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    line-height: 120%;
    margin: 0;
}

.image-wrapper-middle-top {
  position: relative;
  width: 100%;
  height: 274px; 
  overflow: hidden;
}

.middle-top {
  width: 100%;
  height: 274px; 
  object-fit: cover;
  display: block;
}

.image-wrapper-middle-bottom {
  position: relative;
  width: 100%;
  height: 336px; 
  overflow: hidden;
}
.middle-bottom {
  width: 100%;
  height: 336px; 
  object-fit: cover;
  display: block;
}

/*Right column*/
.grid-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
    align-items: end;
}

.image-wrapper-right-top {
  position: relative;
  width: 100%;
  height: 555px; 
  overflow: hidden;
}

.right-top {
  width: 100%;
  height: 555px;
  object-fit: cover;
  display: block;
}

.grid-right .end-arrow {
    margin-top: 0px;
    width: 114px;
    height: auto;
}

/*Responsive*/
@media only screen and (max-width: 1100px) {
    .overlay-wrapper {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        z-index: 10;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .overlay-wrapper p {
        font-weight: 400;
        font-size: 14px;
        color: #ffffff;
        line-height: 114%;
        max-width: none;
        margin: 0;
        text-align: right;
    }

    .grid-middle .overlay-wrapper p {
        font-weight: 400;
        font-size: 14px;
        color: #ffffff;
        line-height: 114%;
        max-width: none;
        margin: 0;
        text-align: right;
    }

    .overlay-arrow {
        bottom: 20px;
        height: auto;
        width: 41px;
        z-index: 10;
        transform: scaleX(-1);
        display: block;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .caption-arrow {
        position: relative;
        justify-content: flex-start;
        height: auto;
        width: 41px;
        z-index: 10;
        transform: scaleX(-1);
        margin-bottom: 10px;
    }

    .image-caption h2 {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 28.4px;
        line-height: 90%;
        letter-spacing: -4%;
        margin-bottom: 8px;
    }

    .image-caption p {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 14.2px;
        line-height: 120%;
        letter-spacing: -4%;
        margin: 0;
    }

    .grid-middle .image-caption h2 {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 28.4px;
        line-height: 90%;
        letter-spacing: -4%;
        margin-bottom: 8px;
    }

    .grid-middle .image-caption p {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 14.2px;
        line-height: 120%;
        letter-spacing: -4%;
        margin: 0;
    }
    
    .grid-container .grid-left h1 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 88.18px;
        letter-spacing: -5px;
        color: #000000;
        line-height: 90%;
        margin: 0;
        text-align: left;
        justify-content: flex-start;
    }

    .image-wrapper-left {
        position: relative;
        width: 100%;
        height: 448px; 
        overflow: hidden;
    }

    .image-wrapper-left .left-only {
        width: 100%;
        height: 448px;
        object-fit: cover;
        display: block;
    }

    .grid-middle p {
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        line-height: 120%;
        margin: 0;
    }

    .image-wrapper-middle-top {
        position: relative;
        width: 100%;
        height: 195px; 
        overflow: hidden;
    }

    .middle-top {
        width: 100%;
        height: 195px;
        object-fit: cover;
        display: block;
    }

    .image-wrapper-middle-bottom {
        position: relative;
        width: 100%;
        height: 239px; 
        overflow: hidden;
    }

    .middle-bottom {
        width: 100%;
        height: 239px;
        object-fit: cover;
        display: block;
    }

    .image-wrapper-right-top {
        position: relative;
        width: 100%;
        height: 397px; 
        overflow: hidden;
    }

    .right-top {
        width: 100%;
        height: 397px;
        object-fit: cover;
        display: block;
    }
}

@media only screen and (max-width: 770px) and (min-width: 435px){
    .grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }
    
    .image-wrapper-left .image-caption h2,
    .image-wrapper-middle-top .image-caption h2,
    .image-wrapper-middle-bottom .image-caption h2,
    .image-wrapper-right-top .image-caption h2 {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 21.2px;
        line-height: 90%;
        letter-spacing: -4%;
        margin-bottom: 8px;
        padding: 0;
    }

    .image-wrapper-left .image-caption p,
    .image-wrapper-middle-top .image-caption p,
    .image-wrapper-middle-bottom .image-caption p,
    .image-wrapper-right-top .image-caption p {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 12px;
        line-height: 120%;
        letter-spacing: -4%;
        margin: 0;
        padding: 0;
    }
    
    .overlay-wrapper {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        z-index: 10;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .grid-middle .overlay-wrapper p {
        font-weight: 400;
        font-size: 11px;
        color: #ffffff;
        line-height: 114%;
        max-width: none;
        margin: 0;
        text-align: right;
    }

    .overlay-wrapper p {
        font-weight: 400;
        font-size: 11px;
        color: #ffffff;
        line-height: 114%;
        max-width: none;
        margin: 0;
        text-align: right;
        white-space: nowrap;
    }

    .overlay-arrow {
        bottom: 20px;
        height: auto;
        width: 41px;
        z-index: 10;
        transform: scaleX(-1);
        display: block;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .caption-arrow {
        position: relative;
        justify-content: flex-start;
        height: auto;
        width: 23px;
        z-index: 10;
        transform: scaleX(-1);
        margin-bottom: 10px;
    }

    .image-caption {
        padding: 10px;
    }

    .image-caption h2 {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 28px;
        line-height: 90%;
        letter-spacing: -4%;
        margin-bottom: 8px;
    }

    .image-caption p {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: -4%;
        margin: 0;
    }

    .grid-container .grid-left .arrow{
        margin-top: 0px;
        width: 75px;
        height: auto;
    }

    .grid-container .grid-left h1 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 66.13px;
        letter-spacing: -5px;
        color: #000000;
        line-height: 90%;
        margin: 0;
        text-align: left;
        justify-content: flex-start;
    }

    .image-wrapper-left {
        position: relative;
        width: 100%;
        height: 336px; 
        overflow: hidden;
    }

    .image-wrapper-left .left-only {
        width: 100%;
        height: 336px;
        object-fit: cover;
        display: block;
    }

    .grid-middle {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: flex-end;
    }

    .grid-middle p {
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        line-height: 120%;
        margin: 0;
    }

    .image-wrapper-middle-top {
        position: relative;
        width: 100%;
        height: 146px; 
        overflow: hidden;
    }

    .middle-top {
        width: 100%;
        height: 146px;
        object-fit: cover;
        display: block;
    }

    .image-wrapper-middle-bottom {
        position: relative;
        width: 100%;
        height: 179px; 
        overflow: hidden;
    }

    .middle-bottom {
        width: 100%;
        height: 179px;
        object-fit: cover;
        display: block;
    }

    .image-wrapper-right-top {
        position: relative;
        width: 100%;
        height: 296px; 
        overflow: hidden;
    }

    .right-top {
        width: 100%;
        height: 296px;
        object-fit: cover;
        display: block;
    }

    .grid-right .end-arrow {
        margin-top: 0px;
        width: 85.5px;
        height: auto;
    }

}



@media only screen and (max-width: 435px) {
    .image-wrapper-left .image-caption h2,
    .image-wrapper-middle-top .image-caption h2,
    .image-wrapper-middle-bottom .image-caption h2,
    .image-wrapper-right-top .image-caption h2 {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 21.2px;
        line-height: 90%;
        letter-spacing: -4%;
        margin-bottom: 8px;
        padding: 0;
    }

    .image-wrapper-left .image-caption p,
    .image-wrapper-middle-top .image-caption p,
    .image-wrapper-middle-bottom .image-caption p,
    .image-wrapper-right-top .image-caption p {
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 14.2px;
        line-height: 120%;
        letter-spacing: -4%;
        margin: 0;
        padding: 0;
    }

    .overlay-arrow {
        bottom: 20px;
        height: auto;
        width: 41px;
        z-index: 10;
        transform: scaleX(-1);
        display: block;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .caption-arrow {
        position: relative;
        justify-content: flex-start;
        height: auto;
        width: 41px;
        z-index: 10;
        transform: scaleX(-1);
        margin-bottom: 12px;
    }
    
    .grid-left {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .image-wrapper-left {
        position: relative;
        width: 100%;
        height: 336px; 
        overflow: hidden;
    }

    .image-wrapper-left .left-only {
        width: 100%;
        height: 336px;
        object-fit: cover;
        display: block;
    }

    .grid-middle p {
        font-weight: 400;
        font-size: 14px;
        color: #000000;
        line-height: 120%;
        margin: 0;
    }

    .image-wrapper-middle-top {
        position: relative;
        width: 100%;
        height: 195px; 
        overflow: hidden;
    }

    .middle-top {
        width: 100%;
        height: 195px;
        object-fit: cover;
        display: block;
    }

    .image-wrapper-middle-bottom {
        position: relative;
        width: 100%;
        height: 239px; 
        overflow: hidden;
    }

    .middle-bottom {
        width: 100%;
        height: 239px;
        object-fit: cover;
        display: block;
    }

    .image-wrapper-right-top {
        position: relative;
        width: 100%;
        height: 296px; 
        overflow: hidden;
    }

    .right-top {
        width: 100%;
        height: 296px;
        object-fit: cover;
        display: block;
    }

    .grid-right .end-arrow {
        margin-top: 0px;
        width: 85.5px;
        height: auto;
    }

}
/*
*/
@media screen and (max-width: 900px) {
/*  .grid-container {
    grid-template-columns: 1fr 1fr;
  } */
}

@media screen and (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}


/*FAQs*/

.FAQS{
    background-color: #ffffff;
    padding: 75px 50px 150px 50px;
}

.FAQS-wrapper {
    margin: 0 auto;
    max-width: 1200px;
}

.FAQS h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 96px;
    letter-spacing: -5px;
    color: #000000;
    line-height: 90%;
    margin: 0;
    text-align: right;
}

.accordion.two-columns {
    width: 95%;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
/*    gap: 2rem; */
    justify-content: space-between;
    align-items: stretch;
}

.accordion.two-columns .column {
    flex: 1;
    min-width: 0;
}

.accordion-item{
    color: #000000;
    margin: 1rem;
    border-radius: 0.8rem;
    min-height: 3.5rem; /* initial height to be uniform even if heavy text*/
}
.accordion-item-header{
    padding: 0.5rem 0rem 1rem 0rem;
    min-height: 3.5rem;
    line-height: 90%;
    font-size: 40px;
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    border-bottom: 2px solid #000000;
}
.accordion-item-header.active {
    transition: max-height 0.5s ease-out 0.5s; 
    border-bottom: none;
}

.accordion-item-body{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-item-body-content{
    padding: 1rem 1rem 1rem 0rem;
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 124%;
    letter-spacing: 0px;
    border-bottom: 2px solid #000000;
}
.highlight {
    background-color: #fffd54; 
    border-radius: 4px;
}

@media only screen and (max-width: 1100px) {
    .FAQS h1 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 68px;
        letter-spacing: -5px;
        color: #000000;
        line-height: 90%;
        margin: 0;
        text-align: right;
    }

    .accordion-item-header{
        padding: 0.5rem 0rem 1rem 0rem;
        min-height: 3.5rem;
        line-height: 90%;
        font-size: 28px;
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 500;
        letter-spacing: 0px;
        display: flex;
        align-items: center;
        position: relative;
        cursor: pointer;
        border-bottom: 2px solid #000000;
    }

    .accordion-item-body-content{
        padding: 1rem 1rem 1rem 0rem;
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 124%;
        letter-spacing: 0px;
        border-bottom: 2px solid #000000;
    }
}


@media only screen and (max-width: 435px) {
    .FAQS h1 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 51px;
        letter-spacing: -5px;
        color: #000000;
        line-height: 90%;
        margin: 0;
        text-align: right;
    }

    .accordion-item-body-content {
        padding: 1rem 0rem 1rem 0rem;
        font-family: "Uncut Sans Variable", sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 124%;
        letter-spacing: 0px;
        border-bottom: 2px solid #000000;
    }

    .accordion.two-columns {
        display: block;
    }

    .accordion.two-columns .column {
        width: 100%;             
        margin-bottom: 1rem;
    }
}


/*Submission Form*/
.submission {
    background-color: var(--black);
    padding: 50px 0;
    color: var(--white);
}
.submission .wrapper {
    display: flex;
    flex-direction: column;
}
.submission .wrapper .arrow{
    margin-top: 0px;
    width: 128px;
    height: auto;
}

.submission .wrapper p {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: bold;
    font-size: 96px;
}
.submission .wrapper .submission-hyperlink p{
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -4%;
    margin-bottom: 20px;
}
.submission .wrapper .divider {
    width: 100%;
    height: 1px;
    background-color: var(--white);
    margin-top: 50px;
}
@media only screen and (max-width: 768px) {
    .submission .wrapper p{
        font-size: 64px;
    }
    .submission .wrapper .arrow{
        width: 75px;
        height: auto;
    }
}

/*Recent Folios*/
.recent-folios{
    background-color: var(--black);
    color: var(--white);
}
.recent-folios .wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: var(--white) 1px solid;
}
.recent-folios .wrapper .header{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 74px;
    margin-top: 75px;
    width: 500px;
}
.recent-folios .wrapper .header img{
    width: 128px;
    height: auto;
    margin-bottom: 20px;
}
.recent-folios .wrapper .folio-wrapper {
    display: flex;
    width: calc(100% - 400px);
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
}
.recent-folios .wrapper .folio{
    width: 400px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
}
.recent-folios .wrapper .folio p{
    font-family: "Uncut Sans Variable", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -4%;
    margin-top: 20px;
}
.recent-folios .wrapper img{
    width: 400px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.recent-folios .wrapper img:hover{
    transform: scale(1.02);
}

@media only screen and (max-width: 1570px) {
    .recent-folios .wrapper .folio-wrapper {
        display: flex;
        width: calc(100% - 500px);
    }
    .recent-folios .wrapper img{
        width: 275px;
        height: auto;
    }
}
@media only screen and (max-width: 1200px) {
    .recent-folios .wrapper .folio-wrapper {
        display: flex;
        width: calc(100% - 400px);
    }
    .recent-folios .wrapper .header{
        font-family: "Inter", sans-serif;
        font-weight: 600;
        font-size: 64px;
        margin-top: 75px;
        width: 400px;
    }
}
@media only screen and (max-width: 1100px) {
    .recent-folios .wrapper .header{
        font-size: 60px;
    }
    .recent-folios .wrapper .folio-wrapper {
        display: flex;
        width: 100%;
    }
    .recent-folios .wrapper .folio-wrapper {
        flex-direction: column;
        width: 50%;
    }
}
@media only screen and (max-width: 768px) {
    .recent-folios .wrapper {
        flex-direction: column;
    }
    .recent-folios .wrapper .header{
        margin-top: 20px;
        margin-bottom: 50px;
        width: 100%;
    }
    .recent-folios .wrapper .folio-wrapper {
        flex-direction: row;
    }
    .recent-folios .wrapper .header img{
        width: 75px;
        height: auto;
    }
}
@media only screen and (max-width: 670px) {
    .recent-folios .wrapper img{
        width: 200px;
    }
}
@media only screen and (max-width: 520px) {
    .recent-folios .wrapper .header{
        font-size: 48px;
    }
    .recent-folios .wrapper .folio-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .recent-folios .wrapper .folio {
        width: 100%;
    }
    .recent-folios .wrapper img{
        width: 300px;
        height: auto;
    }
}

/*Footer*/
footer {
    background-color: #000;
    color: white;
    padding: 40px 0;
}

footer.wrapper {
    max-width: 1000px;
    margin: 1 auto;
    text-align: center;
}

/* Center Top Section */
.footer-top {
    display: flex;
    align-items: left;
    text-align: left;
    justify-content: space-between;
    margin-bottom: 40px;
}

.thebenildean-logo img {
    width: 300px;
    height: 42px;
}

/* Socials Section */
.socials {
    margin-top: 10px;
    position: relative;
    margin-right: -30px;
}

.socials-header {
    font-weight: bold;
    margin-bottom: 8px;
}
.logo-subtext{
    width: 500px;
    margin-top: 30px;
}

.socials-body {
    display: flex;
    align-items: left;
    justify-content: left;
    column-gap: 10px;
    flex-wrap: wrap;
    width: 265px;
}

.socials-body img {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}
.socials-body-text{
    position: relative;
    top: 3.5px;
}

/* Separator Line */
.footer-bottom {
    border-top: 1px solid #fff;
    margin-top: 20px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Bottom Section Layout */
.footer-bottom-address {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    max-width: 700px;
}
.footer-bottom2{
    transform: translateX(-60px);
}

.footer-bottom-address .icon img {
    width: 48px;
    height: 48px;
}

.footer-bottom-address .text {
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
}

.footer-copyright {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
}

.nav-container-mobile{
    display: none;
}

@media only screen and (max-width: 1366px) {
    footer .footer-bottom .footer-bottom2{
        transform: translateX(0px);
    }
}

@media only screen and (max-width: 900px) {
    .logo-subtext{
        width: 700px;
    }
    .footer-top {
        position: relative;
    }
    .socials{
        margin-top: 0;
        position: absolute;
        right: -92px;
    }
    .socials-body-text{
        display: none;
    }
    .footer-bottom{
        flex-direction: column;
        align-items: left;
        text-align: left;
        margin-top: 30px;
    }
    .footer-bottom-address{
        align-items: left;
        text-align: left;
        margin-bottom: 15px;
        margin-top: 20px;
    }
    .footer-bottom-address .icon img{
        width: 32px;
        height: 32px;
    }
    .footer-bottom-address .text{
        max-width: 500px;
        font-size: 14px;
    }
    .socials-body{
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .logo-subtext{
        width: 510px;
    }
}
@media (max-width: 600px) {
    .footer-top {
        width: 100%;
    }
    .footer-left{
        width: 100%;
    }
    .footer-top .footer-left .logo-subtext{
        width: 100%;
    }
    .thebenildean-logo img {
        width: 250px;
        height: auto;
    }
    .logo-subtext{
        width: 450px;
        font-size: 14px;
    }
    .socials{
        scale: 0.8;
    }
}
@media (max-width: 480px) {
    .thebenildean-logo img {
        width: 200px;
        height: auto;
        transform: translateY(10px);
    }
    .logo-subtext{
        width: 350px;
    }
    .socials{
        scale: 0.7;
    }
}
@media (max-width: 410px){
    .thebenildean-logo img {
        width: 160px;
        height: auto;
        transform: translateY(10px);
    }
    .logo-subtext{
        width: 300px;
    }
    .socials{
        scale: 0.6;
    }
}
