.alba-parallax {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.alba-parallax__background {
    position: relative;
    min-height: 200px;

    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    overflow: hidden;

    padding: 60px 20px;

    box-sizing: border-box;
}

.alba-parallax__content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.alba-parallax__title {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.alba-parallax__button {
    display: inline-block;
    padding: 10px 24px;

    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.8);

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.alba-parallax__button:hover,
.alba-parallax__button:focus {
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .alba-parallax {
        width: 100%;
    }

    .alba-parallax__background {
        min-height: 180px;
        padding: 45px 15px;
        background-attachment: scroll;
    }

    .alba-parallax__title {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .alba-parallax__button {
        padding: 9px 20px;
        font-size: 13px;
    }
}