.hero-contact {
  background-image: url(./images/contact.webp);
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: right;
  display: flex;
  align-items: center;
}
.content-contact-hero {
  width: 60%;
  padding: 0px 0px 0px 190px;
  color: white;
}
.content-contact-hero h1 {
  font-size: 55px;
}
.content-contact-hero h4 {
  font-size: 26px;
  padding: 20px 0px 0px 0px;
  line-height: 38px;
  font-weight: 200;
}
.cards-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 100px 0px;
  gap: 10px 20px;
}
.card-contact {
  width: 330px;
  height: 220px;
  background: rgb(0, 125, 195);
  background: linear-gradient(
    135deg,
    rgba(0, 125, 195, 1) 0%,
    rgba(109, 194, 242, 1) 100%
  );
  border-radius: 10px;
  padding: 35px 15px 0px 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 100px 100px 80px rgba(0, 0, 0, 0.07);
}
.card-contact h1 {
  font-size: 33px;
  color: white;
  font-weight: 500;
}
.card-contact p {
  font-size: 18px;
  color: white;
  font-family: "Hou-lig";
  padding: 10px 0px;
}
.card-contact a {
  padding: 10px 0px;
  text-decoration: none;
  color: white;
  font-size: 16px;
}
.sales-form {
  height: 100%;
  width: 100%;
  color: white;
  display: flex;
}
.form-container {
  width: 70%;
  height: 100%;
  background-color: black;
  padding: 80px 180px 30px 80px;
}
.form-container h1 {
  font-size: 33px;
  font-weight: 500;
}
.form-container p {
  font-size: 18px;
  padding: 10px 0px;
  line-height: 26px;
}
form {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px 0px;
}
input:focus {
  outline: none;
}
input {
  border: none;
  background-color: transparent;
  color: white;
  border-bottom: 1px solid white;
  font-size: 20px;
  padding: 15px;
  margin: 15px 0px;
}
#submit {
  background-color: #0f1b2a;
  width: 200px;
  min-width: 150px;
  border: none;
}
#submit:hover{
  background-color: grey;
}
#terms {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
#e {
  padding: 0px 10px;
  font-size: 18px;
  vertical-align: middle;
}
.name-holder {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ipt-cm {
  width: 60%;
  min-width: max-content;
}
.image-holder-form {
  width: 30%;
  height: auto;
}
.image-holder-form img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}
.loc-head {
  padding: 60px 0px 10px 80px;
}
.loc-head > h1 {
  font-size: 40px;
}
.line-loc {
  width: 10ch;
  height: 2px;
  background-color: #292f80;
}
.locations > h5 {
  font-size: 28px;
  font-weight: 500;
  padding: 10px 80px;
}
.locations-bg {
  width: 100%;
  height: 40vh;
  position: relative;
}
.box-hol {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.box-stat {
  width: 300px;
  height: auto;
  position: relative;
  top: -170px;
  margin: 20px auto;
}
.img-box {
  position: relative;
}
.img-box h3 {
  color: white;
  font-size: 28px;
  font-weight: 500;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.contact-info {
  display: flex;
  width: 100%;
  height: auto;
}
.contact-info-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  background-color: #efeefe;
}
.contact-info-heading > h1 {
  font-size: 33px;
}
.contacts-main {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  background-color: #efefef;
}
.c-c-all {
  width: 300px;
  height: 200px;
  padding: 20px;
  margin-right: 30px;
}
.c-c-all h1 {
  font-size: 22px;
  padding: 10px 0px;
}
.c-c-all h4 {
  font-size: 18px;
    text-transform: capitalize;
  font-weight: 100;
  padding: 2px 0px;
}
@media screen and (max-width: 1200px) {
  .content-contact-hero {
    padding: 0px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .name-holder {
    width: 100%;
  }
  .content-contact-hero h4 {
    width: 60%;
  }
}
@media screen and (max-width: 1000px) {
  input {
    width: 60%;
    min-width: max-content;
  }
  .image-holder-form {
    display: none;
  }
  .form-container {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .contact-info {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  .contact-info-heading {
    height: 250px;
    width: 100%;
  }
  .contacts-main {
    width: 100%;
  }
  .c-c-all {
    width: 100%;
    padding: 20px 40px;
    margin-right: auto;
  }
  .form-container {
    width: 100%;
    height: 100%;
    background-color: black;
    padding: 80px 40px 30px 40px;
  }
  .locations > h5 {
    font-size: 28px;
    font-weight: 500;
    padding: 10px 40px;
  }
  .loc-head {
    padding: 40px 0px 10px 40px;
  }
}
@media screen and (max-width:426px){
  .content-contact-hero {

    padding: 150px 50px;
}
.content-contact-hero h1 {
  font-size: 32px;
}
.content-contact-hero h4 {
  width: 80%;
}
.hero-contact {
  height: 100%;
}
}
@media screen  and (max-width:326px){
  .cards-contact {

    margin: 50px 0px;

}
.content-contact-hero {
  padding: 100px 0px;
}
.card-contact {
  width: 300px;
}
.loc-head {
  padding: 20px 0px 10px 20px;
}
.loc-head > h1 {
  font-size: 32px;
}
.locations > h5 {
  font-size: 26px;
  font-weight: 500;
  padding: 10px 20px;
}
}
