.banner-contact {
  position: relative;
  width: 100%;
  min-height: 440px;
  background: url(../images/slider-2.webp) no-repeat center center !important;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  justify-content: space-between;

  overflow: hidden;
  background-color: #000000;

  background-size: cover !important;
  height: 300px;
  position: relative;
  z-index: 2;
  padding: 50px 80px;
}

.contact-main-x1 {
  width: 100%;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.contact-wrapper-x1 {
  width: 100%;
  max-width: 1300px;
  display: flex;
  gap: 20px;
  margin: 0 auto;
}

/* BOTH SIDES SAME WIDTH */
.contact-left-x1,
.contact-right-x1 {
  width: 50%;
  min-width: 0;
}

/* LEFT */

.contact-form-x1 {
  border: 2px solid #3bc3d1;
  border-radius: 10px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 10px;
  padding-right: 30px;
}
.row-x2 {
  width: 85%;
  margin: 0 auto;
}
.contact-left-x1 h2 {
  margin-bottom: 10px;
  font-size: 52px;
  font-weight: 500;
  color: #161c1d;
}

.contact-form-x1 label {
  display: block;
  margin-bottom: 7px;
  color: #0d1427;
  font-family: "IBM Plex Sans", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}

.contact-form-x1 input,
.contact-form-x1 textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form-x1 textarea {
  height: 120px;
  resize: none;
}

.contact-form-x1 button {
  padding: 10px 28px 14px;
  background: #3970ff;
  font-size: 14px;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* FORM ROW */
.row-x1 {
  width: 85%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
.row-x1 span{
  color: red;
}
.row-x2 span{
  color: red;
}

.row-x1 > div {
  width: 50%;
}
.row-x1 input {
  background-color: #f6f7fa;
  height: 30px;
  border: none;
}
.row-x2 input {
  background-color: #f6f7fa;
  height: 30px;
  border: none;
}
.row-x2 textarea {
  background-color: #f6f7fa;

  border: none;
}

/* RIGHT */

.map-box-x1 iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.info-box-x1 {
  margin-top: 50px;
}

.info-box-x1 p {
  font-size: 24px;
  color: #161c1d;
  padding: 20px 0;
}

.info-box-x1 span {
  display: block;
  font-size: 18px;
  color: #161c1d;
}

/* SOCIAL */
.social-x1 {
  padding: 20px;
}
.social-x1 a {
  margin-right: 10px;
  font-size: 18px;
  padding: 10px;
}
.social-x1 i {
  color: #000;
}
/* CONTACT ROW */
.contact-row-x1 {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.contact-item-x1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item-x1 a {
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #fff;
}
.contact-item-a1 h5 {
  font-size: 24px;
  font-weight: 300;
  color: #161c1d;
}

/* ================= TABLET (<= 992px) ================= */
@media (max-width: 992px) {
  .contact-wrapper-x1 {
    flex-direction: column; /* LEFT upar, RIGHT niche */
  }

  .contact-left-x1,
  .contact-right-x1 {
    width: 100%;
  }

  .contact-left-x1 h2 {
    font-size: 40px;
  }

  .row-x1 {
    gap: 20px;
  }
  .contact-form-x1 {
    width: 92%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .row-x1,
  .row-x2 {
    width: 100%;
  }
  .map-box-x1 iframe {
    width: 96%;
    height: 320px;
  }
  .row-x1 input {
    width: 90%;
    
  }
  .row-x2 input {
    width: 95%;
   
  }
  .row-x2 textarea {
    width: 95%;
    
  }
}

/* ================= MOBILE (<= 576px) ================= */
@media (max-width: 576px) {
  .contact-main-x1 {
    padding: 50px 15px;
  }

  .contact-left-x1 h2 {
    font-size: 28px;
  }

  /* FORM rows stack */
  .row-x1 {
    flex-direction: column;
  }

  .row-x1 > div {
    width: 90%;
  }

  .row-x2 {
    width: 90%;
  }
  .row-x2 input {
    margin-left: -20px;
  }
  .row-x2 textarea {
    margin-left: -20px;
  }

  .row-x2 label {
    margin-left: -20px;
  }

  /* Contact row stack */
  .contact-row-x1 {
    flex-direction: column;
    gap: 15px;
  }

  /* Map height adjust */
  .map-box-x1 iframe {
    width: 93%;
    height: 220px;
  }

  /* Text size thoda small */
  .info-box-x1 p {
    font-size: 18px;
    padding: 10px 0;
  }

  .info-box-x1 span {
    font-size: 14px;
  }
  .contact-form-x1 {
    width: 86%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
