

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

.wp-site-blocks {
    font-family: Roboto, sans-serif;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    color: var(--color-4);
}

.wp-site-blocks a:not(.button) {
    color: var(--color-4);

}

body {
    margin: 0;
}

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

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


aside {
    position: sticky;
    top: 0;
    height: 100dvh;
}

.transition {
    transition: all 0.3s;
}


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

a:focus {
    outline: none;
}

header,
header.block-editor-block-list__layout .block-editor-block-list__block{
    position: fixed;
    width: 100%;
    z-index: 9999;
}


header {
    width: -webkit-fill-available;
}

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;
}

:root :where(.wp-site-blocks) > * {
    margin-block-start: 0!important;
}


.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;
}


footer {
    flex: 0 0 auto;
}

section section{
    padding: 24px 0;
}

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

.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: 1200px) {
    aside {
        width: fit-content;
        position: sticky;
        z-index: 99999999;
        height: fit-content;
        transition: all 0.3s;
        top: 0;
    }

}

