
/* class contact*/
.contact{
  text-align: center;
  align-items: center;
  padding-top: 3rem;
}
.head-ing{
  margin: auto;
  padding-top: 6rem;
  display: flexbox;
  font-size: 3.5rem;
  color: #57A0D3;
  position: relative;
  letter-spacing: .2rem;
  
}
.head-ing::before, .head-ing::after{
  content: '';
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  border-top: .4rem solid #57A0D3;
  border-left: .4rem solid #57A0D3;
  margin: auto;
}

.head-ing::before{
  top: 5.8rem;
  left: -2rem;
  
}

.head-ing::after{
  bottom: -.5rem;
  right: -2rem;
  transform: rotate(180deg);
}

.contact .head-ing{
  margin-bottom: 5rem;
  width: 350px;
}

/* class contact-in*/
.contact-in{
  width: 70%;
  height: auto;
  margin: auto auto 5rem auto;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #666;
}

.contact-form
{
width: 100%;
height: auto;
flex: 50%;
text-align: left;
}
.contact-form-txt
{
margin-left: 2rem;
width: 95%;
height: 40px;
color: #000;
border: 1px solid #bcbcbc;
border-radius: 50px;
outline: none;
margin-bottom: 20px;
padding: 15px;
}
.contact-form-email
{
margin-left: 2rem;
width: 95%;
height: 40px;
color: #000;
border: 1px solid #bcbcbc;
border-radius: 50px;
outline: none;
margin-bottom: 20px;
padding: 15px;
}
.contact-form-txt::placeholder
{
color: #aaa;
font-size: 1.5rem;
}
.contact-form-email::placeholder
{
color: #aaa;
font-size: 1.5rem;
}
.contact-form-txtarea
{
margin-left: 2rem;
width: 95%;
height: 130px;
color: #000;
border: 1px solid #bcbcbc;
border-radius: 10px;
outline: none;
margin-bottom: 20px;
padding: 15px;
font-family: 'Poppins', sans-serif;
}
.contact-form-txtarea::placeholder
{
color: #aaa;
font-size: 1.5rem;
}

.contact-form-btn
{
margin-left: 2rem;
outline: none;
border: none;
border-radius: 5rem;
background: white;
border-style: groove;
border-color: #57A0D3;
font-size: 1.5rem;
cursor: pointer;
height: 3.5rem;
width: 15rem;
box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}
.contact-form-btn:hover{
letter-spacing: .1rem;
opacity: .9;
color: white;
background: #57A0D3;
}
.contact-form-phone
{
margin-left: 2rem;
width: 95%;
height: 40px;
color: #000;
border: 1px solid #bcbcbc;
border-radius: 50px;
outline: none;
margin-bottom: 20px;
padding: 15px;
}
.contact-form-phone::placeholder
{
color: #aaa;
font-size: 1.5rem;
}

@media(max-width:1000px){
  .contact .head-ing{
    width: 250px;
    font-size: 2.1rem;
  }

  .contact-in{
    width: 90%;
  }
  .contact-form-txtarea{
    width: 90%;
    margin-left: 1rem;
  }
  .contact-form-txt{
    width: 90%;
    margin-left: 1rem;
  }
  .contact-form-email{
    width: 90%;
    margin-left: 1rem;
  }
  .contact-form-phone{
    width: 90%;
    margin-left: 1rem;
  }
  .contact-form-btn{
    height: 3rem;
    width: 90%;
    margin-left: 1rem;
    

  }

}






