/* Contacts page +++ */
.oc-contacts-page {
  color: #173913;
  background: #fff;
}

.oc-contacts-hero {
  padding: 28px 0 58px;
  background: #fff;
}

.oc-contacts-head {
  margin-bottom: 28px;
  text-align: center;
}

.oc-contacts-head h1 {
  margin: 0 0 24px;
  color: #173913;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.oc-contacts-head p {
  margin: 0;
  color: #173913;
  font-size: 15px;
  line-height: 1.15;
}

.oc-contact-cards {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

.oc-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 12px;
  border: 1px solid #dbe7dc;
  border-radius: 3px;
  background: #fff;
}

.oc-contact-card__phone {
  color: #173913;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.oc-contact-card__phone:hover,
.oc-contact-card__phone:focus {
  color: #3B741E;
  text-decoration: none;
}

.oc-contact-card__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.oc-contact-card__social .oc-social-link img,
.oc-contact-social__links .oc-social-link img {
  display: block;
  width: 32px;
  height: 32px;
}

.oc-contact-form-section {
  padding: 52px 0;
  background: #f7f9f7;
}

.oc-contact-form-head {
  margin-bottom: 28px;
  text-align: center;
}

.oc-contact-form-head h2 {
  margin: 0 0 24px;
  color: #3B741E;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.oc-contact-form-head p {
  margin: 0;
  color: #173913;
  font-size: 14px;
  line-height: 1.15;
}

.oc-contact-form {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

.oc-contact-form .form-control {
  height: 38px;
  border: 1px solid #dbe7dc;
  border-radius: 2px;
  background: #fff;
  color: #173913;
  font-size: 14px;
  box-shadow: none;
}

.oc-contact-form .form-control::placeholder {
  color: #8da08b;
}

.oc-contact-form .form-control:focus {
  border-color: #9cbb9d;
  box-shadow: none;
}

.oc-contact-form__submit {
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 3px;
  background: #3B741E;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
}

.oc-contact-form__submit:hover,
.oc-contact-form__submit:focus,
.oc-contact-form__submit:active,
.oc-contact-form__submit:active:focus {
  background: #2f5f18;
  color: #fff;
  box-shadow: none;
  outline: none;
}

.oc-contact-social-section {
  padding: 16px 0 54px;
  background: #fff;
}

.oc-contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 84px;
}

.oc-contact-social__location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-size: 15px;
}

.oc-contact-social__location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #e7f0e7;
}

.oc-contact-social__location-icon img {
  width: 20px;
  height: 20px;
}

.oc-contact-social__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .oc-contacts-hero {
    padding: 24px 0 36px;
  }

  .oc-contacts-head h1 {
    margin-bottom: 16px;
    font-size: 30px;
  }

  .oc-contacts-head p br,
  .oc-contact-form-head p br {
    display: none;
  }

  .oc-contact-card {
    margin-bottom: 14px;
  }

  .oc-contact-form-section {
    padding: 38px 0;
  }

  .oc-contact-form .form-control {
    margin-bottom: 12px;
  }

  .oc-contact-social {
    display: block;
    text-align: center;
  }

  .oc-contact-social__location,
  .oc-contact-social__links {
    justify-content: center;
  }

  .oc-contact-social__location {
    margin-bottom: 18px;
  }
}
/* Contacts page --- */
