@charset "utf-8";

/* ==========================================
  Contact Section Styles
========================================== */

.bz-contact {
  background-image: url("../../../img/contact_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  padding: 3.75rem 0;
  color: var(--color__white);
  margin-top: -1px;
  margin-top: -0.0625rem;
}

.bz-contact__inner {
  width: 87%;
  margin: auto;
}

.bz-contact__body {
  border-radius: 20px;
  border-radius: 1.25rem;
  background: #0a0e18b2;
  padding: 40px 10px;
  padding: 2.5rem 0.625rem;
}

.bz-contact__body p {
  color: var(--color__white);
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.bz-contact__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bz-contact__cta-btn {
  display: flex;
  color: var(--color__white);
  width: 315px;
  width: 19.6875rem;
  height: 58px;
  height: 3.625rem;
  border-radius: 88.235px;
  border-radius: 5.5146875rem;
  background: #255ff4;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.bz-contact__cta-btn:last-child {
  margin-bottom: 0;
}

/* Media Queries
------------------------------ */
@media (min-width: 768px) {
  .bz-contact {
    background-image: url("../../../img/contact_bg-pc.jpg");
  }

  .bz-contact__inner {
    max-width: 800px;
    margin: auto;
  }

  .bz-contact__body {
    padding: 50px 30px;
    padding: 3.125rem 1.875rem;
  }

  .bz-contact__body p {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .bz-contact__cta-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    gap: 1rem;
  }
}
