.contact-section {
  width: 100%;
  background: #2c3e6b;
  padding: 25px 0;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  width: 80%;
  max-width: 1920px;
  margin: 0 auto;
  background: #f9a61a;
  border-radius: 30px;
  padding: 50px 80px 50px 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

/* ================= LEFT IMAGES ================= */

.contact-images {
  position: absolute;
  left: -120px;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 60%;
  height: 100%;
}

.contact-img-box {
  width: 50%;
  border-radius: 30px;
  overflow: hidden;
}

.contact-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================= RIGHT CONTENT ================= */

.contact-content {
  width: 50%;
  color: #111;
}

.contact-small-title,
.contact-main-title {
  font-size: 28px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  margin: 0;
}

.contact-subtext {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-desc {
  font-size: 15px;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1.5px solid #000;
  background: transparent;
  font-size: 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #000;
}

.contact-btn {
  background: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #000;
  color: #fff;
}

/* ================= 1440px ================= */

@media (max-width: 1440px) {

  .contact-images {
    left: -90px;
    gap: 30px;
  }
}

/* ================= 1024px ================= */

@media (max-width: 1024px) {
  .contact-wrapper {
    padding: 60px 40px 60px 120px;
  }

  .contact-images {
    left: -70px;
    width: 50%;
    gap: 20px;
  }

  .contact-content {
    width: 55%;
  }

  .contact-main-title {
    font-size: 26px;
  }
}

/* ================= 768px ================= */

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 60px 30px;
    text-align: center;
  }

  .contact-images {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    justify-content: center;
  }

  .contact-img-box {
    width: 45%;
  }

  .contact-content {
    width: 100%;
  }
}

/* ================= 575px ================= */

@media (max-width: 575px) {
  .contact-wrapper {
    padding: 40px 20px;
  }

  .contact-images {
    flex-direction: column;
    gap: 20px;
  }

  .contact-img-box {
    width: 100%;
  }

  .contact-main-title {
    font-size: 22px;
  }

  .contact-small-title {
    font-size: 18px;
  }

  .contact-btn {
    width: 100%;
  }
}
