

html ,*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: #0D0E0F;
    font-family: Roboto, sans-serif;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    color: var(--color-4);
}

.container {
    padding: 0 24px;
    max-width: 1656px;
    margin: 0 auto;
    width: 100%;

    .container  {
        padding: 0;
    }
}

.block__head__title {
    font-size: 24px;
    color: white;
    font-weight: bold;
}


.transition {
    transition: all 0.3s;
}


a {
   text-decoration: navajowhite;
    width: fit-content;
}

a:focus {
    outline: none;
}

header{
    position: fixed;
    width: 100vw;
    z-index: 9999;
    background: #191a1f;
    padding: 4px 24px;
    height: 54px;

    .burger {
        display: none;
        width: 40px;
        height: 30px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;

        span {
            width: 100%;
            height: 4px;
            border-radius: 6px;
            background: white;
        }
    }

    .header__left {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .header_wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        gap: 20px;
    }

    .header__logo {
        display: block;
        width: 136px;
        height: 35px;
        img {
            width: 100%;
            height: 100%;
        }
    }

    .header__nav_wrapper {
        .header__logo {
            display: none;
        }
    }

    .header__actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header__nav {
        display: flex;
        list-style: none;
        padding: 0;

        li {
            padding: 0 16px;
        }


        a {
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            color: var(--color-4);

            &:hover {
                color: var(--color-3);
            }
        }
    }
}


main {
    margin-top: 80px!important;
    flex: 1 0 auto;
    padding-bottom: 50px;
}

.theme_wrapper {
    display: flex;
    margin: 0;
    position: relative;
}

.content_wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}




.keen-slider,
.navigation-wrapper{
    height: 100%;
}

.navigation-wrapper {
    position: relative;
}

.dots {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;

}

.navigation-wrapper .arrow {
    position: absolute;
    width: fit-content;
    height: fit-content;
    top: 40%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000b3;
    padding: 12px;
    border-radius: 100%;
}

.navigation-wrapper .arrow svg {
    width: 24px;
    height: 24px;
}

.navigation-wrapper .arrow.arrow--left {
    left: 10px;
    right: auto;
}

.navigation-wrapper .arrow.arrow--right {
    right: 10px;
    left: auto;
}
.big__banner_wrapper .dots {
    bottom: 50px;
    left: 20%;
}

.dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--color-7);
    transition: all 0.3s;
}

.dots .dot.dot--active {
    background: var(--color-3);
}

.page__title_wrapper {
    padding: 40px 0 20px;
    font-size: 32px;
    font-weight: bold;
}

.menu {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.menu-list,
.more-menu {
    display: flex;
}

.more-menu {
    width: 200px;
    background: #191a1f;

    a {
        color: white;
    }
}

.menu-item {
    flex-shrink: 0; /* запрещает сжатие */
}

.more {
    position: relative;
}

.more-btn {
    cursor: pointer;
    background: var(--color-3);
    color: white;
}

.more-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #191a1f;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.more.open .more-menu {
    display: flex;
}


footer {
    flex: 0 0 auto;
    padding: 24px;
    border-radius: 24px 24px 0 0;
    background: #191a1f;

    .footer__nav {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;

        a {
            font-size: 14px;
            font-weight: 600;
            color: white;
        }
    }

    .footer__top {
        color: #b2b3b7;
        padding-bottom: 20px;
        border-bottom: 1px solid #5e61654d;
        font-size: 14px;
    }

    .footer__email {
        color: var(--color-3);
        font-size: 14px;
    }

    .footer__center {
        padding: 20px 0 ;
        border-bottom: 1px solid #5e61654d;
        display: flex;
        gap: 20px;

        .footer__column {
            flex: 1;

            .footer__column-title {
                color: #b2b3b7;
                font-weight: 600;
                padding-bottom: 20px;
                border-bottom: 1px solid #5e61654d;
                margin-bottom: 20px;
                display: block;
                width: 100%;


            }
        }
    }

    .footer__bottom {
        color: #b2b3b7;
        font-size: 14px;
        padding: 20px 0 0 0;
    }
}

section section{
    padding: 24px 0;
}

.arrow_wrapper {
    display: flex;
    gap: 10px;
}

.section_wrapper {
    margin: 40px auto;
}

.card__title_wrapper {
    margin-bottom: 20px;
}

.card__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--color-3);

    svg path {
        fill: white;
    }
}

.arrow_wrapper .arrow {
    position: static;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-7);
    height: 42px;
    cursor: pointer;
    border-radius: 100%;
}

.arrow_wrapper .arrow.arrow--disabled {
    opacity: 0.5;
}

.arrow_wrapper .arrow svg {
    width: 14px;
    height: 14px;
}


@media (max-width: 879px) {

    .header__nav_wrapper {
       position: fixed;
        left: -330px;
        transition: all 0.3s ease;
        padding: 20px;
        background: #191a1f;
        width: 330px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        top: 54px;
        height: 100dvh;

        ul {
            display: flex!important;
            flex-direction: column!important;
            gap: 20px;
        }
    }

    .header__left {
        gap: 10px!important;
    }

    .container {
        padding: 0 10px;
    }

    .button {
        min-width: 70px!important;
    }

    header {
        padding: 4px 10px;
    }

    .more {
        display: none;
    }

    header.active .header__nav_wrapper {
        left: 0;

    }

    .burger {
        display: flex!important;
    }





}

