@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');


:root {
    --maxxen-white: #FFF;
    --maxxen-green: #00E500;
    --maxxen-blue: #172341;



    --inter: "Inter", sans-serif;
    --default-font-weight: 400;
}

body {
    font-family: var(--inter);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


.btn-green:hover {
    background: var(--maxxen-blue) !important;
    color: var(--maxxen-white) !important;
    transition: all 0.4s ease-in-out;
}

.btn-green {
    transition: all 0.4s ease-in-out;
}

.btn-white:hover {
    background: var(--maxxen-green) !important;
    color: var(--maxxen-white) !important;
    transition: all 0.4s ease-in-out;
}

.btn-white {
    transition: all 0.4s ease-in-out;
}


header {
    height: 116px;
    display: flex;
    align-items: center;
    background-color: var(--maxxen-blue);
}

header.sub-page-header {
    background-color: transparent;

    .main-menu {
        a {
            img {
                filter: brightness(0) saturate(100%) invert(12%) sepia(12%) saturate(2938%) hue-rotate(184deg) brightness(99%) contrast(97%);
            }
        }

        .menu-items {
            ul {
                li {
                    a {
                        color: var(--maxxen-blue) !important;
                    }

                    a.active {
                        color: var(--maxxen-blue) !important;
                        font-weight: 700;
                    }
                }
            }

            .header-right {
                ul.lang-ul {
                    li {
                        a {
                            color: var(--maxxen-blue);
                        }
                    }
                }
            }
        }



    }
}

header.sub-page-header {
    background-color: transparent;
}

header.sub-page-header .main-menu a img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(12%) saturate(2938%) hue-rotate(184deg) brightness(99%) contrast(97%);
}

header.sub-page-header .main-menu .menu-items ul li a {
    color: var(--maxxen-blue) !important;
}

header.sub-page-header .main-menu .menu-items ul li a.active {
    color: var(--maxxen-blue) !important;
    font-weight: 700;
}

header.sub-page-header .main-menu .menu-items .header-right ul.lang-ul li a {
    color: var(--maxxen-blue);
}

header nav {
    width: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
}

header a img {
    width: 183px;
    height: 29px;
}

header .menu-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .menu-items ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

header .menu-items ul li a {
    color: var(--maxxen-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
    position: relative;
}

header .menu-items ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--maxxen-green);
    transition: width 0.3s ease-in-out;
}

header .menu-items ul li a:hover {
    color: var(--maxxen-white);
}

header .menu-items ul li a:hover::after {
    width: 100%;
}


header .menu-items .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .menu-items .header-right ul.lang-ul li a {
    color: var(--maxxen-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 62px;
    display: flex;
    align-items: center;
}

.btn {
    display: inline-flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 10px;
}

.btn.btn-green {
    background: var(--maxxen-green);
    color: var(--maxxen-white);
}

.btn.btn-blue {
    background: var(--maxxen-blue);
    color: var(--maxxen-white);
}

.btn.btn-white {
    background: var(--maxxen-white);
    color: var(--maxxen-blue);
}

.banner-section {
    background-color: var(--maxxen-blue);
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
    height: 100vh;

    .banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 2;
    }

    .before-title {
        color: #00E500;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 0;
    }

    .banner-title {
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 60px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        max-width: 80%;
    }

    .banner-image img {
        max-width: 100%;
        height: auto;
    }

    /* .banner-after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    filter: blur(125.0999984741211px);
}
.banner-image::after {
    position: absolute;
    content: "";
    top: -50%;
    left: 0;
    z-index: 1;
    background-image: url(../images/texturemaxxen.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
} */
    img.banner-left {
        position: absolute;
        left: -5%;
        z-index: 2;
        bottom: 0;
    }

    img.banner-main {
        position: absolute;
        width: 908px;
        left: 15%;
        z-index: 3;
        bottom: -1%;
    }

    img.banner-right {
        position: absolute;
        right: -5%;
        z-index: 2;
        bottom: 0;
    }

    .banner-image {
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0%;


        .banner-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;

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

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, var(--maxxen-blue), rgba(23, 35, 65, 0));
                z-index: 2;
            }
        }
    }
}



.product-section {
    padding: 80px 0px 0px;
    overflow: hidden;

    .horizontal-scroll {


        position: relative;
    }

    .product-bottom {
        display: flex;
        width: max-content;
        gap: 20px;
    }

    .energy-card {

        box-sizing: border-box;
        flex-shrink: 0;
    }

    .energy-card {
        position: relative;
        background-color: var(--maxxen-blue);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 550px;
        border-radius: 20px;
        background-image: url(../images/backgroundblue.png);
    }

    .energy-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 300px;
        background: linear-gradient(to bottom, var(--maxxen-blue), rgba(23, 35, 65, 0));
        z-index: 1;
    }

    .energy-card-text {
        position: relative;
        z-index: 2;
    }

    .energy-card.white-card {
        background-color: var(--maxxen-white);
        border: 0.5px solid rgba(23, 35, 65, 0.41);
        background: rgba(255, 255, 255, 0.08);
        background-image: none;

        .energy-card-text h3 {
            color: var(--maxxen-blue);
        }


    }

    .energy-card-text {
        position: absolute;
        top: 2rem;
        left: 2rem;
    }

    .energy-card-text h3 {
        color: var(--maxxen-green);
        font-family: Inter;
        font-size: 25px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .energy-card-image {
        max-width: 90%;
        max-height: 575px;
        position: absolute;
        right: -17%;
        top: 12%;
        z-index: 11;
        object-fit: contain;
    }

    .product-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 53px;
    }

    .product-top {
        display: flex;
        width: 45%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .product-top h2 {
        color: #172341;
        font-family: Inter;
        font-size: 60px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 0;
    }

    .product-top p {
        color: var(--Body-Copy-Light, #596071);

        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 24px */
        margin-bottom: 0;
    }

    .product-top a.btn.btn-green {
        color: var(--maxxen-blue);
    }
}




.x-factor-section {
    padding-bottom: 80px;
    margin-top: 100px;



    .x-factor-section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;



        .section-subtitle {
            color: #000;
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 0;
        }

        .section-title {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0
        }

        .section-description {
            color: var(--Body-Copy-Light, #596071);
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            margin-bottom: 0
        }
    }


    .x-factor-card {
        border-radius: 20px;
        border: 0.5px solid rgba(23, 35, 65, 0.41);
        background: #FFF;
        position: relative;
        overflow: hidden;

        .card-title {
            color: var(--maxxen-blue);
            font-family: Inter;
            font-size: 40px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

        img {
            position: absolute;
            right: 0;
            bottom: 0;
        }
    }

    .card-1 {
        height: 424px;
        background-image: url(../images/xback12.png);
        background-position: center;
        background-size: cover;


        img {
            bottom: -37%;
            width: 915px;
            right: -5%;
        }
    }

    .card-2 {
        height: 460px;
        background-image: url(../images/xback7.png);
        background-position: center;
        background-size: cover;
    }

    .card-3 {
        height: 460px;
        background-image: url(../images/xback5.png);
        background-position: center;
        background-size: cover;
    }
}




.technology-section.bg-other-blue {
    background-color: #172548;
}


.technology-section {
    padding: 120px 0px;
    background-color: var(--maxxen-blue);
    position: relative;
    overflow: hidden;
    z-index: 2;

    .technology-section-content {
        display: flex;
        flex-direction: column;
        gap: 80px;

        .tech-img {
            position: absolute;
            top: 10%;
            right: 0;


            video {
                width: 800px;
                height: 575px;
                object-fit: contain;
                z-index: -1;
                position: relative;
                object-fit: none;
                right: 0px !important;
                object-position: right;
                margin-top: 50px;
            }
        }

        .section-subtitle {
            color: var(--maxxen-green);
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 0;
        }

        .section-title {
            background: var(--Gradient, linear-gradient(88deg, #FFF 22.98%, #00E500 114.38%));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0
        }

        .section-description {
            color: rgba(255, 255, 255, 0.67);
            /* Body Copy */
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            margin-bottom: 0;
            span{
                color: rgba(255, 255, 255, 0.67) !important;
            }
        }




        .tech-feature {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;

            p {
                color: #FFF;
                font-family: Inter;
                font-size: 30px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;

                .text-green {
                    color: var(--maxxen-green)
                }
            }
        }
    }
}

.technology-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/texturegreen.png);
    z-index: 0;
    background-repeat: no-repeat;
}

.technology-section::before {
    content: "";
    position: absolute;
    top: -5%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/greentop.png);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    filter: blur(125.0999984741211px);
}


.sustainability-section {
    padding: 80px 0px;

    .sustainability-section-content {
        border-radius: 20px;
        border: 0.5px solid rgba(23, 35, 65, 0.41);
        padding: 80px 0px 0px;
        height: 730px;
        overflow: hidden;
        background-image: url(../images/sustainibility-texture.png);
        position: relative;
        align-items: center;
        display: flex;
        flex-direction: column;



        .section-subtitle {
            /* color: var(--maxxen-blue); */
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 0
        }

        .section-title {
            color: var(--maxxen-white);
            text-align: center;
            font-family: Inter;
            font-size: 52px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 25px;
            margin-top: 25px;
            width: 65%;













            .text-green {
                color: var(--maxxen-green)
            }

        }

        .section-description {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            margin-bottom: 0;

        }

        .btn.btn-green {
            margin-top: 20px;
            color: var(--maxxen-white);
        }


        .sustainability-image {
            text-align: center;
            display: flex;
            justify-content: center;

            img {
                max-width: 120%;
            }
        }
    }
}



.sustainability-section-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/sustainibilitymaxxen-green.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}





.news-section {
    padding: 0px 0px 80px;


    .news-section-content {
        .section-title {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }
    }



    .news-card {
        border-radius: 20px;
        border: 0.5px solid rgba(23, 35, 65, 0.41);
        background: #FFF;
        position: relative;
        overflow: hidden;

        .news-inside {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;

            .news-date {
                color: var(--maxxen-blue);
                font-family: Inter;
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                margin-bottom: 0;
            }

            .news-title {
                color: var(--maxxen-blue);
                font-family: Inter;
                font-size: 25px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                margin-bottom: 0;
            }

            .news-text {
                color: var(--Body-Copy-Light, #596071);
                font-family: Inter;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 150%;
                /* 24px */
            }

            .btn.btn-green {
                color: var(--maxxen-blue);
            }
        }
    }
}




.contact-section {
    padding: 0px 0px 80px;


    .contact-section-content {
        height: max-content !important;
        min-height: 500px;
        overflow: hidden;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 60px;

        .before-title{
            color: #FFF;
        }
        .section-title {
            color: #FFF;
            font-size: 60px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;

            .text-green {
                color: var(--maxxen-green);
            }

        }

        .section-description {
            color: #FFF;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            margin-bottom: 0;
        }

        .btn.btn-green {
            color: var(--maxxen-blue);
            width: max-content;
        }
    }
}






.bg-maxxen-blue {
    background-color: var(--maxxen-blue);
}


footer {
    padding: 80px 0px 30px;


    .footer-description {
        color: #FFF;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 0;

        .text-green {
            color: var(--maxxen-green);
        }


    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-items: end;

        li {
            a {
                color: #FFF;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                text-align: start;
                position: relative;
            }

            a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background-color: var(--maxxen-green);
                transition: width 0.3s ease-in-out;
            }

            a:hover::after {
                width: 100%;
            }
        }
    }

    .footer-right-end {
        h5 {
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
        }

        input {
            width: 245.51px;
            flex-shrink: 0;
            border-radius: 10px;
            background: #D9D9D9;
            border: none;
            padding: 7px;
        }

        button {
            border: none;
            flex-shrink: 0;
            color: #fff;
            background-color: var(--maxxen-green);
            position: absolute;
            right: 0;
            border-radius: 10px;
            padding: 7px 14px;
        }

        .contact-switch {
            position: relative;
        }
    }


    .footer-policies {
        a {
            color: #FFF;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }
    }
}



.about-section {
    padding: 40px 0px 0px;


    .about-section-content {
        height: 600px;
        overflow: hidden;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        gap: 15px;
        padding: 40px 0px;

        .section-subtitle {
            color: var(--maxxen-green);
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 0px;
        }

        .section-title {
            background: var(--Gradient, linear-gradient(88deg, #FFF 22.98%, #00E500 114.38%));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0
        }

        .section-description {
            color: #FFF;
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            margin-bottom: 0
        }
    }

}


.story-section {
    padding: 80px 0px;

    .story-section-content {
        img {
            border-radius: 20px;
        }

        .text-green {
            color: var(--maxxen-green);
            font-family: Inter;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        p {
            color: var(--Body-Copy-Light, #596071);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;

            strong {
                font-weight: 800 !important;
            }
        }
    }
}





.mission-vision-section {
    padding: 0px 0px 80px;

    .mission-vision-section-content {
        .section-subtitle {
            color: var(--maxxen-green);
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 0
        }

        .section-title {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0;

            .text-green {
                color: var(--maxxen-green)
            }
        }

    }

    .mission-card {
        display: flex;
        align-items: end;
        justify-content: start;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            min-height: 527px;
            border-radius: 20px;

        }

        .mission-content {
            bottom: 0;
            position: absolute;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 50px;
            min-height: 257px;

            .text-green {
                background: var(--Gradient, linear-gradient(88deg, #FFF 6.98%, #00E500 69.38%));
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                font-size: 40px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                margin-bottom: 0;
            }

            p {
                color: rgba(255, 255, 255, 0.67);
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 150%;
                /* 24px */
            }
        }
    }

}



.values-section {
    padding: 0px 0px 80px;


    .values-section-content {
        .section-title {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }
    }


    .value-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        background-image: url(../images/degerlermaxxen.png);
        border-radius: 20px;
        border: 0.5px solid rgba(23, 35, 65, 0.41);
        height: 260px !important;
        justify-content: center;

        img {
            width: 75px;
            height: 75px;
        }

        h5 {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 40px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        p {
            color: var(--Body-Copy-Light, #596071);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 152.041%;
        }
    }
}



.contact-form {
    border-radius: 20px;
    background: #FFF;


    .form-control {
        display: flex;
        padding: 12px 14px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        flex: 1 0 0;
        border-radius: 20px;
        border: 1px solid var(--maxxen-blue);
        background: rgba(255, 255, 255, 0.05);
    }


    .form-control::placeholder {
        color: var(--Body-Copy-Light, #596071);
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.15px;
    }
}



.sustainability-section-page.sustainability-section {
    padding-top: 40px;

    .sustainability-section-content {
        height: 600px;
        padding: 40px 0px 0px;

        .sustainability-image {
            img {
                transform: rotate(33.204deg);
                margin-top: -100px;
            }
        }

    }

}


.technology-section-page.sustainability-section {
    padding: 0px 0px 0px;

    .sustainability-section-content {
        height: 600px;
        padding: 80px 0px 0px;
        background-image: url(../images/yesilgecisliarkaplan.png);
        border: none;

        .sustainability-image {
            video {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: -1;
            }

            img {
                height: 300px;
                width: 100%;
                object-fit: cover;
                object-position: bottom;
            }
        }

    }

}

.technology-section-page .sustainability-section-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/techback.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.technology-section-page.videocontent .sustainability-section-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.technology-section-page.videocontent .sustainability-section-content {
    background-image: none;
    background: linear-gradient(to bottom, var(--maxxen-blue), rgba(23, 35, 65, 0));

    .section-subtitle {
        color: var(--maxxen-white);

    }

    .section-title {
        color: var(--maxxen-white);
    }

}



.products-section-page.sustainability-section {
    padding: 0px 0px 80px;

    .sustainability-section-content {
        height: 600px;
        padding: 80px 0px 0px;
        background-image: url(../images/yesilgecisliarkaplan.png);
        border: none;

        .sustainability-image {
            img {
                object-fit: contain;
                height: 625px;
                object-position: top;
                width: 1000px;
                margin-top: -150px;
            }
        }

    }

}

.products-section-page .sustainability-section-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/techback.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}



.efficiency-section {
    padding: 0px 0px 0px;
    position: relative;
    margin-bottom: 80px;

    .efficiency-section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 2;

        .section-subtitle {
            color: var(--maxxen-blue);
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 0px;
        }

        .section-title {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0
        }

        .section-description {
            color: var(--Body-Copy-Light, #596071);
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            width: 70%;
            margin-bottom: 0
        }
    }
}

.efficiency-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/yesilgecisliarkaplan.png);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .efficiency-section::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    background-color: #0000004d;
    z-index: 0;
    background-size: 100%;
    height: 140%;
} */



.monitoring-section {
    padding: 80px 0px;

    .monitoring-section-content {
        .section-title {
            color: var(--maxxen-blue);
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 20px;
        }

        .section-description {
            color: var(--Body-Copy-Light, #596071);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            margin-bottom: 0;
        }


        .monitoring-card {
            border-radius: 20px;
            border: 0.5px solid rgba(23, 35, 65, 0.41);
            background: rgba(255, 255, 255, 0.08);
            height: 240px;
            background-position: center;
            background-size: cover;
            padding: 30px;

            .monitoring-card-text {
                width: 60%;

                h5 {
                    color: var(--maxxen-blue);
                    font-family: Inter;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: normal;

                }

                p {
                    color: #818181;
                    font-family: Inter;
                    font-size: 15px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 152.041%;
                    /* 24.327px */
                    margin-bottom: 0;
                }
            }
        }

    }
}


.monitoring-section  .section-subtitle {
    color: var(--maxxen-blue);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}
.contact-section .section-subtitle {
    color: var(--maxxen-white);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.investment-section {
    padding: 0px 0px 80px;
    position: relative;
    min-height: 611px;

    .owl-carousel {
        position: absolute;
        right: 0;
        left: 5%;
    }

    .investment-section-content {
        .section-subtitle {
            color: var(--maxxen-blue);
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 20px
        }

        .section-title {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0
        }
    }


    .investment-card {
        border-radius: 20px;
        overflow: hidden;
        height: 400px;


        .investment-card-inside {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            h4 {
                color: #FFF;
                font-family: Inter;
                font-size: 40px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
            }

            ul {
                li {
                    color: #FFF;
                    font-family: Inter;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 150%;
                    /* 24px */
                }

                li::marker {
                    color: var(--maxxen-green)
                }
            }

        }
    }

    .investment-card::after {
        background: linear-gradient(359deg, #172341 12.07%, #17234180 70.07%, rgba(23, 35, 65, 0.00) 125.12%);
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

}

.height-style img {
    margin-top: -85px;
}


.future-energy-section {
    padding: 80px 0px;


    .future-energy-section-content {
        .section-title {
            color: var(--maxxen-blue);
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0;

            .text-green {
                color: var(--maxxen-green)
            }
        }

        .section-description {
            color: var(--Body-Copy-Light, #596071);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            margin-bottom: 0;
        }


        .image-box {
            border-radius: 20px;
            overflow: hidden;

            .image-icon {
                bottom: 5%;
                left: 5%;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.17);
                backdrop-filter: blur(1px);
                display: inline-flex;
                padding: 10px 15px;
                justify-content: center;
                align-items: center;
            }
        }

    }

}


.innovation-section {
    background-color: var(--maxxen-blue);
    padding: 80px 0px;
    margin-bottom: 80px;

    .innovation-section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 2;

        .text-content {
            margin-top: -100px;
        }

        .section-title {
            color: var(--maxxen-white);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0;

            .text-green {
                color: var(--maxxen-green)
            }
        }

        .section-description {
            color: var(--maxxen-white);
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            margin-bottom: 0
        }
    }



    .innovation-card {
        border-radius: 20px;
        border: 0.5px solid rgba(255, 255, 255, 0.50);
        background: radial-gradient(126.04% 77.07% at 20.39% 34.73%, rgba(255, 255, 255, 0.16) 0%, rgba(153, 153, 153, 0.08) 100%);
        backdrop-filter: blur(14.050000190734863px);
        position: relative;
        height: 280px;
        padding: 36px;
        display: block;
        align-items: center;
        overflow: hidden;
        h5{
            color: white;
            font-size: 22px;
        }
        p {
            color: var(--maxxen-white);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            position: relative;
            margin-bottom: 0;
            z-index: 2;
        }

    }

}

.innovation-card::after {
    background-image: url(../images/inovasyongreen.png);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}


.innovation-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/xfactor-texture.png);
    z-index: 0;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 80%;

}


.technology-section.products-technology-section.white-ones {
    background-color: var(--maxxen-white);
    margin-top: 0px;

    .technology-section-content {
        .section-title {
            color: var(--maxxen-blue);
            -webkit-text-fill-color: var(--maxxen-blue);
        }

        .section-description {
            color: var(--Body-Copy-Light, #596071);
            span{
                color: var(--Body-Copy-Light, #596071) !important;
            }
        }



        .innovation-card {
            background: var(--maxxen-blue);

            h4 {
                color: #FFF !important;
            }

            p {
                color: var(--maxxen-white);
            }
        }
    }


}

.technology-section.products-technology-section {

    .technology-section-content {
        height: 450px;
    }



    .innovation-card {
        border-radius: 20px;
        border: 0.5px solid rgba(255, 255, 255, 0.50);
        background: radial-gradient(126.04% 77.07% at 20.39% 34.73%, rgba(255, 255, 255, 0.16) 0%, rgba(153, 153, 153, 0.08) 100%);
        backdrop-filter: blur(14.050000190734863px);
        position: relative;
        height: 230px;
        padding: 36px;
        display: flex;
        align-items: start;
        overflow: hidden;
        flex-direction: column;
        justify-content: center;



        img {
            position: absolute;
            right: -30%;
            bottom: -35%;
            z-index: 4;
            height: 800px;
            object-fit: contain;
        }

        h4 {
            color: #FFF;
            font-family: Inter;
            font-size: 30px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            width: 100%;
        }

        p {
            color: var(--maxxen-white);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
            position: relative;
            margin-bottom: 0;
            z-index: 2;
            

        }



    }

}



.technology-section.products-technology-section.white-ones::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    z-index: 0;
    background-repeat: no-repeat;
}

.technology-section.products-technology-section.white-ones::before {
    content: "";
    position: absolute;
    top: -5%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    filter: blur(125.0999984741211px);
}

.white-card::after {
    background: transparent !important;
}



.tigon {
    height: 11px;
}


.contact-card.bold-h5 {
    h5 {
        font-weight: 600 !important;
    }
}

.contact-locations-section {
    padding: 40px 0px 80px;

    .contact-locations-section-content {
        .section-title {
            color: var(--maxxen-blue);
            text-align: center;
            font-family: Inter;
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }
    }
  

    .contact-card {
        border-radius: 20px;
        border: 0.5px solid rgba(23, 35, 65, 0.21);
        background: rgba(255, 255, 255, 0.08);
        position: relative;
        overflow: hidden;
        height: auto;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        h5 {
            color: var(--maxxen-blue);
            font-family: Inter;
            font-size: 25px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-left: 25px;

            i {
                margin-left: -30px;
            }
        }

        .contact-text {
            color: var(--Body-Copy-Light, #596071);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 164.591%;
            /* 26.335px */
            padding-left: 27px;
        }

        p {
            a {
                color: var(--Body-Copy-Light, #596071);
                font-family: Inter;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 164.591%;
                position: relative;
            }

            a:hover {
                text-decoration: underline;
            }


            i {

                font-size: 18px;
                color: var(--maxxen-green);
            }

        }

        i {
            width: 24px;
            height: 18px;
            flex-shrink: 0;
            aspect-ratio: 1/1;
            font-size: 24px;
            color: var(--maxxen-green);
        }

    }

    .contact-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-image: url(../images/iletisimgreen.png);
        background-position: right;
        background-repeat: no-repeat;
    }
}

.main-header .btn.btn-green:hover {
    border: 1px solid var(--maxxen-green)
}



.animated-word {
    transition: opacity 0.4s ease;
    display: inline-block;
}

.fade-out {
    opacity: 0;
}


.is-sticky.sub-page-header {
    background-color: var(--maxxen-white) !important;
}

.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--maxxen-blue);
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}





/* Loader Styles start here */
.loader-wrapper {
    --line-width: 5px;
    --curtain-color: #fff;
    --outer-line-color: #172341;
    ;
    --middle-line-color: #00E500;
    ;
    --inner-line-color: #172341;
    ;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--outer-line-color);
    border-radius: 100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

.loader:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--inner-line-color);
    border-radius: 100%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--middle-line-color);
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--curtain-color);
    width: 51%;
    height: 100%;
    z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
    left: 0
}

.loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all .3s 1s ease-out;
}

.section-description p {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-bottom: 0;

}

.footer_logo {
    max-width: 350px;
    ;
}

.contact-card a {
    color: var(--maxxen-blue) !important;
}

.sustainability-section-content video {
    position: absolute !important;
    top: 0px;
    z-index: 1;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* top: -10px; */
}

.sustainability-section-content span,
.sustainability-section-content h2,
.sustainability-section-content p,
.sustainability-section-content a {
    position: relative;
    z-index: 2;
    color: var(--maxxen-white);
}

.footer-social img {
    height: 30px;
    width: 30px;
}

.text-green {
    color: var(--maxxen-green) !important;
}

.text-maxxen {
    color: var(--maxxen-blue) !important;
}

.text-maxxen-p p,
.text-maxxen-p span {
    color: var(--maxxen-blue) !important;
}

.text-white {
    color: var(--maxxen-white) !important;
}

.section-height-surdur {
    height: 135vh;
    padding: 50px;
    background-repeat: no-repeat;
    position: relative !important;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.section-height-surdur::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    background-color: #0000004d;
    z-index: 0;
    background-size: 100%;
    height: 140%;
}

.navbav-submenu {
    display: none !important;
    position: absolute;
    top: 30px;
    width: max-content;
    background-color: #fffffffe;
    border-radius: 12px;
    padding: 10px;
    padding-left: 10px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.navbav-submenu li {
    padding: 10px;
}

.nav-item {
    position: relative;
}

.navbar-nav .nav-item:hover .navbav-submenu {
    display: block !important;
}

.navbav-submenu .nav-item a {
    font-weight: 300 !important;
    color: var(--maxxen-blue) !important;
}

.news-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

span.submenu-toggle {
    display: none;
}

.contact-info-new {
    border-radius: 20px;
    border: 0.5px solid rgba(255, 255, 255, 0.50);
    /* background: radial-gradient(126.04% 77.07% at 20.39% 34.73%, rgba(255, 255, 255, 0.16) 0%, rgba(153, 153, 153, 0.08) 100%); */
    backdrop-filter: blur(14.050000190734863px);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(119.04% 121.08% at 100% 124.26%, rgba(1, 229, 0, 0.50) 0%, rgba(153, 153, 153, 0.1) 100%);
}

.contact-info-contact-page {
    border-radius: 20px;
    border: 0.5px solid rgba(23, 35, 65, 0.21);
    backdrop-filter: blur(14.050000190734863px);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 75px;
}

.contact-info-contact-page .new-item-text h4 {
    color: #000 !important;
    font-size: 36px !important;
    font-weight: 400;
}
.contact-info-contact-page .new-item-text a{
    color: #000 !important;
    text-decoration: none !important;
}
 
 

.contact-info-new-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.new-item-text h4 {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 37.5px */
}

.new-item-text a {
    color: #dfdfdf;
    font-weight: 300;
    font-size: 18px;
    position: relative;
    text-decoration: none;
}

.new-item-text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dfdfdf;
    transition: width 0.3s ease-in-out;
}

.new-item-text a:hover::after {
    width: 100%;
}

.technology-section.products-technology-section {

    .owl-carousel .owl-nav button.owl-next {
        right: 6%;
        left: auto;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -2%;
        right: auto;
    }

    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        top: 40%;
        padding: 8px !important;
        border-radius: 50%;
        height: 40px;
        width: 40px;
        background: #ffffff52;
        backdrop-filter: blur(100px);
        display: flex;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;

        span {
            color: #fff;
            font-size: 32px;
        }
    }
}


.contact-card:lang(en){
    min-height: 320px !important;
}


.product-section  .owl-nav button.owl-next {
    right: 87.5%;
}

.product-section  .owl-nav button.owl-prev {
    left: 15px;
    right: auto;
}

.product-section .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    padding: 8px !important;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: #8e898952;
    backdrop-filter: blur(100px);
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;

}
.sub-title-header{
    color: var(--Body-Copy-Light, #596071);
    position: relative;
    bottom: 10px;
}
.product-section  .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    padding: 8px !important;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: #8e898952;
    backdrop-filter: blur(100px);
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;

}

/* Nested span selector düzleştirildi */
.product-section .owl-nav button.owl-next span,
.product-section  .owl-nav button.owl-prev span {
    color: #fff;
    font-size: 32px;
}



ul.navbav-submenu.pro-sub-menu {
    width: max-content;
    padding-left: 160px !important;
    list-style: disc;
    li{
        padding: 4px 0px;
    }
}

li.x-series {
    position: absolute;
    left: 5%;
    top: 33%;
    font-size: 28px;
    color: var(--maxxen-green);
    font-weight: 700;
    list-style: none;
}

.site_owner_text{
        text-align:left;
    }
@media (max-width: 991px) {
    .site_owner_text{
        text-align: center;
    }
    li.x-series {
        position: absolute;
        left: 5%;
        top: 5%;
        font-size: 28px;
        color: var(--maxxen-green);
        font-weight: 700;
    }
    ul.navbav-submenu.pro-sub-menu {
        width: max-content;
        padding-left: 10px !important;
        padding-top: 80px;
        
    }

    .products-section-page.sustainability-section {
        padding: 80px 0px 120px;
    }
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  background-color: transparent;
}

table thead th {
  background-color: #f8f9fa;
  color: #343a40;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid #dee2e6;
        border: 1px solid #00000005;

}

table tbody tr {
  background-color: #fff;
  transition: box-shadow 0.2s ease;
}

table tbody tr:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
  border-top: none;
  border-bottom: 1px solid #f0f0f0;
  color: #495057;
  font-size: 0.95rem;
      border: 1px solid #00000005;
}

@media (max-width: 768px) {

  table, table tbody, table tr{
    display: block;
    width: 100%;
  }
 
  

}


/* Footer Cookie Consent Begin*/
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 12;
    box-sizing: border-box;
    width: 100%;
    background: var(--maxxen-blue) ;
  }

  .cookie-consent-banner__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 0;
  }
  @media (max-width:1200px) {
    .cookie-consent-banner__inner 
    {
        padding: 24px 15px;
    }
  }

  .cookie-consent-banner__copy {
    margin-bottom: 16px;
  }

  
  .cookie-consent-banner__header {
    margin-bottom: 8px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }

  .cookie-consent-banner__description {
    font-weight: normal;
    color: var(--disera-text);
    font-size: 13px;
    line-height: 20px;
  }

  .cookie-consent-banner__cta {
    box-sizing: border-box;
    display: inline-block;
    min-width: 120px;
    padding: 8px 13px;
    border-radius: 8px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    border: 2px solid white;
    transition: all 0.4s ease;
  }

  .cookie-consent-banner__cta--secondary {
    padding: 8px 13px;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    transition: all 0.4s ease;
  }

  .cookie-consent-banner__cta:hover {
    background-color: var(--maxxen-green) !important;
    border-color: #488D23;
    transition: all 0.4s ease;
  }

  .cookie-consent-banner__cta--secondary:hover {
    border-color:transparent;
    background-color: transparent;
    color:white;
    transition: all 0.2s ease;
  }

  .cookie-consent-banner__cta:last-child {
    margin-left: 16px;
  }


.kvkk-title-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.kvkk-title-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    
}

.kvkk-list ul {padding-left: 0;list-style: none;margin-bottom: 0;}

.kvkk-list ul li p a {
    color: var(--Body-Copy-Light, #596071);
    text-decoration: underline;
    font-weight: 700;
}

footer {
    & .footer-links {
        & li {
            width: 100px;
        }
    }
}
.tech-mini-img img{
    width:48px;
}
.tech-img img {
    position: relative;
    z-index: 2;
}


.fuar-form {
    backdrop-filter: blur(14.050000190734863px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(119.04% 121.08% at 100% 124.26%, rgba(1, 229, 0, 0.50) 0%, rgba(153, 153, 153, 0.1) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.50);
}

.fuar-form .form-control {
    background: #fff;
}

.fuar-form label {
    color: #fff;
}

.joiner {
    label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 20px;
        font-weight: 600;

        input[type="checkbox"] {
            appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-radius: 4px;
            background-color: white;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
        }

        input[type="checkbox"]:checked {
            background-color: var(--maxxen-green); 
            border-color:  var(--maxxen-green);
        }
        input[type="checkbox"]:checked::after {
            content: '✓';
            color: white;
            position: absolute;
            left: 15%;
            font-size: 16px;
            top: -16%;
        }
    }
}

img.maxiimage {
    position: absolute;
    width: 300px;
    left: -1%;
    top: -1%;
}


.p-relative{
    position: relative;
}


h3.maxitext {
    position: absolute;
    left: 4%;
    top: 36%;
    font-size: 28px;
    max-width: 270px;
    font-family: "Dancing Script", cursive;
    color: var(--maxxen-green);
}


