
/* ================ HERO SECTION =================== */

.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
}


/* ================ HERO CONTENT =================== */
.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 168px 80px 96px 64px;
    width: 100%;
}

.hero__title {
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 105%;
    color: var(--color-primary);

}

.hero__dot {
    color: var(--color-accent-red);
    font-size: 175%;
    line-height: 0;
    letter-spacing: 0;
    display: inline;
    font-weight: 600;
}

.hero__text {
    color: var(--color-text);

}

.hero__text--italic {
    font-style: italic;
    margin-bottom: 40px;
}

/* ================ HERO BUTTONS =================== */
.hero__actions {
    margin-top: 0;
}


/* ================ HERO IMAGE ===================== */
.hero__image-wrapper {
    position: relative;
    width: 100%;
}

.hero__image-svg {
    width: 110%;
    position: relative;
    right: 10%;
    height: 100%;
    min-height: 580px;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}
.hero__image-el,
.hero__image-overlay {
    clip-path: url(#imageClip);
}

.line-mobile {
    display: none;
}

.line-desktop {
    display: block;
}

@media (max-width: 991.98px) {
    .hero__image-el,
    .hero__image-overlay {
        clip-path: url(#imageClip-mobile);
    }

    .line-desktop {
        display: none;
    }

    .line-mobile {
        display: block;
    }
}

/* ============= MEDIA QUERIES – TABLET ============ */



@media (max-width: 1199.98px) {
    .hero__content {
        padding: 60px 40px 72px 48px;
    }

    .hero__title {
        font-size: 46px;
        margin-bottom: 28px;
    }

    .hero__image {
        min-height: 480px;
    }
}

@media (max-width: 991.98px) {
    .hero__image-svg {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero__content-wrapper {
        order: 2;
    }

    .hero__image-container {
        order: 1;
    }

    .hero .row {
        flex-direction: column;
    }

    .hero__bg-accent {
        display: none;
    }

    .hero__content {
        padding: 44px 32px 40px;
        order: 2;
    }

    .hero__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hero__text {
        font-size: 16px;
        max-width: 100%;
    }

    .hero__image {
        order: 1;
        min-height: 360px;
        clip-path: none;
    }

    .hero__accent {
        height: 32px;
    }
}

/* ============= MEDIA QUERIES – MOBILE ============ */
@media (max-width: 767.98px) {
    .hero__content {
        padding: 32px 20px 36px;
    }

    .hero__title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero__text--italic {
        margin-bottom: 28px;
    }
    .hero__image-svg {
        width: 100%;
        right: 0%;
        min-height: 50vh;
    }
    .hero__image {
        min-height: 240px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__btn {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
        padding: 14px 20px;
    }

    .hero__accent {
        height: 24px;
    }
    section.hero-section {
        margin-left: 0px;
        margin-right: 0px;
    }
}
@media (max-width: 1400px) {
    .hero-section .container{
        max-width: 100%;
        margin-left: 64px;
    }
}

@media (max-width: 1023.98px) {
    .hero-section {
        min-height: auto;
    }
    .hero-section .container{
        margin-left: auto;
    }
    .hero-section .hero-wrapper {
        position: static;
        min-height: auto;
    }

    .hero-section .hero {
        min-height: auto;
    }

    .content-after-hero.hero-underlap-active {
        margin-top: 0;
    }

}

@media (min-height: 1600px) {
    .hero__image-svg {
        height: 100vh;
    }
}