@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: "Montserrat", sans-serif;
}

.banner-1 {
  background-image: url(./assets/assets2.0/vecteezy_professional-woman-providing-support_1226972.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20rem;
}

.banner-1 h1 {
  color: white;
  font-weight: 900;
  font-size: 3rem;
}

@media (max-width: 430px) {
  .banner-1 {
    margin-top: 3rem;
    height: 15rem;
  }
  .banner-1 h1 {
    font-size: xx-large;
    text-align: center;
  }
}

.get-in-touch-heading h1 {
  text-align: center;
  margin-top: 3rem;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.get-in-touch-sections {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.section-1 {
  width: 50%;
  text-align: center;
}

.section-1 img {
  width: 70%;
}

.section-2-form {
  width: 50%;
  text-align: center;
  border: 0px solid black;
  background-color: #f0eeee;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 10px 10px 5px rgb(127, 136, 139);
}

.zcwf_col_fld #First_Name {
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  min-height: 47px;
  padding: 6px 16px;
  border: 1px solid rgb(43, 43, 162);
  width: 80%;
}

.zcwf_col_fld #Last_Name {
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  min-height: 47px;
  padding: 6px 16px;
  border: 1px solid rgb(43, 43, 162);
  width: 80%;
}

.zcwf_col_fld #Email {
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  min-height: 47px;
  padding: 6px 16px;
  border: 1px solid rgb(43, 43, 162);
  width: 80%;
}

.zcwf_col_fld #Phone {
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  min-height: 47px;
  padding: 6px 16px;
  border: 1px solid rgb(43, 43, 162);
  width: 80%;
}

.zcwf_col_fld #formsubmit {
  background-color: #ff6900 !important;
  font-family: "Rubik", Sans-serif;
  color: white;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 20px 20px 20px 20px;
  font-size: 15px;
  width: 80%;
  height: 40px;
  margin-top: 10px;
  padding: 0px;
  border: 0px solid black;
}

@media (max-width: 321px) {
  .zcwf_col_fld #formsubmit {
    width: 85%;
  }
}

@media (max-width: 790px) {
  .get-in-touch-sections {
    display: block;
    width: 90%;
  }
  .section-1 {
    width: 90%;
    margin: 0 auto;
  }
  .section-2-form{
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 430px){
  .get-in-touch-heading h1 {
    font-size: 30px;
  }
  .section-1 img{
    width: 90%;
  }
}

.secure {
  margin-top: 1rem;
}
.secure img {
  width: 100%;
}

.second_scroll {
  background-color: white;
}

.second_scroll h1 {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 45px;
}

@media (max-width: 431px) {
  .second_scroll h1 {
    padding: 25px;
  }
}

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.brands .logos img {
  width: 100%;
}

.brands2 {
  display: none;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  gap: 15px;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.brands2 .logos img {
  width: 100%;
}

@media (max-width: 1025px) {
  .brands {
    display: none;
  }
  .brands2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
    padding-bottom: 2rem;
  }
  .second_scroll h1 {
    width: 100%;
    padding: 30px;
  }
}

footer {
  background-color: #0170b9;
  padding: 12px;
}

footer p {
  text-align: center;
  color: white;
}
