

:root {

    --color-text-white: #ffffff;
    --color-text-darkBlue: #152572;
    --color-text-lightPurple: #B4BFF3;
    --color-background-darkBlue: #0D1953;


    --hover-color-purple: #6363F1;
    --hover-color-blue: #31CBE9;

    --color-darkBlue-light: rgba(21, 37, 114, 0.2);
    --color-text-darkBlue-light: rgba(21, 37, 114, 0.4);

    --font-1: 'Onest';

}

body {
    font-family: var(--font-1), serif !important;
}

body,html {
    overflow-x: hidden;

}

.text-h1 {
    font-family: var(--font-1), serif;
    font-weight: 600;
    font-size: 90px;
    margin-bottom: 0;
}

.text-h2 {
    font-family: var(--font-1), serif;
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 0;
}

.text-h3 {
    font-family: var(--font-1), serif;
    font-weight: 500;
    font-size: 50px;
    margin-bottom: 0;
}

.text-h4 {
    font-family: var(--font-1), serif;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 0;
}

.text-white {
    color: var(--color-text-white);
}
.text-darkBlue {
    color: var(--color-text-darkBlue);
}
.text-lightPurple {
    color: var(--color-text-lightPurple);
}

.general_layer {
    background: #F3F3F3;
    font-family: var(--font-1), serif;
}

.button-standart {
    padding: 18px 85px;

    font-family: var(--font-1), serif;
    font-weight: 500;
    font-size: 17px;

    color: var(--color-text-white);
    background: radial-gradient(38.22% 56.6% at 50.31% 100%, rgba(124, 124, 249, 0.6) 0%, rgba(124, 124, 249, 0) 100%), #2D84E3;
    background-blend-mode: screen, normal;
    box-shadow: 0px 4px 100px rgba(208, 248, 255, 0.6), inset 0px -2px 0px #2B7AD0;
    border-radius: 10px;

    transition: all 0.3s ease;
}

.hover-btn-standart:hover {
    background: var(--hover-color-purple) !important;
    color: var(--color-text-white) !important;
}
.hover-link-purple:hover {
    color: var(--hover-color-purple);
    cursor: pointer;
}
.hover-link-blue:hover {
    color: var(--hover-color-blue);
}

.register-button-dark {
    background: #162673;
    color: var(--color-text-white);
    padding: 9px 15px;
    border-radius: 8px;
    border: 0;
    font-family: var(--font-1), serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.5s ease;
}

.register-button-light {
    background: #F4F4F4;
    color: var(--color-text-darkBlue);
    padding: 9px 15px;
    border-radius: 8px;
    border: 0;
    font-family: var(--font-1), serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.5s ease;
}

.login-button:not(.btn-warning) {
    background: #2D84E3;
    color: var(--color-text-white);
    padding: 9px 15px;
    border-radius: 8px;
    border: 0;
    font-family: var(--font-1), serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.5s ease;
}

@media (max-width: 440px) {

    .register-button-dark {
        padding: 7px 12px;
        font-size: 10px;

    }

    .register-button-light {
        padding: 7px 12px;
        font-size: 10px;
    }

    .login-button {
        padding: 7px 12px !important;
        font-size: 10px !important;
    }
}
@media (max-width: 335px) {

    .register-button-dark {
        padding: 5px 10px;
        border-radius: 5px;

    }

    .register-button-light {
        padding: 5px 10px;
        border-radius: 5px;
    }

    .login-button {
        padding: 5px 10px;
        border-radius: 5px;
    }
}

.dropdown__link.show img {
    transform: rotate(180deg);
    transition: transform 0.01s ease;
}

.list-style-none {
    list-style: none;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.flex-start {
    display: flex;
    justify-content: flex-start;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alight-items-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.display-flex {
    display: flex;
}

.text-align-center {
    text-align: center;
}

.section_separator {
    margin-top: 6vh;
    margin-bottom: 6vh;
}

.p_margin_zero {
    margin: 0;
}

.landingModal__div {
    z-index: 3000;
}

.landingModal__div p, .landingModal__div span, .landingModal__div h1, .landingModal__div li, .landingModal__div div {
    color: var(--color-text-darkBlue);
}

.landingModal__div .modal-content {
    border: 0;
    border-radius: 10px;
    padding: 45px;
}



.landingModal__div .modal-header {
    position: relative;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.landingModal__div .modal-header > h1 {
    width: 90%;
}

.landingModal__close_btn{
    position: absolute;
    top: 0;
    right: 0;

    background: 0;
    border: 0;
    box-shadow: unset;

    transition: all 0.3s ease;
}
.landingModal__close_btn:hover{
    transform: scale(1.05);
}

.landingModal__div .modal-body {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
}
.landingModal__div .modal-body img {
    width: 100%;
    object-fit: cover;
    max-height: 250px;
    border-radius: 10px;
}

.landingModal__btn_wrapper {
    margin-top: 40px;
}




/*-------------Творчество говнокодеров---------------*/
.icon-rotate {
    transition: transform 0.3s ease;
}

.icon-rotate.active {
    transform: rotate(180deg);
}

.pupu10 {
    bottom: -180px;

}



.imageWrapper {
    position: relative;
    width: 100%;
    max-width: 75%;

    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.imageWrapper img {
    margin-left: 10%;
    width: 100%;
    height: auto;
}

.gigimg {
    margin: 0 !important;
}

.ga {
    width: fit-content !important;
    margin-left: 0 !important;
}

/* Стиль кнопки для больших экранов */
.paga {
    position: absolute;
    bottom: 31%;
    left: 27%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 30%;
    height: 5%;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Стиль кнопки для малых экранов */
.paga2 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 70%;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Стиль кнопки для средних экранов */
.paga3 {
    position: absolute;
    bottom: 75%;
    left: 29%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 30%;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
/* Для больших экранов */
.d-lg-flex {
    display: flex !important;
}
.d-lg-none {
    display: none !important;
}

/* Для средних экранов */
.d-md-flex {
    display: flex !important;
}
.d-md-none {
    display: none !important;
}

/* Для малых экранов */
.d-sm-flex {
    display: flex !important;
}
.d-sm-none {
    display: none !important;
}

/* Адаптивность */
@media (min-width: 768px) and (max-width: 991px) {
    .d-md-flex {
        display: flex !important;
    }
    .d-lg-flex, .d-sm-flex {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .d-sm-flex {
        display: flex !important;
    }
    .d-md-flex, .d-lg-flex {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }
    .d-sm-flex, .d-md-flex {
        display: none !important;
    }
}
.tal {
    margin-top: -300px !important;
}

.icon-rotate {
    transition: transform 0.3s ease;
}

.icon-rotate.active {
    transform: rotate(180deg);
}

.button-standart {
    padding: 18px 85px;
    font-family: var(--font-1), serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--color-text-white);
    background: radial-gradient(38.22% 56.6% at 50.31% 100%, rgba(124, 124, 249, 0.6) 0%, rgba(124, 124, 249, 0) 100%), #2D84E3;
    background-blend-mode: screen, normal;
    box-shadow: 0px 4px 100px rgba(208, 248, 255, 0.6), inset 0px -2px 0px #2B7AD0;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.turov {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5%;
    svg {
        width: 100%;
    }
    span {
        display: flex;
        flex-direction: column;
        gap: 20px;
        h2 {
            font-family: 'Onest';
            font-style: normal;
            font-weight: 600;
            font-size: 30px; /* xs */
            line-height: 115%;
            color: #FFFFFF;
        }

        h3 {
            font-family: 'Onest';
            font-style: normal;
            font-weight: 400;
            font-size: 14px; /* xs */
            line-height: 20px;
            color: #B4BFF3;
        }

        /* sm */
        @media (min-width: 576px) {
            h2 {
                font-size: 35px;
            }

            h3 {
                font-size: 15px;
            }
        }

        /* md */
        @media (min-width: 768px) {
            h2 {
                font-size: 40px;
            }

            h3 {
                font-size: 16px;
            }
        }

        /* lg */
        @media (min-width: 992px) {
            h2 {
                font-size: 45px;
            }

            h3 {
                font-size: 17px;
            }
        }

        /* xl */
        @media (min-width: 1200px) {
            h2 {
                font-size: 50px;
            }

            h3 {
                font-size: 18px;
            }
        }

    }
}

/* Убираем стандартную стрелочку Bootstrap */
.accordion-button {
    color: #2D84E3;
}

.ml {
    margin-left: -17.5px;
    margin-right: -5px;
}

.mlspan {
    margin-right: -16px;
}

.tututu {
    position: relative;
    z-index: 2;
    top:0;
}

.threeArgSection__line_decorator2 {
    position: relative;
    top: 245px;
    left: 0;
    width: 2px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 95%);
    border-radius: 50%;
    opacity: 0.5;
}

.faqSection {
    margin-bottom: 15%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    border: none;
    /* Bg/White */
    background: #FFFFFF;
    border-radius: 10px;

}

.faq-question {
    padding: 40px;
    cursor: pointer;
    font-weight: bold;
    position: relative;

    /* Desctop/H7 */
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    /* identical to box height, or 29px */

    /* Txt/Dark blu */
    color: #152572;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;

}

.faq-question::after {
    content: '+';
    color: #2D84E3;
    font-size: 40px;
    position: absolute;
    right: 20px;
    font-weight: 200;
    top: 40px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
    color: #2D84E3;
    font-size: 40px;
    position: absolute;
    right: 20px;
    font-weight: 200;
    top: 40px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    color: #333;
    transition: max-height 0.3s ease, padding 0.3s ease;

    /* Desctop/Text 1 */
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;

    /* Txt/Dark blu */
    color: #152572;

}

.faq-answer.open {
    max-height: 300px;
    padding: 15px;
    padding: 40px;
    padding-top: 0px !important;
}/* Общий стиль секции */
.detailsBanner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.pupu10 {
    bottom: -180px;

}



.imageWrapper {
    position: relative;
    width: 100%;
    max-width: 75%;

    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.imageWrapper img {
    margin-left: 10%;
    width: 100%;
    height: auto;
}

.gigimg {
    margin: 0 !important;
}

.ga {
    width: fit-content !important;
    margin-left: 0 !important;
}

/* Стиль кнопки для больших экранов */
.paga {
    position: absolute;
    bottom: 31%;
    left: 27%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 30%;
    height: 5%;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Стиль кнопки для малых экранов */
.paga2 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 70%;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Стиль кнопки для средних экранов */
.paga3 {
    position: absolute;
    bottom: 75%;
    left: 29%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 30%;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
/* Для больших экранов */
.d-lg-flex {
    display: flex !important;
}
.d-lg-none {
    display: none !important;
}

/* Для средних экранов */
.d-md-flex {
    display: flex !important;
}
.d-md-none {
    display: none !important;
}

/* Для малых экранов */
.d-sm-flex {
    display: flex !important;
}
.d-sm-none {
    display: none !important;
}

/* Адаптивность */
@media (min-width: 768px) and (max-width: 991px) {
    .d-md-flex {
        display: flex !important;
    }
    .d-lg-flex, .d-sm-flex {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .d-sm-flex {
        display: flex !important;
    }
    .d-md-flex, .d-lg-flex {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }
    .d-sm-flex, .d-md-flex {
        display: none !important;
    }
}
.tal {
    margin-top: -300px !important;
}