/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.contact-form {
  padding: 50px 20px;
  width: 100%;
  background-color: #f58220;
}
.contact-form__title {
  text-align: center;
}
.contact-form .form {
  width: 100%;
  margin: 30px auto 0;
}
.contact-form .form__checkbox-text span {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: 80px;
    background-color: hsl(0, 0%, 100%);
  }
  .contact-form .form {
    width: 70%;
    margin: 50px auto 0;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.contact {
  padding: 0 0 80px 0;
  background-color: #212121;
}
.contact .breadcrumb__text {
  color: hsl(0, 0%, 100%);
}
.contact .page-title {
  color: hsl(0, 0%, 100%);
}
.contact__branches {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
}
.contact__branches__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 0 0;
  width: 100%;
  gap: 30px;
}
.contact__branches__item:first-child {
  padding: 0 0 50px 0;
  border-bottom: 1px solid #3f3f3f;
}
.contact__branches__item:first-child::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: calc(50% - 15px);
  width: 30px;
  height: 40px;
  background-image: url("/assets/svg/brand-minimal-logo.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact__branches__item__title {
  color: hsl(0, 0%, 100%);
  letter-spacing: 0.26px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
  text-align: center;
}
.contact__branches__item__desc {
  text-align: center;
}
.contact__branches__item__desc p {
  color: hsl(0, 0%, 100%);
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  letter-spacing: 0.16px;
}
.contact__branches__item__desc a {
  color: hsl(0, 0%, 100%);
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  text-decoration: underline;
  letter-spacing: 0.16px;
}
.contact__branches__item__button {
  position: relative;
  cursor: pointer;
  padding: 1em 2em;
  margin: 0 auto;
  color: hsl(0, 0%, 100%);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 0 0 150px 0;
    border-bottom: 0.4px solid #9d9d9d;
  }
  .contact__branches {
    padding: 60px 0;
  }
  .contact__branches__item {
    padding: 0 0 0 100px;
  }
  .contact__branches__item:first-child {
    padding: 0 100px 0 0;
    border: 0;
    border-right: 1px solid #3f3f3f;
  }
  .contact__branches__item:first-child::after {
    content: "";
    position: absolute;
    top: 42%;
    right: -15px;
    width: 30px;
    height: 40px;
    background-image: url("/assets/svg/brand-minimal-logo.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .contact__branches__item {
    width: 50%;
  }
  .contact__branches__item__title {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 28px;
    line-height: 1.75rem;
    text-align: start;
  }
  .contact__branches__item__desc {
    text-align: start;
  }
  .contact__branches__item__button {
    margin: 0 auto 0 0;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal-wrapper {
  position: relative;
  width: 100%;
  height: 90%;
  background: #fff;
  overflow: hidden;
  padding: 20px 0;
}
.modal-wrapper .content {
  overflow: auto;
  padding: 0 30px 0 0;
  margin: 30px 0 0 0;
}
.modal-wrapper .content h2 {
  margin-top: 0;
}
.modal-close {
  position: absolute;
  top: 25px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal-wrapper {
    width: 70%;
    padding: 50px;
  }
}