  
body {
  font-family: 'inter';
  color: rgb(0, 0, 0);
  background: #FCFCFC;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#Section-one {
  width: 100%;
  height: 100%;
  background: url("../images/page-5 (Contact us)/section-1/background.svg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
#Section-one .container {
  padding-top: 100px;
}
.Section-one .container-inner {
  margin: auto;
  padding-block: 4em;
}
.Section-one h1 {
  width: 80%;
  margin: auto;
  margin-bottom: 0.5em;
  font-family: 'Inter';
  font-style: normal;
  font-weight: bold;
  font-size: 56px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #FFFFFF;  
}
.Section-one p {
  width: 80%;
  margin: auto;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;  
}
@media (max-width: 992px) {
  .Section-one h1 {
    font-size: 42px;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  .Section-one p {
    text-align: left;
    margin: 0;
    padding-top: 1em;
    width: auto;
  }
}







/*--------------------------------------------------------------
# Section-two
--------------------------------------------------------------*/
.Section-two {
  width: 100%;
  height: auto;
  background: url("../images/page-5 (Contact us)/section-1/bg.svg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
.Section-two .container {
  background: white;
  margin-block: 5em;
  height: auto;
  border-radius: 20px;
  margin-inline: 15em;
}
.contact-form {
  padding: 3em;
}
.contact-form span {
  color: red;
}
.contact-form p {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #6A737E;
}
.contact-form input, .contact-form select {
  background: #F5F6FF;
  border: none;
  height: 3.5em;
  border-radius: 5px;
}
.contact-form textarea {
  background: #F5F6FF;
  border: none;
  border-radius: 5px;
}
.contact-form input:hover, .contact-form textarea:hover, .contact-form select:hover {
  background: #E4F2FF;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  box-shadow: none;
  border: 1.5px double #0074E4;
  background: #E4F2FF;
} 
.form-control {
  margin-bottom: 1em;
  margin-top: 0.25em;
}
.contact-form button {
  background: #0074E4;
  border-radius: 5px;
  border: none;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;  
  margin-top: 1.5em;
  padding: 0.75em;
  padding-inline: 4em;
}
.contact-form button:hover {
  box-shadow: 10px 10px 24px rgba(24, 94, 161, 0.23);
}
.contact-form button:active {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #0074E4;
}
@media (max-width: 992px) {
  .contact-form {
    padding: 0;
    padding-top: 3em;
  }
  .Section-two .container {
    margin-inline: 1em;
    padding-bottom: 3em;
  }
  .contact-form button {
    width: -webkit-fill-available;
    margin-inline: 0.75em;
  }
}



