main {
  background: #f1f1f1;
}
.hero-section .para20 {
  max-width: 705px;
}
.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../images/contact-hero.png") center / cover no-repeat;
}

/* contact info section starts  */
.contact-info-section {
  margin-top: 55px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 27px;
  grid-auto-rows: 1fr;
}
.contact-wrapper .heading2 {
  font-size: 20px;
  line-height: 30px;
}
.card {
  background-color: #fff;
  padding: 15px 18px;
  display: flex;
  gap: 11px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
/* contact info section ends  */

/* contact-form-section starts  */
.contact-form-section {
  margin-top: 59px;
  padding-bottom: 110px;
}
.form-wrapper {
  display: flex;
  gap: 27px;
}
.form {
  flex: 1;
  max-width: 700px;
}
.head {
  max-width: 435px;
}
.form .para20 {
  margin-top: 19px;
}
.form form {
  margin-top: 45px;
}
.form-input {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  row-gap: 13px;
  column-gap: 10px;
}
.form-input input {
  padding: 14px 0 14px 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #4a5059;
}
.message-box {
  padding: 10px 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  outline: none;
  resize: none;
  margin-top: 17px;
  width: 100%;
  height: 138px;
}
.form .connect-btn {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  background-color: #b0a634;
  color: #fff;
  padding: 9px 22.5px 9px 22.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  transition: all 0.3s ease-in-out;
}
.form .connect-btn:hover svg {
  animation: slideFade 0.3s ease-in-out;
}
.form .connect-btn:hover{
  background-color: #E2AC55;
}

.map {
  flex: 1;
  height: 592px;
  border-radius: 4px;
  overflow: hidden;
}
.map iframe {
  height: 100%;
}
/* contact-form-section ends  */

/* map-section starts */
.map-wrapper {
  background-image: url("../images/dark-map2.png");
  /* aspect-ratio: 1248 / 416; */
  width: 100%;
  height: 416px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}
.map-section .heading2 {
  font-size: 24px;
  line-height: 36px;
  max-width: 290px;
  text-transform: uppercase;
  margin-left: 56px;
}
.map-section .para20 {
  color: #fff;
  max-width: 240px;
  margin-left: 56px;
}
/* map-section ends */

@media (max-width: 1023px) {
  .form-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .form {
    width: 100%;
  }
  .map {
    flex: none;
    width: 100%;
    height: 450px;
  }
  .map iframe {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .map-section .heading2 {
    font-size: 20px;
    line-height: 25px;
    max-width: 210px;
    margin-left: 30px;
  }
  .map-section .para20 {
    font-size: 14px;
    max-width: 210px;
    margin-left: 30px;
  }
  .map-wrapper {
  height: 250px;
  }
  .map-section .container{
    padding: 0;
  }
}
