:root {
    --main: #FBFBFB;

    --primary: #EB2F59;
    --primary-hover: #f2d1d8;
    --primary-pressed: #75172C;
    --primary-border: #F8BAC8;
    --primary-surfaced: #FDEAEE;
    --primary-focussed: 235, 47, 89;

    --secondary :#F4D24C;

    --neutral-100: #0A0A0A;
    --neutral-90: #404040;
    --neutral-80: #616161;
    --neutral-70: #757575;
    --neutral-60: #9E9E9E;
    --neutral-50: #C2C2C2;
    --neutral-40: #E0E0E0;
    --neutral-30: #EDEDED;
    --neutral-20: #F5F5F5;
    --neutral-10: #FFFFFF;
}

/* TEXT */
.text-h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    color: var(--neutral-10)
}
.text-h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: var(--neutral-10)
}
.text-h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: var(--neutral-10)
}
.text-h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--neutral-10)
}
.text-h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: var(--neutral-10)
}
.text-h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: var(--neutral-10)
}
.text-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--neutral-10)
}

/* TEXT COLOR */
.text-primary-main {
    color: var(--primary);
}

/* BUTTON */
.kat__landing-button {
    outline: none;
    box-shadow: none;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 3px solid var(--neutral-100);
    background-color: var(--primary);
    color: var(--secondary);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    max-width: max-content;
    text-align: center;

    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    cursor: pointer;
}
.kat__landing-button:hover {
    background-color: var(--primary-hover);
    color: var(--neutral-100);
}

/* START : Hero */
section.hero--events {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 650px;
    margin-top: 60px;
    padding: 24px;
}

section.hero--events .hero--image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

section.hero--events .hero--image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% top;
    transform: scaleX(-1);
}
section.hero--events .hero--image-wrap .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.50) 29.88%, rgba(0, 0, 0, 0.00) 57.33%);
}

section.hero--events .hero--image-wrap .hero--content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    width: 100%;
    padding: 40px 16px;
    text-align: center;
}

/* END : Hero */

/* START : Testi */
section.testi--events-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.testi--events {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
    padding: 40px 24px 55px;
    flex-grow: 1;
    flex-shrink: 0;
}

.testi--events .testi--events-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.testi--events-header h3 {
    color: var(--neutral-100);
}
.testi--events-header h2 {
    transition: all 0.3s ease;
}
.testi--events-header p {
    color: var(--neutral-90);
}

.testi--events-header .caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.testi--events .testi--events-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.testi--events-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 145px;
    gap: 12px;
    transition: all 0.3s ease;
}
.testi--events-content.enlarged {
    height: 200px;
}

.testi--events-items {
    position: relative;
    width: 20%;
    height: 100%;
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.testi--events-items::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.testi--events-content:first-child .testi--events-items:first-child,
.testi--events-content:first-child .testi--events-items:nth-child(2){
    width: 45%;
}
.testi--events-content:first-child.enlarged .testi--events-items:first-child,
.testi--events-content:first-child.enlarged .testi--events-items:nth-child(2){
    width: 20%;
}
.testi--events-content:first-child.enlarged .testi--events-items:first-child.enlarged,
.testi--events-content:first-child.enlarged .testi--events-items:nth-child(2).enlarged {
    width: 60%;
}
.testi--events-items.enlarged {
    width: 50%;
}

.testi--events-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* END : Testi */

/* START : Ads */
section.ads--events {
    position: relative;
    width: 100%;
    background-color: var(--secondary);
    overflow: hidden;
}

section.ads--events .ads--events-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    gap: 24px;
    margin: 0 auto;
    padding: 40px 24px 55px;
    
} 

.ads--events-inner .ads--events-header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;

}
.ads--events-header h3 {
    color: var(--neutral-100);
}
.ads--events-header p {
    color: var(--neutral-90);
}

.ads--events-inner .ads--events-body {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    min-height: 300px;
    margin:  0 auto;
}

.ads--image-1 {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 50%;
    transform: translate(0%, 0%);
}
.ads--image-2 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 32%;
    transform: translate(14%, -15%);
}
.ads--image-3 {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 32%;
    transform: translate(-70%, 0%);
}
.ads--image-4 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 50%;
    transform: translate(0%, -4%);
}

.image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.image-wrap img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.ads--image-1 .image-wrap img,
.ads--image-4 .image-wrap img {
    border-radius: 12px;
}

.ads--events-body .text-h6 {
    display: none;
    position: absolute;
    font-weight: 600;
}
.ads--events-body .text-h6.top-text {
    top: -150%;
    right: 0;
    max-width: 100px;
    text-align: center;
    transform: translateX(120%);
}
.ads--events-body .text-h6.bottom-text {
    bottom: -150%;
    left: 0;
    transform: translateX(-160%);
}

.ads--events-inner .ads--events-footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.ads--events-footer p {
    color: var(--neutral-90);
    width: 90%;
}
.ads--events-footer p br {
    display: none;
}
/* END : Ads */

/* START : Process */
section.process--events {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    gap: 24px;
    padding: 40px 24px;
    margin: 0 auto;
}

section.process--events .process--events-header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.process--events-header h3 {
    color: var(--neutral-100);
}
.process--events-header p {
    color: var(--neutral-90);
}

.process--events-body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.process--events-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    gap: 12px;
    padding: 16px;
}
.process--events-card:nth-child(odd) {
    background-color: #F3F1E4;
}
.process--events-card:nth-child(even) {
    background-color: var(--main);
}
.process--events-card.first {
    background-color: var(--main);
}

.process--events-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.process--events-card h2 {
    color: var(--neutral-100);
}
.process--events-card:nth-child(odd) h2 {
    color: var(--primary);
}
.process--events-card.first h3 {
    color: var(--neutral-100);
}
.process--events-card h5 {
    color: var(--primary);
    font-weight: 700;
}
.process--events-card:nth-child(odd) h5 {
    color: var(--neutral-100);
}
.process--events-card p {
    color: var(--neutral-90);
}
.process--events-card:nth-child(odd) p {
    color: var(--neutral-100);
}
.process--events-card:nth-child(6) .process--events-card-content p {
    display: none;
}

.process--events-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.process--events-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
/* END : Process */

/* START : Feature */
.ld__exploreFeature {
    
}

.ld__exploreFeature .ld__cage {
    max-width: none;
}

.ld__exploreFeature .ld__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 24px 24px;
}
.ld__exploreFeature .ld__header h3 {
    text-align: center;
}
.ld__exploreFeature .ld__header h5 {
    color: var(--neutral-100);
}
.ld__exploreFeature .ld__header p {
    text-align: center;
    color: var(--neutral-90);
    width: 90%;
}
.ld__exploreFeature .ld__header .caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (max-width: 744px) and (min-width: 360px) {
    #homePage .ld__exploreFeature .ld__header h2 {
        font-size: 32px;
        line-height: 40px;
    }
    #homePage .ld__exploreFeature .ld__header p {
        font-size: 20px;
        line-height: 28px;
    }
}

.ld__exploreFeature .ld__content { 
    position: relative;
    background-color: var(--bg-main);
}
.ld__exploreFeature .ld__content::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--secondary-clr);
}

.explore-feature--content {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: 0px auto;
}

.explore-feature--slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
}
.explore-feature--slide-item {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.35s ease-in-out;
}
.explore-feature--slide-item.visible {
    opacity: 1;
}
.explore-feature--slide-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.explore-feature--items {
    width: 100%;
}
.explore-feature--items .header {
    display: none;    
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    padding-top: 0px;
}
.explore-feature--items .header h4 {
    color: var(--neutral-100);
}
.explore-feature--items .header p {
    color: var(--neutral-90);
}
.explore-feature--item {
    display: flex;
    flex-direction: column;
}
.explore-feature--item .preview {
    background-color: var(--secondary-clr);
    padding: 40px 24px;
}
.explore-feature--item .preview img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.explore-feature--item .caption {
    display: flex;    
    flex-direction: column;
    gap: 12px;
    padding: 40px 24px;
}
.explore-feature--item .caption h6 {
    color: var(--neutral-100);
}
.explore-feature--item .caption p {
    color: var(--neutral-100);
}
.explore-feature--item .caption .tittle {
    display: flex;
    gap: 8px;
    align-items: center;
}
.explore-feature--item .caption .tittle .ld--h6-num {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--neutral-100);
    color: var(--neutral-10);
    padding: 8px;
    width: 34px;
    height: 34px;
    text-align: center;
}

@media (max-width: 744px) {
    #homePage .explore-feature--item:last-of-type .caption {
        padding: 40px 24px 80px;
    }
}

@media (min-width: 744px) {
    .ld__exploreFeature .ld__header {
        padding: 80px 0px 40px;
    }
    .ld__exploreFeature .ld__header .caption {
        display: none;
    }
    
    .ld__exploreFeature .ld__content::before {
        content: '';
    }
    
    .explore-feature--content {
        padding: 0px 24px;
    }
    
    .explore-feature--slide {
        display: block;
        position: sticky;
        position: -webkit-sticky;
        top: 0px;
    }
    
    .explore-feature--items .header {
        display: flex;
        margin: auto;
    }
    .explore-feature--item {
        min-height: 100vh;
    }
    .explore-feature--item .preview {
        display: none;
    }
    .explore-feature--item .caption {
        margin: auto;
    }
}

@media (min-width: 1440px) {
    .explore-feature--content {
        padding: 0px;
    }
    .explore-feature--slide-item {
        left: 0;
        right: 80px;
    }
    .explore-feature--items .header {
        padding: 40px 0px 40px 80px;
    }
    .explore-feature--item .caption {
        padding: 40px 0px 40px 80px;
    }
}
/* END : Feature */

/* START : Experience */
section.experience--events {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;

    width: 100%;
    overflow: hidden;
}

.experience--events-inner {
    position: relative;    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 650px;
    padding: 40px 12px;
}
.experience--events-inner h1 {
    position: relative;
    text-align: left;
}

.experience--content {
    position: relative;    
    display: flex;
    flex-direction: column;
    /* width: 100%;
    max-width: 1200px;
    margin: 0 auto; */
    align-items: end;
    gap: 8px;

    text-align: right;
}
/* .experience--content h1 {
    text-align: right;
} */

.experience--pics {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

    border-radius: 30px;
    overflow: hidden;
}
.experience--pics .experience--image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.experience--image-wrap h1 {
    position: relative;
    text-align: left;
}

section.experience--events .experience--image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 77% top;
}
section.experience--events .experience--image-wrap .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.50) 29.88%, rgba(0, 0, 0, 0.00) 57.33%);
}
/* END : Experience */

/* MEDIA QUERY */
@media (max-width: 320px) {
    .text-h1 {
        font-size: calc(10vw + 0.96px);
    }
    .text-h2 {
        font-size: calc(8vw + 0.768px);
    }
    .text-h3 {
        font-size: calc(6vw + 0.576px);
    }
    .text-h4 {

    }
    .text-h5 {

    }
    .text-h6 {

    }
    .text-body {
        font-size: calc(4vw + 0.384px);
    }
    .kat__landing-button {
        font-size: calc(4vw + 0.384px);
    }

    .ads--events-inner .ads--events-body {
        min-height: 210px;
    }
}

@media (min-width: 768px) {
    .text-h1 {
        font-size: 50px;
        line-height: normal;
    }
    .text-h2 {
        font-size: 40px;
        line-height: normal;
    }
    .text-h3 {
        font-size: 32px;
        line-height: normal;
    }
    .text-h4 {
        font-size: 24px;
        line-height: normal;
    }
    .text-h5 {
        font-size: 20px;
        line-height: normal;
    }
    .text-h6 {
        font-size: 18px;
        line-height: normal;
    }
    .text-body {
        font-size: 18px;
        line-height: 24px;
    }
    
    /*  */
    section.hero--events {
        height: 850px;
    }
    section.hero--events .hero--image-wrap {
        border-radius: 40px;
    }
    section.hero--events .hero--image-wrap .hero--content {
        padding: 80px 48px;
    }
    /*  */

    /*  */
    .process--events-card {
        flex-direction: row;
        padding: 32px;
        gap: 24px;
    }
    .process--events-card h2 {
        flex-shrink: 0;
    }
    /*  */

    /*  */
    .ads--events-inner .ads--events-body {
        min-height: 450px;
    }
    .ads--events-body .text-h6 {
        display: block;
    }
    /*  */

    /*  */
    .experience--events-inner {
        padding: 80px 40px;
    }
    /*  */

    /*  */
    section.process--events {
        padding: 40px;
    }
    /*  */

    /*  */
    .experience--events-inner {
        height: 850px;
    }
    /*  */
}

@media (min-width: 1024px) {
    .text-body {
        font-size: 22px;
        line-height: normal;
    }

    .kat__landing-button {
        font-size: 22px;
        line-height: normal;
    }
    /*  */
    section.hero--events {
        height: 900px;
    }
    /*  */
    .testi--events {
        flex-direction: row-reverse;
    }
    .testi--events .testi--events-header {
        align-items: start;
        justify-content: center;
        text-align: left;    
    }
    .testi--events-header h3 {

    }
    .testi--events-header .caption {
        align-items: start;
    }

    /* ads */
    .ads--events-body .text-h6.top-text {
        max-width: max-content;
        transform: translateX(160%);
    }
    .ads--events-body .text-h6.bottom-text {
        transform: translateX(-180%);
    }
    .ads--events-footer p br {
        display: block;
    }
    /*  */

    /* process */
    .process--events-body {
        gap: 32px;
    }
    /*  */

    /*  */
    .experience--events-inner {
        height: 900px;
    }
    /*  */
}

@media (min-width: 1280px) {
    .text-h1 {
        font-size: 70px;
        line-height: normal;
    }
    .text-h2 {
        font-size: 60px;
        line-height: normal;
    }
    .text-h3 {
        font-size: 48px;
        line-height: normal;
    }
    .text-h4 {
        font-size: 32px;
        line-height: normal;
    }
    .text-h5 {
        font-size: 28px;
        line-height: normal;
    }
    .text-h6 {
        font-size: 24px;
        line-height: normal;
    }

    section.hero--events .hero--image-wrap .hero--content {
        padding: 80px 160px;
    }

    /*  */
    .testi--events {
        padding: 80px 0px;
        gap: 40px;
    }
    /*  */

    /*  */
    section.ads--events .ads--events-inner {
        gap: 48px;
        padding: 80px 0px;
    }
    /*  */
    
    /*  */
    section.process--events {
        padding: 80px 0px;
    }
    /*  */

    /*  */
    .experience--events-inner {
        padding: 80px 160px;
    }
    /*  */
}

@media (min-width: 1440px) {
    
}

@media (min-width: 1600px) {
    .text-h1 {
        font-size: 110px;
        line-height: normal;
    }

    section.hero--events .hero--image-wrap .hero--content {
        padding: 80px 135px;
    }
}