footer{
  margin: 0;
}
header{
  background-color: #000;
}
header a ,.globe-icon{
  color: #fff;
}
section {
  width: 100%;
  min-height: 800px;
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
  flex-wrap: wrap-reverse;
    background: url("../images/contact.svg") no-repeat center / cover;
        margin-top: 100px;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
section > div {
  width: 30%;
  min-width: 400px;
  height: 400px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}
section h1 {
  width: 100%;
  height: 100px;
  font-size: clamp(18px, 7vw, 32px);
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  color: #000;
      max-width: 340px;
}

section h1 span:last-child {
  color: #000;
  font-weight: bold;
}
section p {
  color: #494C5E;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 400;
      max-width: 280px;

}
section .contact-info {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 200px;
  font-size: 16px;
  font-weight: 400;
  color: #494C5E;
}

.contact-info span:first-child {
  color: #000;
  margin-right: 10px;
}

form {
  width: 60%;
  min-height: 500px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);border-radius: 35px;
  box-shadow: 0 0 10px #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  min-width: 400px;
  flex-wrap: wrap;
  padding: 20px 0;
}
form>div{
  width: 45%;
  height: 90px;
  display: flex;
  justify-content: space-evenly;
  min-width: 250px;
}

form div>span{
  width: 30px;
  height: fit-content;
  margin: 45px 5px;
}
form>div>div{
  width: 85%;
  height: 100%;
  display: flex;
  flex-direction: column;
justify-content: space-between;
}
form input ,select{
  width: 100%;
  height:60px ;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: gray;
    border: 2px solid #e0dfdf;  outline: none;
}
form label{
  width: 100%;
  font-size: 18px;
  font-weight: 400;
    font-family: 'Inter', sans-serif;

}
form button{
  width: 90%;
  cursor: pointer;
  height: 50px;
  border: none;
  background-color: #D62130;
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
}
form p {
  width: 100%;
  text-align: center;
  color: #C4C4C4;
  font-size:18px ;
  font-weight: 500;
}
@media (max-width:1000px) {
  form,section > div{
    width: 95%;
    min-width: 95%;
   margin: 10px;
  }
  form>div{
        width: 90%;
    min-width: 90%;
        margin: 20px 0;
  }
  section{
        background: url("../images/contact\ us\ page.svg") no-repeat center / cover;
  }
}