#section-1{
    position: relative;
}
#section-1 h2{
    font-family: 'CalistoMT';
    font-size: 60px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}
#section-1 img{
    width: 100%;
    height: calc(100vh - 200px);
    object-fit: cover;
    object-position: top;
}
@media(max-width: 992px){
    #section-1 h2 {
            font-size: 40px;
                    margin: 30px 0;
        }
}
@media(max-width: 480px){
#section-1 h2 {
        font-size: 26px;
        margin: 20px 0;
    }
        #section-1 img {
            width: 100%;
            height: 230px;
            object-fit: cover;
        }
}