header {
  background-image: url("../images/contact-bg.jpg");
}

.contact__maps {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
}

.contact__maps iframe {
  width: 100%;
  height: 500px;
}

.contact-frame {
  width: 100%;
  height: 200px;
}

.contact__maps-info {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translate(-50%, 200px);
  z-index: 10;
  background-color: #182434;
  padding: 30px 12px;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.contact__maps-info-card {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact__maps-info-card:nth-child(2) {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.contact__maps-info-card h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}

.contact__maps-info-card img {
  width: 30px;
  height: 45px;
}

.contact__maps-info-card p {
  max-width: 250px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.contact__inner {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact__inner-info {
  width: 40%;
}

.contact__inner-info h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #182434;
}

.contact__inner-info p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #4b4f58;
}

.contact__inner-form {
  width: 100%;
  display: flex;
  gap: 50px;
}

.contact__inner-form h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #182434;
}

.contact__inner-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact__inner-form-form-group {
  display: flex;
  gap: 10px;
}

.contact__inner-form input {
  width: 100%;
  padding: 11px;
  border: 1px solid #ddd;
  color: #666;
  background-color: #fafafa;
  outline: none;
  font-family: "Poppins", sans-serif;
}

.contact__inner-form textarea {
  width: 100%;
  height: 150px;
  padding: 11px;
  border: 1px solid #ddd;
  color: #666;
  background-color: #fafafa;
  outline: none;
  font-family: "Poppins", sans-serif;
  resize: none;
}

.contact__inner-form button {
  width: 100%;
  padding: 11px;
  background-color: #cba557;
  border-radius: 5px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border: none;
  cursor: pointer;
  outline: none;
}

.contact__inner-form button:hover {
  background-color: #d29d33;
}

@media (max-width: 568px) {
  /* changes */
  .contact__maps-info-card img {
    width: 16px !important;
    height: 25px !important;
  }

  .contact__maps-info-card h3 {
    font-size: 15px !important;
  }

  .contact__maps-info-card p {
    font-size: 10px;
  }
  /*  */

  .contact__inner {
    display: block;
  }

  .contact__inner-info {
    width: 100%;
  }

  .contact__inner-form {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .contact-frame {
    height: 100px;
  }
}

@media ((min-width: 577px) and (max-width: 768px)) {
  .contact__inner {
    display: block;
  }

  .contact__inner-info {
    width: 100%;
  }

  .contact__inner-form {
    width: 100%;
    flex-wrap: wrap;
  }

  .footer__inner-logo .divider {
    margin: auto;
  }

  .contact__inner-description {
    margin-bottom: 20px;
  }
}
