#title {
    /* height: 200px; */
    /* background-image: url(/images/contact_1.png); */
    background-repeat: no-repeat;
    background-size: cover contain;
    background-position: left center;
}

#title>h2 {}

.banner{
    position: relative;
    background-image: url(/images/contact.jpg);
    height:40vh;
    background-position: top right;
}
.banner>h1 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin: 0;
    padding: 40px 120px;
    font-size: 3rem;
    letter-spacing: 1rem;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .2);
}

.big {
    display: block;
    font-size: 3rem;
    letter-spacing: 0px;
    font-weight: normal;
    color: #222;
   transition: .5s;
}
.big:hover{
    color: #000;
}

.label {
    color: rgb(20, 114, 255);
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 2rem;
}


.container {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

main img {
    display: block;
    width: 300px;
}

@media screen and (max-width : 800px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner>h1{
        font-size: 2rem;
        letter-spacing: 0px;
        padding: 2rem 4rem;
    }
    .big{
        font-size: 1.5rem;
    }
}