.banner{
    position: relative;
    width: 100%;
    height: 588px;
}

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__content{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner__content h1{
    font-weight: 700;
    font-size: 96px;
    margin-bottom: 13px;
}

.banner__content p{
    font-weight: 400;
    font-size: 20px;
}


@media (max-width:1440px) {
    .banner{
        height: 488px;
    }

    .banner__content h1{
        font-size: 70px;
    }
}

@media (max-width:1024px) {
    .banner{
        height: 388px;
    }

    .banner__content h1{
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .banner{
        height: 200px;
    }

    .banner__content h1{
        font-size: 40px;
    }

    .banner__content p{
        font-size: 16px;
    }
}
