#contact{
    height: 100vh;
    width: 100vw;
    background: url("../bg1.jpg") fixed  no-repeat center top / cover;
    transition: 0.4s;

}
.inner-contact{
    padding-top: 120px;
    display: flex;
}
.contact-left{
    width: 50%;
    margin: 20px 0 0 100px;
    font-weight: 100;
    color: #254379;
}
.contact-left h1{
    font-weight: 100;
    padding-bottom: 30px;
    font-size: 45px;
}
.contact-left h3{
    font-weight: 100;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
}
.contact-right{
    margin: 160px 100px 0px 0px;
    width: 500px;
    font-family: 'Inter', sans-serif;

}
.contact-right div{
    display: flex;
    flex-direction: column;
    color: #84B6E2;
    margin: 30px 20px;
}
.contact-right div input{
    background: none;
    font-size: 18px;
    border-bottom: 3px solid #84B6E2;

}
.contact-right div label{
    background: none;
    font-size: 18px;

}
.contact-right div input:focus{
    border: none;
}
.contact-right  button{
    color: white;
    margin-left: 20px;
    background-color: #84B6E2;
    padding: 15px 60px;
}
form div:nth-child(1){
    width: 40%;
}
form div:nth-child(2){
    float: right;
    width: 40%;
}
form div:nth-child(3){
    width: 92.5%;
}
@media only screen and (max-width: 1000px) {
    .inner-contact{
        flex-direction: column;
    }
    .contact-right{
        margin: 30px 100px 0px 100px;
    }
}

@media only screen and (max-width: 500px) {
    .inner-contact{
        flex-direction: column;
    }
    .inner-contact div{
        width: 100%;
    }
    .contact-left{
        width: 50%;
        margin: 20px 0 0 30px;
        font-weight: 100;
        color: #254379;
    }
    .contact-right{
        margin-left: 20px;
    }
    form{
        width: 370px;
    }
    form div{
        width: 80%;
    }
    form div:nth-child(1){
        width: 80%;
    }
    form div:nth-child(2){
        width: 80%;
        float: left;
    }
    form div:nth-child(3){
        width: 80%;
    }
    form div:nth-child(4){
        width: 80%;
    }
}