.closing{
    position: relative;
    margin-top: 30px;
    background-color: blueviolet;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.closing img{
    position: absolute;
    top: -100px;
    left: 0;
    /* transform: translateY(-300px); */
    width: 100%;
    height: auto;
}

.foot{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: #A71C20;
}

.foot h3{
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
}


@media only screen and (max-width: 1150px){
    .closing{
        height: 400px;
    }
    /* .closing img{
        transform: translateY(-200px);
    } */
}

@media only screen and (max-width: 1000px){
    .closing{
        /* height: 300px; */
    }
    /* .closing img{
        transform: translateY(-150px);
    } */
}

@media only screen and (max-width: 800px){
    .closing img{
        
        top: -50px;
    }
}

@media only screen and (max-width: 550px){
    .closing{
        height: 300px;
    }
    .closing img{
        top: 0;
    }
}

@media only screen and (max-width: 350px){
    .closing{
        height: 300px;
    }
    .closing img{
        height: 100%;
        width: auto;
    }
}