@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
  padding:0;
  margin:0;
  font-family: "Inter", sans-serif;
}
header{
  box-shadow: 0px 2px 3px #0000000b;
  padding: 20px 0;
}
.logo img{
  height: 64px;
}
section{
  background-image: url('../image/back.svg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 940px;
  padding:70px 0;
}
section .container{
  max-width:975px ;
}
section h1{
  color: #001e50;
  font-weight: 600;
}
section h2{
  margin-top: 100px;
  color: #009058;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  border-bottom: 5px solid #e5f7f0;
  padding-bottom: 15px;
  margin-bottom: 50px;
}
section h2:after{
    content: "";
    display: block;
    height: 25px;
    width: 25px;
    position: absolute;
    left: calc((100% / 2) + 7px);
    bottom: -15px;
    transform: rotate(45deg);
    border-right: 5px solid #e5f7f0;
    border-bottom: 5px solid #e5f7f0;
    background: #ffffff;
}
h2 img{
  width: 45px;
  background: #00B46D;
  border-radius: 100px;
  padding: 2px;
  margin-right: 10px;
}
section p{
  color:#001e50;
  font-weight: 300;
  font-size: 18px;
}
.frm{
  border: 5px solid #e5f7f0;
  padding: 40px 38px 38px;
  background: #fff;
  padding: 40px 38px 38px;
}
.form input{
  border-color: #009058;
  height: 47px;
  border-radius: 0;
}
.frm input:focus{
  box-shadow:none;
  border-color: #009058;
}
.bttn button{
  background: #009058;
  width: 100%;
  height: 45px;
  border: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  margin-top: 40px;
}
footer{
  background:#001E50;
}
label{
  color: #001e50;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 5px;
}
.ig{
  position: absolute;
  top: 38px;
  right: 7px;
}
.mee img{
  width: 150px;
}
.error {
    display: flex;
    padding: 6px 16px;
    color: #5f2120;
    background-color: #fdeded;
    font-size: 15px;
    margin-bottom: 50px;
}














@media(max-width:767px){
  .logo img{
    height: 44px;
  }
  section p{
    font-size: 14px;
  }
  .mee img{
    width: 100px;
  }
}