@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

.contact-container {
  margin: 5rem 0 0;
}

h2 {
  text-align: center;
  color: #3e467b;
  line-height: 1.5;
}

textarea {
  margin: 0 0 1.5rem;
}

.cont {
  display: flex;
  justify-content: center;
  background: url(../img/contact_us.jpg);
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 !important;
  background-position: top;
  background-attachment: fixed;
}

.cont .contact-title {
  margin: 18rem auto;
}

.cont .contact-title h2 {
  font-size: 3.8rem;
  margin: 0 0 1.5rem;
  font-weight: 100;
  text-align: center;
  color: #f5f5f5;
  line-height: 1.5;
}

.cont .contact-title h3 {
  font-size: 1.6rem;
  font-weight: 100;
  text-align: center;
  color: #f5f5f5;
}

#contact-ul {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}

#contact-ul li {
  width: 30%;
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
  margin: 1rem 0 2rem;
  color: #3e467b;
  font-weight: 600;
  font-size: 1.2rem;
}

#contact-ul li p {
  width: 90%;
  font-size: 16px;
  line-height: 1.8;
  margin: 0.5rem 0;
}

#contact-ul li p a {
  font-size: 1.2rem;
  color: #ff4500;
}

.form button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: auto;
  border: none;
  outline: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  background: #3e467b;
  border-radius: 3rem;
  cursor: pointer;
  width: 10rem;
}

.form button span {
  display: block;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  justify-content: center;
  border-radius: 3rem;
  color: #f5f5f5;
  padding: 0.8rem 1rem;
  transition: all 0.3s linear;
  width: 100%;
  text-transform: uppercase;
}

.form button span:before {
  content: "";
  position: absolute;
  top: 100%;
  border: none;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff4500;
  transition: top 0.3s;
  z-index: -1;
}

.form button span {
  position: relative;
  z-index: 2;
  font-family: "calibri" !important;
  font-size: 0.9rem !important;
}

.form button:hover span:before {
  top: 0;
}

.form button:hover span {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  #contact-ul li {
    width: 45%;
  }
}

@media screen and (max-width: 500px) {
  #contact-ul {
    flex-direction: column;
  }

  #contact-ul li {
    width: 100% !important;
  }
}
