.header {
    position: relative;
    height: 280px;
}
.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-title {
    position: absolute;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
}

@media (max-width: 992px) {
    .header {
        height: 200px;
    }

    .header-title {
        font-size: 1.7rem;
        top: 110px;
    }
}
@media (max-width: 640px) {
    .header-title {
        font-size: 1.4rem;
        top: 90px;
    }
}

@media (max-width: 430px) {
    .header-title {
        font-size: 1.2rem;
        top: 75px;
    }
}
