section.home-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 75px;
}

.home-hero .hero__img,
.home-hero .hero__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.home-hero h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 100px;
    text-shadow: 3px 3px 6px #00000033;
    line-height: 1;
}

h1 span {
    display: block;
}

.home_hero__content p {
    max-width: 920px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 1px 1px #000;
}

span.text-right {
    padding-left: 175px;
}

img.home-hero_logo,
.home-hero_logo img {
    position: absolute;
    height: 90px;
    width: auto;
    bottom: 30px;
    right: 50px;
    opacity: 0.7;
}

a.site-footer__socials-link .icon {
    font-size: 29px;
}

/* Hero Animation */

.left-title,
.right-title {
    opacity: 0;
    animation: slide-in-left 1s ease-out forwards;
}

.left-title {
    transform: translateX(-100vw);
    animation-name: slide-in-left;
}

.right-title {
    font-size: 45px;

    transform: translateX(100vw);
    animation-name: slide-in-right;
}

/*----------------------------------------*/
/*             REVAMP - START             */
/*----------------------------------------*/

section.home-hero {
    min-height: 55vh;
}

.revamp .home-hero__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
}
.revamp .home-hero__background__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.revamp .home-hero__background__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0, rgba(13, 40, 62, 0.6) 0%, transparent 100%);
}

.revamp .home_hero__content p {
    display: none;
}

/*----------------------------------------*/
/*             REVAMP - END               */
/*----------------------------------------*/

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100vw);
    }

    to {
        opacity: 1;
        transform: translateX(4rem);
    }
}

/* ########### */

@media (max-width: 900px) {
    @keyframes slide-in-right {
        from {
            opacity: 0;
            transform: translateX(100vw);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (max-width: 845px) {
    .home_hero__content > h1 span,
    .home_hero__content p {
        margin-left: 0;
        text-align: center;
        padding-left: 0;
    }
}

@media (max-width: 580px) {
    .home_hero__content > h1 span {
        font-size: 35px;
    }
    .home_hero__content > h1 span.left-title {
        margin-bottom: 10px;
    }
    .home_hero__content > h1 span.right-title {
        font-size: 25px;
    }

    .home_hero__content p {
        font-size: 20px;
    }

    section.home-hero {
        position: relative;
        min-height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 25px 100px;
        /* padding-bottom: 75px; */
    }

    img.home-hero_logo,
    .home-hero_logo img {
        position: absolute;
        height: 50px;
        width: auto;
        bottom: 30px;
        right: 50px;
        opacity: 0.7;
    }
}

@media (max-width: 450px) {
    .home_hero__content p {
        font-size: 18px;
        padding: 0 10px;
    }
}
