*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body {
    color: var(--text-color, #333);
    background-color: var(--background-color, #fff);
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

.header {
    width: 100vw;
    position: absolute;
    padding-top: 60px;
    top: 0;
    left: 0;
    z-index: 10;
}

.hdr-content {
    display: flex;
    padding: 15px 0;
    color: rgba(25, 62, 143, 1);
}

.logo {
    width: 100%;
    height: 100%;
}

.logo img {
    max-width: 20%;
}

.main-s1 {
    height: 100vh;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 157, 255, 0.4) 100%);
    backdrop-filter: blur(100px);
    padding: 0;
}

.bg-content {
    height: 100%;
    width: 100%;
    background-image: url("assets/images/main-s1/png-clipart-soccer-player-kicking-ball-football-player-graphy-american-football-football-players-sport-team-Photoroom.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 40%;
}

.s1-content {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.s1-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 60%;
    text-align: center;
}

.s1-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 600;
    font-size: 40px;
}

.s1-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    padding: 10px 65px;
    border: none;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    width: 50%;
}

.s1-btn:hover {
    transform: scale(1.05);
}

.selected-language {
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 22px;
}

.language-dropdown {
    display: none;
    position: absolute;
    background: white;
    padding: 5px 10px;
    list-style: none;
    margin: 0;
    border-radius: 5px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 22px;
}

.language-dropdown.active {
    display: block;
}
.arrow svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.language-dropdown.active ~ .arrow svg,
.language-selector.open .arrow svg {
    transform: rotate(180deg);
}

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

@media (max-width: 768px) {
    .main-s1 {
        height: 75vh;
    }

    .logo img {
        max-width: 40%;
    }

    .bg-content {
        position: relative;
        background: none;
    }

    .bg-content::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url("assets/images/main-s1/png-clipart-soccer-player-kicking-ball-football-player-graphy-american-football-football-players-sport-team-Photoroom.png") no-repeat, linear-gradient(0deg, rgb(255, 255, 255) 100%, rgba(171, 203, 255, 0.541) 0%);
        background-size: contain;
        background-position: center center;
        opacity: 0.4;
        z-index: 1;
    }

    .s1-content {
        height: 100vh;
        position: absolute;
        z-index: 2;
        left: 0;
    }

    .s1-text-content {
        width: 100%;
    }

    .s1-title {
        font-size: 28px;
    }
    
}

@media (max-width: 480px) {
    .s1-title {
        font-size: 22px;
    }
}

.main-s2 {
    padding: 15px 0;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0) 32%, rgba(0, 157, 255, 0.8099614845938375) 48%, rgba(0, 157, 255, 0.7679446778711485) 68%, rgba(0, 157, 255, 0) 90%);
}

.s2-content {
    display: flex;
    position: relative;
}

.s2-text-content {
    width: 60%;
}

.s2-logo {
    position: absolute;
    padding: 20px;
    top: -125px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    transform: scale(1.2);
    background: linear-gradient(0deg, rgba(0, 11, 136, 1) 0%, rgba(0, 44, 136, 1) 45%, rgba(0, 157, 255, 1) 100%);
}

.s2-title-mobile {
    display: none;
}

.s2-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s2-text {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .s2-logo {
        width: 32vw;
        height: 32vw;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .main-s2 {
        background: none;
    }

    .s2-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .s2-title-mobile {
        display: block;
    }

    .s2-logo {
        position: static;
        width: 80vw;
        height: 80vw;
    }

    .s2-title {
        display: none;
    }

    .s2-title-mobile {
        display: block;
        padding: 15px 0;
        text-align: center;
        font-size: 28px;
    }

    .s2-text {
        padding-top: 15px;
    }

    .s2-text-content {
        width: 100%;
    }
}

.main-s3 {
    padding: 0;
}

.s3-content {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-top: 15px;
}

.s3-tbl {
    margin: 10px 0;
    border: 0.2px solid #193E8F;
}

.table-row {
    display: flex;
    align-items: center;
    font-family: 'Inter';
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    color: #193E8F;
    border-bottom: 0.2px solid #193E8F;
}

.table-cell {
    border-right: 0.2px solid #193E8F;
    width: 50%;
    padding: 10px 15px;
}

.tbl-green {
    color: #00B250;
    border-right: none;
}

.s3-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 10px auto;
    padding: 8px 60px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s3-btn:hover {
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    .s3-content {
        width: 100%;
    }

    .table-row {
        font-size: 14px;
    }

    .s3-btn {
        font-size: 16px;
    }

}

@media (max-width: 480px) {
    .table-row {
        font-size: 12px;
    }
}

.s4-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
}

.s4-title-mobile {
    display: none;
}

.s4-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 80%;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
}

.s4-text {
    width: 90%;
}

.s4-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s4-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s4-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
}

.s4-text-1, .s4-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

.s4-img {
    display: flex;
    width: 40%;
    height: 100%;
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .s4-content {
        flex-direction: column;
    }

    .s4-text-content {
        justify-content: center;
        font-size: 16px;
        width: 100%;
    }

    .s4-title {
        display: none;
    }

    .s4-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s4-img {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

}

.s5-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-top: 25px;
    align-items: center;
}

.s5-title-mobile {
    display: none;
}

.s5-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 60%;
}

.s5-text {
    width: 90%;
}

.s5-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s5-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s5-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
}

.s5-text-1, .s5-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

.s5-img {
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .s5-img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .s5-content {
        flex-direction: column;
    }

    .s5-title {
        display: none;
    }

    .s5-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s5-text-content {
        font-size: 16px;
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {

}

.s6-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
}

.s6-title-mobile {
    display: none;
}

.s6-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-right: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 40%;
}

.s6-text {
    width: 90%;
}

.s6-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s6-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s6-img {
    width: 60%;
}

.s6-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
}

.s6-text-1, .s6-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .s6-content {
        flex-direction: column;
    }

    .s6-title {
        display: none;
    }

    .s6-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s6-img {
        width: 100%;
    }

    .s6-text-content {
        font-size: 16px;
        width: 100%;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .s7-img {
        width: 300px;
        height: 300px;
    }
}

.main-s7 {
    margin-top: 5%;
    padding: 15px 0;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0) 15%, rgba(0, 157, 255, 0.8099614845938375) 48%, rgba(0, 157, 255, 0.7679446778711485) 68%, rgba(0, 157, 255, 0) 90%);
}

.s7-content {
    display: flex;
    position: relative;
    align-items: center;
}

.s7-text-content {
    width: 70%;
}

.s7-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    transform: scale(1.5);
}

.s7-title-mobile {
    display: none;
}

.s7-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
}

.s7-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s7-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s7-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s7-text-2 {
    margin: 20px 0 0 0;
    margin-right: 10px;
}

@media (max-width: 1450px) {
    .s7-img {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .s7-img {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .main-s7 {
        background: none;
    }

    .s7-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .s7-title-mobile {
        display: block;
    }

    .s7-img {
        width: 100%;
    }

    .s7-title {
        display: none;
    }

    .s7-title-mobile {
        display: block;
        padding: 15px 0;
        text-align: center;
        font-size: 28px;
    }

    .s7-text {
        padding-top: 15px;
    }

    .s7-text-content {
        width: 100%;
        font-size: 16px;
    }

    .s7-button {
        display: none;
    }
}

.s7-button-content {
    display: flex;
    width: 60%;
}

.s7-text {
    width: 90%;
}

.s7-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 20px;
    color: #FFFFFF;
    margin: 10px auto;
    margin-top: 25px;
    padding: 8px 40px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s7-btn:hover {
    transform: scale(1.05);
}

.main-s8 {
    margin-top: 5%;
}

.s8-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
}

.s8-title-mobile {
    display: none;
}

.s8-img {
    transform: scale(1.3);
}

.s8-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 70%;
}

.s8-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s8-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s8-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s8-text-1, .s8-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

.s8-text {
    width: 90%;
}

.s8-button-content {
    display: flex;
}

.s8-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 10px auto;
    padding: 8px 40px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s8-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .s8-img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .s8-content {
        flex-direction: column;
    }

    .s8-text-content {
        padding: 0;
        width: 100%;
    }

    .s8-title {
        display: none;
    }


    .s8-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s8-button {
        display: none;
    }

    .s8-text-content {
        font-size: 16px;
    }

    .s8-text {
        width: 100%;
    }
}

@media (max-width: 480px) {

}

.main-s9 {
    margin-top: 5%;
}

.s9-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-top: 25px;
    align-items: center;
}

.s9-title-mobile {
    display: none;
}

.s9-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 70%;
}

.s9-text {
    width: 90%;
}

.s9-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s9-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;

    margin-top: 10px;
}

.s9-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
}

.s9-text-1, .s9-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

.s9-img {
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .s9-img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .s9-content {
        flex-direction: column;
    }

    .s9-title {
        display: none;
    }

    .s9-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s9-text-content {
        font-size: 16px;
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {

}

.main-s10 {
    margin-top: 5%;
}

.s10-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
}

.s10-title-mobile {
    display: none;
}

.s10-text {
    width: 90%;
}

.s10-img {
    transform: scale(1.1);
}

.s10-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 60%;
}

.s10-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s10-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s10-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
}

.s10-text-1, .s10-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

.s10-button-content {
    display: flex;
}

.s10-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 10px auto;
    padding: 8px 40px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s10-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .s10-img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .s10-content {
        flex-direction: column;
    }

    .s10-text-content {
        font-size: 16px;
        width: 100%;
        padding: 0;
    }

    .s10-title {
        display: none;
    }

    .s10-img {
        transform: scale(1);
    }

    .s10-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s10-button {
        display: none;
    }
}

@media (max-width: 480px) {

}

.main-s11 {
    margin-top: 8%;
    padding: 25px 0;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0) 32%, rgba(0, 157, 255, 0.8099614845938375) 48%, rgba(0, 157, 255, 0.7679446778711485) 68%, rgba(0, 157, 255, 0) 90%);
}

.s11-content {
    display: flex;
    position: relative;
}

.s11-text-content {
    width: 50%;
}

.s11-logo {
    position: absolute;
    top: -135px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.s11-title-mobile {
    display: none;
}

.s11-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s11-text {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .s11-logo {
        transform: scale(1);
    }
}

@media (max-width: 1060px) {
    .s11-logo {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .main-s11 {
        background: none;
    }

    .s11-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .s11-title-mobile {
        display: block;
    }

    .s11-logo {
        position: static;
        width: 80vw;
        height: 80vw;
    }

    .s11-title {
        display: none;
    }

    .s11-title-mobile {
        display: block;
        padding: 15px 0;
        text-align: center;
        font-size: 28px;
    }

    .s11-text {
        padding-top: 15px;
    }

    .s11-text-content {
        width: 100%;
    }
}

.main-s12 {
    margin-top: 5%;
}

.s12-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
}

.s12-title-mobile {
    display: none;
}

.s12-img {
    transform: scale(1.08);
}

.s12-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 75%;
}

.s12-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s12-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s12-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
}

.s12-text {
    margin: 20px 10px 0 0;
}

.s12-button-content {
    display: flex;
}

.s12-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 10px auto;
    padding: 8px 40px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s12-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .s12-content {
        flex-direction: column;
    }

    .s12-title {
        display: none;
    }

    .s12-img {
        transform: scale(1);
    }

    .s12-text-content {
        padding: 0;
        width: 100%;
    }



    .s12-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s12-button {
        display: none;
    }

    .s12-text-content {
        font-size: 16px;
    }
}

.main-s13 {
    margin-top: 8%;
    padding: 25px 0;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0) 32%, rgba(0, 157, 255, 0.8099614845938375) 48%, rgba(0, 157, 255, 0.7679446778711485) 68%, rgba(0, 157, 255, 0) 90%);
}

.s13-content {
    display: flex;
    position: relative;
}

.s13-text-content {
    width: 60%;
}

.s13-logo {
    position: absolute;
    top: -100px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
}

.s13-title-mobile {
    display: none;
}

.s13-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s13-text {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 90%;
}

.s13-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s13-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s13-text-1, .s13-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

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

@media (max-width: 768px) {
    .main-s13 {
        background: none;
    }

    .s13-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .s13-title-mobile {
        display: block;
    }

    .s13-logo {
        position: static;
        width: 80vw;
        height: 80vw;
    }

    .s13-title {
        display: none;
    }

    .s13-title-mobile {
        display: block;
        padding: 15px 0;
        text-align: center;
        font-size: 28px;
    }

    .s13-text {
        padding-top: 15px;
        font-size: 16px;
    }

    .s13-text-content {
        width: 100%;
    }
}

.main-s14 {
    margin-top: 5%;
}

.s14-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
}

.s14-title-mobile {
    display: none;
}

.s14-img {
    transform: scale(1.08);
}

.s14-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-right: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 70%;
}

.s14-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s14-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s14-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s14-text {
    /* margin: 20px 0; */
    margin-right: 10px;
}

.s14-button-content {
    display: flex;
}

.s14-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 10px auto;
    padding: 8px 40px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s14-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .s14-content {
        flex-direction: column;
    }

    .s14-title {
        display: none;
    }

    .s14-img {
        transform: scale(1);
    }

    .s14-text-content {
        padding: 0;
        font-size: 16px;
        width: 100%;
    }

    .s14-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s14-button {
        display: none;
    }
}

.main-s15 {
    margin-top: 8%;
}

.s15-content {
    display: flex;
    flex-direction: column;
}

.s15-img {
    display: none;
}

.s15-content-item-1 {
    display: flex;
}

.s15-right {
    width: 50%;
}

.s15-left {
    padding-top: 15%;
    width: 50%;
}

.s15-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s15-text {
    margin: 10px 0;
    margin-right: 10px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .s15-left {
        display: none;
    }

    .s15-right {
        width: 100%;
    }

    .s15-img {
        display: block;
    }

    .s15-title {
        font-size: 28px;
    }

    .s15-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

}

.main-s16 {
    margin-top: 5%;
}

.s16-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
}

.s16-title-mobile {
    display: none;
}

.s16-img {
    transform: scale(1.3);
}

.s16-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-right: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 70%;
}

.s16-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s16-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s16-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
}

.s16-text-1, .s8-text-2 {
    margin: 20px 0;
    margin-right: 10px;
}

.s16-text {
    width: 90%;
}

.s16-button-content {
    display: flex;
}

.s16-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 10px auto;
    padding: 8px 40px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s16-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .s16-img {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .s16-img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .s16-content {
        flex-direction: column;
    }

    .s16-title {
        display: none;
    }

    .s16-img {
        transform: scale(1);
    }

    .s16-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s16-button {
        display: none;
    }

    .s16-text-content {
        font-size: 16px;
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {

}

.main-s17 {
    margin-top: 5%;
}

.s17-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-top: 25px;
    align-items: center;
}

.s17-title-mobile {
    display: none;
}

.s17-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 50%;
}

.s17-text-content a {
    text-decoration: underline solid;
}

.s17-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s17-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s17-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s17-img {
    transform: scale(1.25);
}

.s17-text-1, .s17-text-2 {
    margin: 10px 0;
    margin-right: 10px;
}

@media (max-width: 1340px) {
    .s17-img {
        transform: scale(1.05);
    }
}

@media (max-width: 1200px) {
    .s17-img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .s17-content {
        flex-direction: column;
    }

    .s17-title {
        display: none;
    }

    .s17-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s17-text-content {
        width: 100%;
        font-size: 16px;
        padding: 0;
    }
}

@media (max-width: 480px) {

}

.s18-content {
    display: flex;
    padding-top: 25px;
    align-items: center;
    position: relative;
}

.s18-title-mobile {
    display: none;
}

.s18-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 70%;
}

.s18-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s18-text {
    width: 90%;
}

.s18-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s18-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 10px;
}

.s18-text-1, .s18-text-2 {
    margin: 10px 0;
    margin-right: 10px;
}

.s18-img {
    /* position: relative;
    right: -35px;
    transform: scale(1.3); */
}

@media (max-width: 1400px) {
    .s18-img {
        position: static;
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .s18-img {
        position: static;
    }
}

@media (max-width: 768px) {
    .s18-content {
        flex-direction: column;
    }

    .s18-title {
        display: none;
    }

    .s18-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s18-text-content {
        font-size: 16px;
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {

}

.main-s19 {
    margin-top: 5%;
}

.s19-content {
    display: flex;
    flex-direction: row-reverse;
    padding-top: 25px;
    align-items: center;
}

.s19-title-mobile {
    display: none;
}

.s19-img {
    transform: scale(1.2);
}

.s19-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 25px;
    color: #193E8F;
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    width: 70%;
}

.s19-text-li {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.s19-ul {
    width: 10px;
    height: 10px;
    background-color: #00B250;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 10px;
}

.s19-title {
    color: #193E8F;
    font-family: "Inter";
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.s19-text {
    margin: 0 0 20px 0;
    margin-right: 10px;
}

.s19-text-2 {
    margin-top: 20px;
}

.s19-button-content {
    display: flex;
}

.s19-btn {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 10px auto;
    padding: 8px 40px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 178, 80, 0.8) 0%, rgba(0, 255, 115, 1) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.s19-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .s19-content {
        flex-direction: column;
    }

    .s19-title {
        display: none;
    }

    .s19-img {
        transform: scale(1);
    }

    .s19-text-content {
        padding: 0;
        width: 100%;
        font-size: 16px;
    }

    .s19-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .s19-button {
        display: none;
    }
}

.faq-container {
    width: 100%;
}

.s20-content {
    display: flex;
    padding: 5% 0;
    background-image: url("images/main-s8/flag-item.png");
    background-repeat: no-repeat;
    background-position: -5% 55%;
    background-size: 35%;
}

.faq-title {
    font-family: 'Inter';
    font-size: 40px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #193E8F;
    width: 100%;
    padding: 5px 0;
    text-align: center;
}

.faq-item {
    border-radius: 5px;
    margin-bottom: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(0, 15, 177, 1) 0%, rgba(0, 157, 255, 1) 100%);
}

.faq-question {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 2%;
    align-items: center;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 149, 255, 1);
}

.faq-question p {
    font-family: 'Inter';
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 500;
}

.faq-answer {
    display: none;
    padding: 15px 10px;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
}

.faq-question svg {
    color: #FFFFFF;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {

    .main-s20 {
        background: none;
    }

    .faq-container {
        width: 100%;
    }

    .faq-title {
        font-size: 32px;
        text-align: center;
        margin: 10px 0;
        background-image: url("images/main-s8/bg-mobile.png");
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .faq-question p {
        font-size: 16px;

    }

    .faq-answer {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 22px;
    }

    .faq-question p {
        font-size: 14px;

    }

    .faq-answer {
        font-size: 12px;
    }
}

.footer {
    width: 100%;
    border-top: 2px solid #193E8F;
}

.ftr-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.coryright {
    font-family: 'Inter';
    font-weight: 200;
    color: #193E8F;
    font-size: 20px;
}

.age-limit {
    font-family: 'Inter';
    font-weight: 200;
    color: #193E8F;
    font-size: 48px;
}

@media (max-width: 768px) {
    .ftr-content  {
        flex-direction: column;
    }
}

.front-page-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.front-page-buttons input {
    display: block;
    font-family: "Inter";
    font-weight: 900;
    font-size: 20px;
    color: rgba(0, 178, 80, 0.8);
    padding: 10px 65px;
    border: 2px solid rgba(0, 178, 80, 0.8);
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    width: 50%;
}

.front-page-buttons input:hover {
    transform: scale(1.05);
}

.front-page-buttons input:focus {
    outline: none;
    border-color: rgba(0, 178, 80, 1);
    box-shadow: 0 0 5px rgba(0, 178, 80, 0.6);
}

@media (max-width: 768px) {
    .front-page-buttons {
        flex-wrap: wrap;
    }

    .front-page-buttons input {
        width: 90%;
    }

    .s1-btn {
        width: 90%;
    }
}

.non-arabic-l {
    width: 55%;
}

.ru-title-1 {
    line-height: 1.05;
}

.s15-other-lang {
    gap: 10px;
}

.s17-other-lang {
    transform: scale(1);
}

.s7-other-lang {
    width: 60%;
}

.s7-other {
    transform: scale(1);
}

.other-lang-s13 {
    top: -35px;
}

.en-s15 {
    display: none;
}

.arabic-s15 {
    display: none;
}