/* =========================================================
   HOME — HEADER OVERLAY
   ========================================================= */

body.home .main-container,
body.front-page .main-container {
    position: relative;
}

body.home header.header,
body.front-page header.header {
    position: absolute !important;

    top: 0;
    left: 0;

    width: 100%;
    height: 120px;

    z-index: 1000;

    background: transparent;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

body.home header.header .nav-link,
body.front-page header.header .nav-link,
body.home header.header .header-text,
body.front-page header.header .header-text,
body.home header.header a.glink {
    color: #ffffff !important;
}

body.home header.header .logo,
body.front-page header.header .logo {
    filter: brightness(0) invert(1);
}


/* =========================================================
   HOME — HERO
   ========================================================= */

.home-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 720px;

    overflow: hidden;

    background: #000f47;
}


/* =========================================================
   HERO VIDEO
   ========================================================= */

.home-hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.home-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 15, 71, 0.95) 0%,
            rgba(0, 15, 71, 0.82) 40%,
            rgba(0, 15, 71, 0.48) 72%,
            rgba(0, 15, 71, 0.30) 100%
        );
}

.hero-blue-transparent{
    background:rgba(21,25,77,0.5);
        
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);

}


/* =========================================================
   HERO INNER
   ========================================================= */

.home-hero-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1440px;
    height: 100%;

    margin: 0 auto;

    padding: 0 50px;

    display: flex;
    align-items: center;

    gap: 50px;
}


/* =========================================================
   HERO COPY
   ========================================================= */

.home-hero-copy {
    width: min(700px, 55%);

    padding-top: 70px;
}

.home-hero-title {
    margin: 0 0 32px;

    color: #ffffff;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(56px, 5vw, 86px);
    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -2px;
}

.home-hero-description {
    max-width: 690px;

    margin: 0 0 26px;

    color: #ffffff;

    font-family: 'Involve', sans-serif;

    font-size: 18px;
    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.home-hero-actions {
    display: flex;
    align-items: center;

    gap: 34px;
}

.home-hero-btn {
    min-width: 200px;

    padding: 15px 28px;

    border-radius: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    text-decoration: none;

    font-family: 'Involve', sans-serif;

    font-size: 16px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.home-hero-btn:hover {
    transform: translateY(-2px);
}

.home-hero-btn i {
    font-size: 27px;
}


/* Primary */

.home-hero-btn-primary {
    background: #0060de;

    color: #ffffff;
}

.home-hero-btn-primary:visited,
.home-hero-btn-primary:hover {
    color: #ffffff;
}

.home-hero-btn-primary:hover {
    background: #0870ef;
}


/* Secondary */

.home-hero-btn-secondary {
    background: #c8ddfa;

    color: #0060de;
}

.home-hero-btn-secondary:visited,
.home-hero-btn-secondary:hover {
    color: #0060de;
}

.home-hero-btn-secondary:hover {
    background: #d8e8fc;
}


/* =========================================================
   HOME — CASE STUDY
   ========================================================= */

.home-case-study {
    position: absolute;

    right: 0;
    bottom: 30px;

    width: 620px;

    padding: 30px 20px 20px 30px;

    border-radius: 55px 0 0 55px;

    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;

    z-index: 5;

    opacity: 0;
    visibility: hidden;

    transform: translateX(110%);

    transition:
        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.7s ease,
        visibility 0s linear 1s;
}

.home-case-study.is-visible {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    transition:
        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.7s ease,
        visibility 0s;
}


/* =========================================================
   CASE STUDY — HIDDEN STATE
   ========================================================= */

.home-case-study.is-hidden {
    opacity: 0;

    transform: translateX(110%);

    visibility: hidden;

    pointer-events: none;

    transition:
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease,
        visibility 0s linear 0.7s;
}


/* =========================================================
   CASE STUDY — SHOW TAB
   ========================================================= */

.home-case-study-show {
    position: absolute;

    right: 0;
    bottom: 30px;

    z-index: 4;

    width: 52px;
    height: 150px;

    padding: 12px 8px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;

    border-radius: 20px 0 0 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background: rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #ffffff;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateX(100%);

    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease,
        visibility 0s linear 0.7s;
}

.home-case-study-show.is-visible {
    opacity: 1;
    height: 150px;
    visibility: visible;
    border: none;

    transform: translateX(0);

    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease,
        visibility 0s;
}

.home-case-study-show i {
    font-size: 20px;
}

.home-case-study-show span {
    font-family: 'Involve', sans-serif;

    font-size: 11px;
    font-weight: 500;

    writing-mode: vertical-rl;

    letter-spacing: 0.04em;
}

.home-case-study-show:hover {
    background: rgba(0, 0, 0, 0.65);
}


/* =========================================================
   SLIDER VIEWPORT
   ========================================================= */

.home-case-study-viewport {
    width: 100%;

    overflow: hidden;
}


/* =========================================================
   SLIDER TRACK
   ========================================================= */

.home-case-study-track {
    display: flex;

    width: 100%;

    margin: 0;
    padding: 0;

    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =========================================================
   SLIDE
   ========================================================= */

.home-case-study-slide {
    width: 100%;
    min-width: 100%;

    flex: 0 0 100%;

    display: flex;
    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   CASE STUDY IMAGE
   ========================================================= */

.home-case-study-image {
    position: relative;

    width: 50%;
    flex: 0 0 50%;

    height: 250px;

    overflow: hidden;

    border-radius: 28px;
}

.home-case-study-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.home-case-study-slide:hover
.home-case-study-image img {
    transform: scale(1.04);
}


/* =========================================================
   CASE STUDY CONTENT
   ========================================================= */

.home-case-study-content {
    position: relative;

    width: 50%;

    margin-left: 24px;

    padding: 0;

    display: flex;
    flex-direction: column;

    color: #ffffff;
}


/* =========================================================
   LABEL
   ========================================================= */

.home-case-study-label {
    display: block;

    margin-bottom: 18px;

    color: #ffffff;

    font-family: 'Involve', sans-serif;

    font-size: 15px;
    line-height: 1.4;

    font-weight: 500;
}


/* =========================================================
   TITLE
   ========================================================= */

.home-case-study-title {
    display: block;

    margin: 0;

    color: #ffffff;

    font-family: 'Cormorant Garamond', serif;

    font-size: 24px;
    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -0.015em;

    text-decoration: none;

    transition: opacity 0.25s ease;
}

.home-case-study-title:visited,
.home-case-study-title:hover {
    color: #ffffff;
}

.home-case-study-title:hover {
    opacity: 0.75;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.home-case-study-description {
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.90);

    font-family: 'Involve', sans-serif;

    font-size: 15px;
    line-height: 1.65;

    font-weight: 400;
}


/* =========================================================
   READ INSIGHT
   ========================================================= */

.home-case-study-link {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    margin-top: 24px;

    gap: 12px;

    color: #ffffff;

    font-family: 'Involve', sans-serif;

    font-size: 15px;
    line-height: 1.4;

    font-weight: 600;

    text-decoration: none;

    transition:
        gap 0.25s ease,
        opacity 0.25s ease;
}

.home-case-study-link:visited,
.home-case-study-link:hover {
    color: #ffffff;
}

.home-case-study-link:hover {
    gap: 17px;

    opacity: 0.8;
}

.home-case-study-link i {
    font-size: 21px;
}


/* =========================================================
   SLIDER NAVIGATION
   ========================================================= */

.home-case-study-navigation {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    margin-top: 8px;
}

.home-case-study-navigation button {
    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home-case-study-navigation button:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.70);

    transform: translateY(-2px);
}

.home-case-study-navigation button i {
    font-size: 20px;
}


/* =========================================================
   LARGE DESKTOP
   1200px — 1399px
   ========================================================= */

@media (max-width: 1399px) {

    .home-hero-inner {
        padding-left: 100px;
        padding-right: 70px;
    }

    .home-hero-copy {
        width: min(600px, 52%);
    }

    .home-case-study {
        width: 580px;

        padding: 26px 18px 18px 26px;

        border-radius: 48px 0 0 48px;
    }

    .home-case-study-image {
        width: 280px;
        flex-basis: 280px;

        height: 240px;

        border-radius: 22px;
    }

    .home-case-study-content {
        width: calc(100% - 304px);

        margin-left: 20px;
    }

    .home-case-study-title {
        font-size: 37px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   992px — 1199px
   ========================================================= */

@media (max-width: 1199px) {

    .home-hero {
        min-height: 720px;
    }

    .home-hero-inner {
        padding-left: 70px;
        padding-right: 50px;
    }

    .home-hero-copy {
        width: 50%;
    }

    .home-hero-title {
        font-size: clamp(52px, 5.5vw, 70px);

        letter-spacing: -1.5px;
    }

    .home-hero-description {
        font-size: 16px;

        line-height: 1.65;
    }


    /* Case Study */

    .home-case-study {
        width: 520px;

        padding: 22px 16px 16px 22px;

        border-radius: 40px 0 0 40px;
    }

    .home-case-study-image {
        width: 220px;
        flex-basis: 220px;

        height: 220px;

        border-radius: 20px;
    }

    .home-case-study-content {
        width: calc(100% - 238px);

        margin-left: 18px;
    }

    .home-case-study-label {
        margin-bottom: 14px;

        font-size: 14px;
    }

    .home-case-study-title {
        font-size: 34px;

        line-height: 0.96;
    }

    .home-case-study-description {
        margin-top: 15px;

        font-size: 14px;

        line-height: 1.55;
    }

    .home-case-study-link {
        margin-top: 15px;

        font-size: 14px;
    }

    .home-case-study-navigation {
        margin-top: 14px;
    }


    /* Buttons */

    .home-hero-actions {
        gap: 18px;
    }

    .home-hero-btn {
        min-width: 180px;

        padding: 14px 22px;
    }
}


/* =========================================================
   TABLET PORTRAIT
   <= 991px
   ========================================================= */

@media (max-width: 991px) {

    .home-hero {
        height: auto;

        min-height: 100vh;

        padding-bottom: 60px;
    }

    .home-hero-inner {
        height: auto;

        padding: 150px 50px 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 60px;
    }


    /* Hero Copy */

    .home-hero-copy {
        width: 100%;

        max-width: 700px;

        padding-top: 0;
    }

    .home-hero-title {
        font-size: clamp(58px, 8vw, 78px);

        line-height: 1;
    }

    .home-hero-description {
        max-width: 650px;

        font-size: 17px;
    }


    /* Case Study */

    .home-case-study {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;
        max-width: 700px;

        margin: 0;

        padding: 26px;

        border-radius: 30px;
    }

    .home-case-study-slide {
        align-items: center;
    }

    .home-case-study-image {
        width: 50%;
        flex-basis: 50%;

        height: 300px;

        border-radius: 22px;
    }

    .home-case-study-content {
        width: 50%;

        margin-left: 28px;

        padding: 5px 0;
    }

    .home-case-study-title {
        font-size: clamp(36px, 5vw, 46px);
    }

    .home-case-study-description {
        font-size: 15px;

        line-height: 1.6;
    }


    /*
     * On tablet the card is part of normal flow,
     * so the show tab must also follow it.
     */

    .home-case-study-show {
        position: absolute;

        right: 0;
        bottom: 20px;
    }
}


/* =========================================================
   MOBILE
   <= 767px
   ========================================================= */

@media (max-width: 767px) {

    .home-hero {
        min-height: 0;

        padding-bottom: 60px;
    }

    .home-hero-inner {
        padding: 140px 30px 0;

        gap: 50px;
    }


    /* Hero */

    .home-hero-title {
        margin-bottom: 24px;

        font-size: clamp(48px, 11vw, 64px);

        line-height: 0.98;
    }

    .home-hero-description {
        margin-bottom: 24px;

        font-size: 16px;

        line-height: 1.6;
    }


    /* Buttons */

    .home-hero-actions {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .home-hero-btn {
        width: 100%;

        min-width: 0;

        padding: 15px 22px;
    }


    /* Case Study */

    .home-case-study {
        width: 100%;
        max-width: none;

        padding: 18px;

        border-radius: 24px;
    }

    .home-case-study-slide {
        display: flex;

        flex-direction: column;

        align-items: stretch;
    }

    .home-case-study-image {
        width: 100%;

        flex-basis: auto;

        height: 360px;

        border-radius: 20px;
    }

    .home-case-study-content {
        width: 100%;

        margin: 24px 0 0;

        padding: 0 5px;
    }

    .home-case-study-label {
        margin-bottom: 12px;
    }

    .home-case-study-title {
        font-size: 40px;

        line-height: 0.96;
    }

    .home-case-study-description {
        margin-top: 18px;

        font-size: 15px;

        line-height: 1.6;
    }

    .home-case-study-link {
        margin-top: 20px;

        font-size: 15px;
    }

    .home-case-study-navigation {
        justify-content: flex-start;

        margin-top: 22px;
    }


    /* Show Tab */

    .home-case-study-show {
        bottom: 20px;

        width: 46px;
        height: 130px;

        border-radius: 16px 0 0 16px;
    }

    .home-case-study-show span {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   <= 575px
   ========================================================= */

@media (max-width: 575px) {

    .home-hero-inner {
        padding: 125px 20px 0;

        gap: 42px;
    }


    /* Hero */

    .home-hero-title {
        font-size: clamp(44px, 12vw, 56px);

        line-height: 0.98;

        letter-spacing: -1px;
    }

    .home-hero-description {
        font-size: 15px;

        line-height: 1.6;
    }


    /* Case Study */

    .home-case-study {
        padding: 14px;

        border-radius: 20px;
    }

    .home-case-study-image {
        height: 300px;

        border-radius: 17px;
    }

    .home-case-study-content {
        margin-top: 22px;

        padding: 0 4px;
    }

    .home-case-study-label {
        font-size: 12px;

        letter-spacing: 0.07em;
    }

    .home-case-study-title {
        font-size: 36px;

        line-height: 0.95;
    }

    .home-case-study-description {
        font-size: 14px;

        line-height: 1.55;
    }

    .home-case-study-link {
        font-size: 14px;
    }

    .home-case-study-navigation {
        margin-top: 18px;
    }

    .home-case-study-navigation button {
        width: 38px;
        height: 38px;
    }

    .home-case-study-navigation button i {
        font-size: 18px;
    }


    /* Show Tab */

    .home-case-study-show {
        bottom: 15px;

        width: 42px;
        height: 115px;

        border-radius: 14px 0 0 14px;
    }
}


/* =========================================================
   CASE STUDY — CLOSE / HIDE BUTTON
   ========================================================= */

.home-case-study-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;

    cursor: pointer;

    z-index: 20;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* Icon */

.home-case-study-close i {
    font-size: 20px;

    line-height: 1;

    transition: transform 0.25s ease;
}


/* Hover */

.home-case-study-close:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.7);

    transform: translateY(-1px);
}


/* =========================================================
   HIDDEN STATE
   ========================================================= */

.home-case-study.is-hidden {
    transform: translateX(100%);
}


/* =========================================================
   SHOW BUTTON
   Tetap tertinggal di sisi kanan
   ========================================================= */

.home-case-study-show {
    position: absolute;

    top: 50%;
    right: 0;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-right: 0;

    border-radius: 21px 0 0 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;

    cursor: pointer;

    z-index: 10;

    opacity: 0;

    pointer-events: none;

    transform: translateY(-50%);

    transition:
        opacity 0.3s ease,
        background-color 0.25s ease,
        width 0.25s ease;
}


/* Show button aktif setelah card disembunyikan */

.home-case-study-show.is-visible {
    opacity: 1;

    pointer-events: auto;
}


/* Icon */

.home-case-study-show i {
    font-size: 20px;

    line-height: 1;
}


/* Hover */

.home-case-study-show:hover {
    width: 48px;

    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .home-case-study-close {
        top: 14px;
        right: 14px;

        width: 38px;
        height: 38px;
    }

    .home-case-study-close i {
        font-size: 18px;
    }

    .home-case-study-show {
        width: 38px;
        height: 38px;

        border-radius: 19px 0 0 19px;
    }

    .home-case-study-show i {
        font-size: 18px;
    }

}



/* =========================================================
   COLOR BACKGROUND SECTION
   ========================================================= */
.bg-grey-200{
    background-color: var(--lng-gray-200);
}





/* =========================================================
   INDUSTRIES SECTION
   ========================================================= */

.industries-sections {
    width: 100%;
    position: relative;
}

.industries-contents {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.industries-title {
    margin: 0 0 12px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
}

.sectors-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}


/* =========================================================
   SECTORS GRID
   ========================================================= */

.sectors-grid-2 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px !important;
    width: 100%;
    margin: 32px 0 40px !important;
}


/* =========================================================
   SECTOR ITEM
   ========================================================= */

.sector-item {
    display: flex !important;
    flex-direction: column;
    align-items: start;
    width: 100%;
    text-align: left;
}   


   
.sector-item-2 {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: var(--lng-white);
    
    width: 100%;
    padding: 32px 24px !important;
    
    text-align: center;
    
    border: 1px solid rgba(172, 172, 172,0.15);
    border-radius: 16px;
    
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.sector-item-2:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 96, 222, 0.55);
    box-shadow: 0 12px 30px rgba(0, 96, 222, 0.08);
}


/* =========================================================
   SECTOR ICON
   ========================================================= */

.sector-header-2{
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 72px;
    height: 72px;
    
    margin-bottom: 20px;
}

.sector-icon-2 {
    display: block;
    width: 50px;
    height: 50px;
    
    object-fit: contain;
}


/* =========================================================
   SECTOR NAME
   ========================================================= */

.sector-name-1 {
    display: block;
    
    width: 100%;
    margin-bottom: 0;
    
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    min-height: 55px;
}

   .sector-name-2 {
    display: block;
    
    width: 100%;
    margin-bottom: 0;
    
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    min-height: 55px;
}


/* =========================================================
   SECTOR DESCRIPTION
   ========================================================= */

.sector-description {
    width: 100%;
    margin: 0;
    
    font-size: 15px;
    line-height: 1.65;
    color: #666;
}


/* =========================================================
   CTA
   ========================================================= */

.industries-section > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    gap: 8px;
    
    margin-top: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .industries-title {
        font-size: 40px!important;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px !important;
    }

    .sector-item {
        padding: 28px 20px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .industries-title {
        font-size: 42px!important;
    }

    .sectors-title {
        font-size: 16px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 16px !important;
        margin-top: 24px !important;
        margin-bottom: 32px !important;
    }

    .sector-item {
        padding: 28px 24px !important;
    }

    .sector-name {
        font-size: 19px;
    }

    .sector-description {
        font-size: 14px;
        line-height: 1.6;
    }

}



.problem-solving {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 64px;
}

.problem-image-2 {
    width: 80%;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 35px;
    object-fit: cover;
    
    display: block;
}


/* =========================================================
   KNOWLEDGE — CASE STUDY CARD
   ========================================================= */

.knowledge-case-study {
    position: relative;

    display: block;

    width: 100%;
    min-height: 500px;

    overflow: hidden;

    border-radius: 32px;

    background-image: url('../images/marine-cargo-insurance-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-decoration: none;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);

    transition: transform 0.35s ease;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.knowledge-case-study-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 45, 55, 0.40) 0%,
            rgba(0, 55, 55, 0.78) 100%
        );
}


/* =========================================================
   CONTENT
   ========================================================= */

.knowledge-case-study-content {
    position: relative;

    z-index: 2;

    min-height: 500px;

    padding: 64px 60px 55px;

    display: flex;
    flex-direction: column;

    color: #ffffff;
}


/* =========================================================
   LABEL
   ========================================================= */

.knowledge-case-study-label {
    display: block;

    margin-bottom: 20px;

    color: #ffffff;

    font-family: 'Involve', sans-serif;

    font-size: 17px;
    line-height: 1.4;

    font-weight: 500;
}


/* =========================================================
   TITLE
   ========================================================= */

.knowledge-case-study h2 {
    margin: 0 0 24px;

    max-width: 480px;

    color: #ffffff;

    font-family: 'Cormorant Garamond', serif;

    font-size: 46px;
    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -0.015em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.knowledge-case-study p {
    margin: 0;

    max-width: 460px;

    color: rgba(255, 255, 255, 0.92);

    font-family: 'Involve', sans-serif;

    font-size: 16px;
    line-height: 1.65;

    font-weight: 400;
}


/* =========================================================
   LINK
   ========================================================= */

.knowledge-case-study-link {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    width: fit-content;

    gap: 12px;

    color: #ffffff;

    font-family: 'Involve', sans-serif;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 600;
}


/* =========================================================
   HOVER
   ========================================================= */

.knowledge-case-study:hover {
    transform: translateY(-5px);
}

.knowledge-case-study:hover .knowledge-case-study-link {
    gap: 18px;
}

.knowledge-case-study-link i {
    font-size: 22px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .knowledge-case-study {
        min-height: 460px;
    }

    .knowledge-case-study-content {
        min-height: 460px;

        padding: 55px 45px 45px;
    }

    .knowledge-case-study h2 {
        font-size: 42px;
    }

    .knowledge-case-study p {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .knowledge-case-study {
        min-height: 420px;

        border-radius: 24px;
    }

    .knowledge-case-study-content {
        min-height: 420px;

        padding: 42px 32px 35px;
    }

    .knowledge-case-study-label {
        font-size: 15px;
    }

    .knowledge-case-study h2 {
        font-size: 38px;
        line-height: 0.96;
    }

    .knowledge-case-study p {
        font-size: 14px;
        line-height: 1.6;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .knowledge-case-study {
        min-height: 400px;

        border-radius: 20px;
    }

    .knowledge-case-study-content {
        min-height: 400px;

        padding: 35px 25px 30px;
    }

    .knowledge-case-study-label {
        margin-bottom: 15px;

        font-size: 14px;
    }

    .knowledge-case-study h2 {
        font-size: 34px;
    }

    .knowledge-case-study p {
        margin-top: 0;

        font-size: 14px;
    }

    .knowledge-case-study-link {
        font-size: 14px;
    }

}



/* =========================================================
   CASE STUDY
   ========================================================= */

.single-case-study {
    position: relative;
    width: 100%;
}


/* =========================================================
   HERO + OPENING STAGE
   ========================================================= */

.case-study-hero-stage {
    position: relative;
    width: 100%;
}


/* =========================================================
   HERO BACKGROUND
   ========================================================= */

.case-study-hero-background {
    position: sticky;
    top: 0;

    width: 100%;
    height: 100vh;

    margin-bottom: -100vh;

    background-image: var(--case-study-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    z-index: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.case-study-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.2) 67%,
        rgba(0, 0, 0, 0.7)
    );

    z-index: 1;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.case-study-hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
}


/* =========================================================
   HERO LEFT
   ========================================================= */

.hero-case-left {
    position: relative;
    z-index: 2;
}


/* =========================================================
   OPENING NARRATION
   ========================================================= */

.case-study-opening {
    position: relative;

    width: 100%;

    z-index: 5;
}


/* =========================================================
   OPENING NARRATION INNER
   ========================================================= */

.case-study-opening-inner {
    padding-top: 120px;
    padding-bottom: 120px;
}


/* =========================================================
   CONTENT AFTER CASE STUDY HERO
   ========================================================= */

.single-content {
    position: relative;

    z-index: 10;

    background: #ffffff;
}

/* =========================================================
   CASE STUDY — ON THIS PAGE NAVIGATION
   ========================================================= */

.case-study-nav {
    position: sticky;
    top: 0;

    width: 100%;

    background: #000f47;

    z-index: 50;
}


.case-study-nav-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 40px;
}


/* =========================================================
   TITLE
   ========================================================= */

.case-study-nav-title {
    flex-shrink: 0;
}


.case-study-nav-title h3 {
    margin: 0;

    font-size: 18px;
    font-weight: 600;

    color: #ffffff;

    white-space: nowrap;
}


/* =========================================================
   LINKS
   ========================================================= */

.case-study-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 0 0 auto;
}


.case-study-nav-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.25s ease;
}


.case-study-nav-links a:hover, .case-study-nav-links a:visited {
    color: #ffffff;
}

.case-study-nav-links a:active{
    background-color: #2d20a4;
}


/* =========================================================
   CASE STUDY — PROBLEM
   ========================================================= */

.case-study-problem {
    position: relative;
    width: 100%;

    background: #ffffff;

    padding-bottom: 120px;
}


/* =========================================================
   PROBLEM IMAGE
   ========================================================= */

.case-study-problem-visual {
    position: relative;

    width: 100%;
    min-height: 90vh;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
}

/* =========================================================
   PROBLEM IMAGE OVERLAY
   ========================================================= */

.case-study-problem-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.2) 67%,
        rgba(0, 0, 0, 0.7)
    );

    z-index: 1;
}


/* =========================================================
   PROBLEM TITLE
   ========================================================= */

.case-study-problem-overlay {
    position: relative;

    width: 100%;
    max-width: 1200px;

    padding: 48px;

    text-align: center;

    z-index: 2;
}


.case-study-problem-overlay .section-tag {
    margin-bottom: 12px;
}


.case-study-problem-overlay h2 {


    margin: 0;

    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
}


/* =========================================================
   PROBLEM NARRATION
   ========================================================= */

.case-study-problem-content {
    position: relative;

    display: flex;
    justify-content: center;

    z-index: 3;

    margin-top: -150px;
}


.case-study-problem-naration {
    position: relative;

    padding: 48px;

    background: #ffffff;
    border-radius: 30px 30px 0 0;
}



/* =========================================================
   CASE STUDY — IMAGE SECTIONS
   Problem / Approach / Result
   ========================================================= */

.case-study-section {
    position: relative;
    width: 100%;

    background: #ffffff;

    padding-bottom: 120px;
    
}


/* =========================================================
   IMAGE
   ========================================================= */

.case-study-section-visual {
    position: relative;

    width: 100%;
    min-height: 90vh;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
}


/* =========================================================
   IMAGE GRADIENT
   ========================================================= */

.case-study-section-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.2) 67%,
        rgba(0, 0, 0, 0.7)
    );

    z-index: 1;
}


/* =========================================================
   TITLE
   ========================================================= */

.case-study-section-overlay {
    position: relative;

    width: 100%;
    max-width: 1200px;

    padding: 48px;

    text-align: center;

    z-index: 2;
}


.case-study-section-overlay .section-tag {
    margin-bottom: 12px;
}


.case-study-section-overlay h2 {
    max-width: 900px;

    margin: 0 auto;

    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
}


/* =========================================================
   NARRATION
   ========================================================= */

.case-study-section-content {
    position: relative;

    display: flex;
    justify-content: center;

    z-index: 3;

    margin-top: -100px;
}


.case-study-section-naration {
    position: relative;

    padding: 48px;

    background: #ffffff;
    border-radius: 30px 30px 0 0;
}



/* =========================================================
   CASE STUDY — TEAM
   ========================================================= */

.case-study-team {
    position: relative;
    width: 100%;

    background: #000f47;
}


/* =========================================================
   TEAM HEADING
   ========================================================= */

.case-study-team-heading {
    margin-bottom: 64px;
}

.case-study-team-heading h2 {
    margin-bottom: 0;
}


/* =========================================================
   TEAM GRID
   ========================================================= */

.case-study-team-grid {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;
    align-items: stretch;

    gap: 20px;
}


/* =========================================================
   TEAM CARD
   ========================================================= */

.case-study-team-card {
    width: calc(30% - 5px);

    background: #ffffff;

    border: 0px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    overflow: hidden;

    padding: 1.5rem 0;

}


/* =========================================================
   TEAM IMAGE
   ========================================================= */

.case-study-team-image {
    width: 180px;
    height: 180px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 50%;
}

.case-study-team-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================================
   TEAM CARD BODY
   ========================================================= */

.case-study-team-card-body {
    padding: 24px;
}


.case-study-team-category {
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
}


.case-study-team-card h3 {
    margin-bottom: 12px;
}


.case-study-team-excerpt {
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   CASE STUDY ARCHIVE
   ========================================================= */

.case-study-grid {
    width: 100%;
}


/* =========================================================
   CASE STUDY CARD
   ========================================================= */

.case-study-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;

    height: 100%;
    padding: 20px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.case-study-card:hover {
    transform: translateY(-4px);
}


/* =========================================================
   IMAGE
   ========================================================= */

.case-study-card-image {
    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;
    border-radius: 20px;
}


.case-study-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.case-study-card:hover .case-study-card-image img {
    transform: scale(1.03);
}


/* =========================================================
   CARD BODY
   ========================================================= */

.case-study-card-body {
    padding: 20px 0;
}


.case-study-card-tag {
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
}


.case-study-card-title {
    margin-bottom: 16px;

    line-height: 1.25;
}


.case-study-card-excerpt {
    margin-bottom: 24px;

    font-size: 15px;
    line-height: 1.6;
}


.case-study-card-excerpt p {
    margin-bottom: 0;
}


.case-study-card-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-weight: 600;
    font-size: 14px;
}


.case-study-card-link i {
    font-size: 18px;

    transition: transform 0.25s ease;
}


.case-study-card:hover .case-study-card-link i {
    transform: translateX(4px);
}


/* =================================================
   RISK REVIEW / PDF DOWNLOAD
   ================================================= */

.case-study-download {
    width: 100%;
    background: #cfeaff;
    padding: 96px 24px;
}

.case-study-download-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 40px;

    max-width: 900px;
    margin: 0 auto;
}


/* PDF PREVIEW */

.case-study-download-preview {
    flex: 0 0 240px;
    width: 240px;
}

.case-study-download-preview img {
    display: block;

    width: 240px;
    height: 240px;

    object-fit: cover;
}


/* CTA CONTENT */

.case-study-download-content {
    flex: 0 1 420px;
}

.case-study-download-content h2 {
    margin: 0 0 12px;

    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.case-study-download-content p {
    margin: 0 0 18px;

    font-size: 16px;
    line-height: 1.5;
}

.case-study-download-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}





/* ==========================================================
   L&G 20TH ANNIVERSARY — CINEMATIC FULLSCREEN INTRO
   ========================================================== */

#lg-anniversary-intro {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;
    height: 100dvh;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% 50%,
            #183d72 0%,
            #0a2348 30%,
            #031225 62%,
            #010711 100%
        );

    z-index: 999999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 1s cubic-bezier(.77, 0, .18, 1),
        visibility 1s;
}


/* ==========================================================
   BACKGROUND ATMOSPHERE
   ========================================================== */

.lg-anniversary-bg {
    position: absolute;
    inset: -15%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255, 214, 105, .20) 0%,
            rgba(255, 194, 70, .10) 20%,
            transparent 48%
        );

    opacity: .35;

    transform: scale(.75);

    animation:
        lgBackgroundAtmosphere
        5.2s
        cubic-bezier(.16, 1, .3, 1)
        forwards;

    pointer-events: none;
}


@keyframes lgBackgroundAtmosphere {

    0% {
        opacity: 0;
        transform: scale(.65);
    }

    25% {
        opacity: .75;
    }

    55% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: .8;
        transform: scale(1.12);
    }

}


/* ==========================================================
   CENTRAL GOLDEN LIGHT
   ========================================================== */

#lg-anniversary-intro::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: min(75vw, 1050px);
    aspect-ratio: 1 / .55;

    transform:
        translate(-50%, -50%)
        scale(.15);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(255, 250, 226, 1) 0%,
            rgba(255, 232, 166, .98) 9%,
            rgba(255, 210, 103, .82) 20%,
            rgba(236, 176, 57, .48) 35%,
            rgba(207, 143, 27, .18) 52%,
            transparent 72%
        );

    filter: blur(12px);

    opacity: 0;

    animation:
        lgCentralGoldenLight
        2.5s
        cubic-bezier(.16, 1, .3, 1)
        .65s
        forwards;

    pointer-events: none;
}


@keyframes lgCentralGoldenLight {

    0% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(.15);
        filter: blur(35px);
    }

    25% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(.55);
        filter: blur(20px);
    }

    55% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1);
        filter: blur(10px);
    }

    100% {
        opacity: .78;
        transform:
            translate(-50%, -50%)
            scale(1.08);
        filter: blur(16px);
    }

}


/* ==========================================================
   CENTRAL LIGHT BURST
   ========================================================== */

#lg-anniversary-intro::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #fffdf2;

    box-shadow:
        0 0 15px #ffffff,
        0 0 35px rgba(255, 231, 160, .95),
        0 0 75px rgba(255, 206, 91, .85),
        0 0 140px rgba(255, 190, 45, .55),
        0 0 220px rgba(255, 175, 20, .30);

    transform:
        translate(-50%, -50%)
        scale(0);

    opacity: 0;

    animation:
        lgCentralFlash
        1.7s
        cubic-bezier(.16, 1, .3, 1)
        1.35s
        forwards;

    pointer-events: none;
}


@keyframes lgCentralFlash {

    0% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(0);
    }

    15% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(2);
    }

    35% {
        opacity: .9;
        transform:
            translate(-50%, -50%)
            scale(5);
    }

    65% {
        opacity: .45;
        transform:
            translate(-50%, -50%)
            scale(10);
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(18);
    }

}


/* ==========================================================
   LIGHT RAYS
   ========================================================== */

.lg-light-ray {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 2px;
    height: 180vh;

    transform-origin: center;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(255, 225, 145, .05) 20%,
            rgba(255, 221, 126, .32) 50%,
            rgba(255, 225, 145, .05) 80%,
            transparent 100%
        );

    opacity: 0;

    pointer-events: none;
}


.lg-ray-1 {
    transform:
        translate(-50%, -50%)
        rotate(22deg)
        scale(.15);

    animation:
        lgRayOne
        2.5s
        ease-out
        .35s
        forwards;
}


.lg-ray-2 {
    transform:
        translate(-50%, -50%)
        rotate(-22deg)
        scale(.15);

    animation:
        lgRayTwo
        2.7s
        ease-out
        .55s
        forwards;
}


@keyframes lgRayOne {

    0% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            rotate(22deg)
            scale(.15);
    }

    35% {
        opacity: .75;
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            rotate(22deg)
            scale(1.7);
    }

}


@keyframes lgRayTwo {

    0% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            rotate(-22deg)
            scale(.15);
    }

    35% {
        opacity: .65;
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            rotate(-22deg)
            scale(1.7);
    }

}


/* ==========================================================
   LOGO CONTAINER
   ========================================================== */

.lg-anniversary-logo-wrap {
    position: absolute;

    left: 50%;
    top: 50%;

    width: min(58vw, 760px);

    transform:
        translate(-50%, -50%)
        scale(.72);

    opacity: 0;

    isolation: isolate;

    animation:
        lgLogoEntrance
        1.6s
        cubic-bezier(.16, 1, .3, 1)
        1.45s
        forwards;
}


/* ==========================================================
   GOLDEN HALO DIRECTLY BEHIND LOGO
   ========================================================== */

.lg-logo-glow {
    position: absolute;

    z-index: -1;

    left: 50%;
    top: 50%;

    width: 120%;
    aspect-ratio: 1 / .62;

    transform:
        translate(-50%, -50%)
        scale(.45);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,

            rgba(255, 255, 244, 1) 0%,

            rgba(255, 244, 205, .98) 8%,

            rgba(255, 222, 139, .88) 18%,

            rgba(255, 198, 78, .62) 31%,

            rgba(237, 172, 48, .34) 45%,

            rgba(219, 150, 28, .13) 60%,

            transparent 76%
        );

    filter: blur(14px);

    opacity: 0;

    animation:
        lgLogoGlow
        2.4s
        cubic-bezier(.16, 1, .3, 1)
        1.2s
        forwards;

    pointer-events: none;
}


@keyframes lgLogoGlow {

    0% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(.35);

        filter: blur(30px);
    }

    30% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(.72);

        filter: blur(18px);
    }

    60% {
        opacity: .95;

        transform:
            translate(-50%, -50%)
            scale(1);

        filter: blur(10px);
    }

    100% {
        opacity: .72;

        transform:
            translate(-50%, -50%)
            scale(1.06);

        filter: blur(15px);
    }

}


/* ==========================================================
   LOGO
   ========================================================== */

.lg-anniversary-logo {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: auto;

    filter:
        drop-shadow(
            0 12px 25px rgba(0, 0, 0, .38)
        )
        drop-shadow(
            0 0 18px rgba(255, 224, 145, .18)
        );
}


/* ==========================================================
   LOGO ENTRANCE
   ========================================================== */

@keyframes lgLogoEntrance {

    0% {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(.68);
    }

    40% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.04);
    }

    65% {
        transform:
            translate(-50%, -50%)
            scale(.985);
    }

    100% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

}


/* ==========================================================
   LOGO LIGHT SWEEP
   ========================================================== */

.lg-anniversary-logo-wrap .lg-logo-sweep {
    position: absolute;

    z-index: 4;

    top: -20%;
    left: -80%;

    width: 30%;
    height: 140%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.75),
            rgba(255,225,150,.35),
            transparent
        );

    transform: skewX(-20deg);

    opacity: 0;

    pointer-events: none;

    animation:
        lgLogoSweep
        1.5s
        ease-in-out
        2.65s
        forwards;
}


@keyframes lgLogoSweep {

    0% {
        left: -80%;
        opacity: 0;
    }

    15% {
        opacity: .9;
    }

    75% {
        opacity: .75;
    }

    100% {
        left: 150%;
        opacity: 0;
    }

}


/* ==========================================================
   RIBBONS
   ========================================================== */

.lg-ribbon {
    position: absolute;

    width: 70vw;
    height: 85px;

    border-radius: 50%;

    opacity: 0;

    pointer-events: none;

    filter: blur(.2px);
}


/* BLUE */

.lg-ribbon-blue {

    background:
        linear-gradient(
            90deg,

            transparent 0%,

            rgba(20, 67, 137, .15) 10%,

            #164f9d 25%,

            #0a3678 48%,

            #2d6bc0 70%,

            rgba(26, 78, 150, .15) 90%,

            transparent 100%
        );

    box-shadow:
        0 0 35px rgba(27, 91, 175, .25);
}


/* GOLD */

.lg-ribbon-gold {

    background:
        linear-gradient(
            90deg,

            transparent 0%,

            rgba(166, 105, 20, .12) 10%,

            #a96f19 25%,

            #e2b448 42%,

            #ffe49a 53%,

            #c58b25 70%,

            rgba(166, 105, 20, .12) 90%,

            transparent 100%
        );

    box-shadow:
        0 0 35px rgba(231, 183, 72, .22);
}


/* ==========================================================
   RIBBON 1
   ========================================================== */

.lg-ribbon-1 {

    left: -30vw;
    top: 17%;

    transform:
        rotate(-17deg)
        translateX(-30vw);

    animation:
        lgRibbonOne
        2.8s
        cubic-bezier(.22, 1, .36, 1)
        .15s
        forwards;
}


@keyframes lgRibbonOne {

    0% {
        opacity: 0;

        transform:
            rotate(-17deg)
            translateX(-35vw);
    }

    25% {
        opacity: .9;
    }

    100% {
        opacity: .16;

        transform:
            rotate(-17deg)
            translateX(75vw);
    }

}


/* ==========================================================
   RIBBON 2
   ========================================================== */

.lg-ribbon-2 {

    right: -30vw;
    top: 27%;

    transform:
        rotate(18deg)
        translateX(35vw);

    animation:
        lgRibbonTwo
        3s
        cubic-bezier(.22, 1, .36, 1)
        .4s
        forwards;
}


@keyframes lgRibbonTwo {

    0% {
        opacity: 0;

        transform:
            rotate(18deg)
            translateX(35vw);
    }

    25% {
        opacity: .95;
    }

    100% {
        opacity: .18;

        transform:
            rotate(18deg)
            translateX(-75vw);
    }

}


/* ==========================================================
   RIBBON 3
   ========================================================== */

.lg-ribbon-3 {

    left: -35vw;
    bottom: 20%;

    transform:
        rotate(13deg)
        translateX(-35vw);

    animation:
        lgRibbonThree
        3.2s
        cubic-bezier(.22, 1, .36, 1)
        .65s
        forwards;
}


@keyframes lgRibbonThree {

    0% {
        opacity: 0;

        transform:
            rotate(13deg)
            translateX(-35vw);
    }

    25% {
        opacity: .75;
    }

    100% {
        opacity: .12;

        transform:
            rotate(13deg)
            translateX(75vw);
    }

}


/* ==========================================================
   RIBBON 4
   ========================================================== */

.lg-ribbon-4 {

    right: -35vw;
    bottom: 12%;

    transform:
        rotate(-13deg)
        translateX(35vw);

    animation:
        lgRibbonFour
        3.2s
        cubic-bezier(.22, 1, .36, 1)
        .8s
        forwards;
}


@keyframes lgRibbonFour {

    0% {
        opacity: 0;

        transform:
            rotate(-13deg)
            translateX(35vw);
    }

    25% {
        opacity: .75;
    }

    100% {
        opacity: .12;

        transform:
            rotate(-13deg)
            translateX(-75vw);
    }

}


/* ==========================================================
   CONFETTI
   ========================================================== */

.lg-confetti {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}


.lg-confetti-piece {

    position: absolute;

    width: 8px;
    height: 18px;

    border-radius: 1px;

    opacity: 0;

    animation:
        lgConfettiFall
        var(--duration)
        cubic-bezier(.15, .7, .3, 1)
        var(--delay)
        forwards;
}


@keyframes lgConfettiFall {

    0% {

        opacity: 0;

        transform:
            translate3d(
                var(--start-x),
                -15vh,
                0
            )
            rotate(0deg)
            scale(.7);
    }

    12% {
        opacity: .95;
    }

    70% {
        opacity: .75;
    }

    100% {

        opacity: 0;

        transform:
            translate3d(
                var(--end-x),
                115vh,
                0
            )
            rotate(760deg)
            scale(1);
    }

}


/* ==========================================================
   SPARKLES
   ========================================================== */

.lg-sparkles {

    position: absolute;

    inset: 0;

    pointer-events: none;
}


.lg-sparkle {

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 8px rgba(255,255,255,.95),
        0 0 18px rgba(255,222,130,.9),
        0 0 35px rgba(255,190,50,.55);

    opacity: 0;

    animation:
        lgSparkle
        var(--duration)
        ease-in-out
        var(--delay)
        infinite;
}


@keyframes lgSparkle {

    0%,
    100% {

        opacity: 0;

        transform:
            scale(.15);
    }

    45% {

        opacity: .9;

        transform:
            scale(.8);
    }

    55% {

        opacity: 1;

        transform:
            scale(1.35);
    }

    70% {

        opacity: .4;

        transform:
            scale(.5);
    }

}


/* ==========================================================
   EXIT
   ========================================================== */

#lg-anniversary-intro.lg-anniversary-exit {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .lg-anniversary-logo-wrap {

        width: 82vw;
    }

    .lg-ribbon {

        width: 125vw;
        height: 55px;
    }

    #lg-anniversary-intro::before {

        width: 130vw;
    }

    .lg-logo-glow {

        width: 135%;
    }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    #lg-anniversary-intro *,
    #lg-anniversary-intro::before,
    #lg-anniversary-intro::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;
    }

}