*{
  font-family: 'Gotham';
  margin: 0 auto;
  padding: 0;
}

body{
  background-color: #f7d0cc;
}

.nav{
  overflow: hidden;
  background-color: #f7d0cc;
  position: fixed;
  top: 0;
  width: 100%;
}

.overlap{
  position: relative;
}

.white{
  width: 350px;
}

.logo{
  position: absolute;
  width: 130px;
  top:25px;
  left: 50px;
}

.nav a{
  font-family: 'gotham medium';
  float: right;
    display: block;
    color: #0040a1;
  text-align: center;
    padding: 45px 30px;
    text-decoration: none;
    font-size: 15px;
}

.line::after{
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0040a1;
  transition: width .3s;
}

.line:hover::after{
  width: 100%;
  transition: width .3s;
}


.title h1{
  font-size: 40px;
  position: relative;
  display: block;
  color:#0040a1;
  top: 180px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact{
  position: relative;
  display: flex;
}

.contact-img{
  position: absolute;
  max-width: 10px;
  top:250px;
  left: 150px;
}

.ig{
  width: 50px;
  padding: 25px;
}

.email{
  width: 50px;
  padding: 25px;
}

.behance{
  width: 50px;
  padding: 25px;
}

.contact-ig{
  position: absolute;
  line-height: 1.5;
  top:280px;
  left: 270px;
}

.contact-email{
  position: absolute;
  line-height: 1.5;
  top:385px;
  left: 270px;
}

.contact-behance{
  position: absolute;
  line-height: 1.5;
  top:492px;
  left: 270px;
}

.contact h5{
  color: #0040a1;
  font-size: 16px;
}

.contact p{
  color: #e65f4f;
  font-size: 14px;
}



.wrapper{
  position: absolute;
  display: flex;
  top: 320px;
  right:180px;
}

.wrapper .input_field{
  margin-bottom: 15px;
}

.wrapper .input_field input[type="text"],
.wrapper textarea{
  border: 2px solid #0040a1;
  border-radius: 10px;
  background-color: transparent;
  width: 300px ;
  padding: 10px;
  color: #e65f4f;
}

.wrapper textarea{
  resize: none;
  height: 80px;
  color: #0040a1;
}


.wrapper .btn input[type="submit"]{
  border: 2px solid #0040a1;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  width: 140px;
  background-color: transparent;
  color: #0040a1;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
}

#error_message{
  margin-bottom: 20px;
  background: #fe8b8e;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  transition: all 0.5s ease;
}

.footer{
  background-color: white;
  position: relative;
  display: block;
  top:700px;
  padding: 25px;
}

.footer-text p{
  color: #0040a1;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  justify-content: center;
}



