

*{
  margin: 0;
  
  padding: 0;
  box-sizing: border-box;
  
}

body{
    margin-bottom:0px;

}

.contact-section{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info{
  color: #000000;
  max-width: 500px;
  line-height: 3px;
  padding-left: 0px;
  font-size: 10px;
}

.contact-info i{
  margin-right: 20px;
  font-size: 10px;
}

.contact-form{
  max-width: 350px;
  margin-right: 20px;
}

.contact-info, .contact-form{
  flex: 1;
}

.contact-form h2{
  color: #000000;
  text-align: center;
  font-size: 35px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form .text-box{
  background: #808080;
  color: #fff;
  border: none;
  width: calc(50% - 10px);
  height: 30px;
  padding: 12px;
  font-size: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-form .text-box::placeholder{
  color:#aaa;
}

.contact-form .text-box:first-child{
  margin-right: 15px;
}

.contact-form textarea::placeholder{
  color:#aaa;
}

.contact-form textarea{
  background: #808080;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  min-height: 80px;
  max-height: 400px;
  resize: vertical;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-form .send-btn{
  float: right;
  background: #0095da;
  color: #fff;
  border: none;
  width: 80px;
  height: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  transition-property: background;
}

.contact-form .send-btn:hover{
  background: #0095da;
  color: #000000;
}

@media screen and (max-width: 950px){

  .contact-section{

    flex-direction: column;
  }

  .contact-info, .contact-form{
    margin: 10px 15px;
  }

  .contact-form h2{
    font-size: 10px;
  }

  .contact-form .text-box{
    width: 100%;
  }
}
