@font-face {
    font-family: 'Alexandria';
    src: url('../fonts/alexandria_font.woff2') format('woff2');
    font-weight: 100 900;
    /* Support variable font weights */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope.woff2') format('woff2');
    font-weight: 100 900;
    /* Support variable font weights */
    font-style: normal;
    font-display: swap;
}

/* commons  */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    margin-bottom: 0;
}

.orange-btn {
    display: flex;
    width: fit-content;
    height: auto;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);

    p {
        font-family: 'Alexandria', sans-serif;
        color: #FFF;
        font-size: 14px;
        font-weight: 400;
        line-height: 28px;
        text-transform: capitalize;
        margin-bottom: 0;
    }
}

/* Hero Section | Section 1   */
.hero-section {
    position: relative;
    height: 100%;
    height: 785px;
    width: 100%;

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .container {
        position: relative;
        top: 35%;
        z-index: 2;

        .hero-content {
            max-width: 587px;
            width: 100%;
            height: auto;

            .eyebrow {
                color: #F47920;
                font-size: 14px;
                font-weight: 600;
                line-height: 22px;
                letter-spacing: 1.4px;
                text-transform: uppercase;
                margin-bottom: 0;
                font-family: 'Manrope', sans-serif;
            }

            h1 {
                color: #FFF;
                font-size: 46px;
                font-style: normal;
                font-weight: 400;
                line-height: 66px;
                margin-top: 8px;
                font-family: 'Alexandria', sans-serif;

            }

            .orange-btn {
                margin-top: 40px;
            }
        }


        .hero-bottom-nav {
            width: calc(100% - 160px);
            padding-top: 177px;

            ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                align-items: center;
                gap: 24px;

                li {
                    display: flex;
                    align-items: center;
                    padding-right: 26px;
                    border-right: 2px solid #d9d9d941;

                    &:last-child {
                        border-right: 0;
                        padding-right: 0;
                    }

                    a {
                        color: #FFF;
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 18px;
                        text-decoration: none;
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        margin-block: 9px;
                        transition: color 0.3s ease;


                        &:hover {
                            color: #F47920;

                            svg path {
                                fill: #F47920;
                            }
                        }
                    }

                    span {
                        font-family: 'Alexandria', sans-serif;
                        font-weight: 400;
                    }
                }
            }


        }

        .hero-bottom-nav .hero-bottom-nav .hero-bottom-nav .hero-bottom-nav .hero-bottom-nav .hero-bottom-nav a:hover .hero-bottom-nav svg path {
            transition: fill 0.3s ease;
        }
    }

    @media screen and (max-width: 1025px) {
        & {
            .hero-background {
                img {
                    object-position: 90%;
                }

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
                    z-index: 1;
                }
            }

            .container {
                top: 140px;

                .hero-content {
                    h1 {
                        font-size: 36px;
                        font-weight: 400;
                        line-height: 44px;
                    }
                }

                .hero-bottom-nav {
                    width: 100%;
                    padding-top: 175px;

                    ul {
                        display: block;

                        li {
                            border-right: 0;
                            padding-right: 0;
                            border-bottom: 1px solid rgba(217, 217, 217, 0.20);
                            padding-block: 0;

                            a {
                                width: 100%;
                                justify-content: space-between;
                                margin-block: 0;
                                padding-block: 16px;
                            }

                            &:last-child {
                                border-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* Explore By | Section 2  */
.explore-container {
    padding-block: 100px;
    overflow: hidden;

    .explore-top {

        .eyebrow {
            color: #F47920;
            font-size: 14px;
            font-weight: 600;
            line-height: 22px;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            font-family: 'Manrope', sans-serif;
        }

        .tabs {
            display: flex;
            justify-content: start;
            margin-bottom: 44px;
            margin-top: 12px;
        }

        .tab {
            background: none;
            border: none;
            font-size: 42px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            color: #C3C3C3;
            cursor: pointer;
            padding: 0 20px;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Alexandria', sans-serif;

            &:first-child {
                padding-left: 0;
            }
        }

        .tab.active {
            color: #191919;
        }

        .tab-separator {
            color: #C3C3C3;
            font-size: 32px;
            font-weight: 300;
            padding: 0 10px;
        }
    }

    .cursor {
        display: none;
        position: fixed;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 95px;
        height: 95px;
        margin-left: -5px;
        margin-top: -3px;
        border-radius: 50%;
        transition: transform 0.3s ease;
        transform-origin: center center;
        pointer-events: none;
        z-index: 1000;
    }

    .grow {
        transform: scale(1);
    }

    .swiper {
        display: none;
    }

    .carousel-container {
        display: block;
        position: relative;
        overflow: hidden;
        padding: 0 20px;
        height: auto;
        cursor: grab;
        touch-action: pan-y;
    }

    .carousel-container.active {
        cursor: grabbing;
    }

    .carousel-container.dragging {
        cursor: grabbing;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        min-height: 511px;
        height: 100%;
        align-items: start;
        user-select: none;
        will-change: transform;
        margin-left: 80px;
    }

    .carousel-track.dragging {
        transition: none;
    }

    .carousel-track.snapping {
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .carousel-slide {
        flex-shrink: 0;
        width: 296px;
        /* min-height: 370px; */
        height: 100%;
        margin-right: 20px;
        border-radius: 12px;
        position: relative;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        transform: scale(1);
        will-change: transform;
        filter: grayscale(100%);
    }

    .carousel-slide.active {
        width: 424px;
        /* min-height: 511px; */
        height: 100%;
        transform: scale(1);
        z-index: 2;
        filter: grayscale(0%);

        img {
            height: 460px;
        }
    }

    .carousel-slide.prev {
        opacity: 0.7;
        transform: scale(0.9);
        filter: grayscale(100%);
    }

    .slide-image {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 12px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide-overlay {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        padding-top: 22px;

        span {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 12px;
            font-family: 'Alexandria', sans-serif;
            font-weight: 400;
        }

        svg {
            display: none;
        }
    }

    .slide-number {
        font-family: 'Alexandria', sans-serif;
        color: #9D9D9D;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        text-transform: capitalize;
        flex-shrink: 0;
    }

    .slide-title {
        color: #9D9D9D;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        text-transform: capitalize;
        font-family: 'Alexandria', sans-serif;
    }

    .carousel-slide.active .slide-number {
        color: #1A1A1A;
        font-size: 24px;
    }

    .carousel-slide.active .slide-title {
        color: #1A1A1A;
        font-size: 24px;
    }

    .carousel-slide.active {
        svg {
            display: block;
        }
    }

    .carousel-slide.active {
        .slide-image {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    /* Responsive design */
    @media (max-width: 768px) {
        & {
            padding-block: 72px;

            .explore-top {

                .tab {
                    font-size: 24px;
                    padding: 0;
                }

            }

            .cursor {
                display: none !important;
            }

            .carousel-container {
                display: none;
                padding: 0 10px;
                height: 100%;
            }

            .carousel-slide {
                width: 250px;
                height: 160px;
            }

            .carousel-slide.active {
                width: 320px;
                height: 200px;
            }

            .swiper {
                display: block;
                width: 100%;
                height: 100%;

                .swiper-slide {
                    height: 300px;
                    border-radius: 6px;
                    overflow: hidden;

                    .img-container {
                        position: relative;
                        width: 100%;
                        height: 100%;
                        filter: grayscale(100%);

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                        &::before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background: linear-gradient(178deg, rgba(0, 0, 0, 0.00) 29.81%, rgba(0, 0, 0, 0.40) 91.02%), linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
                            z-index: 1;
                        }
                    }

                    .slide-content {
                        position: absolute;
                        bottom: 20px;
                        left: 20px;
                        display: flex;
                        justify-content: start;
                        align-items: start;
                        gap: 10px;

                        .digit {
                            color: #FFF;
                            font-size: 16px;
                            font-weight: 400;
                            line-height: normal;
                            text-transform: capitalize;
                            margin: 0;
                            text-wrap: nowrap;
                        }

                        .title {
                            color: #FFF;
                            font-size: 16px;
                            font-weight: 400;
                            line-height: normal;
                            text-transform: capitalize;
                            margin: 0;
                        }

                    }
                }

                .swiper-slide-active {

                    .img-container {
                        filter: grayscale(0%);
                    }
                }

                .swiper-scrollbar {
                    position: relative;
                    margin-top: 30px;
                    background: #F2F2F2 !important;

                    .swiper-scrollbar-drag {
                        border-radius: 10px !important;
                        background: linear-gradient(93deg, #CE5600 5.69%, #EA8033 105.38%) !important;
                    }
                }
            }
        }
    }
}

/* ESG Section | Section 3  */
.esg-container {
    position: relative;
    width: 100%;
    height: 767px;

    .esg-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .container {
        position: relative;
        top: 80px;
        z-index: 2;
        display: flex;
        justify-content: end;

        .esg-overlay-card {
            /* position: absolute; */
            width: 415px;
            height: auto;
            /* top: 80px;
            right: 80px; */
            padding: 36px;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.60);
            backdrop-filter: blur(19.700000762939453px);

            .esg-label {
                color: #F47920;
                font-size: 14px;
                font-weight: 600;
                line-height: 22px;
                letter-spacing: 1.4px;
                text-transform: capitalize;
                font-family: 'Manrope', sans-serif;
            }

            h2 {
                color: #FFF;
                font-size: 42px;
                font-weight: 400;
                line-height: 56px;
                margin-top: 8px;
                font-family: 'Alexandria', sans-serif;
            }

            p {
                color: rgba(255, 255, 255, 0.80);
                font-size: 15px;
                font-weight: 400;
                line-height: 170%;
                font-family: 'Manrope', sans-serif;
            }

            ul.esg-links {
                margin-top: 60px;
                list-style: none;

                li {
                    a {
                        width: 100%;
                        height: auto;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        padding-block: 18px;
                        border-bottom: 1px solid rgba(217, 217, 217, 0.20);

                        span {
                            color: #FFF;
                            font-size: 14px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 140%;
                        }
                    }

                    &:last-child a {
                        border-bottom: 0;
                    }

                    &:hover {
                        a {
                            span {
                                color: #F47920;
                            }

                            svg {
                                path {
                                    fill: #F47920;
                                }
                            }
                        }
                    }
                }
            }
        }

        &::before,
        &::after {
            content: unset;
        }
    }


    @media screen and (max-width: 1025px) {
        & {
            height: 680px;

            .esg-background {
                img {
                    object-position: 40%;
                }
            }

            .container {
                height: calc(100% - 20px);
                top: 0;
                align-items: end;

                .esg-overlay-card {
                    width: auto;
                    height: max-content;
                    top: unset;
                    bottom: 20px;
                    left: 20px;
                    right: 20px;
                    padding: 18px;

                    .esg-label {
                        font-size: 13px;
                    }

                    h2 {
                        font-size: 26px;
                        font-weight: 500;
                        line-height: 140%;
                    }

                    p {
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 170%;
                    }

                    ul.esg-links {
                        margin-top: 32px;

                        li {
                            a {
                                padding-block: 16px;
                            }
                        }
                    }

                }
            }

        }
    }
}

/* Investors | Section 4  */
.investors-container {
    height: auto;
    margin-block: 100px;

    .eyebrow {
        color: #F36633;
        font-size: 14px;
        font-weight: 600;
        line-height: 22px;
        letter-spacing: 1.4px;
        text-transform: capitalize;
        font-family: 'Manrope', sans-serif;
    }

    h2 {
        color: #000;
        font-size: 44px;
        font-weight: 400;
        line-height: 60px;
        font-family: 'Alexandria', sans-serif;
    }

    .bottom-section {
        width: 100%;
        min-height: 390px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 17px;
        margin-top: 44px;

        .links-container {
            width: 21.88%;
            height: auto;

            h3 {
                color: #000;
                font-size: 20px;
                font-weight: 400;
                line-height: 28px;
                text-transform: capitalize;
                font-family: 'Alexandria', sans-serif;
            }


            ul {
                margin-top: 40px;
                list-style: none;

                li {
                    a {
                        width: 100%;
                        height: auto;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        padding-block: 16px;
                        border-bottom: 1px solid #E3E3E3;

                        span {
                            color: #515151;
                            font-size: 14px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 140%;

                        }
                    }

                    &:hover {
                        a {
                            border-bottom: 1px solid #F47920;

                            span {
                                color: #F47920;
                                font-family: 'Alexandria', sans-serif;
                            }

                            svg {
                                path {
                                    fill: #F47920;
                                }
                            }
                        }
                    }
                }
            }
        }

        .graph-container {
            width: 51.33%;
            height: auto;
            border-radius: 6px;
            background: #FFF8F2;
            padding: 32px;
        }

        .annual-container {
            position: relative;
            display: flex;
            width: 22.97%;
            overflow: hidden;

            .bg-image {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                border-radius: 6px;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
                    z-index: 1;
                }
            }

            .annual-content {
                position: relative;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                z-index: 2;
                padding: 24px;
                box-sizing: border-box;


                h3 {
                    color: #FFF;
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 28px;
                    text-transform: capitalize;
                    font-family: 'Alexandria', sans-serif;
                }

                ul {
                    width: 100%;
                    list-style: none;

                    li {
                        a {
                            width: 100%;
                            height: auto;
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            padding-bottom: 16px;

                            span {
                                color: #fff;
                                font-size: 14px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 140%;
                                font-family: 'Alexandria', sans-serif;
                            }
                        }

                        &:last-child {
                            a {
                                padding-bottom: 0;
                            }
                        }

                        &:hover {
                            a {
                                span {
                                    color: #F47920;
                                }

                                svg {
                                    path {
                                        fill: #F47920;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1025px) {
        & {
            .eyebrow {
                font-size: 13px;
                font-weight: 600;
                line-height: 160%;
                letter-spacing: 1.3px;
                text-transform: capitalize;
            }

            h2 {
                color: #191919;
                font-size: 26px;
                font-weight: 500;
                line-height: 140%;
            }

            .bottom-section {
                min-height: 100%;
                flex-direction: column;
                margin-top: 64px;
                gap: 20px;

                .links-container {
                    width: 100%;

                    ul {
                        margin-top: 32px;
                    }
                }

                .graph-container {
                    width: 100%;
                }

                .annual-container {
                    width: 100%;

                    .annual-content {
                        min-height: 268px;
                    }
                }

            }
        }
    }
}

/* Career Section | Section 5  */
.career-container {
    height: 740px;
    width: 100%;
    position: relative;

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    .career-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .container {
        position: relative;
        top: 80px;
        z-index: 2;

        .career-overlay-card {
            /* position: absolute; */
            width: 100%;
            max-width: 525px;
            height: auto;
            /* top: 80px; */
            /* left: 80px; */
            padding: 40px;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.60);
            backdrop-filter: blur(19.700000762939453px);

            .esg-label {
                color: #F47920;
                font-size: 13px;
                font-weight: 600;
                line-height: 22px;
                letter-spacing: 1.3px;
                text-transform: uppercase;
                font-family: 'Manrope', sans-serif;
            }

            h2 {
                color: #FFF;
                font-size: 40px;
                font-weight: 400;
                line-height: 54px;
                margin-top: 8px;
                font-family: 'Alexandria', sans-serif;
            }

            p {
                color: rgba(255, 255, 255, 0.80);
                font-size: 15px;
                font-weight: 400;
                line-height: 170%;
                font-family: 'Alexandria', sans-serif;
            }

            ul.esg-links {
                margin-top: 44px;
                list-style: none;

                li {
                    a {
                        width: 100%;
                        height: auto;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        padding-block: 18px;
                        border-bottom: 1px solid rgba(217, 217, 217, 0.20);

                        span {
                            color: #BDBDBD;
                            font-size: 14px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 140%;
                            font-family: 'Alexandria', sans-serif;
                        }
                    }

                    &:last-child a {
                        border-bottom: 0;
                    }

                    &:hover {
                        a {
                            span {
                                color: #F47920;
                            }

                            svg {
                                path {
                                    fill: #F47920;
                                }
                            }
                        }
                    }
                }
            }

            .orange-btn {
                margin-top: 26px;
            }
        }
    }

    @media screen and (max-width: 768px) {
        & {
            height: auto;

            .desktop {
                display: none;
            }

            .mobile {
                display: block;
            }

            .career-background {
                position: relative;
                height: 305px;
            }

            .container {
                margin-right: 0;
                margin-left: 0;
                padding-left: 0;
                padding-right: 0;
                top: 0;

                .career-overlay-card {
                    position: relative;
                    max-width: 100%;
                    background: #000;
                    padding: 32px 20px;
                    top: 0;
                    left: 0;
                    border-radius: 0;

                    h2 {
                        font-size: 26px;
                        font-weight: 400;
                        line-height: 140%;
                    }

                    ul.esg-links {
                        margin-top: 40px;
                    }

                    .orange-btn {
                        margin-top: 40px;
                    }
                }

                &::before,
                &::after {
                    content: unset;
                }
            }

        }

    }
}

/* Blogs Section | Section 6  */
.blogs-container {
    padding-block: 100px;

    .desktop {
        display: flex;
    }

    .mobile {
        display: none;
    }

    .eyebrow {
        color: #F47920;
        font-size: 14px;
        font-weight: 600;
        line-height: 22px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        font-family: 'Manrope', sans-serif;
    }

    .tabs {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        margin-top: 12px;

        .tab-buttons {
            display: flex;
            gap: 20px;

            .tab-btn {
                font-family: 'Alexandria', sans-serif;
                background: none;
                border: none;
                font-size: 42px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                color: #C3C3C3;
                cursor: pointer;
                padding-inline: 20px;
                padding-block: 0;
                border-right: 3px solid #C3C3C3;
                border-radius: 0;

                &.active {
                    color: #191919;
                }

                &:first-child {
                    padding-left: 0;
                    font-family: 'Alexandria', sans-serif;
                }

                &:last-child {
                    border-right: 0;
                    font-family: 'Alexandria', sans-serif;

                }
            }
        }
    }

    .tab-content {
        height: 450px;

        .tab-pane {
            display: none;
            height: 100%;
            grid-template-columns: 1.2fr 1fr;
            gap: 24px;

            &.active {
                display: grid;
            }
        }

        .left-card {
            position: relative;
            /* max-width: 600px; */
            width: 100%;
            border-radius: 6px;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                scale: 1;
                transition: all 0.2s ease;
            }

            .tag {
                position: absolute;
                top: 12px;
                left: 12px;
                font-size: 14px;
                font-weight: 600;
                padding: 8px;
                border-radius: 4px;
                background: rgba(0, 0, 0, 0.40);
                backdrop-filter: blur(6px);
                color: #FFF;
                font-size: 10px;
                font-weight: 300;
                line-height: normal;
            }

            .card-overlay {
                position: absolute;
                width: 392px;
                height: auto;
                bottom: 20px;
                left: 20px;
                padding: 24px;
                border-radius: 4px;
                background: rgba(255, 255, 255, 0.90);
                backdrop-filter: blur(6px);

                p {
                    color: #212529;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 24px;
                    margin-bottom: 0;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    margin: 0;
                    font-family: 'Alexandria', sans-serif;
                }

                .read-time,
                .date {
                    width: fit-content;
                    display: flex;
                    gap: 8px;
                    justify-content: center;
                    align-items: normal;
                    color: #868E96;
                    font-size: 13px;
                    font-weight: 400;
                    line-height: normal;
                    font-size: 14px;
                    margin-bottom: 16px;
                    font-family: 'Alexandria', sans-serif;
                }
            }

            &:hover {
                img {
                    scale: 1.1;
                    transition: all 0.2s ease;
                }
            }
        }

        .right-cards {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;

            .small-card {
                display: flex;
                gap: 16px;
                align-items: center;

                .img-container {
                    min-width: 180px;
                    height: 120px;
                    border-radius: 6px;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        scale: 1;
                        transition: all 0.2s ease;
                    }
                }

                .small-card-content {
                    height: 100%;
                    justify-content: space-between;
                    display: flex;
                    flex-direction: column;

                    .tag {
                        width: fit-content;
                        color: #616161;
                        font-size: 12px;
                        font-weight: 300;
                        line-height: normal;
                        padding: 4px 8px;
                        border-radius: 4px;
                        background: #F6F6F6;
                        backdrop-filter: blur(6px);
                    }

                    p {
                        color: #212529;
                        font-size: 16px;
                        font-weight: 400;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        overflow: hidden;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        margin: 0;
                        font-family: 'Alexandria', sans-serif;
                    }

                    .date {
                        color: #868E96;
                        font-size: 13px;
                        font-weight: 400;
                        line-height: normal;
                    }
                }

                svg {
                    width: 16px;
                    height: 16px;
                    flex-shrink: 0;
                    margin-left: 13px;
                }

                &:hover {
                    img {
                        scale: 1.1;
                        transition: all 0.2s ease;
                    }

                    .small-card-content {
                        p {
                            color: #F47920;
                        }
                    }

                    svg {
                        path {
                            fill: #F47920;
                        }
                    }
                }
            }
        }

        #blogs {
            .right-cards {
                .small-card {
                    .small-card-content {
                        justify-content: center;
                        gap: 8px;
                    }
                }
            }
        }

        #case-study {
            .right-cards {
                .small-card {
                    .small-card-content {
                        justify-content: center;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1025px) {
        & {
            padding-block: 72px;

            .desktop {
                display: none;
            }

            .mobile {
                display: flex;
            }

            .tabs {
                .tab-buttons {
                    width: 100%;
                    display: flex;
                    flex-wrap: nowrap;
                    overflow-x: auto;
                    gap: 0;
                    -webkit-overflow-scrolling: touch;
                    -ms-overflow-style: none;
                    white-space: nowrap;

                    .tab-btn {
                        gap: 0;
                        color: #C3C3C3;
                        font-size: 26px;
                        font-weight: 400;
                        line-height: 140%;
                        text-wrap: nowrap;
                        flex-shrink: 0;
                        width: auto;
                        text-align: center;
                    }
                }
            }

            .tab-content {
                height: 100%;

                .tab-pane {
                    grid-template-columns: 1fr;
                }

                .left-card {
                    height: 360px;

                    img {}

                    .card-overlay {
                        width: 100%;
                        bottom: 0;
                        left: 0;
                        background: transparent;
                        backdrop-filter: unset;
                        padding: 20px;
                        z-index: 1;

                        p {
                            width: 100%;
                            text-wrap: wrap;
                            color: #FFF;
                            font-size: 22px;
                            font-weight: 400;
                            line-height: 32px;
                        }

                        .read-time,
                        .date {
                            color: #FFF;
                            font-size: 14px;
                            font-weight: 400;
                            line-height: normal;
                            opacity: 0.6;
                            margin-bottom: 8px;
                        }
                    }


                    &::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
                        z-index: 1;
                    }
                }

                .right-cards {
                    gap: 0;

                    .small-card {
                        padding-block: 16px;
                        border-bottom: 1px solid #bababa40;

                        .img-container {
                            min-width: 80px;
                            max-width: 80px;
                            height: 100px;
                            border-radius: 8px;
                        }

                        .small-card-content {
                            justify-content: center;
                            flex-direction: column-reverse;
                            gap: 8px;
                        }

                        &:first-child {
                            padding-top: 0;
                        }

                        &:last-child {
                            padding-bottom: 0;
                            border-bottom: 0;
                        }

                        svg {
                            path {
                                fill: #F47920;
                            }
                        }
                    }
                }

                #blogs {
                    .right-cards {
                        .small-card {
                            .small-card-content {
                                flex-direction: column;
                            }
                        }
                    }
                }
            }

            .orange-btn {
                margin-top: 32px;
            }
        }
    }
}

/* Social Section | Section 7  */
.social-container {
    position: relative;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
    margin-block: 100px;

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    &.container {
        &::before {
            content: unset;
        }

        &::after {
            content: unset;
        }
    }

    .left-section {
        max-width: 300px;
        width: 100%;
        height: auto;

        .eyebrow {
            color: #F36633;
            font-size: 14px;
            font-weight: 600;
            line-height: 22px;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            margin-bottom: 0;
            font-family: 'Manrope', sans-serif;
        }

        h2 {
            color: #000;
            font-size: 44px;
            font-weight: 400;
            line-height: 52px;
            text-transform: capitalize;
            margin-top: 8px;
            font-family: 'Alexandria', sans-serif;
        }

        ul {
            margin-top: 40px;
            list-style: none;

            li {
                a {
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-block: 18px;
                    border-bottom: 1px solid rgba(137, 137, 137, 0.20);

                    span {
                        width: fit-content;
                        height: auto;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        .social-icon {
                            width: 20px;
                            height: 20px;
                            margin-right: 12px;
                        }

                        p {
                            color: #000;
                            font-size: 14px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 140%;
                            text-transform: capitalize;
                            margin-bottom: 0;
                            font-family: 'Alexandria', sans-serif;
                        }
                    }
                }

                &:hover {
                    a {
                        p {
                            color: #F47920;
                        }

                        svg {
                            path {
                                fill: #F47920;
                            }
                        }
                    }
                }
            }
        }
    }

    .right-section {
        width: 100%;
        flex-grow: 1;
        margin-right: calc(-50vw + 50%);

        .swiper {
            width: 100%;
            height: 100%;

            .swiper-slide {
                width: 100%;
                height: 100%;

                .slide-img {
                    position: relative;
                    /* width: 305px; */
                    height: 305px;
                    border-radius: 6px;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                    .slide-content {
                        position: absolute;
                        top: 25px;
                        left: 20px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 14px;

                        .logo {
                            width: 56px;
                            height: 16px;
                            padding: 20px 8px;
                            background: #fff;
                            border-radius: 4px;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }

                        div {
                            h4 {
                                color: #FFF;
                                font-size: 16px;
                                font-weight: 500;
                                line-height: 22px;
                            }

                            p {
                                color: #FFF;
                                font-size: 16px;
                                font-weight: 400;
                                line-height: 22.68px;
                                opacity: 0.7;
                                margin-top: 5px;
                            }
                        }
                    }
                }

                p {
                    font-family: 'Alexandria', sans-serif;
                    color: #000;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 150%;
                    text-transform: capitalize;
                    text-align: start;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    margin-top: 12px;
                }
            }

            .swiper-slide img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    @media screen and (max-width: 768px) {
        & {
            flex-direction: column-reverse;
            gap: 24px;
            margin-top: 0;

            .desktop {
                display: none;
            }

            .mobile {
                display: block;
            }

            .left-section {
                max-width: 100%;
                width: 100%;

                ul {
                    margin-top: 0;
                }
            }

            .right-section {
                width: 104%;

                .eyebrow {
                    color: #F36633;
                    font-size: 13px;
                    font-weight: 600;
                    line-height: 22px;
                    letter-spacing: 1.3px;
                    text-transform: capitalize;
                }

                h2 {
                    color: #000;
                    font-size: 26px;
                    font-weight: 400;
                    line-height: 34px;
                    text-transform: capitalize;
                    margin-bottom: 32px;
                }
            }
        }
    }
}

/* Header CSS starts  */
.navbar {

    .container:before,
    .navbar:before,
    .navbar::after,
    .container::after {
        content: unset;
    }
}

.navbar:before,
.navbar::after {
    content: unset;
}

.navbar-header:before,
.navbar-header::after {
    content: unset;
}

.nav::before,
.nav::after {
    content: unset;
}

nav.navbar.bootsnav.navbar-transparent.white,
nav.navbar.bootsnav.navbar-transparent.dark {
    height: auto;
}

nav.navbar.bootsnav.navbar-fixed {
    height: auto;
    padding: 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 19px;
}

nav.navbar.bootsnav .logo {
    width: 130px !important;
    height: 30px !important;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

nav.navbar.bootsnav.navbar-transparent ul.nav>li>a {
    padding-block: 5px !important;
    padding-right: 32px !important;
    padding-left: 0 !important;
    color: #FFF;
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    text-transform: capitalize;
}

nav.navbar.bootsnav ul.nav>li>a {
    padding-block: 5px !important;
    padding-right: 32px !important;
    padding-left: 0 !important;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    text-transform: capitalize;
}

nav.navbar.bootsnav.navbar-fixed .logo-display {
    opacity: 1 !important;
}

nav.navbar.bootsnav.menu-center .navbar-header {
    position: relative;
}

.navbar-nav {
    position: relative;
    padding: 0;
}

nav.navbar.bootsnav.navbar-transparent li.search {
    width: fit-content;
    position: absolute;
    right: 0;
    top: 5px;
    list-style: none;

    #search-button {
        svg {
            g {
                path {
                    fill: #ffff;
                }
            }
        }

        &:hover {
            svg {
                g {
                    path {
                        fill: #FEA734;
                    }
                }
            }
        }
    }
}

nav.navbar.bootsnav li.search {
    width: fit-content;
    position: absolute;
    right: 0;
    top: 5px;
    list-style: none;

    #search-button {
        svg {
            g {
                path {
                    fill: #000;
                }
            }
        }

        &:hover {
            svg {
                g {
                    path {
                        fill: #FEA734;
                    }
                }
            }
        }
    }
}

.navbar-collapse {
    padding: 0 !important;
}

.navbar-collapse::before,
.navbar-collapse::after {
    content: unset;
}

.nav.navbar.bootsnav.navbar-fixed {
    &.nav.navbar.bootsnav.navbar-transparent .logo {
        width: 130px;
        height: 30px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    &.nav.navbar.bootsnav.navbar-transparent.white ul.nav>li>a {
        padding-block: 5px;
        padding-right: 32px;
        padding-left: 0;
        color: #FFF;
        font-size: 15px;
        font-weight: 300;
        line-height: 18px;
        text-transform: capitalize;
    }

}

.top-nav-container {
    padding-block: 12px;
    display: flex;
    justify-content: end;
    align-items: center;
    opacity: 0.7;
    background: #000;

    ul {
        height: auto;
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 30px;
        padding-inline: 0;

        li {
            list-style: none;

            a {
                color: #FFF;
                font-size: 13px;
                font-weight: 300;
                line-height: 18px;
                text-transform: capitalize;
            }
        }
    }
}

.wrap-btn {
    height: 400px;
    right: -6.0rem;
    left: unset;
    bottom: 0;
    top: 30%;
}

.modal-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    width: 170px;
    height: 50px;
    border-radius: 8px 8px 0px 0px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%), #1D1D1D;
    border: 0;
    animation: unset;
    transform: rotate(270deg);

    p {
        color: #F8F8F8;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        margin: 0;
        font-family: 'Manrope', sans-serif;

    }

    svg {
        transform: rotate(90deg);
    }
}

.modal-toggler:hover {
    transform: scale(1);
    transform: rotate(270deg);
}

.enquire-now {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    width: 170px;
    height: 50px;
    border-radius: 8px 8px 0px 0px;
    background: #1D1D1D;
    animation: unset;
    transform: rotate(270deg);

    p {
        color: #F8F8F8;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        margin: 0;
        font-family: 'Manrope', sans-serif;
    }

    svg {
        transform: rotate(90deg);
    }

    &:hover {
        p {
            color: #EA8033;
        }

        svg {
            path {
                fill: #EA8033;
            }
        }
    }
}

.wrap-btn {
    img {
        display: none;
    }
}

@media (max-width: 992px) {
    nav.navbar.bootsnav.navbar-fixed .logo-display {
        display: block !important;
    }

    .top-nav-container {
        display: none;
    }

    .navbar-container {
        display: block;
    }

    .navbar-toggle {
        margin: 0;
    }

    nav.navbar.bootsnav {
        border-bottom: 1px solid #AE5715 !important;
        opacity: 0.95;
        background: #030200;
    }

    nav.navbar.bootsnav .navbar-toggle {
        margin-top: 0;
    }

    nav.navbar.bootsnav.navbar-transparent li.search {
        display: none;
    }

    nav.navbar.bootsnav.menu-center .navbar-header {
        background: #030200;
    }

    nav.navbar.bootsnav.navbar-transparent ul.nav>li>a {
        color: #000;
        padding-block: 10px !important;
        padding-right: 0px !important;
    }

    nav.navbar.bootsnav li.search {
        display: none;
    }

    nav.navbar.bootsnav ul.nav>li>a {
        color: #000;
        padding-block: 10px !important;
        padding-right: 0px !important;
    }

    nav.navbar.bootsnav.no-full .navbar-collapse {
        margin-top: 10px;
        overflow: hidden;
    }

    nav.navbar.bootsnav .navbar-nav>li {
        padding-inline: 20px;
    }

    nav.navbar.bootsnav .navbar-nav {
        padding-inline: 10px;
    }

    .fa-bars:before {
        color: #fff;
    }

    .wrap-btn {
        height: fit-content;
        left: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        top: unset;

        a {
            border-radius: 0;
            width: 100%;
            transform: unset;
        }

        img {
            display: block;
        }

        svg {
            transform: unset;
        }

        .modal-toggler {
            transition: width 0.8s ease-in-out;

            p {
                transition: opacity 0.5s ease-in-out, display 0.5s ease-in-out;
            }

            svg {
                transition: opacity 0.5s ease-in-out, display 0.5s ease-in-out;
            }
        }


        .modal-toggler:hover {
            transform: scale(1);
            transform: unset;
        }

        .enquire-now {
            transition: width 0.8s ease-in-out;

            p {
                transition: opacity 0.5s ease-in-out, display 0.5s ease-in-out;
            }

            svg {
                transition: opacity 0.5s ease-in-out, display 0.5s ease-in-out;
            }
        }

        /* Animation classes for mobile */
        .mobile-collapsed {
            width: 50px !important;
            border-radius: 4px;
            padding: 15px;
        }

        .mobile-collapsed p,
        .mobile-collapsed svg {
            opacity: 0;
            display: none;
        }

        /* Add padding to wrap-btn after animation */
        &.mobile-padding {
            padding: 0 15px;
        }
    }
}

/* Header CSS ends  */

/* Footer starts here  */
footer {
    background: #121212;

    .footer-main {
        height: auto;
        padding: 0;
        padding-top: 60px;
        background-color: transparent;

        .footer-top {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: end;
            padding-bottom: 67px;

            .footer-top-left {
                h2 {
                    color: #FFF;
                    font-size: 28px;
                    font-weight: 400;
                    line-height: 120%;
                    letter-spacing: -0.5px;
                    text-transform: capitalize;
                }

                p {
                    color: #FFF;
                    font-size: 13px;
                    font-weight: 400;
                    line-height: 160%;
                    margin-top: 8px;
                }
            }

            span {
                width: auto;
                height: auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 15px;

                .input-container {
                    width: 275px;
                    height: auto;
                    padding: 14px 16px;
                    border: 1px solid #D8D8D8;
                    border-radius: 8px;
                    display: flex;

                    input {
                        font-family: "Sora", sans-serif;
                        width: 100%;
                        background-color: transparent;
                        color: white;
                        outline: none;
                        border: 0;
                        padding: 0;

                        &::placeholder {
                            color: #FFFFFF;
                            opacity: 0.4;
                        }
                    }
                }

                .orange-btn {}

            }
        }

        .divider-solid {
            display: block;
            width: 100%;
            height: 2px;
            opacity: 0.4;
            background: #5C5C5C;
            margin-bottom: 52px;
        }

        .footer-mid {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin-bottom: 40px;

            .footer-mid-left {
                max-width: 300px;
                height: fit-content;
                display: flex;
                flex-direction: column;
                align-items: flex-start;

                .jsl-logo {
                    width: 195px;
                    height: 57px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                p {
                    margin-top: 18px;
                    color: #DBDBDB;
                    font-size: 14px;
                    font-weight: 300;
                    line-height: 170%;
                }

                .logo-container {
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 30px;
                    margin-top: 30px;

                    li {
                        width: 19px;
                        height: 19px;
                        list-style: none;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                }
            }

            .footer-nav {
                display: flex;
                gap: 40px;

                .nav-section {
                    max-width: 175px;

                    span {
                        color: #FFF;
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 17px;
                    }

                    ul {
                        width: fit-content;
                        height: auto;
                        display: flex;
                        flex-direction: column;
                        gap: 15px;
                        margin-block: 20px;

                        li {
                            list-style: none;

                            a {
                                color: #DBDBDB;
                                font-size: 14px;
                                font-weight: 300;
                                line-height: 140%;
                            }
                        }

                    }

                    ul:first-child {
                        margin-bottom: 30px;

                    }

                    .nested-nav {
                        margin-top: 30px;
                    }
                }
            }
        }

        .footer-accordion-container {
            display: none;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-block: 30px;
            border-top: 1px solid #5c5c5c41;

            .legal-links {
                width: fit-content;
                height: auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 30px;

                a {
                    color: #E6E9EB;
                    font-size: 13px;
                    font-weight: 400;
                    line-height: 19.6px;
                }
            }

            p {
                color: #FFF;
                font-size: 13px;
                font-weight: 400;
                line-height: 19.6px;
            }
        }
    }

    @media screen and (max-width: 1024px) {
        & {
            .footer-main {
                padding-inline: 20px;

                .footer-top {
                    align-items: start;
                    flex-direction: column;

                    span {
                        width: 100%;
                        margin-top: 24px;

                        .input-container {
                            width: 100%;
                        }

                        .orange-btn {
                            flex-shrink: 0;
                        }
                    }
                }

                .divider-solid {
                    margin-bottom: 0;
                }

                .footer-mid {
                    flex-direction: column-reverse;

                    .footer-nav {
                        display: none;
                    }

                    /* Footer Accordion (Mobile)  */
                    .footer-accordion-container {
                        display: block;
                        margin-block: 32px;

                        .accordion-container {
                            width: 100%;
                            height: auto;
                            display: block !important;

                            .accordion {
                                width: 100%;
                                height: auto;
                                display: flex;
                                flex-direction: column;
                                gap: 0;
                                padding-block: 16px;
                                border-bottom: 1px solid #5C5C5C;

                                .accordion-header {
                                    width: 100%;
                                    height: auto;
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: center;
                                    gap: 8px;
                                    cursor: pointer;
                                    user-select: none;
                                    color: var(--text-grey3);

                                    .accordion-title {
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        gap: 20px;

                                        p {
                                            color: #FFF;
                                            font-size: 15px;
                                            font-weight: 400;
                                            line-height: 17px;
                                        }

                                        #logo {
                                            width: 32px;
                                            height: 32px;
                                            object-fit: cover;
                                        }
                                    }

                                    .accordion-icon {
                                        width: 16px;
                                        height: 16px;
                                        display: inline-block;
                                        background-size: contain;
                                        background-repeat: no-repeat;
                                        transition: transform 0.3s ease, opacity 0.3s ease;
                                    }

                                    &.open .accordion-icon {
                                        transform: rotate(180deg);
                                    }

                                    .accordion-icon::before {
                                        content: url("../images/new-homepage/plus_orange.svg");
                                    }

                                    &.open .accordion-icon::before {
                                        content: url("../images/new-homepage/minus_orange.svg");
                                    }
                                }

                                .accordion-content {
                                    max-width: 240px;
                                    max-height: 0;
                                    overflow: hidden;
                                    display: flex;
                                    flex-direction: column;
                                    gap: 16px;
                                    margin-left: 0;
                                    margin-top: 0;
                                    opacity: 0;
                                    background-color: transparent;
                                    transition: max-height 0.5s ease, opacity 0.3s linear, margin-top 0.2s ease;

                                    li {
                                        list-style: none;

                                        a {
                                            cursor: pointer;
                                            color: #DBDBDB;
                                            font-size: 13px;
                                            font-weight: 300;
                                            line-height: 140%;
                                            text-decoration: none;
                                        }
                                    }


                                    &.open {
                                        max-height: 250px;
                                        margin-top: 16px;
                                        opacity: 1;
                                        transition: max-height 0.5s ease, opacity 0.3s linear, margin-top 0.2s ease;
                                    }

                                    .cta-secondary {
                                        text-decoration: underline;
                                        text-underline-offset: 4px;
                                    }
                                }
                            }
                        }
                    }
                }

                .footer-bottom {
                    flex-direction: column;
                    align-items: start;
                    gap: 72px;
                    padding-bottom: 60px;

                    .legal-links {
                        flex-direction: column;
                        align-items: start;
                        gap: 12px;
                    }
                }

            }
        }
    }
}

/* Footer ends here  */

.border-wrapper {
    border: 1px solid #000000;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.socialicon {
    height: 400px;
}