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

.header14 .menu-main-menu-container {
    position: fixed;
    z-index: 99;
    top: 0;
    right: -100%;
    transition: all 0.3s ease 0s;
    padding-top: 75px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 992px) {
    .header14 .menu-main-menu-container {
        position: static;
        background-color: transparent;
        overflow: visible;
        padding-top: 0px;
        transition: all 0s ease 0s;
    }
}

.header14 .menu-main-menu-container.active {
    right: 0;
}

.header14 .menu-main-menu-container ul {
    height: 100%;
    z-index: 99;
    padding-left: 20px;
    margin-bottom: 0px;
}

@media (min-width: 992px) {
    .header14 .menu-main-menu-container ul {
        display: flex;
        justify-content: space-between;
        height: 100%;
        padding-left: 0px;
    }
}

.header14 .menu-main-menu-container ul.active::before {
    opacity: 1;
}

.header14 .menu-main-menu-container ul::before {
    content: "";
    transition: all 0.3s ease 0s;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    opacity: 0;
    display: block;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 992px) {
    .header14 .menu-main-menu-container ul::before {
        display: none;
    }
}

.header14 .menu-main-menu-container ul li {
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .header14 .menu-main-menu-container ul li {
        margin-bottom: 0px;
    }

    .header14 .menu-main-menu-container ul li.current_page_item a {
        background-color: var(--PRIMARY_MAJOR_COLOR);
        color: var(--PRIMARY_MINOR_COLOR);
    }

    .header14 .menu-main-menu-container ul li.current_page_item a:hover {
        opacity: 0.8;
    }
}

.header14 .menu-main-menu-container ul li a {
    font-size: 30px;
    text-decoration: var(--TEXT_DECORATION);
    color: var(--SECONDARY_MINOR_COLOR);
}

@media (min-width: 992px) {
    .header14 .menu-main-menu-container ul li a {
        font-size: 16px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 5px 10px;
        border-radius: 6px;
        transition: all 0.3s ease 0s;
        color: var(--SECONDARY_MINOR_COLOR);
    }

    .header14 .menu-main-menu-container ul li a:hover {
        background-color: var(--PRIMARY_MAJOR_COLOR);
        color: var(--PRIMARY_MINOR_COLOR);
    }
}

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

.header14 .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    min-height: 70px;
}

@media (min-width: 992px) {
    .header14 .header__container {
        max-width: 1440px;
        margin: 0px auto;
        justify-content: flex-start;
    }
}

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

@media (min-width: 992px) {
    .header14 .header__logo {
        flex: 0 0 auto;
        margin-right: 20px;
    }
}

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

.header14 .header__burger {
    width: 20px;
    height: 10px;
    position: relative;
    z-index: 100;
    transition: all 0.3s ease 0s;
}

@media (min-width: 576px) {
    .header14 .header__burger {
        width: 30px;
        height: 15px;
    }
}

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

.header14 .header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    transition: all 0.3s ease 0s;
    background-color: var(--PRIMARY_MAJOR_COLOR);
}

@media (min-width: 576px) {
    .header14 .header__burger span {
        height: 3px;
    }
}

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

.header14 .header__burger span:last-child {
    width: 50%;
    bottom: 0;
    left: 0;
}

.header14 .header__burger.active span:first-child {
    top: 50%;
    transform: rotate(45deg) translateY(-1px);
}

.header14 .header__burger.active span:last-child {
    width: 100%;
    bottom: 50%;
    transform: rotate(-45deg) translateY(1px);
}

.hero {
    background: center 0 / cover no-repeat;
    min-height: 600px;
    position: relative;
    z-index: 0;
}

.hero:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

.hero__container {
    max-width: var(--CONTAINER_WIDTH);
    margin: 0px auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.hero__content {
    text-align: center;
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--SECONDARY_MAJOR_COLOR);
}

.hero__title {
    font-size: 50px;
    margin-bottom: 25px;
    color: var(--SECONDARY_MAJOR_COLOR);
}

.hero__subsubtitle {
    font-size: 30px;
    margin-bottom: 30px;
    color: var(--SECONDARY_MAJOR_COLOR);
}

.hero__btn {
    display: inline-flex;
    min-width: 200px;
    min-height: 70px;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: all 0.3s ease 0s;
    text-decoration: var(--TEXT_DECORATION);
    color: var(--PRIMARY_MINOR_COLOR);
    background-color: var(--PRIMARY_MAJOR_COLOR);
}

.hero__btn:hover {
    color: var(--PRIMARY_MAJOR_COLOR);
    background-color: var(--PRIMARY_MINOR_COLOR);
}

.hero__arrow {
    display: block;
    height: 45px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    animation: breath 3s linear infinite;
    text-decoration: var(--TEXT_DECORATION);
}

.hero__arrow p {
    font-size: 18px;
    color: var(--PRIMARY_MAJOR_COLOR);
}

.hero__arrow span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 25px;
    height: 25px;
    transform: translateX(-50%) rotate(45deg);
    border-right: 2px solid var(--PRIMARY_MAJOR_COLOR);
    border-bottom: 2px solid var(--PRIMARY_MAJOR_COLOR);
}

@keyframes breath {
    0% {
        transform: translate(-50%, 0px);
    }

    50% {
        transform: translate(-50%, 8px);
    }

    100% {
        transform: translate(-50%, 0px);
    }
}
