body {
    background-color: white;
}

.contact-hero {
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.contact-hero h1 {
    color:white;
    font-size: 60px;
}

.contact-form {
    padding: 65px 0;
}

.contact-form p {
    font-size: 20px;
    color:var(--grey)
}

.contact-form .info span {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color:white;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.contact-form .form-holder{
    padding: 35px;
    background-color: var(--light-grey);
}

.contact-map {
    height: 350px;
    background-position: center;
    background-size: cover;

}

@media (min-width: 1400px){
    .contact-form .form-holder{
        padding: 64px
    }
}

@media (max-width: 767px){
    .contact-hero h1 {
        font-size: 38px;
    }
    .contact-hero {
        height: 180px;
    }
    .contact-form {
        padding: 30px 0;
    }
}