body.active {
    overflow: hidden;
}

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
}

.header__wrapper {
    backdrop-filter: blur(45px);
    position: relative;
    z-index: 100;
}

.header__background {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

.header__container {
    max-width: 1025px;
    margin: 0px auto;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

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

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

.header__nav {
    position: fixed;
    z-index: 80;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--SECONDARY_MAJOR_COLOR);
    transition: all 0.3s ease 0s;
    padding: 90px 20px 20px 20px;
    overflow: auto;
}

.header__nav.active {
    left: 0%;
}

.header__nav .menu-main-menu-container ul li {
    margin-bottom: 10px;
}

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

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

.header__nav-menu {
    display: none;
}

@media (min-width: 992px) {
    .header__nav-menu {
        display: block;
        margin: 0 auto;
    }
}

.header__nav-menu .menu-main-menu-container ul {
    display: flex;
    margin: 0 -20px;
}

.header__nav-menu .menu-main-menu-container ul li {
    padding: 0 20px;
}

.header__nav-menu .menu-main-menu-container ul li a {
    color: var(--SECONDARY_MINOR_COLOR);
    transition: all 0.3s ease 0s;
    font-weight: bold;
    font-size: 20px;
    line-height: 130%;
}

.header__nav-menu .menu-main-menu-container ul li a:hover {
    color: var(--EXTRA_COLOR);
}

.header__burger {
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
    margin-left: auto;
}

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

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

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

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

.header__burger span:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

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

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

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.hero {
    min-height: 600px;
    background: center/cover no-repeat;
    background-attachment: fixed;
}

.hero__container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.hero__contentbox {
    position: relative;
    z-index: 1;
    width: 75%;
    max-width: 610px;
}

@media (min-width: 768px) {
    .hero__contentbox {
        width: 60%;
    }
}

.hero__contentbox::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

.hero__text-box {
    padding: 40px 20px;
    color: var(--SECONDARY_MINOR_COLOR);
}

.hero__text-box svg {
    stroke: var(--SECONDARY_MINOR_COLOR);
}

@media (min-width: 768px) {
    .hero__text-box {
        padding: 40px;
    }
}
@media (min-width: 1024px) {
    .hero__text-box {
        padding: 40px 80px;
    }
}
.hero__title-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 80vh;
    height: 80vh;
}
.hero__title {
    font-weight: 700;
    font-size: 72px;
    line-height: 120%;
    font-family: var(--TITLE_FONT);
    color: transparent;
    -webkit-text-stroke: 2px var(--SECONDARY_MINOR_COLOR);
    letter-spacing: 0.05em;
    max-width: 80vh;
    transform: rotate(-90deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hero__title-container {
        left: 20px;
    }
    .hero__title {
        font-size: 72px;
    }
}
@media (min-width: 1024px) {
    .hero__title {
        font-size: 100px;
    }
}

.hero__text {
    font-weight: bold;
    line-height: 120%;
    margin-bottom: 24px;
    font-size: 28px;
}

@media (min-width: 768px) {
    .hero__text {
        font-size: 38px;
        margin-bottom: 55px;
    }
}
@media (min-width: 1024px) {
    .hero__text {
        margin-bottom: 105px;
    }
}

.hero__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 40px;
    background-color: var(--PRIMARY_MAJOR_COLOR);
    color: var(--PRIMARY_MINOR_COLOR);
}

@media (min-width: 768px) {
    .hero__btn {
        transition: all 0.3s ease 0s;
    }
    .hero__btn:hover {
        background-color: var(--PRIMARY_MINOR_COLOR);
        color: var(--PRIMARY_MAJOR_COLOR);
    }
}
.hero__logo-holder {
    display: inline-block;
    height: 50px;
}

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