body {
    padding-top: 60px !important;
}

@media (min-width: 992px) {
    body {
        padding-top: 80px !important;
    }
}

body.active {
    overflow: hidden;
}

@media (min-width: 992px) {
    body.active {
        overflow: auto;
    }
}

.header__logo-holder {
    display: inline-block;
    height: 50px;
}

.header__logo-holder img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.header ._cnt {
    max-width: 1440px;
    margin: 0px auto;
}

.header8.header {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

.header8 .header__container {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .header8 .header__container {
        height: 80px;
    }
}

.header8 .header__logo {
    position: relative;
    z-index: 100;
}

@media (min-width: 992px) {
    .header8 .header__nav {
        flex: 1 1 100%;
    }
}

.header8 .header__menu-box {
    position: fixed;
    z-index: 99;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 992px) {
    .header8 .header__menu-box {
        position: static;
        background-color: transparent;
    }
}

.header8 .header__menu-box::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 992px) {
    .header8 .header__menu-box::before {
        display: none;
    }
}

.header8 .header__menu-box.active {
    right: 0;
}

.header8 .header__burger {
    overflow: hidden;
    position: relative;
    z-index: 100;
    width: 40px;
    height: 16px;
}

@media (min-width: 992px) {
    .header8 .header__burger {
        display: none;
    }
}

.header8 .header__burger span {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: all 0.2s ease 0s;
    background-color: var(--PRIMARY_MAJOR_COLOR);
}

.header8 .header__burger span:first-child {
    top: 0;
}

.header8 .header__burger span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}

.header8 .header__burger span:last-child {
    bottom: 0;
}

.header8 .header__burger.active {
    transition: all 0.3s ease 0s;
    transform: rotate(90deg);
}

.header8 .header__burger.active span:first-child {
    top: 50%;
    transform: rotate(45deg) scale(0.7);
}

.header8 .header__burger.active span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
    opacity: 0;
    left: 20px;
}

.header8 .header__burger.active span:last-child {
    bottom: 50%;
    transform: rotate(-45deg) scale(0.7);
}

.header8 .menu-main-menu-container {
    padding-top: 60px;
    height: 100%;
    overflow: auto;
}

@media (min-width: 992px) {
    .header8 .menu-main-menu-container {
        padding-top: 0px;
        overflow: visible;
    }
}

.header8 .menu-main-menu-container ul {
    font-size: 50px;
    padding-left: 20px;
    margin-bottom: 0px;

}

@media (min-width: 992px) {
    .header8 .menu-main-menu-container ul {
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        flex-wrap: wrap;
    }
}

.header8 .menu-main-menu-container ul li {
    font-size: 25px;
    text-align: right;
    padding-bottom: 10px;
    padding-right: 20px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--SECONDARY_MINOR_COLOR);
}

@media (min-width: 992px) {
    .header8 .menu-main-menu-container ul li {
        font-size: 16px;
        padding: 0;
        margin: 0 5px 5px 0;
        flex: 1 1 20%;
        text-align: center;
        border-bottom: none;
        max-width: fit-content;
    }

    .header8 .menu-main-menu-container ul li:last-child {
        margin: 0;
    }
}

@media (min-width: 992px) {
    .header8 .menu-main-menu-container ul li.current-menu-item a {
        background-color: var(--SECONDARY_MINOR_COLOR);
        color: var(--SECONDARY_MAJOR_COLOR);
    }
}

.header8 .menu-main-menu-container ul li a {
    text-transform: uppercase;
    text-decoration: var(--TEXT_DECORATION);
    color: var(--SECONDARY_MINOR_COLOR);
}

@media (min-width: 992px) {
    .header8 .menu-main-menu-container ul li a {
        padding: 5px 20px;
        transition: all 0.3s ease 0s;
        border-radius: 20px;
        white-space: nowrap;
        text-decoration: var(--TEXT_DECORATION);
    }

    .header8 .menu-main-menu-container ul li a:hover {
        background-color: var(--SECONDARY_MINOR_COLOR);
        color: var(--SECONDARY_MAJOR_COLOR);
    }
}

.hero {
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

.hero__container {
    max-width: 1440px;
    margin: 0px auto;
}

@media (min-width: 576px) {
    .hero__container {
        display: flex;
    }
}

.hero__text-block {
    padding: 40px 20px;
}

@media (min-width: 576px) {
    .hero__text-block {
        flex: 1 1 50%;
    }
}

@media (min-width: 768px) {
    .hero__text-block {
        flex: 1 1 30%;
    }
}

.hero__title {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    font-family: var(--TITLE_FONT);
    color: var(--SECONDARY_MINOR_COLOR);
}

.hero__text {
    margin-bottom: 60px;
    color: var(--SECONDARY_MINOR_COLOR);
}

.hero__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45px;
    border-radius: 100px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    text-decoration: var(--TEXT_DECORATION);
    border: 2px solid var(--PRIMARY_MAJOR_COLOR);
    color: var(--PRIMARY_MAJOR_COLOR);
}

.hero__btn:hover {
    border: 2px solid var(--PRIMARY_MAJOR_COLOR);
    background-color: var(--PRIMARY_MAJOR_COLOR);
    color: var(--PRIMARY_MINOR_COLOR);
    text-decoration: none;
}

.hero__slider-block {
    height: 500px;
}

@media (min-width: 576px) {
    .hero__slider-block {
        flex: 1 1 50%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .hero__slider-block {
        flex: 1 1 70%;
    }
}

.hero__slide {
    width: 100%;
    height: auto !important;
    overflow: hidden;
}

.slide-hero__pic {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slide-hero__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-hero__gradient {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--SECONDARY_MAJOR_COLOR) 0%, rgba(255, 0, 0, 0) 100%);
}

@media (min-width: 576px) {
    .slide-hero__gradient {
        background: linear-gradient(90deg, var(--SECONDARY_MAJOR_COLOR) 0%, rgba(255, 0, 0, 0) 100%);
    }
}
