/* =========================
   BOTAKE CONTACT PAGE
   Reference Design Style
========================= */

.contact-hero {
  background:
    linear-gradient(
      90deg,
      rgba(250, 248, 242, 0.98) 0%,
      rgba(250, 248, 242, 0.82) 45%,
      rgba(250, 248, 242, 0.3) 70%
    ),
    url("https://lh3.googleusercontent.com/d/1tOVP9lkQGq5wLPDWkrpj9tdXPUM_pB88");

  background-size: cover;
  background-position: center right;

  padding: 70px 0;

  border-bottom: 1px solid #eee;
}

.contact-hero .container-fluid {
  max-width: 1320px;

  padding-left: 50px;
  padding-right: 50px;
}

.contact-hero-content h1 {
  margin-bottom: 12px;

  color: #111;

  font-size: 30px;
  font-weight: 600;
}

.contact-hero-content h6 {
  margin-bottom: 0;

  color: #111;

  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-hero-content h6 a {
  color: #111;
  text-decoration: none;
}

.contact-hero-content h6 span {
  margin: 0 8px;

  color: #00935d;

  font-size: 8px;
}

/* Main contact section */

.botake-contact-page {
  padding-top: 80px;

  background: #fff;
}

.botake-contact-page .container-fluid {
  max-width: 1320px;

  padding-left: 50px;
  padding-right: 50px;
}

/* Main contact box */

.contact-box {
  display: grid;

  grid-template-columns: 1fr 1fr;

  max-width: 1060px;

  margin: 0 auto 80px;

  overflow: hidden;

  border: 1px dashed #d8d8d8;
  border-radius: 5px;
}

/* Left information panel */

.contact-left {
  min-height: 470px;

  background:
    linear-gradient(
      rgba(20, 25, 22, 0.72),
      rgba(20, 25, 22, 0.72)
    ),
    url("https://lh3.googleusercontent.com/d/1cq0aORQuyeSZcSRA1Lddt63iviGdKl2T");

  background-size: cover;
  background-position: center;
}

.contact-left-overlay {
  height: 100%;

  padding: 45px 48px;

  color: #fff;
}

.contact-left h2,
.contact-right h2 {
  margin-bottom: 12px;

  font-size: 26px;
  font-weight: 600;
}

.contact-left > .contact-left-overlay > p,
.contact-right > p {
  margin-bottom: 28px;

  font-size: 15px;
  line-height: 1.7;
}

.contact-left > .contact-left-overlay > p {
  color: rgba(255, 255, 255, 0.92);
}

/* Contact-detail items */

.contact-detail {
  display: grid;

  grid-template-columns: 45px 1fr;

  gap: 14px;

  margin-bottom: 18px;

  align-items: start;
}

.contact-detail-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  color: #00935d;
  background: rgba(255, 255, 255, 0.88);

  border-radius: 5px;

  font-size: 15px;
}

.contact-detail h5,
.contact-social h5 {
  margin-bottom: 4px;

  color: #fff;

  font-size: 15px;
  font-weight: 600;
}

.contact-detail p {
  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.86);

  font-size: 15px;
  line-height: 1.5;
}

/* Social links */

.contact-social {
  margin-top: 20px;
}

.social-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px 18px;

  margin-top: 12px;
}

.social-grid a {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #fff;

  font-size: 14px;
  text-decoration: none;
}

.social-grid i {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  background: rgba(255, 255, 255, 0.18);

  border-radius: 5px;
}

/* Right form panel */

.contact-right {
  padding: 45px 48px;

  background: #fff;
}

.contact-right h2 {
  color: #111;
}

.contact-right > p {
  color: #777;
}

/* Form labels */

.contact-right label {
  display: block;

  margin-bottom: 6px;

  color: #111;

  font-size: 15px;
  font-weight: 600;
}

/* Form inputs */

.contact-right .form-control {
  width: 100%;
  height: 38px;

  padding: 8px 10px;

  color: #111;
  background: #fff;

  border: 1px solid #ddd !important;
  border-radius: 5px !important;
  box-shadow: none !important;

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-right .form-control::placeholder {
  color: #858c99;
  opacity: 1;
}

.contact-right textarea.form-control {
  height: 110px;
  min-height: 110px;

  resize: vertical;
}

.contact-right .form-control:focus {
  border-color: #00935d !important;

  box-shadow:
    0 0 0 3px
    rgba(0, 147, 93, 0.1) !important;

  outline: none;
}

/* Hide Web3Forms spam field */

.web3forms-botcheck {
  position: absolute !important;

  left: -9999px !important;

  width: 1px !important;
  height: 1px !important;

  opacity: 0 !important;

  pointer-events: none !important;
}

/* Send button */

.contact-send-btn {
  padding: 11px 28px;

  color: #fff;
  background: #00935d;

  border: none;
  border-radius: 5px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.contact-send-btn:hover {
  background: #087a51;
}

.contact-send-btn:active {
  transform: translateY(1px);
}

.contact-send-btn:disabled {
  cursor: not-allowed;

  opacity: 0.65;
}

/* Web3Forms response messages */

.contact-form-result {
  display: none;

  margin-top: 15px;
  padding: 11px 14px;

  border-radius: 5px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-result:not(:empty) {
  display: block;
}

.contact-form-sending {
  color: #5f4700;
  background: #fff6d8;

  border: 1px solid #eed88b;
}

.contact-form-success {
  color: #08653f;
  background: #e8f8f0;

  border: 1px solid #9bd7ba;
}

.contact-form-error {
  color: #9b1c1c;
  background: #fff0f0;

  border: 1px solid #efb0b0;
}

/* Full-width map */

.contact-map-full {
  width: 100%;

  filter: grayscale(100%);

  border-top: 1px solid #eee;
}

.contact-map-full iframe {
  display: block;

  width: 100%;

  border-radius: 0 !important;
}

/* Tablet */

@media (
  min-width: 768px
) and (
  max-width: 991px
) {
  .contact-left-overlay,
  .contact-right {
    padding: 35px 28px;
  }

  .contact-box {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .contact-hero {
    padding: 45px 0;

    background-position: center;
  }

  .contact-hero .container-fluid,
  .botake-contact-page .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-hero-content h1 {
    font-size: 26px;
  }

  .botake-contact-page {
    padding-top: 45px;
  }

  .contact-box {
    grid-template-columns: 1fr;

    margin-bottom: 45px;
  }

  .contact-left {
    min-height: auto;
  }

  .contact-left-overlay,
  .contact-right {
    padding: 30px 22px;
  }

  .contact-left h2,
  .contact-right h2 {
    font-size: 22px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-map-full iframe {
    height: 320px;
  }
}