:root {
    --blue-color: #333E89;
    --green-color: #00CD7D;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/PeydaWeb-Thin.woff2") format(woff2);
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/peydaWeb-extralight.woff2") format(woff2);
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/peydaWeb-light.woff2") format(woff2);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/PeydaWeb-Regular.woff2") format(woff2);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/PeydaWeb-Medium.woff2") format(woff2);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/PeydaWeb-SemiBold.woff2") format(woff2);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/PeydaWeb-Bold.woff2") format(woff2);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/PeydaWeb-ExtraBold.woff2") format(woff2);
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "peyda";
    src: url("../assets/fonts/peyda/PeydaWeb-Black.woff2") format(woff2);
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    padding: 0;
    margin: 0;
    direction: rtl;
    font-family: peyda, serif;
}

.page1 {
    scroll-snap-align: start;
    background: var(--blue-color);
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    .top-right-shape {
        width: 23%;
        position: absolute;
        top: 0;
        right: 4%;
    }

    .left-shape {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0%, -50%);
        width: 13%;
    }

    .bottom-shape {
        width: 15%;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .title-part {
        position: absolute;
        width: max-content;
        right: 50%;
        top: 50%;
        transform: translate(50%, 50%);

        .content {
            font-family: peyda, serif;
            color: white;
            font-weight: 900;
            font-size: 2rem;
            position: relative;
            @media (max-width: 1024px) {
                font-size: 1.5rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
        }

        .arrows {
            width: 35%;
            position: absolute;
            right: -17%;
            transform: translate(50%, 50%);
            bottom: -92%;
        }

        .comma {
            width: 13%;
            position: absolute;
            left: -2%;
            top: -60%;
            transform: translate(-50%, -50%);
        }
    }
}

.page2 {
    scroll-snap-align: start;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 768px) {
        display:block;
    }
    .mobile-title
    {
        display: none;
        font-size: 1.2rem;
        color: var(--blue-color);
        font-weight: 800;
        margin-bottom: 2%;
        margin-top: 2%;
        text-align: center;
        @media (max-width: 768px) {
            display:block;
        }
    }

    .top-left {
        position: absolute;
        left: 3%;
        top: 0;
        width: 15%;
        z-index: -1;
    }

    .bottom-center {
        width: 12%;
        transform: translate(-50%, 0%);
        bottom: 0;
        position: absolute;
        left: 50%;
        z-index: -1;
    }

    .right-b {
        width: 15%;
        position: absolute;
        right: 2%;
        bottom: 0;
        z-index: -1;
    }

    .center-items {
        .right-items, .left-items {
            margin-top: 1.5%;
        }
        @media (max-width: 768px) {
            grid-gap:40px;
        }

        display: flex;
        justify-content: center;

        .circle-div {
            width: 15vw;
            aspect-ratio: 1;
            border-radius: 50%;
            background: #DADADA;
            text-align: center;
            color: var(--blue-color);
            font-weight: 900;
            font-size: 1.5rem;
            display: flex;
            justify-content: center;
            align-self: center;
            position: relative;
            padding: 10px;
            @media (max-width: 768px) {
                display: none;
            }
            @media (max-width: 1024px) {
                font-size: 1rem;
            }

            .title {
                width: 130px;
                align-self: center;
            }

            .bg-img {
                position: absolute;
                width: 120%;
                top: -15px;
                @media (max-width: 768px) {
                    display: none;
                }
            }
        }

        .info-item {
            background: var(--blue-color);
            color: white;
            padding: 10px 30px;
            border-radius: 20px;
            margin-bottom: 20px;
            text-align: center;
            width: 22vw;
            position: relative;
            box-shadow: -2px 2px 5px 1px var(--blue-color);
            @media (max-width: 768px) {
                padding: 10px ;
                width: 35vw;
            }
        }

        .right-items .info-item:after {
            content: '';
            width: 20px;
            height: 20px;
            background: var(--green-color);
            position: absolute;
            border-radius: 50%;
            left: 0;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .left-items .info-item:after {
            content: '';
            width: 20px;
            height: 20px;
            background: var(--green-color);
            position: absolute;
            border-radius: 50%;
            right: 0;
            top: 50%;
            transform: translate(50%, -50%);
        }

        .info-item.r1 {
            left: -5%;
            @media (max-width: 768px) {
                left: unset;
            }
        }

        .info-item.r2 {
            left: 4%;
            @media (max-width: 768px) {
                left: unset;
            }
        }

        .info-item.r3 {
            left: 8%;
            @media (max-width: 768px) {
                left: unset;
            }
        }

        .info-item.l1 {
            right: -6%;
            @media (max-width: 768px) {
                right: unset;
            }
        }

        .info-item.l2 {
            right: 6%;
            @media (max-width: 768px) {
                right: unset;
            }
        }

        .info-item.l3 {
            right: 9%;
            @media (max-width: 768px) {
                right: unset;
            }
        }
    }


}

.page3 {
    scroll-snap-align: start;
    width: 100%;
   min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    @media (max-width: 768px) {
        display:block;
    }

    .content {
        display: flex;
        flex-direction: column;
        gap: 3%;
        /*padding-right: 4%;*/
        flex: 1.3;

        .title {
            font-weight: 900;
            color: var(--blue-color);
            font-size: 1.8rem;
            margin-top: 10%;
            margin-bottom: 5%;
            padding-right: 5%;
        }
        .p-content
        {
            display: flex;
            grid-gap: 2%;
            padding-left: 10px;
            .arr-icon
            {
                align-self: center;
            }
            .arr-icon img
            {
                width: 40px;
                align-self: center;
            }
        }

        .content-item {
            position: relative;
            width: 100%;
            background: #EDEDED;
            margin-bottom: 20px;
            padding: 30px;
            border-radius: 10px;
            color: var(--blue-color);

        }
    }

    .pic {
        @media (max-width: 768px) {
            display:none;
        }
        flex: 1;
        height: 100%;
        min-height: 100vh;
        background-image: url("../assets/images/p58.png");
        background-size: 90%;
        background-position: right bottom;
        background-repeat: no-repeat;
        z-index: 1;
        .right-img {
            position: relative;
            z-index: 2;
            width: 100%;
        }
    }

}

.page4 {
    scroll-snap-align: start;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    @media (max-width: 768px) {
        display: flex;
        flex-direction: column-reverse;
    }

        .content {
        margin-top: 5%;
        flex: 1.2;
        display: flex;
        gap: 6%;



        .title-part
        {
            display: flex;
            grid-gap: 15px;
            @media (max-width: 768px) {
                grid-gap: 5px;
            }
        }
        .icon {
            width: 60px;
            object-fit: contain;
            @media (max-width: 768px) {
                width: 50px;
            }
        }

        .title {
            position: relative;
            color: var(--green-color);
            font-size: 2rem;
            font-weight: 900;
            @media (max-width: 1024px) {
                font-size: 1.6rem;
            }
            @media (max-width: 768px) {
                padding: 4%;
                font-size: 1.4rem;
            }

            .icon {
                position: absolute;
                top: 0;
                bottom: 0;
                height: 100%;
                right: -13%;
            }
        }

        .p1 {

            padding-right: 8%;
            color: var(--blue-color);
            font-size: 1.7rem;
            text-align: justify;
            font-weight: 500;
            margin-bottom: 4%;
            @media (max-width: 1024px) {
                font-size: 1.4rem;
            }
            @media (max-width: 768px) {
                padding: 4%;
                font-size: 1.2rem;
            }
        }

        .p2 {
            color: var(--blue-color);
            font-size: 1.7rem;
            background-color: #DADADA;
            border-radius: 20px;
            padding: 20px;
            padding-bottom: 30px;
            text-align: justify;
            font-weight: 500;
            margin-right: 8%;
            @media (max-width: 1024px) {
                font-size: 1.4rem;
            }
            @media (max-width: 768px) {
                padding: 4%;
                margin-right: 0;
                font-size: 1.2rem;
            }
        }

    }

    .pic {
        flex: .8;
        padding: 4% 0;
        @media (max-width: 768px) {
            padding: 0 10%;
        }

        .right-img {
            height: 90%;
            width: 90%;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }
    }
}

.page5 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    .top-right-shape {
        width: 25%;
        position: absolute;
        top: 0;
        right: 4%;
        @media (max-width: 768px) {
            width: 45%;
        }
    }

    .left-shape {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0%, -50%);
        width: 12%;
        @media (max-width: 768px) {
            width: 25%;
        }
    }

    .bottom-shape {
        width: 20%;
        position: absolute;
        bottom: 0;
        right: 9%;
        transform: translate(0%, 0%);
        @media (max-width: 768px) {
            width: 35%;
        }
    }

    .center-img {
        width: 40vw;
        top: 50%;
        position: absolute;
        right: 50%;
        transform: translate(50%, -50%);
    }
}

.page6 {
    scroll-snap-align: start;
    background: var(--blue-color);
    height: 100vh;
    position: relative;
    overflow: hidden;

    .top-left-shape {
        width: 22%;
        position: absolute;
        top: 0;
        left: 6%;
        @media (max-width: 768px) {
            width: 45%;
        }
    }

    .bottom-shape {
        width: 16%;
        position: absolute;
        bottom: 0;
        right: 0;
        /* transform: translate(50%, 0%); */
        /* height: 200px; */
        @media (max-width: 768px) {
            width: 25%;
        }
    }

    .title-part {
        z-index: 1;
        text-align: center;
        position: absolute;
        width: max-content;
        right: 50%;
        top: 55%;
        transform: translate(50%, -50%);
        font-family: peyda, serif;
        color: white;
        font-weight: 900;
        font-size: 3rem;
        @media (max-width: 768px) {
            font-size: 1.8rem;
        }

        .sub-title {
            font-size: 1.7rem;
            @media (max-width: 768px) {
                font-size: 1rem;
            }
        }
    }

}

.page7 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    background: url("../assets/images/Asset7.png");
    background-position: left;
    /*background-size: 100% 100%;*/
    background-size: contain;
    background-repeat: no-repeat;
    @media (max-width: 768px) {
        background: none;
    }

    .content {
        max-width: 65%;
        padding-top: 3%;
        @media (max-width: 768px) {
            max-width: 100%;
            padding: 3%;
            padding-right: 0;
        }
    }

    .title-part {
        background: #DEE9FF;
        color: var(--blue-color);
        padding: 40px;
        padding-right: 50px;
        border-radius: 30px 0 0 30px;
        font-size: 1.3rem;
        font-weight: 600;
        text-align: justify;
        @media (max-width: 1024px) {
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            font-size: 1rem;
            padding-right: 2%;
        }
    }

    .ul {
        color: var(--blue-color);
        font-size: 1.2rem;
        list-style: none;
        @media (max-width: 1024px) {
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            font-size: .9rem;
            padding-right: 2%;
        }
    }

    .ul .li {
        display: flex;
        margin-bottom: 5px;
        font-weight: 600;
        gap: 10px;

        .icon {
            width: 25px;
        }

        .des {
            align-self: center;
        }
    }

    li::marker {
        width: 100px;
    }
}

.page8 {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
    background: var(--blue-color);

    .left-img {
        position: absolute;
        left: 0;
        width: 12%;
        top: 50%;
        transform: translateY(-50%);
        @media (max-width: 768px) {
            width: 20%;
        }
    }

    .top-img {
        position: absolute;
        top: 0;
        width: 25%;
        right: 3%;
        @media (max-width: 768px) {
            width: 40%;
        }
    }

    .bot-img {
        position: absolute;
        bottom: 0;
        width: 18%;
        right: 35%;
        transform: translateX(50%);
        @media (max-width: 768px) {
            width: 35%;
        }
    }

    .title-part {
        position: absolute;
        right: 50%;
        top: 55%;
        transform: translate(50%, -50%);
        text-align: center;

        .t1 {
            color: var(--green-color);
            font-size: 3.2rem;
            font-weight: 900;
            @media (max-width: 1024px) {
                font-size: 2.2rem;
            }
            @media (max-width: 768px) {
                font-size: 1.8rem;
            }
        }

        .t2 {
            color: white;
            font-size: 2.2rem;
            @media (max-width: 1024px) {
                font-size: 1.6rem;
            }
            @media (max-width: 768px) {
                font-size: 1.2rem;
            }
        }

        .comma {
            position: absolute;
            width: 50px;
            left: -48px;
            top: -30px;
            @media (max-width: 768px) {
                width: 30px;
                left: -10px;
            }
        }
    }
}

.page9 {
    scroll-snap-align: start;

    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow-x: hidden;

    .center-items {
        width: 80%;
        margin: 0 auto;
        padding-top: 4%;
        @media (max-width: 1024px) {
            width: 80%;
        }
        @media (max-width: 768px) {
            width: 98%;
        }

        .top-content {
            background: #EDEDED;
            color: var(--blue-color);
            font-size: 1.5rem;
            font-weight: 500;
            padding: 20px 50px;
            border-radius: 30px;
            text-align: justify;
            @media (max-width: 1024px) {
                font-size: 1.2rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
        }

        .parts {
            margin-top: 4%;
            display: flex;
            width: 100%;
            margin-bottom: 2%;
        }

        .parts .part {
            flex: 1;
            position: relative;
        }

        .content-item {
            /*width: 100%;*/
            flex: 0 0 100%;
            margin-bottom: 20px;
            background: var(--blue-color);
            color: white;
            border-radius: 20px;
            padding: 20px;
            @media (max-width: 1024px) {
                font-size: 1rem;
            }
            @media (max-width: 768px) {
                font-size: .9rem;
                text-align: center;
                padding: 10px;
            }
        }

        .part.center {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .green-box {
            background: var(--green-color);
            width: 50%;
            aspect-ratio: 1;
            border-radius: 30px;
            color: white;
            text-align: center;
            font-size: 1.8rem;
            font-weight: bold;
            align-self: center;
            display: flex;
            justify-content: center;
            align-items: center;

            z-index: 1;
            @media (max-width: 1024px) {
                width: 70%;
                font-size: 1.2rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
                border-radius: 20px;
                width: 80%;

            }

        }

        .line-top {
            z-index: -1;
            position: absolute;
            height: 50%;
            top: 0;
        }

        .line-bot {
            z-index: -1;
            position: absolute;
            height: 50%;
            bottom: 0;
        }

        .part-back {
            position: absolute;
            top: 20px;
            bottom: 20px;
            height: 90%;
            right: calc(100% + 16px);
        }

        .right-b {
            position: absolute;
            top: 20px;
            bottom: 20px;
            height: 90%;
            left: calc(100% + 16px);
        }
    }
}

.page10 {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
    background: var(--blue-color);

    .bot-img {
        position: absolute;
        bottom: 0;
        width: 30%;
        left: 5%;
        @media (max-width: 768px) {
            width: 50%;
        }
    }

    .left-img {
        position: absolute;
        right: 0;
        top: 50%;
        width: 15%;
        transform: translateY(-50%);
        @media (max-width: 768px) {
            width: 25%;
        }
    }

    .content {
        position: absolute;
        right: 50%;
        top: 55%;
        transform: translate(50%, -50%);
        text-align: center;
        @media (max-width: 768px) {
          width: max-content;
        }
    }

    .t1 {
        font-weight: 900;
        color: var(--green-color);
        font-size: 2.5rem;
        @media (max-width: 768px) {
            font-size: 1.5rem;

        }
    }

    .t2 {
        font-weight: 600;
        color: white;
        font-size: 1.65rem;
        @media (max-width: 768px) {
            font-size: 1rem;

        }
    }
}

.page11 {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
    background: url("../assets/images/p6.png");
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    @media (max-width: 768px) {
        background: none;
    }

    .content {
        width: 55%;
        padding-top: 5%;
        padding-right: 3%;
        @media (max-width: 1024px) {
            width: 85%;
        }
        @media (max-width: 768px) {
            width: 95%;
        }
    }

    .green-title {
        color: var(--green-color);
        font-weight: 700;
        font-size: 1.5rem;
        padding-right: 10px;
        @media (max-width: 1024px) {
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            font-size: 1.2rem;
        }
    }

    .content-box {
        background-color: #EDEDED;
        padding: 20px;
        border-radius: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
        color: var(--blue-color);

        .ul {
            list-style: none;
            padding: 0;
        }

        .li {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .icon {
            width: 20px;
        }

        .c-item {
            align-self: center;
            font-size: 1.2rem;
            font-weight: 600;
            @media (max-width: 1024px) {
                font-size: 1.1rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
        }
    }
}

.page12 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    background: url("../assets/images/p8.png");
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    @media (max-width: 768px) {
        background: none;
    }

    .content {
        padding-top: 7%;
    }

    .top-title {
        color: var(--blue-color);
        font-size: 2rem;
        font-weight: 800;
        display: flex;
        margin-bottom: 15px;
        @media (max-width: 1024px) {
            font-size: 1.8rem;
        }
        @media (max-width: 768px) {
            font-size: 1.4rem;
        }

        .t-icon {
            width: 45px;
        }

        .t, .t-icon {
            align-self: center;
        }
    }

    .content-part {
        width: 45%;
        background-color: #EDEDED;
        border-radius: 40px 0 0 40px;
        padding: 30px;
        position: relative;
        color: var(--blue-color);
        padding-right: 40px;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 25px;
        @media (max-width: 1024px) {
            width: 65%;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            width: 75%;
            font-size: 1rem;
        }

        .blue-part {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            width: 20px;
            height: 100%;
            background-color: var(--blue-color);
        }

        .arrow-icon {
            width: 40px;
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translate(-50%, -50%);
        }
    }
}

.page13 {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
    display: flex;
    gap: 8%;

    .right-part {
        flex: 0 0 max-content;
        height: 100vh;
        @media (max-width: 1024px) {
            flex: .6;
        }
        @media (max-width: 768px) {
            display: none;
        }
    }

    .r-img {
        height: 100%;
        object-fit: contain;
        margin: 0;
        padding: 0;
        @media (max-width: 1024px) {
            height: 70%;
        }
    }

    .left-part {
        flex: 1;
        background-image: url("../assets/images/p11.png");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2%;
    }

    .title-part {
        display: flex;

        .t-img {
            width: 50px;
        }

        .title {
            color: var(--blue-color);
            font-weight: 800;
            font-size: 2rem;
            align-self: center;
            @media (max-width: 1024px) {
                font-size: 1.8rem;
            }
            @media (max-width: 768px) {
                font-size: 1.5rem;
            }
        }
    }

    .content-part {
        background: #DADADA;
        display: flex;
        height: 12%;
        width: 70%;
        margin-bottom: 20px;
        border-radius: 30px 50px 50px 30px;
        gap: 10px;
        @media (max-width: 1024px) {
            width: 80%;
        }
        @media (max-width: 768px) {
            width: 90%;
        }

        .p-1 {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            aspect-ratio: 1;
            background: var(--green-color);
            border-radius: 50%;
            color: var(--blue-color);
            font-size: 2rem;
            font-weight: 600;
            @media (max-width: 1024px) {
                font-size: 1.6rem;
            }
            @media (max-width: 768px) {
                font-size: 1.2rem;
            }

        }

        .p-1.green {
            background: var(--blue-color);
            color: var(--green-color);
        }

        .text {
            align-self: center;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--blue-color);
            @media (max-width: 1024px) {
                font-size: 1.1rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }

        }
    }
}

.page14 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;

    .p-title {
        position: relative;
        right: 50%;
        width: 20%;
        transform: translate(50%, 0);
        @media (max-width: 1024px) {
            width: 30%;
        }
        @media (max-width: 768px) {
            width: 40%;
        }

        .title {
            position: absolute;
            right: 50%;
            top: 35%;
            transform: translate(50%, -50%);
            text-align: center;
            font-weight: 800;
            color: var(--blue-color);
            font-size: 2rem;
            @media (max-width: 1024px) {
                font-size: 1.6rem;
            }
            @media (max-width: 768px) {
                font-size: 1.2rem;
            }
        }

        .icon {
            width: 9%;
            position: absolute;
            left: -20%;
            transform: translate(50%, 0);
            top: 22%;
            @media (max-width: 1024px) {
                font-size: 1.1rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
        }
    }

    .t-img {
        width: 100%;
    }

    .content {
        z-index: 1;
        width: 80%;
        margin: 0 auto;
        padding: 3px;
        display: flex;
        gap: 20px;
        @media (max-width: 768px) {
            width: 85%;
            gap: 5px;
            margin-top: 10%;
        }
        @media (max-width: 768px) {
            width: 98%;
            gap: 2px;
            margin-top: 10%;
        }


        .item {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }
        .item.center
        {
            @media (max-width: 1024px) {
                flex: .8;
            }
            @media (max-width: 768px) {
                flex: .7;
            }
        }

        .c-img {
            width: 100%;
        }

        .des {
            padding: 20px;
            background: #DADADA;
            border-radius: 20px;
            text-align: justify;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--blue-color);

            @media (max-width: 1024px) {
                font-size: 1rem;
                text-align: center;
                margin-bottom: 5px;
                padding: 10px;
            }
            @media (max-width: 768px) {
                font-size: .8rem;
                text-align: center;
                margin-bottom: 5px;
                padding: 10px;
            }
        }
    }

    .top-right {
        width: 20%;
        position: absolute;
        right: 0;
        top: 0;
        @media (max-width: 768px) {
            width: 25%;
        }
        @media (max-width: 768px) {
            width: 30%;
        }
    }

    .bottom-left {
        width: 10%;
        position: absolute;
        left: 0;
        bottom: 0;
        @media (max-width: 768px) {
            width: 20%;
            z-index: 0;
        }
        @media (max-width: 768px) {
            width: 30%;
            z-index: 0;
        }
    }

}

.page15 {
    scroll-snap-align: start;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    display: flex;
    gap: 4%;
    @media (max-width: 768px) {
        flex-direction: column;
        gap: 15px;
    }

    .part2 {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        width: 100%;
        @media (max-width: 768px) {
            margin-bottom: 10px;
        }

        .content-item {
            position: relative;
            width: 100%;
            background-color: var(--blue-color);
            color: white;
            padding: 25px;
            border-radius: 20px;
            @media (max-width: 1024px) {
                width: calc(90% - 50px);
                margin: 0 auto;
            }
            @media (max-width: 768px) {
                width: calc(80% - 50px);
                margin: 0 auto;
            }

            .icon {
                position: absolute;
                height: 50%;
                top: 50%;
                transform: translate(50%, -50%);
                right: -1%;
                @media (max-width: 1024px) {
                    height: 30%;
                }
            }
        }
    }

    .part3 {
        flex: 1.5;
        padding: 2px;
        position: relative;
        @media (max-width: 1024px) {
            flex: 1;
        }
        @media (max-width: 768px) {
            display: none;
        }
    }

    .part1 {
        flex: 0.7;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .circ-item {
        width: 70%;
        aspect-ratio: 1;
        background-color: #DEE9FF;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--blue-color);
        font-weight: 700;
        font-size: 1.3rem;
        @media (max-width: 1024px) {
            font-size: 1.1rem;
            width: 80%;
        }
        @media (max-width: 768px) {
            font-size: 1rem;
            width: 30%;
        }
    }

    .back-green {
        position: absolute;
        width: 110%;
        height: 90%;
        background-color: var(--green-color);
        left: 5%;
        z-index: -1;
        top: 50%;
        transform: translate(0, -50%);
        border-radius: 50px;
    }

    .g-back {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 90%;
        transform: translate(-50%, -50%);
    }

    .top-right-img {
        width: 20%;
        position: absolute;
        right: 0;
        top: 0;
        @media (max-width: 1024px) {

            width: 25%;
        }
        @media (max-width: 768px) {

            width: 30%;
        }
    }

    .bottom-right-img {
        width: 30%;
        position: absolute;
        right: 3%;
        bottom: 0;
        @media (max-width: 1024px) {
            width: 40%;
        }
        @media (max-width: 768px) {
            width: 50%;
        }
    }
}

.page16 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;

    .top-content {
        padding: 40px 60px 60px 60px;
        /*padding-bottom: 60px;*/
        background-color: var(--blue-color);
        color: white;
        font-size: 1.5rem;
        font-weight: 600;
        text-align: justify;
        position: relative;
        @media (max-width: 1024px) {
            padding: 20px 50px 50px 50px;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            padding: 20px 30px 30px 20px;
            font-size: 1rem;
        }

        .title {
            position: absolute;
            right: 50%;
            bottom: 0;
            transform: translate(50%, 50%);
            background-color: #DADADA;
            color: var(--blue-color);
            padding: 20px 40px;
            border-radius: 40px;
            font-weight: 800;
            @media (max-width: 1024px) {
                padding:15px 30px;
                font-size: 1.2rem;
            }
            @media (max-width: 768px) {
                padding:10px 20px;
                font-size: 1rem;
            }
        }
    }

    .c-content {
        position: relative;
        margin-top: 10%;
        @media (max-width: 1024px) {
            margin-top: 15%;
        }
        @media (max-width: 768px) {
            margin-top: 25%;
        }

        .texts {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            display: flex;
            padding: 0 4%;
            gap: 2%;
            @media (max-width: 1024px) {
                gap: 1%;
            }
            @media (max-width: 768px) {
                gap: 0;
                padding: 0 2%;
            }
        }

        .part {
            flex: 1;
            padding: 20px;
            font-weight: 600;
            text-align: center;
            align-self: center;
            color: var(--blue-color);
            font-size: 1.4rem;
            @media (max-width: 1024px) {
                font-size: .8rem;
            }
            @media (max-width: 768px) {
                font-size: .5rem;
                padding: 10px;
            }
        }

        .numbers {
            position: absolute;
            width: 82%;
            left: 50%;
            transform: translate(-50%, 0);
            top: -33%;
        }
    }
}

.page17 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    background: var(--blue-color);

    .left-img {
        position: absolute;
        left: 0;
        width: 15%;
        top: 50%;
        transform: translateY(-50%);
        @media (max-width: 1024px) {
            width: 17%;
        }
        @media (max-width: 768px) {
            width: 20%;
        }
    }

    .top-img {
        position: absolute;
        top: 0;
        width: 25%;
        right: 3%;
        @media (max-width: 1024px) {
            width: 30%;
        }
        @media (max-width: 768px) {
            width: 40%;
        }
    }

    .bot-img {
        position: absolute;
        bottom: 0;
        width: 18%;
        right: 35%;
        transform: translateX(50%);
        @media (max-width: 1024px) {
            width: 22%;
        }
        @media (max-width: 768px) {
            width: 30%;
        }
    }

    .title-part {
        position: absolute;
        right: 50%;
        top: 55%;
        transform: translate(50%, -50%);
        text-align: center;

        .t1 {
            color: var(--green-color);
            font-size: 3.2rem;
            font-weight: 900;
            @media (max-width: 1024px) {
                font-size: 2rem;
            }
            @media (max-width: 768px) {
                font-size: 1.4rem;
            }
        }

        .t2 {
            color: white;
            font-size: 2.2rem;
            @media (max-width: 1024px) {
                font-size: 1.4rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
        }

        .comma {
            position: absolute;
            width: 40px;
            left: -28px;
            top: -30px;
        }
    }
}

.page18 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    background: url("../assets/images/p23.png");
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    @media (max-width: 768px) {
        background: none;
    }

    .content {
        display: flex;
        height: 100%;
    }

    .part1 {
        flex: 1.2;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 0 6%;
        position: relative;
        min-height: 100vh;
    }

    .part2 {
        flex: 1;
        height: 100%;
        @media (max-width: 768px) {
           display: none;
        }
    }

    .top-content {
        margin: 0 auto;
        background-color: var(--blue-color);
        padding: 7% 30px;
        border-radius: 30px;
        color: white;
        font-weight: 600;
        font-size: 1.2rem;
        position: relative;
        text-align: justify;
        @media (max-width: 1024px) {
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            font-size: 1rem;
        }

        .top-img {
            position: absolute;
            width: 110px;
            top: -22px;
            right: 20px;
            @media (max-width: 768px) {
                width: 90px;
                top: -12px;
            }
            @media (max-width: 768px) {
                width: 80px;
                top: -12px;
            }
        }
    }

    .bottom-content {
        .title {
            color: var(--green-color);
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 3%;
            @media (max-width: 1024px) {
                font-size: 1.6rem;
            }
            @media (max-width: 768px) {
                font-size: 1.3rem;
            }
        }

        .item {
            background-color: #EDEDED;
            padding: 20px;
            border-radius: 20px;
            color: var(--blue-color);
            font-weight: 700;
            margin-bottom: 3%;
            position: relative;
            @media (max-width: 768px) {
                font-size: .9rem;
            }

            .arrow {
                position: absolute;
                height: 60%;
                top: 50%;
                transform: translate(50%, -50%);
                right: -10px;
                @media (max-width: 1024px) {
                    height: unset;
                    width: 45px;
                }
                @media (max-width: 768px) {
                    height: unset;
                    width: 30px;
                }
            }
        }
    }
}

.page19 {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
    background: url("../assets/images/p26.png");
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    @media (max-width: 768px) {
        background: none;
    }

    .body-div {
        display: flex;
        height: 100%;
    }

    .part1 {
        flex: 1.2;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 0 6%;
        position: relative;
    }

    .part2 {
        flex: 1;
        height: 100%;
        @media (max-width: 1024px) {
            height: 80%;
            flex: .8;
        }
        @media (max-width: 768px) {
            display: none;
        }
    }

    .body-div .title {
        color: var(--blue-color);
        font-weight: 800;
        font-size: 1.3rem;
        padding: 30px;
        background: #EDEDED;
        border-radius: 30px;
        width: 100%;
        @media (max-width: 1024px) {
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            font-size: 1rem;
        }
    }

    .title-div {
        display: flex;
        position: relative;

        .icon {
            width: 100px;
            position: relative;
            right: 3%;
            top: 0;
            bottom: 0;
            @media (max-width: 1024px) {
                width: 70px;
            }
            @media (max-width: 768px) {
                width: 70px;
            }
        }
    }

    .content {
        color: var(--blue-color);
        font-weight: 600;
        margin-top: 4%;
        padding-right: 15%;
        padding-left: 20%;
        text-align: justify;
        @media (max-width: 1024px) {
            font-size: .9rem;
        }
        @media (max-width: 768px) {
            font-size: .9rem;
        }
    }

    .right-bot-img {
        width: 17%;
        bottom: 0;
        right: 0;
        position: absolute;
        @media (max-width: 1024px) {
            width: 23%;
        }
        @media (max-width: 768px) {
            width: 30%;
        }
    }
}

.page20 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;

    .top-img {
        position: relative;
        top: 0;
        right: 0;
        width: 12%;
        @media (max-width: 768px) {
            width: 20%;
        }
    }

    .page-content {
        padding: 0 7%;
        @media (max-width: 768px) {
            padding: 0 1%;
        }

        .title {
            color: var(--blue-color);
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5%;
            @media (max-width: 768px) {
                font-size: 1.1rem;
                margin-bottom: 10%;
            }
        }

        .content-parts {
            display: flex;
            justify-content: space-between;
            gap: 3%;

            .item {
                position: relative;
                flex: 1;
                aspect-ratio: 6/5;
                background: #DEE9FF;
                border-radius: 20px;
                text-align: center;
                color: var(--blue-color);
                padding: 4%;
                @media (max-width: 768px) {
                    padding: 4% 1%;
                }

                .arrow-img {
                    position: absolute;
                    width: 18%;
                    top: 0;
                    right: 50%;
                    transform: translate(50%, -20%);
                }

                .title2 {
                    font-weight: 800;
                    font-size: 1.4rem;
                    @media (max-width: 768px) {
                        font-size: 1rem;
                    }
                }

                .content2 {
                    font-weight: 600;
                    margin-top: 8%;
                    @media (max-width: 768px) {
                        font-size: .9rem;
                    }
                }
            }

            .item.center {
                background: var(--blue-color);

                .bg-img {
                    position: absolute;
                    width: 100%;
                    left: 0;
                    right: 0;
                    top: 0;
                }
            }
        }
    }
}

.page21 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    background: var(--blue-color);

    .left-img {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        @media (max-width: 768px) {
           display: none;

        }
    }

    .top-img {
        position: absolute;
        top: 0;
        width: 12%;
        right: 0;
        @media (max-width: 768px) {
            width: 30%;
        }
    }

    .bot-img {
        position: absolute;
        bottom: 0;
        width: 35%;
        right: 0;
        @media (max-width: 768px) {
            width: 55%;
        }
        /*transform: translateX(50%);*/
    }

    .title-part {
        position: absolute;
        right: 50%;
        top: 55%;
        transform: translate(50%, -50%);
        text-align: center;
        z-index: 1;

        .t1 {
            color: var(--green-color);
            font-size: 3.2rem;
            font-weight: 900;
            @media (max-width: 1024px) {
                font-size: 2rem;
            }
            @media (max-width: 768px) {
                font-size: 1.5rem;
            }
        }

        .t2 {
            color: white;
            font-size: 2.4rem;
            @media (max-width: 1024px) {
                font-size: 1.6rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
        }

        .comma {
            position: absolute;
            width: 50px;
            left: -48px;
            top: -30px;
        }
    }
}

.page22 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    display: flex;
    gap: 5%;
    @media (max-width: 768px) {
        flex-direction: column;
    }

    .part1 {
        flex: 1;
        color: var(--blue-color);
        font-weight: 600;
        padding: 3%;
        position: relative;

        .back {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: -1;
        }

        .title {
            font-size: 2rem;
            padding-top: 5%;
            @media (max-width: 1024px) {
                font-size: 1.8rem;
            }
            @media (max-width: 768px) {
                font-size: 1.4rem;
            }
        }

        .content {
            font-size: 1.5rem;
            text-align: justify;
            padding-left: 18%;
            @media (max-width: 1024px) {
                font-size: 1.3rem;
            }
            @media (max-width: 768px) {
                font-size: 1.1rem;
            }
        }

        .s-title {
            padding: 3% 6%;
            background: var(--blue-color);
            color: white;
            font-weight: 800;
            width: max-content;
            border-radius: 20px;
            font-size: 2.3em;
            margin-top: 10%;
            @media (max-width: 1024px) {
                font-size: 2rem;
            }
            @media (max-width: 768px) {
                font-size: 1.8rem;
            }
        }

        .logo-green {
            width: 32.7%;
            margin-top: 4%;;
        }
    }

    .part2 {
        flex: 1.8;

        .top-img {
            width: 25%;
            padding-top: 8%;
            margin: 0 auto;
            display: block;
        }

        .flex-items {
            display: flex;
            justify-content: space-evenly;
            padding: 2% 5% 5% 5%;
            gap: 5%;
            @media (max-width: 1024px) {
                padding: 1%;
            }
            @media (max-width: 768px) {
                padding: 1%;
            }

            .c-part {
                flex: 1;

                .top-icon {
                    width: 30%;
                    position: relative;
                    right: 50%;
                    transform: translate(50%, 0);
                    @media (max-width: 1024px) {
                        width: 20%;
                    }
                    @media (max-width: 768px) {
                        width: 20%;
                    }
                }
            }

            .item {

                padding: 12% 5% 5% 5%;
                border-radius: 30px;
                background: var(--blue-color);
                color: white;
                position: relative;
                top: -8%;
                z-index: -1;

                .title {
                    text-align: center;
                    color: var(--green-color);
                    font-weight: 700;
                    font-size: 1.3rem;
                    @media (max-width: 1024px) {
                        font-size: 1rem;
                    }
                    @media (max-width: 768px) {
                        font-size: 1rem;
                    }
                }

                .content {
                    text-align: justify;
                    font-size: 1.3rem;
                    padding: 0 10% 10% 10%;
                        @media (max-width: 1024px) {
                            padding: 0 4% 4% 4%;
                            font-size: 1rem;
                        }
                        @media (max-width: 768px) {
                            padding: 0 4% 4% 4%;
                            font-size: .8rem;
                        }
                }
            }
        }
    }
}

.page23 {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
    background: var(--blue-color);

    .left-img {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        @media (max-width: 768px) {
            display: none;
        }
    }

    .top-img {
        position: absolute;
        top: 0;
        width: 12%;
        right: 0;
        @media (max-width: 768px) {
            width: 32%;
        }
    }

    .bot-img {
        position: absolute;
        bottom: 0;
        width: 35%;
        right: 0;
        @media (max-width: 768px) {
            width: 50%;
        }
    }

    .title-part {
        position: absolute;
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
        text-align: center;
        display: flex;

        .logo {
            width: 60%;
            margin: 0 auto;
            @media (max-width: 768px) {
                width: 100%;
            }
        }
    }
}

.page24 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;

    .left-img {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        @media (max-width: 768px) {
            display: none;
        }
    }

    .top-img {
        position: absolute;
        right: 0;
        top: 0;
        width: 10%;
        z-index: 0;
        @media (max-width: 768px) {
            width: 30%;
        }
    }

    .bot-img {
        position: absolute;
        right: 30%;
        bottom: 0;
        width: 7%;
        transform: translateX(30%);
        z-index: -1;
        @media (max-width: 768px) {
            width: 27%;
        }
    }

    .top-title {
        z-index: 1;
        font-size: 2rem;
        font-weight: 800;
        color: var(--green-color);
        text-align: center;
        padding-top: 5%;
        @media (max-width: 768px) {
            font-size: 1.2rem;
            margin-bottom: 3%;
        }
    }

    .flex-column {
        z-index: 1;
        display: flex;
        flex-direction: column;
        grid-gap: 15px;
        padding: 1% 15% 0;
        @media (max-width: 1024px) {
            padding: 1% 5% 0;
        }
        @media (max-width: 768px) {
            padding: 1% 2% 0;
        }
    }

    .flex-part {
        z-index: 1;
        display: flex;
        gap: 1%;

        .column {
            padding: 2%;
            text-align: center;
            background: #E5E3E3;
            font-weight: 700;
            border-radius: 10px;
            font-size: 1.1rem;
            color: #575756;
            vertical-align: middle;

            @media (max-width: 768px) {
                padding: 2%;
                font-size: .8rem;
            }
        }

        .f-column, .t-column {
            flex: 1;
        }

        .s-column {
            flex: 1.8;
        }
    }

    .flex-part.header .column {
        background: var(--blue-color);
        color: var(--green-color);

    }
}

.page25 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;

    .left-img {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 15%;
        z-index: -1;
        @media (max-width: 768px) {
            width: 35%;
        }
    }

    .right-img {
        position: absolute;
        right: 0;
        top: 30%;
        width: 7%;
        transform: translateY(-30%);
        @media (max-width: 768px) {
            width: 15%;
        }
    }

    .title-img {
        position: absolute;
        width: 10%;
        margin-right: 32px;
        @media (max-width: 768px) {
            width: 20%;
        }
    }

    .top-title {
        font-size: 2rem;
        font-weight: 800;
        color: var(--blue-color);
        text-align: center;
        padding-top: 5%;
        @media (max-width: 768px) {
            font-size: 1.2rem;
        }
    }

    .flex-column {
        display: flex;
        flex-direction: column;
        grid-gap: 15px;
        padding: 1% 15% 0;
        @media (max-width: 1024px) {
            padding: 1% 5% 0;
            grid-gap: 15px;
        }
        @media (max-width: 768px) {
            padding: 1% 1% 0;
            grid-gap: 15px;
        }
    }

    .flex-part {
        display: flex;
        gap: 1%;

        .column {
            z-index: 1;
            padding: 1%;
            text-align: center;
            background: #E5E3E3;
            font-weight: 700;
            border-radius: 10px;
            font-size: 1rem;
            color: #575756;
            @media (max-width: 768px) {
                font-size: .7rem;
            }
        }

        .f-column, .t-column {
            flex: 1;
        }

        .s-column {
            flex: 1.8;
        }
    }

    .flex-part.header .column {
        background: var(--blue-color);
        color: var(--green-color);

    }
}

.page26 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;

    .page {
        display: flex;
        justify-content: space-between;
        grid-gap: 3%;
        @media (max-width: 768px) {
            margin-top: 15%;
        }

    }

    .content-part {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;

        .content {
            position: relative;
            background-color: #EDEDED;
            padding: 10% 8%;
            border-radius: 100px 0 0 100px;
            text-align: justify;
            color: var(--blue-color);
            font-size: 1.2rem;
            font-weight: 600;
            @media (max-width: 1024px) {
                font-size: 1.1rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }

            .arrow-img {
                position: absolute;
                right: 6%;
                top: -15px;
                width: 100px;
                @media (max-width: 1024px) {
                    top: -7px;
                    width: 60px
                }
                @media (max-width: 768px) {
                    top: -7px;
                    width: 50px
                }
            }
        }
    }

    .img-part {
        flex: 1;
        display: flex;
        align-self: center;
        justify-content: center;
        @media (max-width: 768px) {
          display: none;
        }

        .left-img {
            width: 90%;
            object-fit: contain;
            display: block;
        }
    }
}

.page27 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    background: var(--blue-color);

    .bot-left {
        position: absolute;
        left: 20%;
        bottom: 20%;
        width: 12%;
        transform: translate(-50%, 50%);
        @media (max-width: 1024px) {
            width: 20%;
        }
        @media (max-width: 768px) {
            width: 30%;
        }
    }

    .top-img {
        position: absolute;
        top: 0;
        width: 30%;
        left: 3%;
        @media (max-width: 1024px) {
            width: 40%;
        }
        @media (max-width: 768px) {
            width: 45%;
        }
    }

    .bot-img {
        position: absolute;
        bottom: 0;
        width: 15%;
        right: 0;
        @media (max-width: 1024px) {
            width: 22%;
        }
        @media (max-width: 768px) {
            width: 30%;
        }
        /*transform: translateX(50%);*/
    }

    .title-part {
        position: absolute;
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
        text-align: center;
        display: flex;
        flex-direction: column;

        .title {
            font-size: 3rem;
            color: var(--green-color);
            font-weight: 800;
            position: relative;
            @media (max-width: 1024px) {
                font-size: 2rem;
                width: max-content;
            }
            @media (max-width: 768px) {
                font-size: 1.5rem;
                width: max-content;
            }

            .comma {
                position: absolute;
                width: 70px;
                top: 2px;
                right: -85px;
                @media (max-width: 1024px) {
                    width: 50px;
                    top: -30px;
                    right: -55px;
                }
                @media (max-width: 768px) {
                    width: 30px;
                    top: 0;
                    right: -35px;
                }
            }
        }

        .sub-title {
            font-size: 2rem;
            color: white;
            font-weight: 800;
            @media (max-width: 1024px) {
                font-size: 1.5rem;
                width: max-content;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
                width: max-content;
            }
        }
    }
}

.page28 {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    display: flex;
    .right-part
    {
        flex: 1.3;
        padding: 0 5% 0 2%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-gap: 40px;
        align-items: center;
        .blue-content
        {
            text-align: justify;
            background: var(--blue-color);
            padding: 5%;
            border-radius: 30px;
            color: white;
            font-size: 1.3rem;
            @media (max-width: 1024px) {
                font-size: 1.1rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
            .title
            {
                color: var(--green-color);
                font-size: 1.7rem;
                font-weight: 700;
                margin-bottom: 2%;
                @media (max-width: 1024px) {
                    font-size: 1.5rem;
                }
                @media (max-width: 768px) {
                    font-size: 1.3rem;
                }
            }
        }
        .white-content
        {
            position: relative;
            text-align: justify;
            padding: 5%;
            border-radius: 30px;
            color: var(--blue-color);
            font-size: 1.3rem;
            @media (max-width: 1024px) {
                font-size: 1.1rem;
            }
            @media (max-width: 768px) {
                font-size: 1rem;
            }
            .title
            {
                font-size: 1.7rem;
                font-weight: 700;
                margin-bottom: 2%;
                @media (max-width: 1024px) {
                    font-size: 1.5rem;
                }
                @media (max-width: 768px) {
                    font-size: 1.3rem;
                }
            }
            .comma
            {
                position: absolute;
                left: 5%;
                width: 80px;
                top: 0;
                @media (max-width: 768px) {
                    width: 50px;
                }
                @media (max-width: 768px) {
                    width: 40px;
                }
            }
        }
    }
    .left-part
    {
        flex: 1;
        display: flex;
        background: url("../assets/images/p50.png");
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        .part
        {
            flex: 1;
        }
        .green-part
        {
            background: var(--green-color);
            height: 100%;
            position: relative;
            z-index: -1;
        }
        @media (max-width: 768px) {
            display: none;
        }
    }
    .bottom-right-img
    {
        width: 12%;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
        @media (max-width: 1024px) {
            width: 20%;
        }
        @media (max-width: 768px) {
            width: 30%;
        }
    }
}

.m-0 {
    margin: 0 !important;
}

.d-flex
{
    display: flex;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    /* ویژگی اصلی اسکرول اسنپ */
    scroll-snap-type: y mandatory;
    /* اسکرول نرم برای تجربه بهتر (اختیاری) */
    scroll-behavior: smooth;
}
.call {
	position: absolute;
	z-index: 100000;
	bottom: 10px;
	left: 10px;
	border-radius: 50%;
	background: #47cc79;
	padding: 5px;
	width: 70px;
	height: 70px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
    box-shadow: 0 0 10px 0px black;
    padding-top: 10px;
}
.call a {
	color: #fff;
	text-decoration: none;
	word-break: break-all;
	display: inline-block;
	font-size: 18px;
}