@import url('https://fonts.googleapis.com/css?family=Ubuntu');

*{
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
}

body{
  /*background: #7f7df9;*/
  background: url("../images/background.jpg")no-repeat 0px 0px;
  background-size: cover;
  width: 100%;
}

.contact-us{
  width: 450px;
  background: #fff;
  padding: 50px;
  margin: 100px auto;
  border-radius: 5px;
  position: relative;
}

.title h1{
  color: #535274;
  letter-spacing: 5px;
  margin-bottom: 25px;
  text-align: center;
}

.form,
.form-items{
  width: 100%;
}

.form-items .input{
  width: 100%;
  margin-bottom: 12px;
  padding: 15px 40px;
  box-sizing: border-box;
  background: #ebeef1;
  border: 0px;
  outline: none;
  border-radius: 5px;
}

.form-items .input.message{
  height: 125px;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 15px 15px;
  resize: none;
}

.form-items .input.address{
  height: 125px;
  border-radius: 5px;
  margin-bottom: 12px;
  padding: 15px 15px;
  resize: none;
}

.btn-submit{
  background: #03a17c;
  text-align: center;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.btn-submit .fas{
  margin-left: 10px;
  font-size: 12px;
}

.form-items{
  position: relative;
}

.form-items .fas{
  position: absolute;
  top: 15px;
  left: 15px;
  color: #9a99aa;
}

.or{
  width: 100%;
  background: #fff;
  border-radius: 5px;
  position: relative;
  text-align: center;
  padding: 12px;
}
.btn-whatsapp{
  background: #25D366;
  text-align: center;
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.btn-whatsapp .fas{
  margin-left: 15px;
  font-size: 12px;
}

.social-icons{
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 200px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
}

.social-icons div{
  width: 50px;
  height: 50px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}


.social-icons div .fab{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
}

.social-icons div.facebook{
  background: #5178d9;
}

.social-icons div.twitter{
  background: #41caf6;
}

.social-icons div.google{
  background: #fb4f4f;
}
/*@media screen and (max-width:960px) {
  .gallery-section .image{
    flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
.contact-us{
  width:100%;
  background: #fff;
  height: 100%;
}
}*/

@media screen and (max-width:480px) {
  .contact-us{
    width:96%;
   height: 100%;
  }
}