:root {
    --white: #FFFFFF;
    --black: #000;
    --blackNav: #424242;
    --blueNav: #133A67;
    --yellowBanner: #FFC99D;
    --whiteBanner: #DADADA;
    --blueItem: #00ADB6;
    --blackItem: #3C4852;
    --infoGray: #808080;
    --redBanner: #BE6A67;
    --reviewsGray: #F1F1F1;
    --whiteFooter: #EEEEEE;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'cairo';
}


.contact{
    width: 80%;
    margin: auto;
    margin-top: 130px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    

}


.contact .contact_media h3{
    font-size: 30px;
    font-weight: bolder;
    margin-bottom: 20px;

}

.contact_media{
    padding-top: 30px;
}
.contact .contact_media h3 span{
    color: var(--redBanner);
}


.social div{
  height:50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  display: flex;
  margin-left: 22px;
  justify-content: center;
  align-items: center;
}


.contact_content{
    box-shadow: 0px 0px 50px 0px rgba(26, 46, 85, 0.1);
    border-radius: 5px;
    padding: 70px;
    width: 50%;
    background-color: white;
}


.contact_content h4{
    font-size: 20px ;
    font-weight: bold;
    margin-bottom: 18px;
}

.contact_content p{
    color: #808080;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact_content form input{
    border: none;
    width: 100%;
    padding-bottom:10px ;
    border-bottom: 1px solid #E5E5E5 !important;
}

.contact_content form input:focus{
    border: none;
    outline: none;
}

.contact_content form textarea{
    border: 1px solid #E5E5E5;
    padding: 5px;
    margin-top: 40px;
    margin-bottom: 40px;

}

.contact_content form textarea:focus{
    border: 1px solid #E5E5E5;
    outline: 1px solid #E5E5E5;
}

.contact_content form button{
    background-color: var(--blueNav);
    color: var(--white);
    padding: 15px 30px;
    width: 50%;
}