.header {
    position: relative;
    height: 300px;
    
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(108, 139, 141, 0.8) 0%,
        rgba(106, 53, 99, 0.8) 100%
    );
    z-index: 1;
}

.header-title {
    position: absolute;
    color: white;
    width:100%;
    font-size: 2rem;
    font-weight: 700;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
}

@media (max-width: 992px) {
    .header {
        height: 250px;
    }

    .header-title {
        font-size: 1.7rem;
        top: 150px;
    }
}

@media (max-width: 640px) {
    .header-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 430px) {
    .header-title {
        font-size: 1.2rem;
    }
}
