/* =============================================
HERO SECTION
============================================== */

.hero_section {
    position: relative;
    height: 87vh;
    background-color: var(--light-bg);
    color: var(--dark-text);
    display: flex;
}

.hero_section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: var(--global-border);
    background-color: var(--dark-bg);
    transition: width var(--border-transition);
}

.hero_section.borders-v::after {
    width: 100%;
}

.hero_aside_left {
    position: relative;
    width: 212px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero_aside_left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: var(--global-border);
    height: 0%;
    background-color: var(--dark-bg);
    transition: height var(--border-transition);
}

.hero_aside_left.borders-v::after {
    height: 100%;
}

.hero_aside_left h1 {
    font-family: var(--heading-font);
    font-size: 20px;
    margin: 0;
}

.hero_aside_left p {
    margin: 10px 0;
    line-height: 1.3;
}

.aside_left_cont {
    padding: 0px 15px 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero_aside_right {
    position: relative;
    width: 60px;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero_aside_right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: var(--global-border);
    height: 0%;
    background-color: var(--dark-bg);
    transition: height var(--border-transition);
}

.hero_aside_right.borders-v::before {
    height: 100%;
}

.aside_right_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.aside_right_cont p {
    font-size: 10px;
    margin: 5px 0px 0px 0px;
}

.hero_content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--section-padding-dek);
    background-image: url('../assets/images/hero-desk.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width:1510px) {
    .hero_content {
        background-image: url('../assets/images/hero-desk-2.svg');
    }
}

@media (max-width:1070px) {
    .hero_content {
        background-image: url('../assets/images/hero-desk-3.svg');
    }
}

@media (max-width: 976px) {
    .hero_content {
        padding: var(--section-padding-mob);
        background-image: url('../assets/images/hero-desk-4.svg');
        background-size: contain;
        background-position: top 35% left 50%;
        background-repeat: no-repeat;
    }
}

.here_content_bottom {
    display: none;
}

.hero_content h1 {
    font-size: 68px;
    margin: 0;
    font-family: 'Copper03';
    color: var(--light-text);
    mix-blend-mode: exclusion;
    width: fit-content;
}

.hero_content h2 {
    font-size: 68px;
    font-family: 'Copper03';
    margin: 0 0 0 38px;
    color: var(--light-text);
    mix-blend-mode: exclusion;
    width: fit-content;
}

.here_content_center {
    margin: auto 0;
}

.hero_slash_pattern {
    width: 100%;
    height: 80px;
    background: repeating-linear-gradient(
        -45deg,
        var(--accent),
        var(--accent) 4px,
        transparent 4px,
        transparent 8px
    );
}


@media (max-width: 976px) {
    .hero_section {
        height: 75vh;
    }

    .hero_aside_left {
        display: none;
    }

    .hero_aside_right {
        display: flex;
    }

    .hero_aside_right .aside_right_cont {
        transform: rotate(90deg);
    }

    .here_content_bottom {
        display: block;
    }

    .here_content_bottom p {
        font-size: 14px;
        line-height: 1.3;
    }

    .hero_content h1 {
        font-size: 30px;
        margin: 0;
    }

    .hero_content h2 {
        font-size: 30px;
        margin: 0 0 0 19px;
    }


}

@supports (-webkit-hyphens:none) {
    .hero_aside_left {
        width: 216px;
    }
}
