.contact {
    color: white;
    background: black;
}
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
    font-family: 'Montserrat';
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .rows{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .rows i{
    font-size: 25px;
    color: #8ca0d7;
}
.contact .contact-content .rows .info{
    margin-left: 30px;
}
.contact .contact-content .info .head{
    font-weight: bold;
    color: #8ca0d7;
    font-family: "Montserrat";
}
.contact .contact-content .info .sub-title{
    color: lightgrey;
    font-family: "Montserrat";
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .fields .field,
.contact .right form .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .name{
    margin-right: 10px;      
}
.contact .right form .email{
    margin-left: 10px;      
}  
.contact .right form .textarea{
    height: 80px;   
    width: 100%; 
}  
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 20px;
    font-size: 17px;
    font-family:  'Montserrat', sans-serif;
}
.contact .right form .textarea textarea{
    padding-top: 10px;
    resize: none;
}
.contact .right form .button{
    height: 47px;
    width: 170px;
}
.contact .right form .button button{
    width: 100%;
    height: 100%;
    border: 2px solid #8ca0d7;
    background: #8ca0d7;
    color: white;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact .right form .button button:hover{
    background: none;
    color: #8ca0d7;
}

.contact .icons img {
    width: 30px;
    height :30px;
}