/* Сброс стандартных стилей браузера */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Основные стили для страницы */
a {
    text-decoration: none;
    letter-spacing: 1px;
}

p {
    letter-spacing: 1px;
}

img {
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
}


/* Стили контента */

.header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1E3A5F;
    z-index: 1000;
}

.header.scrolled {
    box-shadow: 0px 4px 10px rgba(95, 95, 95, 0.4);
}

.navigate {
    width: 100%;

    padding: 0.5% 0;
}

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

.contry-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.contry-icon a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.contry-icon a:hover {
    transform: scale(1.1);
}

.contry-icon img {
    width: 100%;
}


.navigation ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.navigation a {
    color: #FFFFFF;
    text-decoration: underline solid;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 27px;
    transition: transform 0.3s ease-out;
}

.navigation li {
    transition: transform 0.3s ease-in-out;
}


.navigation li:hover {
    transform: scale(1.1);
}

/* Бургер-кнопка */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1100;
}

.burger-menu .bar {
    width: 30px;
    height: 4px;
    background-color: #FFFFFF;
    margin: 2px 0;
    transition: 0.4s;
}

/* Анимация бургера */
.burger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Скрытие навигации на мобильных */
@media (max-width: 768px) {
    .header {
        height: 60px;
    }

    .burger-menu {
        display: flex;
    }

    .navigation {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: #1E3A5F;
        padding: 0 20px;
        padding-bottom: 20px;
        text-align: center;
        z-index: 1000;
    }

    .navigation.active {
        display: flex;
    }

    .navigation ul {
        flex-direction: column;
        text-align: left;
        gap: 15px;
        padding-top: 10px;
    }

    .navigation a {
        font-size: 14px;
    }

    .contry-icon {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }

    .contry-icon a {
        justify-content: center;
    }

    .contry-icon img {
        width: 65%;
    }

    .navigation li:hover {
        transform: translateX(10px);
        text-align: center;
        color: #14A0FF;
    }
}


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


.main {
    padding-top: 4%;
}

.main-s1 {
    padding: 5% 0 5% 0;
    text-align: center;
    color: #1E3A5F;
    background-image: url(../images/s1/stadium-background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.s1-first-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 50%;
    height: auto;
    margin: 25px 0;
}


.mobile-app-btn {
    display: flex;
    flex-direction: row-reverse;
    padding: 10px 0;
    gap: 25px;
    margin: 25px 0;
}

.mobile-app-btn a {
    text-align: left;
    color: #FFFFFF;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 25px;
    line-height: 30px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 263px;
    padding: 15px;
    height: auto;
    border-radius: 18px;
    transition: transform 0.2s ease-in-out;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 1%, rgba(102, 102, 102, 1) 100%);
}

.mobile-app-btn a:hover {
    transform: scale(1.1);
}

.mobile-app-btn img {
    width: 55px;
    height: 55px;
}

/* .s1-btn-text {
    margin-left: 10px;
} */

.s1-second-content {
    padding: 2% 0 5% 0;
}

.s1-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 48px;
}

.s1-title span {
    color: #14A0FF;
}

.s1-text {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 27px;
}

@media (max-width: 768px) {
    .main {
        padding-top: 15%;
    }

    .mobile-app-btn {
        flex-direction: column-reverse;
    }

    .logo {
        width: 80%;
    }

    .mobile-app-btn img {
        width: 45px;
        height: 45px;
    }

    .mobile-app-btn a {
        font-size: 20px;
        padding: 10px;
        padding-left: 45px;
    }

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

    .s1-text {
        font-size: 20px;
    }

    .s1-btn-text {
        margin-left: 5px;
    }
}

@media (max-width: 480px) {
    .mobile-app-btn a {
        font-size: 14px;
    }

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

    .s1-text {
        font-size: 14px;
    }
}

.main-s2 {
    padding: 0;
    margin: 0;
}

.categories {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.category {
    text-align: center;
    width: 30%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.item {
    text-align: center;
    padding: 20px;
    /* border: #5DDAA7 4px; */
    border: 4px solid #5DDAA7;
    width: 100%;
    box-shadow: 0px 4px 5px #6bfac094;
    margin: 4px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    transition: transform 0.2s ease-in-out;
}

.bonus-text {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.6;
    text-transform: uppercase;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #AE8625, #F7EF8A, #D3AC47, #EDC967);
    padding: 10px 30px;
    border-radius: 10px;
    display: inline-block;
    font-family: 'Montserrat';
    z-index: 2;
    position: relative;
}

.bonus-text::after {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(102, 102, 102, 0.5) 65%);
}


.item-2 p {
    margin-bottom: auto;
}

.item:hover {
    transform: scale(1.05);
}

.item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
    border-radius: 10px;
    transition: background 0.2s ease-in-out;
    z-index: 1;
}

.item:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.item-1 {
    background-image: url(../images/s2/1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.item-2 {
    background-image: url(../images/s2/2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.item-3 {
    background-image: url(../images/s2/3.png);
    background-size: cover;
    /* background-position: bottom; */
    background-repeat: no-repeat;
}

.item div {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 32px;
    z-index: 2;
    border: #0073C1 1px;
    text-shadow: 1px 1px 2px #0073C1, 0 0 5em #0073C1, 0 0 0.2em #0073C1;
}

.item p {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    z-index: 2;
    border: #0073C1 1px;
    text-shadow: 1px 1px 2px #0073C1, 0 0 5em #0073C1, 0 0 0.2em #0073C1;
}

.s2-button {
    position: relative;
    margin-top: 25px;
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat';
    background: linear-gradient(180deg, #32CD32, #00FF7F, #32CD32);
    background-size: 200% 200%;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.s2-button:hover {
    transform: scale(1.05);
}

.s2-button::before {
    content: "";
    position: absolute;
    height: 120px;
    width: 50px;
    background: rgba(255, 255, 255, 1);
    left: -100%;
    top: -20px;
    transform: rotate(37deg);
    transition: all .3s;
    opacity: 0.3;
    filter: blur(15px);
    animation: shineAnimation 2s infinite linear;
}

/* Бесконечное движение блеска */
@keyframes shineAnimation {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .categories {
        flex-direction: column-reverse;
        align-items: center;
    }

    .category {
        margin-top: 15px;
        width: 100%;
    }

    .bonus-text {
        font-size: 45px;
    }

    .item h3 {
        font-size: 34px;
    }

    .item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .item h3 {
        font-size: 20px;
    }

    .item p {
        font-size: 14px;
    }

    .category {
        width: 100%;
        height: 60vh;
    }
}


.main-s3 {
    background-color: rgba(30, 58, 95, 1);
    color: rgba(255, 255, 255, 1);
    background-image: url(../images/s3/background.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 3% 0;
    margin: 0;
}

.s3-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 45px;
    line-height: 1.6;
    margin: 25px 0;
    text-align: center;
}

.s3-text {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    margin: 25px 0;
    text-align: center;
}

.text-blue {
    color: rgba(20, 160, 255, 1);
}

.s3-text-li {
    display: flex;
    flex-direction: row-reverse;
    gap: 2%;
}

.s3-text-li-item,
.s3-text-li-item-num {

    border-radius: 24px;
    margin: 15px 0;
    border: 2px dashed rgba(20, 160, 255, 1);
    position: relative;

}

.s3-text-li-item {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
    margin: 25px 0;
    padding: 15px;
    padding-right: 50px;
    width: 100%;
}

.s3-text-li-item-num {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 45px;
    line-height: 1.1;
    margin: 25px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
}

.s3-btn-content {
    width: 50%;
    margin: 25px auto;
}

.s3-btn-title {
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 45px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.copy-box {
    background-color: white;
    color: rgba(30, 58, 95, 1);
    font-family: 'Montserrat';
    font-size: 58px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 13px;
    border: 3px dashed #4A90E2;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: 0.2s;
    width: 50%;
    margin: 0 auto;
}

.copy-box:hover {
    background-color: #f8f8f8;
}

.tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #4A90E2;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
}

.s3-btn {
    margin: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: row-reverse;
}

.s3-btn a {
    width: 50%;
    position: relative;
    margin-top: 25px;
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat';

    background-size: 200% 200%;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

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

.s3-button-grean {
    background: linear-gradient(180deg, #32CD32, #00FF7F, #32CD32);
}

.s3-button-blue {
    background: linear-gradient(180deg, #60BFFF, #1c8eda, #0494F6);
}

.s3-btn a::before {
    content: "";
    position: absolute;
    height: 120px;
    width: 50px;
    background: rgba(255, 255, 255, 1);
    left: -100%;
    top: -20px;
    transform: rotate(37deg);
    transition: all .3s;
    opacity: 0.3;
    filter: blur(15px);
    animation: shineAnimation 2s infinite linear;
}

/* Бесконечное движение блеска */
@keyframes shineAnimation {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .s3-title {
        font-size: 25px;
    }

    .s3-text {
        font-size: 17px;
    }

    .s3-text-li-item {
        font-size: 13px;
        padding-right: 15px;
    }

    .s3-text-li-item-num {
        font-size: 20px;
    }

    .s3-btn-content {
        width: 100%;
    }

    .s3-btn-title {
        font-size: 25px;
    }

    .copy-box {
        font-size: 37px;
        width: 80%;
    }

    .s3-btn {
        margin: 20px 0;
    }

    .s3-btn a {
        padding: 15px;
    }
}

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

    .s3-text {
        font-size: 14px;
    }

    .s3-text-li-item {
        font-size: 13px;
        padding-right: 15px;
    }

    .s3-text-li-item-num {
        font-size: 18px;
    }

    .s3-btn-title {
        font-size: 24px;
    }

    .copy-box {
        font-size: 32px;
    }

    .s3-btn {
        margin: 20px 0;
    }
}

.main-s4 {
    background-image: url(../images/s4/bg.png);
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-size: cover;
}

.s4-content {
    width: 100%;
    height: auto;
    padding: 5% 0;
}

.s4-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 40px;
    margin: 20px 0;
    color: #1E3A5F;
    text-align: center;
}


.s4-text {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 30px;
    margin: 10px 0;
    color: #1E3A5F;
    text-align: center;
}

.s4-advance-block {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.s4-item {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 35vh;
    width: 30%;
    padding: 15px;
    height: auto;
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.s4-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 63, 112, 0.8), rgba(27, 63, 112, 0)),
        linear-gradient(to bottom, rgba(27, 63, 112, 0), rgba(27, 63, 112, 0.5));
    border-radius: 10px;
    transition: background 0.8s ease-in-out;
    z-index: 1;
}

.s4-item:hover {
    transform: scale(1.05);
}

.s4-item:hover::before {
    background: linear-gradient(to bottom, rgba(27, 63, 112, 0.5), rgba(27, 63, 112, 0)), linear-gradient(to bottom, rgba(27, 63, 112, 0), rgba(27, 63, 112, 0.5));
}

.s4-item-1 {
    background-image: url(../images/s4/1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.s4-item-2 {
    background-image: url(../images/s4/2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.s4-item-3 {
    background-image: url(../images/s4/3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.s4-item-4 {
    background-image: url(../images/s4/4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.s4-item-5 {
    background-image: url(../images/s4/5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.s4-item-6 {
    background-image: url(../images/s4/6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.blue-ligth-text {
    font-family: 'Montserrat';
    font-size: 25px;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 2;
    border: #0073C1 1px;
    text-shadow: -1px 3px 2px #0073C1, 0 0 1em #000000, 0 0 0.2em #0073C1;
}

.s4-bottom-text {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 2;
}

@media (max-width: 768px) {
    .s4-title {
        font-size: 25px;
    }

    .s4-text {
        font-size: 20px;
    }

    .s4-item {
        width: 45%;
        gap: 25vh;
    }


    .s4-bottom-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .s4-item {
        width: 100%;
    }
}

.main-s5 {
    width: 100%;
    background-color: #FFFFFF;
    padding: 25px 0;
}

.s5-content {
    width: 100%;
    background-color: rgba(30, 58, 95, 1);
    border-radius: 52px;
    padding: 5% 0;
    display: flex;
    gap: 3%;
    justify-content: center;
    flex-direction: row-reverse;
}



.s5-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    gap: 50px
}

.s5-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 50%;
}

.s5-left img {
    width: 100%;
}

.s5-btn {
    width: 50%;
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat';
    background-size: 200% 200%;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    background: linear-gradient(180deg, #32CD32, #00FF7F, #32CD32);
}

.s5-btn::before {
    content: "";
    position: absolute;
    height: 120px;
    width: 50px;
    background: rgba(255, 255, 255, 1);
    left: -100%;
    top: -20px;
    transform: rotate(37deg);
    transition: all .3s;
    opacity: 0.3;
    filter: blur(15px);
    animation: shineAnimation 2s infinite linear;
}

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

.s5-title {
    color: #FFFFFF;
    font-family: 'Montserrat';
    font-size: 40px;
    font-weight: 600;
    line-height: 1.6;
}

.s5-text-item {
    color: #FFFFFF;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    border-bottom: rgba(20, 160, 255, 0.5) 1px solid;
}


@media (max-width: 768px) {
    .s5-content {
        flex-direction: column-reverse;
        padding: 5%;
        border-radius: 30px;
    }

    .s5-left,
    .s5-right {
        width: 100%;
    }

    .s5-left {
        margin-top: 20px;
    }

    .s5-title {
        font-size: 24px;
    }

    .s5-text-item {
        font-size: 14px;
    }

    .s5-btn {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    .s5-content {
        border-radius: 20px;
    }

    .s5-title {
        font-size: 15px;
    }

    .s5-text-item {
        font-size: 10px;
    }

    .s5-btn {
        text-align: center;
    }
}

.main-s6,
.main-s7,
.main-s8,
.main-s9,
.main-s10,
.main-s11,
.main-s12,
.main-s13,
.main-s14,
.main-s15 {
    padding-bottom: 25px;
    background-color: #FFFFFF;
}


.faq-container {
    max-width: 100%;
    margin: auto;
    background: #fff;
    padding: 2%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-title {
    font-family: 'Montserrat';
    font-size: 40px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1E3A5F;
    width: 100%;
}

.faq-item {
    border-radius: 5px;
    margin-bottom: 10px;
}

.faq-question {
    padding: 15px 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 2%;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid #75C7FF;
}

.faq-question p {
    font-family: 'Montserrat';
    font-size: 40px;
    color: #1E3A5F;
    font-weight: 500;
}

.faq-answer {
    display: none;
    padding: 15px 0;
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 300;
    background-color: #ffffff;
    color: #3586bc;
}

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

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

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

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

    .faq-question {
        border-bottom: 1px solid #75C7FF;
    }

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

    }

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

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

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

    }

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

.footer {
    width: 100%;
    padding: 2%;
    background-color: #1B375C;
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.footer-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-left-content p {
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: 700;
}

.footer-right-content img {
    width: 100%;
}

.footer-left-content img {
    width: 33px;
    height: 33px;
}

@media (max-width: 768px) {
    .footer-left-content p {
        font-size: 14px;
        text-align: left;
    }

    .footer-right-content img {
        width: 80%;
    }

    .footer-left-content img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .footer-left-content p {
        font-size: 8px;
    }

    .footer-right-content img {
        width: 60%;
    }

    .footer-left-content img {
        width: 12px;
        height: 12px;
    }
}

.error {
    width: 100%;
    display: flex;
    justify-content: center;
    transition: background-color 0.5ms ease-in;
    backdrop-filter: blur(25px);
}


.content-error {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    max-width: 1200px;
    height: 80vh;
    transition: background-color 0.5ms ease-in;
}

.left-error-section {
    background-image: url(../images/404/Glass_Prism0002.png);
    background-size: 110%;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 70%;
    transition: background-color;
}

.left-error-section img {
    width: 90%;
    height: auto;
    filter: drop-shadow(-9px 10px 10px rgba(0, 0, 0, 0.8));
}

.right-error-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.right-error-section h1 {
    font-family: 'Montserrat';
    font-size: 48px;
    text-align: center;
    font-weight: 900;
    padding-bottom: 5%;
    color: #1E3A5F;
}

.error-text-1 {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    padding-top: 5px;
    color: #1E3A5F;
}

.error-text-2 {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    padding-top: 5px;
    color: #1E3A5F;
}

.right-error-section a {
    padding-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
    color: #5CC7FF;
    text-decoration: underline;
}

.footer-error {
    margin-top: 0;
}

@media (max-width: 1200px) {
    .content-error {
        padding: 0 5%;
    }

    .left-error-section {
        background-size: 90%;
        width: 50%;
    }

    .left-error-section img {
        width: 80%;
    }

    .right-error-section h1 {
        font-size: 42px;
    }

    .error-text-1 {
        font-size: 25px;
    }

    .error-text-2 {
        font-size: 25px;
    }

    .right-error-section a {
        font-size: 25px;
    }
}

@media (max-width: 768px) {

    .right-error-section {
        padding-bottom: 5%;
        width: 100%;
    }

    .content-error {
        flex-direction: column;
        height: auto;
        justify-content: space-evenly;
        align-items: center;
    }

    .left-error-section {
        width: 80%;
        background-size: 100%;
    }

    .left-error-section img {
        width: 100%;
    }

    .right-error-section h1 {
        font-size: 36px;
    }

    .error-text-1 {
        font-size: 14px;
    }

    .error-text-2 {
        font-size: 14px;
    }

    .right-error-section a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .error {
        height: 80vh;
    }

    .left-error-section {
        padding: 5%;
    }

    .right-error-section h1 {
        font-size: 30px;
    }

    .error-text-1 {
        font-size: 14px;
    }

    .error-text-2 {
        font-size: 14px;
    }

    .right-error-section a {
        font-size: 14px;
    }
}


/*Morocco*/

.main-morocco-s1 {
    padding: 5% 5% 5% 5%;
    text-align: center;
    color: #1E3A5F;
    background-image: url(../images/Morocco/main-flag/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.main-morocco-s2 {
    background: url(../images/Morocco/main-s1/bg.png);
    padding-bottom: 20px;
}

.s2-bonus-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
}

.bonus-text-content {
    color: #1E3A5F;
    width: 60%;
}

.bonus-left-img {
    width: 40%;
}

.bonus-s2-text {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 27px;
}

.bonus-s2-text li {
    word-break: break-word;
}

.bonus-s2-text {
    padding-right: 1.5rem;
    /* или 0, если не нужен отступ */
    overflow-wrap: break-word;
    word-break: break-word;
}

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

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

    .bonus-left-img,
    .bonus-text-content {
        width: 100%;
    }

    .bonus-left-img {
        display: flex;
        justify-content: center;
    }

    .bonus-s2-text {

        font-size: 20px;
    }

    .s3-btn-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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


.sub-title {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    text-align: right;
    padding-top: 20px;
}

@media (max-width: 768px) {

    .sub-title {
        font-size: 22px;
    }
}

.main-morocco-4 {
    padding: 40px 0;
    background-image: url(../images/Morocco/main-s4/back.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.download__content_android {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.download__media,
.download__content {
    width: 50%;
}

.notes {
    padding-bottom: 40px;
}

.download__step_bg {
    padding-right: 1.5rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

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

    .download__platform-ios {
        flex-direction: column;
    }

    .download__media,
    .download__content {
        width: 100%;
    }
}

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

.main-morocco-5 {
    padding: 40px 0;
    background-image: url(../images/Morocco/main-s5/back.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.morocco-5 {
    padding: 20px 0;
}

.main-morocco-6 {
    background-color: rgba(30, 58, 95, 1);
    color: rgba(255, 255, 255, 1);
    padding: 3% 0;
    margin: 0;
}

.morocco-6-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 45px;
    line-height: 1.6;
    margin: 25px 0;
}

.download__content_s6 {
    width: 60%;
}

.download__media_s6 {
    width: 40;
}

.morocco-s6-btn {
    margin: 0 auto;
    width: 240px;
}

.download__btn {
    display: flex;

}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .download__media_s6, .download__content_s6 {
        width: 100%;
    }

    .download__media_s6 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.main-egypt-s1 {
    padding: 5% 5% 5% 5%;
    text-align: center;
    color: #1E3A5F;
    background-image: url(../images/egypt/main-s1/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.s3-text-container-egypt {
    text-align: right;

    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    margin: 25px 0;
}

.s3-text-container-egypt ol {
    padding-right: 15px;
}

.egypt-text-bg {
    background-image: url(../images/Morocco/main-s4/back.png), url(../images/egypt/main-s1/bg2.png);
    background-position: top, bottom;
}