.contactBanner{
    width: 100%;
    height: 500px;
    overflow: hidden;
    position:relative;
}
.contactBanner img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.contactBanner h1{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
font-size: 3rem;
color: #fff;
text-shadow: 2px 2px 2px #000;
}
.contactBanner ul{
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%,-50%);
display: flex;
list-style: none;
color: #fff;
}
.contactBanner ul li a{
    text-decoration: none;
    color: #fff;
    margin: .5rem;
    font-weight: 500;
}
.contactc{
    display: flex;
    align-items: center;
    margin: 1rem 0;
   
}
.contactc i{
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    background-color: #0D2434;
    color: #fff;
    font-size: 1.3rem;
}
.contactc a{
    text-decoration: none;
    color: #7c5454;
    margin-left: .5rem;
    font-size: 1.1rem;
}
@media(max-width:950px){
    .contactBanner h1{
        font-size: 2rem;
        width: 100%;
        text-align: center;
    }
}
@media(max-width:750px){
    .contactc{
        justify-content: center;
       text-align: center;
       margin: 0;
    }
    .contactc i{
        width: auto;
        height: auto;
        line-height: auto;
        text-align: center;
        background-color: transparent;
        color: #000;
        font-size: 1.3rem;
    }

}
@media(max-width:600px){

    .contactBanner{
        height: 300px;
    }
    .contactBanner img{
        height: 300px;
    }

}
@media(max-width:500px){
    .contactBanner h1{
        font-size: 1.8rem;
    }
}
@media(max-width:350px){
    .contactc{
       display: block;
    }
    .contactc a{
        word-wrap: break-word;
    }
}