main {
  margin-bottom: 100px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  background-color: var(--border);
  margin-bottom: 100px;
  h1 {
    font-size: 48px;
    font-weight: 300;
  }
  .breadcrumb {
    a,
    span {
      font-size: 12px;
    }
    a {
      text-decoration: none;
      color: var(--text-gray);
    }
  }
}

form {
  [class*="col-"] {
    padding-bottom: 12px;
  }

  input,
  textarea {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    height: 46px;
    padding: 0 12px;
    width: 100%;
  }
  textarea {
    height: 135px;
  }

  input::placeholder,
  textarea::placeholder {
    color: var(--text-gray);
    direction: rtl;
    text-align: right;
    font-size: 14px;
  }

  input[type="submit"] {
    background-color: var(--text);
    color: var(--white);
    border: none;
    text-align: center;
    max-width: 120px;
  }
}

.section-title {
  display: block;
  position: relative;
  z-index: 1;
  direction: rtl;
  text-align: right;
  padding: 24px 0;
  h3 {
    font-weight: normal;
    padding: 0 12px;
    width: fit-content;
    position: relative;
    font-size: 24px;
    display: block;
    background-color: var(--white);
    direction: rtl;
    text-align: right;
    z-index: 2;
  }
}

.section-title::before {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
  background-color: var(--border);
}

.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  img {
    position: absolute;
    width: 100%;
    height: auto;
  }
}

.contact-info {
  h6 {
    font-size: 18px;
    font-weight: normal;
    margin: 12px 0 6px;
  }
  span {
    color: var(--text-gray);
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header {
    margin-bottom: 0;
  }
}
