/* Home Banner */
.banner-home {
    width: 100%;
    margin-bottom: 6rem;
}

.banner-home .img-container {
    width: 100%;
}

.banner-home .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-home .text-container {
    position: relative;

    padding-left: 2rem;
    margin-top: calc(var(--h1-size) * -2);
}

.banner-home .text-container::before {
    top: 5%;
    left: 0;
    position: absolute;

    width: 4px;
    content: "";
    height: 90%;

    border-radius: 2px;
    background-color: var(--color-primary);
}

@media screen and (max-width: 992px) {
    .banner-home {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .banner-home {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 576px) {
    .banner-home {
        margin-bottom: 3rem;
    }
}

/* Banner */
.banner {
    width: 100%;
    position: relative;
    margin-bottom: 5rem;
}

.banner .img-container {
    width: 100%;
}

.banner .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .text-container {
    bottom: 0;
    position: absolute;
}

.banner .text-container::before {
    left: 0;
    bottom: -1rem;
    position: absolute;

    width: 25%;
    height: 4px;
    content: "";

    border-radius: 2px;
    background-color: var(--color-primary);
}

@media screen and (max-width: 992px) {
    .banner {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 576px) {
    .banner {
        margin-bottom: 3rem;
    }
}