/* Section 1 Style */
.sectionOne {
    position: relative;
    overflow: hidden;
}

    .sectionOne .s1-graph1 {
        position: absolute;
        top: 9rem;
        left: -200px;
        opacity: 0;
        z-index: 50;
        animation: slideFadeIn 3s ease-out forwards, slightMove 2s ease-out 3s forwards;
    }

@keyframes slideFadeIn {
    to {
        left: 0px;
        opacity: 1;
    }
}

@keyframes slightMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.s1-graph2 {
    position: absolute;
    left: 9rem;
    bottom: 0rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
    width: 7%;
}

    .s1-graph2.animate {
        opacity: 1;
        transform: translateY(0px);
        animation: slideFadeInY 2s ease-out forwards, slightMoveY 1s ease-out 2s forwards;
    }

@keyframes slideFadeInY {
    to {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes slightMoveY {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(50px);
    }
}

.sectionOne .swiper-container {
    position: relative;
}

    .sectionOne .swiper-container .fxSlide {
        background-color: rgba(0, 0, 0, 0.6);
        background-position: top center;
        background-size: cover;
        min-height: 130vh;
        justify-content: center;
    }

    .sectionOne .swiper-container .fxSlide-texts {
        width: 60%;
        margin: auto;
        color: #fff;
    }

        .sectionOne .swiper-container .fxSlide-texts p {
            color: rgba(229, 229, 229, 1);
        }

        .sectionOne .swiper-container .fxSlide-texts .fxText {
            gap: 9px;
            position: relative;
            background: linear-gradient(to right, #840718 50%, #840718 50%) center center / 0% 100% no-repeat;
            transition: background-size 0.4s ease-in-out, color 0.2s ease-in-out;
            padding: 10px 20px;
            width: max-content;
            cursor: pointer;
            z-index: 1;
            border-radius: 5px;
        }

            .sectionOne .swiper-container .fxSlide-texts .fxText:hover {
                background-size: 100% 100%;
                color: #fff;
            }

            .sectionOne .swiper-container .fxSlide-texts .fxText h2 {
                width: max-content;
                display: flex;
                align-items: center;
            }

        .sectionOne .swiper-container .fxSlide-texts h1,
        .sectionOne .swiper-container .fxSlide-texts p,
        .sectionOne .swiper-container .fxSlide-texts h3 {
            margin-bottom: 17px;
        }

    .sectionOne .swiper-container .arrowSlider {
        height: 60px;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(201, 0, 27, 0.53);
        transition: 0.3s;
    }

        .sectionOne .swiper-container .arrowSlider img {
            width: 12px;
        }

    .sectionOne .swiper-container .listItemsSlider {
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 999;
        top: 50%;
        transform: translate(0%,-50%);
        right: 2rem;
        align-items: center;
    }

        .sectionOne .swiper-container .listItemsSlider .dots {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
            /* .sectionOne .swiper-container .listItemsSlider .dots .point{
    width: 2px;
    height: 2px;
    position: relative;
    background-color: #fff;
    border-radius: 50%;
} */
            .sectionOne .swiper-container .listItemsSlider .dots .point {
                position: relative;
                width: 24px;
                height: 24px;
                background: transparent;
                border: 3px solid transparent;
                transition: all .3s ease;
            }

                .sectionOne .swiper-container .listItemsSlider .dots .point.active {
                    background: transparent;
                }

                .sectionOne .swiper-container .listItemsSlider .dots .point:before {
                    content: '';
                    position: absolute;
                    height: 4px;
                    width: 4px;
                    background: #e5e5e5;
                    top: 55%;
                    right: 52%;
                    transform: translate(50%, -50%);
                    border-radius: 20px;
                }

                .sectionOne .swiper-container .listItemsSlider .dots .point:before {
                    background: #FFFFFF;
                }

                .sectionOne .swiper-container .listItemsSlider .dots .point.active::after {
                    border-color: #FFFFFF;
                }

                .sectionOne .swiper-container .listItemsSlider .dots .point.active::after {
                    border-color: #e5e5e5;
                    transform: scale(1);
                }

                .sectionOne .swiper-container .listItemsSlider .dots .point::after {
                    content: '';
                    position: absolute;
                    border: 1px solid transparent;
                    height: 100%;
                    width: 100%;
                    right: 0;
                    border-radius: 40px;
                    transform: scale(0);
                    transition: all .3s ease-out;
                }

        .sectionOne .swiper-container .listItemsSlider .numbersSlider {
            position: relative;
            padding-top: 1rem;
            padding-bottom: 2rem;
        }

        .sectionOne .swiper-container .listItemsSlider .numberSlide {
            color: #C9001B;
        }

        .sectionOne .swiper-container .listItemsSlider .lineSpace {
            width: 1px;
            height: 75px;
            transform: rotate(-45deg);
            background: rgba(255, 255, 255, 0.10);
            position: absolute;
            top: 10px;
            left: 50%;
        }

        .sectionOne .swiper-container .listItemsSlider .totalSlide {
            color: rgba(201, 0, 27, 0.29);
            padding-right: 2rem;
        }

    .sectionOne .swiper-container .arrowsSliderS1 {
        gap: 10px;
    }

        .sectionOne .swiper-container .arrowsSliderS1 .arrowSlider {
            cursor: pointer;
        }

    .sectionOne .swiper-container .arrowSlider:hover {
        background-color: rgba(201, 0, 27, 1);
    }

@media (min-width:1706.67px) {
    .sectionOne .swiper-container .arrowSlider img {
        width: 15px;
    }

    .sectionOne .swiper-container .listItemsSlider .dots .point.active {
        width: 30px;
        height: 30px;
    }

    .sectionOne .swiper-container .arrowSlider {
        height: 65px;
        width: 65px;
    }

    .sectionOne .swiper-container .fxSlide-texts h1,
    .sectionOne .swiper-container .fxSlide-texts p,
    .sectionOne .swiper-container .fxSlide-texts h3 {
        margin-bottom: 22px;
    }

    .sectionOne .swiper-container .fxSlide-texts .fxText h2 img {
        width: 40px;
    }
}

@media (min-width:1920px) {
    .sectionOne .swiper-container .arrowSlider img {
        width: 18px;
    }

    .sectionOne .swiper-container .listItemsSlider .dots .point.active {
        width: 33px;
        height: 33px;
    }

    .sectionOne .swiper-container .arrowSlider {
        height: 70px;
        width: 70px;
    }

    .sectionOne .swiper-container .fxSlide-texts h1,
    .sectionOne .swiper-container .fxSlide-texts p,
    .sectionOne .swiper-container .fxSlide-texts h3 {
        margin-bottom: 28px;
    }

    .sectionOne .swiper-container .fxSlide-texts .fxText h2 img {
        width: 50px;
    }
}

@media (min-width:2048px) {
    .sectionOne .swiper-container .fxSlide {
        min-height: 110vh;
    }
}

@media (min-width:2304px) {
    .sectionOne .swiper-container .fxSlide {
        min-height: 100vh;
    }
}

@media (min-width:3072px) {
    .sectionOne .swiper-container .fxSlide {
        min-height: 80vh;
    }
}

@media (min-width:4608px) {
    .sectionOne .swiper-container .fxSlide {
        min-height: 55vh;
    }
}

@media (min-width:6144px) {
    .sectionOne .swiper-container .fxSlide {
        min-height: 35vh;
    }
}

@media (max-width:1396.36px) {
    .sectionOne .swiper-container .arrowSlider {
        width: 50px;
        height: 50px;
    }

        .sectionOne .swiper-container .arrowSlider img {
            width: 10px;
        }

    .sectionOne .swiper-container .listItemsSlider .lineSpace {
        height: 60px;
    }
}

@media screen and (max-width: 1280px) and (min-height: 800px) {
    .sectionOne .swiper-container .fxSlide {
        min-height: 70vh;
    }
}

@media (max-width:1228.8px) {
    .sectionOne .s1-graph1 {
        width: 15%;
    }

    .sectionOne .s1-graph2 {
        width: 10%;
        left: 5rem;
    }

    .sectionOne .swiper-container .arrowSlider {
        width: 40px;
        height: 40px;
    }

        .sectionOne .swiper-container .arrowSlider img {
            width: 8px;
        }
}

@media (max-width:1024px) {
    .sectionOne .s1-graph2 {
        width: 10%;
        left: 4rem;
    }

    .sectionOne .swiper-container .fxSlide {
        min-height: 50vh;
    }
}

@media screen and (max-width: 820px) and (min-height: 1180px) {
    main .sectionOne .swiper-container .fxSlide {
        min-height: 60vh;
    }
}

@media screen and (max-width: 853px) and (min-height: 1280px) {
    main .sectionOne .swiper-container .fxSlide {
        min-height: 60vh;
    }
}

@media screen and (max-width: 768px) and (min-height: 1024px) {
    main .sectionOne .swiper-container .fxSlide {
        min-height: 60vh;
    }
}

@media screen and (max-width: 1024px) and (min-height: 1366px) {
    main .sectionOne .swiper-container .fxSlide {
        min-height: 60vh;
    }
}

@media screen and (max-width: 1024px) and (min-height: 600px) {
    .sectionOne .swiper-container .fxSlide {
        min-height: 100vh;
    }
}


@media (max-width:877.71px) {
    .sectionOne .s1-graph2 {
        width: 10%;
        left: 3rem;
    }

    .sectionOne .swiper-container .arrowSlider {
        width: 30px;
        height: 30px;
    }

        .sectionOne .swiper-container .arrowSlider img {
            width: 7px;
        }

    .sectionOne .swiper-container .listItemsSlider .lineSpace {
        height: 50px;
    }
}

@media (max-width:768px) {
}

@media (max-width:614.4px) {
    .sectionOne .swiper-container .fxSlide-texts {
        width: 90%;
        padding-right: 3rem;
    }

    .sectionOne .swiper-container .listItemsSlider {
        right: 0.8rem;
    }

        .sectionOne .swiper-container .listItemsSlider .totalSlide {
            padding-right: 1rem;
        }

    .sectionOne .swiper-container .fxSlide {
        height: 100%;
        background-position: right;
        min-height: 100vh;
    }

    .sectionOne .s1-graph1 {
        width: 27%;
    }

    .sectionOne .s1-graph2 {
        width: 20%;
    }

    .sectionOne .swiper-container .listItemsSlider .numbersSlider {
        padding-bottom: 5rem;
    }

    .sectionOne .swiper-container .arrowsSliderS1 .arrowSlider {
        width: 42px;
        height: 42px;
    }

    .sectionOne .swiper-container .fxSlide-texts .fxText {
        width: 100%;
        flex-wrap: wrap;
    }

        .sectionOne .swiper-container .fxSlide-texts .fxText h2 {
            flex-wrap: wrap;
        }

            .sectionOne .swiper-container .fxSlide-texts .fxText h2 img {
                width: 55px;
            }
}

@media (max-width:512px) {
}
/* Section 2 Style */
.sectionTwo {
    margin: 100px 0 150px 0;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 3rem;
}

    .sectionTwo .lines-S2Img {
        position: absolute;
        right: 0;
        width: 22%;
        top: 0;
    }

    .sectionTwo .lines-S2Img {
        position: absolute;
        top: 2rem;
        right: 0;
        transform: translateY(0%);
        transition: transform 2s ease-out;
    }

        .sectionTwo .lines-S2Img.active {
            transform: translateY(150px);
        }

    .sectionTwo .lines2-S2Img {
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: 0;
        transition: opacity 2s ease-out;
        width: 7%;
    }

        .sectionTwo .lines2-S2Img.active {
            opacity: 1;
        }

    .sectionTwo .fx-sectionTwo {
        gap: 42px;
        align-items: center;
    }

        .sectionTwo .fx-sectionTwo .sectionTwo-img {
            z-index: 10;
            height: 100%;
        }

            .sectionTwo .fx-sectionTwo .sectionTwo-img img {
                border-radius: 20px 0 20px 0;
                object-fit: cover;
                transform: translateY(0%);
                width: 364px;
                height: 460px;
                transition: transform 1s ease-out;
                box-shadow: 0px 60px 36px -36px rgba(0, 0, 0, 0.15);
            }

                .sectionTwo .fx-sectionTwo .sectionTwo-img img.active {
                    transform: translateY(-50px);
                }

        .sectionTwo .fx-sectionTwo .sectionTwo-text h1 {
            margin: 10px 0;
        }

        .sectionTwo .fx-sectionTwo .sectionTwo-text .iconText2 {
            margin-bottom: 24px;
            margin-right: auto;
            display: block;
        }

        .sectionTwo .fx-sectionTwo .sectionTwo-text p {
            margin-bottom: 12px;
        }

@media (min-width:1706.67px) {
    .sectionTwo .fx-sectionTwo .sectionTwo-img img {
        width: 394px;
        height: 490px;
    }
}

@media (min-width:1920px) {
    .sectionTwo .fx-sectionTwo .sectionTwo-img img {
        width: 434px;
        height: 530px;
    }
}

@media (min-width:2048px) {
    .sectionTwo .fx-sectionTwo .sectionTwo-img img {
        width: 454px;
        height: 550px;
    }
}

@media (max-width:1396.36px) {
    .sectionTwo .fx-sectionTwo .sectionTwo-img img {
        width: 344px;
        height: 440px;
    }

    .sectionTwo .lines-S2Img {
        width: 22%;
    }
}

@media (max-width:1228.8px) {
    .sectionTwo .fx-sectionTwo .sectionTwo-img img {
        width: 304px;
        height: 400px;
    }

    .sectionTwo .lines-S2Img {
        width: 20%;
        top: 4rem;
    }

    .sectionTwo {
        margin: 50px 0 100px 0;
    }
}

@media (max-width:1024px) {
    .sectionTwo .fx-sectionTwo .sectionTwo-img img {
        width: 264px;
        height: 360px;
    }

    .sectionTwo .lines-S2Img {
        width: 20%;
        top: 4rem;
    }

    .sectionTwo {
        margin: 0px 0 100px 0;
    }
}

@media (max-width:877.71px) {
    .sectionTwo .fx-sectionTwo .sectionTwo-img img {
        width: 244px;
        height: 340px;
    }
}

@media (max-width:614.4px) {
    .sectionTwo .lines-S2Img {
        width: 60%;
    }

    .sectionTwo .fx-sectionTwo .sectionTwo-img {
        width: 100%;
    }

        .sectionTwo .fx-sectionTwo .sectionTwo-img img {
            width: 90%;
            height: 440px;
        }

    .sectionTwo .fx-sectionTwo {
        flex-direction: column;
        gap: 0px;
    }

        .sectionTwo .fx-sectionTwo .sectionTwo-text h1 {
            font-size: 20px;
            line-height: 37.5px;
        }

        .sectionTwo .fx-sectionTwo .sectionTwo-text p {
            font-size: 16px;
        }

        .sectionTwo .fx-sectionTwo .sectionTwo-text span {
            font-size: 12px;
        }

    .sectionTwo .lines2-S2Img {
        width: 70px;
        bottom: -2rem;
        opacity: 1;
    }
}
/* Section Three Style */
.sectionThree {
    background: #840718;
    padding: 77px 0;
    position: relative;
}

    .sectionThree .graph-whiteS3MB {
        margin-right: auto;
        display: none;
    }

    .sectionThree .lines-S3 {
        position: absolute;
        bottom: -11rem;
        left: 2.5rem;
        z-index: 10;
    }

    .sectionThree h2 {
        margin-bottom: 20px;
    }

    .sectionThree h1,
    .sectionThree p {
        margin-bottom: 48px;
    }

    .sectionThree .btnBlack {
        font-size: 18px;
        width: 206px;
        height: 58px;
    }

    .sectionThree h1,
    .sectionThree h2,
    .sectionThree p {
        transform: translateY(0%);
        transition: transform 0.5s ease-out;
    }

        .sectionThree h1.active,
        .sectionThree h2.active,
        .sectionThree p.active {
            transform: translateY(-40px);
        }

@media (min-width:1706.67px) {
    .sectionThree .btnBlack {
        font-size: 20px;
        width: 226px;
        height: 68px;
    }

    .sectionFour .fx-sectionFour .sectionFour-img img {
        width: 359px;
        height: 352px;
    }
}

@media (min-width:1920px) {
    .sectionThree .btnBlack {
        font-size: 23px;
        width: 266px;
        height: 78px;
    }

    .sectionThree h1.active, .sectionThree h2.active, .sectionThree p.active {
        transform: translateY(-40px);
    }

    .sectionThree h2 {
        margin-bottom: 30px;
    }

    .sectionThree h1, .sectionThree p {
        margin-bottom: 56px;
    }
}

@media (max-width:614.4px) {
    .sectionThree {
        padding-top: 0;
    }

        .sectionThree .graph-whiteS3MB {
            display: block;
            margin-bottom: 44px;
        }

        .sectionThree h1 {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .sectionThree h1 {
            font-size: 21px;
            margin-bottom: 16px;
        }

        .sectionThree .btnBlack {
            font-size: 14px;
            width: 152px;
            height: 45px;
        }

        .sectionThree .lines-S3 {
            display: none;
        }
}

@media (max-width:512px) {
}
/* Section Four Style */
.sectionFour {
    padding: 200px 0 100px 0;
    background: #fff;
}

    .sectionFour .fx-sectionFour {
        align-items: center;
        gap: 56px;
    }

    .sectionFour .yellowBlock {
        width: 68px;
        height: 68px;
        background: #C2D500;
        margin-bottom: 19px;
    }

    .sectionFour .fx-sectionFour .sectionFour-img img {
        box-shadow: 0 60px 97px -36px rgba(0, 0, 0, 0.15);
        border-radius: 20px 0 20px 0;
        object-fit: cover;
        width: 339px;
        height: 322px;
    }

    .sectionFour h1, .sectionFour h3 {
        margin-bottom: 24px;
    }

    .sectionFour p {
        margin-bottom: 33px;
        color: #333;
    }

    .sectionFour .fxTabs-S4 {
        border: 1px solid rgba(0, 55, 42, 1);
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 35%;
    }

        .sectionFour .fxTabs-S4 button {
            height: 100%;
            width: 100%;
            transition: color 0.3s;
        }

            .sectionFour .fxTabs-S4 button:hover,
            .sectionFour .fxTabs-S4 button.active {
                color: rgba(132, 7, 24, 1);
            }

    .sectionFour .tab-content {
        opacity: 0;
        visibility: hidden;
        transition: opacity 2s ease;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

        .sectionFour .tab-content.active-tab {
            opacity: 1;
            visibility: visible;
            position: relative;
        }

@media (min-width:1706.67px) {
    .sectionFour .fx-sectionFour .sectionFour-img img {
        width: 359px;
        height: 352px;
    }

    .sectionFour .fxTabs-S4 {
        height: 110px;
    }
}

@media (min-width:1920px) {
    .sectionFour .fx-sectionFour .sectionFour-img img {
        width: 399px;
        height: 392px;
    }

    .sectionFour .fxTabs-S4 {
        height: 120px;
    }
}

@media (min-width:2048px) {
    .sectionFour .fx-sectionFour .sectionFour-img img {
        width: 429px;
        height: 422px;
    }

    .sectionFour .fxTabs-S4 {
        height: 130px;
    }
}

@media (max-width:1228.8px) {
    .sectionFour .fx-sectionFour .sectionFour-img img {
        width: 280px;
        height: 292px;
    }

    .sectionFour .fxTabs-S4 {
        height: 80px;
        width: 40%;
    }
}

@media (max-width:877.71px) {
    .sectionFour .fxTabs-S4 {
        height: 70px;
        width: 45%;
    }

    .sectionFour .fx-sectionFour .sectionFour-img img {
        width: 250px;
        height: 262px;
    }
}

@media (max-width:768px) {
    .sectionFour .fxTabs-S4 {
        height: 65px;
    }
}

@media (max-width:614.4px) {
    .sectionFour {
        padding: 66px 0;
    }

        .sectionFour .yellowBlock {
            display: none;
        }

        .sectionFour .fx-sectionFour {
            flex-direction: column;
            gap: 32px;
        }

            .sectionFour .fx-sectionFour .sectionFour-texts {
                order: 2;
                position: relative;
            }

            .sectionFour .fx-sectionFour .sectionFour-img {
                order: 1;
            }

            .sectionFour .fx-sectionFour .sectionFour-img {
                width: 100%;
                height: 100%;
            }

                .sectionFour .fx-sectionFour .sectionFour-img img {
                    width: 100%;
                    height: 322px;
                }

        .sectionFour h1,
        .sectionFour h3 {
            font-size: 24px;
            margin-bottom: 16px;
            font-weight: bold;
        }

        .sectionFour p {
            font-size: 20px;
            line-height: 37.5px;
            color: #00372A;
            font-weight: 500;
        }

        .sectionFour .fxTabs-S4 {
            width: 100%;
            height: 92px;
        }

            .sectionFour .fxTabs-S4 button {
                font-size: 15px;
            }
}

@media (max-width:512px) {
}
/* Section Five Style */
.sectionFive {
    background: rgba(249, 249, 249, 1);
    padding-top: 5rem;
}

    .sectionFive .head-text {
        background-color: #F9F9F9;
        background-image: url(../images/Frame-76-ar.png);
        background-position: top right;
        background-repeat: no-repeat;
        padding: 30px;
        transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    }

    .sectionFive .fx-sectionFive {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .sectionFive .item-sectionFive {
        height: 40.625rem;
        flex: 1 1 calc(16% - 0px);
        max-width: calc(16% - 0px);
        transition: flex 0.5s ease, max-width 0.5s ease, opacity 0.5s ease;
    }

        .sectionFive .item-sectionFive.active {
            flex: 1 1 calc(52% - 0px); /* العرض عندما يكون العنصر مفتوحًا */
            max-width: calc(52% - 0px);
            opacity: 1; /* عندما يكون العنصر مفتوحًا */
        }

        .sectionFive .item-sectionFive:not(.active) {
            background-color: transparent; /* تأكد من أن الخلفية لا تكون ظاهرة */
        }

    .sectionFive .itemOne .divOne-sectionFive {
        background: url(../images/divOne-skills.png);
    }

    .sectionFive .itemTwo .divOne-sectionFive {
        background: url(../images/divTwo-skills.png);
    }

    .sectionFive .itemThree .divOne-sectionFive {
        background: url(../images/divThree-skills.png);
    }

    .sectionFive .itemFour .divOne-sectionFive {
        background: url(../images/divFour-skills.png);
    }

    .sectionFive .item-sectionFive .divStyle {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        height: 100%;
        padding: 30px 20px;
        overflow: hidden;
        cursor: pointer;
        position: relative;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .sectionFive .item-sectionFive .divOne-sectionFive {
        cursor: pointer;
        transition: opacity 0.5s ease;
    }

    .sectionFive .item-sectionFive.active .divOne-sectionFive {
        opacity: 0;
        pointer-events: none;
    }

    .sectionFive .item-sectionFive.active .divStyle {
        display: none;
    }

    .sectionFive .item-sectionFive .divStyle h3 {
        position: absolute;
        display: block;
        z-index: 4;
        top: 35%;
        left: 50%;
        transform: translate(-50%,-15%);
        visibility: visible;
        opacity: 1;
        width: 70%;
    }

    .sectionFive .item-sectionFive .divTwo-sectionFive {
        background-position: top right;
        background-repeat: no-repeat !important;
        background-size: contain;
        z-index: 1;
        background-blend-mode: color-burn;
        padding: 29px 19px;
        margin-bottom: 4px;
        transform: scale(0);
        transform-origin: top left;
        opacity: 0;
        transition: transform 0.2s ease, opacity 0.2s ease;
        display: block;
        height: 100%;
    }

        .sectionFive .item-sectionFive .divTwo-sectionFive .graphSectionFive {
            display: none;
        }

    .sectionFive .item-sectionFive.active .divTwo-sectionFive {
        transform: scale(1);
        opacity: 1;
        overflow-y: scroll;
    }

        .sectionFive .item-sectionFive.active .divTwo-sectionFive::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(232, 232, 232, 0.3);
            border-radius: 10px;
            background-color: transparent;
        }

        .sectionFive .item-sectionFive.active .divTwo-sectionFive::-webkit-scrollbar {
            width: 0px;
            background-color: transparent;
        }

        .sectionFive .item-sectionFive.active .divTwo-sectionFive::-webkit-scrollbar-thumb {
            border-radius: 10px;
            -webkit-box-shadow: inset 0 0 6px rgba(235, 235, 235, 0.3);
            background-color: #472667;
        }

    .sectionFive .itemOne .divTwo-sectionFive {
        background: url(../images/graph-strok-gray.svg) #840718;
    }

    .sectionFive .itemTwo .divTwo-sectionFive {
        background: url(../images/graph-strok-gray.svg) #DC4405;
    }

    .sectionFive .itemThree .divTwo-sectionFive {
        background: url(../images/graph-strok-gray.svg) #00635B;
    }

    .sectionFive .itemFour .divTwo-sectionFive {
        background: url(../images/graph-strok-gray.svg) #0033A1;
    }

    .sectionFive .item-sectionFive .divTwo-sectionFive h1 {
        margin-bottom: 18px;
    }

    .sectionFive .item-sectionFive .divTwo-sectionFive p {
        margin-bottom: 16px;
    }

    .sectionFive .item-sectionFive .boxs-sectionFive {
        gap: 14px;
        align-items: normal;
    }

    .sectionFive .item-sectionFive .box {
        flex: 1 1 calc(50% - 14px);
        max-width: calc(50% - 0px);
        box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, 1);
        background: rgba(255, 255, 255, 0.13);
        padding: 16px;
    }

@media (min-width:1706.67px) {
    .sectionFive .item-sectionFive {
        height: 45.625rem;
    }
}

@media (min-width:1920px) {
    .sectionFive .item-sectionFive {
        height: 50.625rem;
    }
}

@media (max-width:1396.36px) {
    .sectionFive .item-sectionFive {
        height: 37.625rem;
    }
}

@media (max-width:1228.8px) {
    .sectionFive .item-sectionFive {
        height: 32.625rem;
    }
}

@media (max-width:1024px) {
    .sectionFive .item-sectionFive {
        height: 28.625rem;
    }

        .sectionFive .item-sectionFive .divStyle h3 {
            width: 85%;
            font-size: 17px;
        }
}

@media (max-width:877.71px) {
    .sectionFive .item-sectionFive {
        height: 24.625rem;
    }

        .sectionFive .item-sectionFive .box {
            padding: 8px;
        }

        .sectionFive .item-sectionFive .divStyle h3 {
            width: 85%;
            font-size: 15px;
        }
}

@media (max-width:614.4px) {
    .sectionFive {
        padding-top: 2rem;
    }

        .sectionFive .fx-sectionFive {
            flex-direction: column;
        }

        .sectionFive .item-sectionFive,
        .sectionFive .item-sectionFive.active {
            flex: 1 1 calc(100% - 0px) !important;
            max-width: calc(100% - 0px) !important;
            width: 100%;
        }

            .sectionFive .item-sectionFive .divStyle {
                height: 108.33px;
                width: 100%;
                background-position: center;
            }

            .sectionFive .item-sectionFive .divTwo-sectionFive {
                width: 0px;
                height: 0px;
                padding: 0;
                margin-bottom: 0;
            }

            .sectionFive .item-sectionFive.active .divTwo-sectionFive {
                width: 100%;
                height: 70vh;
                padding: 0px;
            }

            .sectionFive .item-sectionFive .divStyle h3 {
                font-size: 24px;
                width: 90%;
                text-align: end;
            }

            .sectionFive .item-sectionFive .boxs-sectionFive {
                gap: 21px;
            }

            .sectionFive .item-sectionFive .box {
                flex: 1 1 calc(100% - 14px);
                max-width: calc(100% - 0px);
                padding: 16px;
            }

            .sectionFive .item-sectionFive .divTwo-sectionFive p {
                font-size: 16px;
            }

            .sectionFive .item-sectionFive .divTwo-sectionFive .fontSize17 {
                font-size: 17px;
                margin-bottom: 21px;
            }

        .sectionFive .head-text h1 {
            color: #A90821;
            font-size: 24px;
            font-weight: 700;
            line-height: 30px;
        }

        .sectionFive .item-sectionFive .divTwo-sectionFive .divPadding {
            padding: 20px;
        }

        .sectionFive .item-sectionFive .divTwo-sectionFive .graphSectionFive {
            width: 100%;
            display: block;
        }
}

@media (max-width:512px) {
}
/* Section Six Style */
.sectionSix {
    padding-bottom: 100px;
}

    .sectionSix .headBanner {
        background: url(../images/secionSixBanner.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        padding: 100px 60px;
        margin: 100px 0 37px 0;
    }

        .sectionSix .headBanner p {
            padding: 0 5rem;
        }

    .sectionSix .fx-keyFigures {
        gap: 10px;
    }

    .sectionSix .box-keyFigures {
        background: #FFF;
        padding: 24px 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1 1 calc(16.66% - 10px);
        max-width: calc(16.66% - 10px);
        text-align: center;
        min-height: 270px;
        max-height: 100%;
    }

        .sectionSix .box-keyFigures h4 {
            margin-bottom: 8px;
        }

        .sectionSix .box-keyFigures .fxBox-keyFigures {
            gap: 6px;
        }

        .sectionSix .box-keyFigures p {
            -webkit-line-clamp: 2;
        }

@media (min-width:1706.67px) {
    .sectionSix .box-keyFigures {
        height: 300px;
    }
}

@media (min-width:1920px) {
    .sectionSix .box-keyFigures {
        height: 320px;
    }
}

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

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

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

@media (max-width:1396.36px) {
    .sectionSix .box-keyFigures {
        min-height: 250px;
    }
}

@media (max-width:1228.8px) {
    .sectionSix .box-keyFigures {
        min-height: 220px;
        padding: 16px 24px;
    }
}

@media (max-width:1024px) {
    .sectionSix .box-keyFigures {
        flex: 1 1 calc(33.3% - 10px);
        max-width: calc(33.3% - 10px);
    }

    .sectionSix .fx-keyFigures {
        width: 85%;
        margin: auto;
    }
}

@media (max-width:877.71px) {
    .sectionSix .fx-keyFigures {
        width: 95%;
        margin: auto;
    }
}

@media (max-width:768px) {
    .sectionSix .fx-keyFigures {
        width: 100%;
        margin: auto;
    }
}

@media (max-width:614.4px) {
    .sectionSix {
        padding-bottom: 16px;
    }

        .sectionSix .box-keyFigures {
            flex: 1 1 calc(50% - 10px);
            max-width: calc(50% - 10px);
        }

        .sectionSix .headBanner {
            height: 183.66px;
            margin: 86px 0 21px 0;
        }

            .sectionSix .headBanner h1, .sectionSix .headBanner p {
                display: none;
            }

        .sectionSix .box-keyFigures h1 {
            font-size: 35px;
        }

        .sectionSix .box-keyFigures .fxBox-keyFigures span {
            font-size: 25px;
        }

        .sectionSix .box-keyFigures h4 {
            font-size: 20px;
        }

    .numberLines {
        font-size: 15px;
    }

    .sectionSix .fx-keyFigures {
        align-items: normal;
    }
}

@media (max-width:512px) {
}
/* Section Seven Style */
.sectionSeven {
    padding-bottom: 91px;
    background: #fff;
}

    .sectionSeven .sectionSeven-head {
        gap: 20px;
        margin-bottom: 50px;
        margin-top: 18px;
        position: relative;
    }

    .sectionSeven .btnOutline-red {
        width: 140.34px;
    }

    .sectionSeven .bk-slider {
        position: relative;
        width: 100%;
        height: auto;
        padding: 50px 0 100px 0;
        overflow-x: hidden;
    }

    .sectionSeven .swiper {
        width: 100%;
        overflow: visible;
    }

    .sectionSeven .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px;
        transition: all 0.3s ease;
        height: 350px;
        border-radius: 10px;
        transform: scale(0.9);
        display: flex;
        justify-content: end;
        align-items: end;
        cursor: pointer;
    }

    .sectionSeven .image-container {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
        z-index: 1;
        border-radius: 10px;
    }

        .sectionSeven .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 10px;
        }

    .sectionSeven .swiper-slide:hover .image-container img {
        transform: scale(1.1);
    }

    .sectionSeven .swiper-slide .divText {
        justify-content: end;
        height: 50%;
        padding-bottom: 43px;
        background: linear-gradient(0deg, #840718 0%, rgba(0, 0, 0, 0.00) 100%);
        border-radius: 0 0 10px 10px;
        z-index: 10;
    }

    .sectionSeven .swiper-slide button {
        border-radius: 2px;
        background: #840718;
        color: #EDF2F4;
        font-size: 15.6px;
        line-height: 15.6px;
        text-transform: capitalize;
        padding: 5px 10px;
        margin-bottom: 51px;
    }

    .sectionSeven .swiper-slide button,
    .sectionSeven .swiper-slide p {
        display: none;
        transition: 0.2s;
    }

    .sectionSeven .swiper-slide p {
        width: 85%;
        margin: auto;
    }

    .sectionSeven .swiper-slide.swiper-slide-active {
        color: #fff;
        transform: scale(1.3);
        z-index: 2;
    }

        .sectionSeven .swiper-slide.swiper-slide-active button {
            animation: fadeInUp 1s !important;
            display: flex;
        }

        .sectionSeven .swiper-slide.swiper-slide-active p {
            animation: fadeInUp 1.5s;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
    /* Arrow News Style */
    .sectionSeven .arrowNewsSlider {
        border-radius: 56px;
        background: rgba(132, 7, 24, 0.45);
        width: 56px;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 10;
        transition: 0.3s;
        cursor: pointer;
    }

        .sectionSeven .arrowNewsSlider:hover img {
            transform: rotate(360deg);
            transition: 300ms;
        }

        .sectionSeven .arrowNewsSlider:hover {
            background: rgba(132, 7, 24, 0.85);
            color: rgb(255, 255, 255);
            font-size: 24px;
            font-weight: normal;
            border-style: solid;
            border-width: 0px;
            border-color: rgb(255, 255, 255);
            width: 58px;
            height: 58px;
        }

    .sectionSeven .arrowLeftSlider,
    .sectionSeven .arrowRightSlider {
        pointer-events: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .sectionSeven .arrowLeftSlider {
        right: 12%;
    }

    .sectionSeven .arrowRightSlider {
        left: 12%;
    }

@media (min-width:1706.67px) {
    .sectionSeven .swiper-slide {
        height: 410px;
    }

    .sectionSeven .arrowNewsSlider {
        width: 66px;
        height: 66px;
    }

    .sectionSeven .btnOutline-red {
        width: 160.34px;
        height: 50px;
        font-size: 16px;
    }
}

@media (min-width:1920px) {
    .sectionSeven .swiper-slide {
        height: 450px;
    }

    .sectionSeven .arrowNewsSlider {
        width: 76px;
        height: 76px;
    }

    .sectionSeven .fxArrow .arrowLeftSlider {
        right: 12%;
    }

    .sectionSeven .fxArrow .arrowRightSlider {
        left: 12%;
    }

    .sectionSeven .btnOutline-red {
        width: 170.34px;
        height: 60px;
        font-size: 19px;
    }
}

@media (min-width:2048px) {
    .sectionSeven .btnOutline-red {
        width: 190.34px;
        height: 70px;
        font-size: 21px;
    }
}

@media (max-width:1228.8px) {
    .sectionSeven .swiper-slide {
        height: 320px;
    }
}

@media (max-width:1024px) {
    .sectionSeven .swiper-slide {
        height: 290px;
    }
}

@media (max-width:877.71px) {
    .sectionSeven .swiper-slide {
        height: 270px;
    }

        .sectionSeven .swiper-slide.swiper-slide-active button {
            margin-bottom: 30px;
        }
}

@media (max-width:768px) {
    .sectionSeven .swiper-slide {
        height: 240px;
    }
}

@media (max-width:614.4px) {
    .sectionSeven {
        padding-bottom: 0px;
    }

        .sectionSeven .swiper-slide {
            height: 328px;
        }

            .sectionSeven .swiper-slide.swiper-slide-active {
                transform: scale(1);
            }

        .sectionSeven .sectionSeven-graph {
            width: 100%;
        }

        .sectionSeven .swiper-slide .divText {
            margin: 0 auto;
            width: 98%;
        }

        .sectionSeven .image-container img {
            width: 98%;
            margin: auto;
        }

        .sectionSeven .swiper-slide.swiper-slide-active p {
            font-size: 16px;
        }

        .sectionSeven .swiper-slide .divText {
            padding-bottom: 16px;
        }

        .sectionSeven .arrowNewsSlider {
            top: 44%;
        }

        .sectionSeven .fxArrow .arrowLeftSlider {
            right: 2%;
        }

        .sectionSeven .fxArrow .arrowRightSlider {
            left: 2%;
        }

        .sectionSeven .bk-slider {
            padding: 0;
        }

        .sectionSeven .sectionSeven-head {
            margin-bottom: 24px;
        }

        .sectionSeven .btnOutline-red {
            font-size: 16px;
            width: 125.25px;
        }
}
/* Section Eight Style */
.sectionEight {
    margin-top: 100px;
    background: #fff;
    padding-bottom: 64px;
}

    .sectionEight h1 {
        margin: 32px 0;
    }

    .sectionEight .swiperLogos {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
        width: 80%;
        margin: 0 auto;
        overflow: hidden;
    }

    .sectionEight .swiper-wrapper {
        align-items: center;
    }

    .sectionEight .swiperLogos .swiper-slide {
        position: relative;
    }

    .sectionEight .swiperLogos img {
        display: block;
        margin: auto;
        width: 80%;
    }

    .sectionEight .widthSwiperSlider {
        position: relative;
    }

        .sectionEight .widthSwiperSlider .arrowLogosSlider {
            position: absolute;
            cursor: pointer;
            z-index: 999;
            top: 50%;
            transform: translate(0%,-50%);
        }

            .sectionEight .widthSwiperSlider .arrowLogosSlider svg path {
                stroke: #000000;
                opacity: 0.35;
                transition: opacity 0.3s ease;
                cursor: pointer;
            }

            .sectionEight .widthSwiperSlider .arrowLogosSlider:hover svg path {
                opacity: 1;
            }

        .sectionEight .widthSwiperSlider .arrowLeftLogo svg {
            transform: rotate(180deg);
        }

        .sectionEight .widthSwiperSlider .arrowLeftLogo {
            right: 4rem;
        }

        .sectionEight .widthSwiperSlider .arrowRightLogo {
            left: 4rem;
        }

    .sectionEight .swiper-pagination-bullet-active {
        background: #000;
    }

    .sectionEight .swiper-pagination {
        padding-top: 28px;
        display: flex;
        gap: 12px;
        justify-content: center;
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translate(0%,-50%);
    }

@media (min-width:1706.67px) {
    .sectionEight .widthSwiperSlider .arrowLeftLogo {
        right: 6rem;
    }

    .sectionEight .widthSwiperSlider .arrowRightLogo {
        left: 6rem;
    }
}

@media (min-width:1920px) {
    .sectionEight .widthSwiperSlider .arrowLeftLogo {
        right: 8rem;
    }

    .sectionEight .widthSwiperSlider .arrowRightLogo {
        left: 8rem;
    }
}

@media (max-width:1024px) {
    .sectionEight .widthSwiperSlider .arrowLeftLogo {
        right: 3rem;
    }

    .sectionEight .widthSwiperSlider .arrowRightLogo {
        left: 3rem;
    }
}

@media (max-width:614.4px) {
    .sectionEight .widthSwiperSlider .arrowLeftLogo {
        right: 1rem;
    }

    .sectionEight .sectionEight-graph {
        width: 100%;
    }

    .sectionEight .widthSwiperSlider .arrowRightLogo {
        left: 1rem;
    }
}

@media (max-width:512px) {
}
/* Section Nine Style */
.sectionNine {
    padding: 0px 0 100px 0;
}

    .sectionNine .graph {
        display: block;
        margin-right: auto;
    }

    .sectionNine h1 {
        margin: 50px 0;
    }

    .sectionNine form {
        gap: 24px;
    }

    .sectionNine .w33 {
        flex: 1 1 calc(33.3% - 24px);
        max-width: calc(33.3% - 0px);
    }

    .sectionNine .w100 {
        flex: 1 1 calc(100% - 0px);
        max-width: calc(100% - 0px);
    }
    .sectionNine .w50 {
        flex: 1 1 calc(50% - 0px);
        max-width: calc(49% - 0px);
    }

    .sectionNine form .form-group .fxLabel {
        display: flex;
        gap: 8px;
        margin-bottom: 8px;
    }

    .sectionNine form .form-group input,
    .sectionNine form .form-group textarea {
        font-size: 22px;
    }

    .sectionNine form .form-group .inputStyle {
        border: 1px solid #E8D5D8;
        background: #FFF;
        width: 100%;
        padding: 11px;
    }

    .sectionNine form .form-group .boxInput {
        position: relative;
        border: 1px solid #E8D5D8;
        background: #FFF;
        width: 100%;
    }

        .sectionNine form .form-group .boxInput input {
            padding: 0 11px;
            width: 100%;
            height: 100%;
        }

        .sectionNine form .form-group .boxInput .listStyle {
            position: absolute;
            width: 100%;
            display: none;
            flex-direction: column;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        }

            .sectionNine form .form-group .boxInput .listStyle span {
                display: block;
                padding: 8px 11px;
                background: #FFF;
                white-space: nowrap;
            }

    .sectionNine form .form-group .contentMessage {
        border: 1px solid #E8D5D8;
        background: #FFF;
        width: 100%;
        height: 200px;
        padding: 11px
    }

    .sectionNine .boxInformation {
        border-radius: 4px;
        border: 1px solid #E8D5D8;
        background: #E8D5D8;
        padding: 17px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

        .sectionNine .boxInformation .fx-boxInformation {
            gap: 22px;
        }

    .sectionNine form .btnOutline-red {
        width: 122px;
        height: 58px;
        font-size: 20px;
    }

@media (min-width:1706.67px) {
    .sectionNine form .form-group input, .sectionNine form .form-group textarea {
        font-size: 25px;
    }

    .sectionNine form .btnOutline-red {
        width: 152px;
        height: 68px;
        font-size: 22px;
    }
}

@media (min-width:1920px) {
    .sectionNine form .form-group input, .sectionNine form .form-group textarea {
        font-size: 22px;
    }

    .sectionNine form .btnOutline-red {
        width: 162px;
        height: 78px;
        font-size: 25px;
    }
}

@media (max-width:614.4px) {
    .sectionNine form {
        gap: 20px;
    }

    .sectionNine .w33 {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 0px);
    }

    .sectionNine .graph {
        width: 100%;
    }

    .sectionNine form .form-group .fxLabel span {
        font-size: 16px;
    }

    .sectionNine .boxInformation .fx-boxInformation {
        flex-wrap: wrap;
        gap: 4px;
    }

    .sectionNine .boxInformation h4, .sectionNine .boxInformation p {
        font-size: 16px;
    }
}
.ddl-style {
    width: 100%;
    font-size: 22px;
    height: 100%;
    appearance: none;
    padding: 10px;
}

.sectionFour .fxTabs-S4 button {
    height: 100%;
    width: 100%;
    transition: color 0.3s;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-partTwo .sectionEight .widthSwiperSlider .arrowLeftLogo {
    right:0px;
}
.box-partTwo .sectionEight .widthSwiperSlider .arrowRightLogo {
    left:0px;
}
.box-partTwo .sectionEight .swiper-pagination {
    width: 100%;
    left: unset !important;
    right: unset !important;
}
.sectionEight2 img {
    height: 180px;
}
@media (max-width: 614.4px) {
    .sectionEight2 .sectionEight-graph {
        width: 100% !important;
    }
}