.banner-fullwidth_block {
    width: 100%;
}

.banner-fullwidth_line {
    background-color: var(--brand-color);
    width: 100%;
    height: 25px;
}

.banner-fullwidth {
    background-color: var(--black);
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    display: flex;
    position: relative;
}

.banner-fullwidth_center {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 55px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.banner-fullwidth_text {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
}

/* Estilo home */
.banner-fullwidth_home-content {
    display: inline-block;
    text-align: center;
}

.banner-fullwidth_home-title {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 55px;
    font-weight: 900;
    line-height: 52px;
    text-transform: uppercase;
}

.banner-fullwidth_home-subtitle-container {
    margin-top: 12px;
    display: flex;
}

.banner-fullwidth_home-subtitle-column {
    text-align: right;
    max-width: 260px;
}

.banner-fullwidth_home-subtitle {
    font-family: var(--primary);
    color: var(--white);
    margin: 0;
    padding: 0;
    font-size: 25px;
    font-weight: 400;
    line-height: 25px;
}

.banner-fullwidth_home-button-container {
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    display: flex;
}

/* Botón */
.banner-fullwidth_button {
    background-color: var(--brand-color);
    font-family: var(--primary);
    color: var(--black);
    text-transform: uppercase;
    margin-top: 35px;
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.banner-fullwidth_button:hover {
    background-color: var(--grey-text);
    color: var(--white);
}

@media screen and (min-width: 1280px) {
    .banner-fullwidth_center {
        padding-top: 80px;
        padding-bottom: 75px;
    }

    .banner-fullwidth_text {
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }

    .banner-fullwidth_home-title {
        font-size: 88px;
        line-height: 85px;
    }

    .banner-fullwidth_home-subtitle {
        font-size: 36px;
        line-height: 36px;
    }

    .banner-fullwidth_button {
        padding: 12px 22px;
        font-size: 24px;
        line-height: 24px;
    }
}

@media screen and (max-width: 991px) {
    .banner-fullwidth {
        min-height: 50vh;
    }

    .banner-fullwidth_line {
        height: 20px;
    }

    .banner-fullwidth_home-title {
        font-size: 55px;
        line-height: 52px;
    }

    .banner-fullwidth_home-subtitle {
        font-size: 25px;
        line-height: 25px;
    }

    .banner-fullwidth_button {
        margin-top: 30px;
        padding: 8px 16px;
        font-size: 16px;
        line-height: 16px;
    }
}

@media screen and (max-width: 479px) {
    .banner-fullwidth_home-subtitle-container {
        justify-content: center;
        align-items: flex-start;
    }

    .banner-fullwidth_home-subtitle {
        text-align: center;
        font-size: 20px;
        line-height: 20px;
    }

    .banner-fullwidth_home-title {
        font-size: 35px;
        line-height: 35px;
    }

    .banner-fullwidth_button {
        margin-top: 20px;
        font-size: 14px;
        line-height: 14px;
    }
}
