*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #313932;
  background-color: #ffffff;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

textarea {
  resize: vertical;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  padding-top: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 0 16px;
}

.header__logo {
  display: block;
  flex-shrink: 0;
  width: 236px;
  height: 56px;
  overflow: hidden;
}

.header__logo-img {
  width: 236px;
  height: 56px;
  object-fit: contain;
}

.header__contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 8px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #313932;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__contact:hover,
.footer__item_link:hover .footer__text {
  color: #f96222;
  transition: 0.5s;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 64px 0 63px 0;
  flex: 1 0 auto;
}

.hero {
  display: flex;
  gap: 64px;
  align-items: stretch;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 762px;
  min-width: 0;
}

.hero__text-block {
  display: flex;
  flex-direction: column;
}

.hero__title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #147627;
}

.hero__subtitle {
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  color: #313832;
  margin-bottom: 24px;
}

.hero__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #313932;
}

.hero__image-wrap {
  flex: 1 1 auto;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form_type_request {
  display: flex;
  flex-direction: column;
  flex: 0 0 406px;
  max-width: 100%;
  padding: 32px;
  background-color: #edf4ee;
  border-radius: 16px;
}

.form_type_contact {
  width: 100%;
  padding: 40px;
  background-color: #f1f1f1;
  border-radius: 16px;
}

.form__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #313932;
}

.form__title_dark {
  line-height: 24px;
  color: #000000;
}

.form__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 auto;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__fields_row {
  flex-direction: row;
  flex-wrap: wrap;
}

.form__field {
  display: block;
  width: 100%;
}

.form__field_half {
  flex: 0 0 calc(50% - 8px);
  width: calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.form__field_full {
  flex: 0 0 100%;
  width: 100%;
}

.form__input,
.form__textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #313932;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #878787;
}

.form__input:focus,
.form__textarea:focus {
  box-shadow: 0 0 0 2px rgba(20, 118, 39, 0.25);
}

.form__textarea {
  min-height: 128px;
  height: 128px;
}

.form__attach {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: fit-content;
}

.form__attach-icon {
  flex-shrink: 0;
  width: 16px;
  height: 20px;
}

.form__attach-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #878787;
  text-decoration: underline;
  text-underline-position: from-font;
}

.form__attach-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__policy {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.form__checkbox {
  appearance: none;
  flex-shrink: 0;
  width: 16.692px;
  height: 18px;
  margin-top: 4px;
  border: 1px solid #147627;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: inset 0 3px 4px 0 rgba(20, 118, 39, 0.2);
  cursor: pointer;
}

.form__checkbox:checked {
  background-color: #147627;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}

.form__policy-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #878787;
}

.form__policy-link {
  color: #147627;
  text-decoration: underline;
  text-underline-position: from-font;
}

.form__policy-link:hover {
  opacity: 0.8;
}

.form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 0 24px;
  border-radius: 51px;
  background-color: #17832c;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  transition: background-color 0.2s ease;
}

.form__submit:hover {
  background-color: #147627;
}

.form__submit_compact {
  flex: 0 1 200px;
  width: auto;
  min-width: 180px;
}

.form__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process__intro {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #313832;
}

.process__heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #313832;
}

.process__list {
  display: flex;
  gap: 88px;
  align-items: flex-start;
  padding: 32px;
  background-color: #edf4ee;
  border-radius: 16px;
}

.process__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
}

.process__icon {
  width: 96px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
}

.process__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #313932;
}

.process__divider {
  flex-shrink: 0;
  width: 2px;
  align-self: stretch;
  background-color: #ffffff;
  border-radius: 20px;
}

.callout {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #fef4ef;
  border-radius: 16px;
  padding-right: 24px;
}

.callout__bar {
  flex-shrink: 0;
  width: 18px;
  background-color: #f96222;
}

.callout__text {
  flex: 1 1 auto;
  padding: 22px 0 22px 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #313932;
}

.contact {
  width: 100%;
}

.footer {
  background-color: #f1f1f1;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1);
}

.footer__inner {
  display: flex;
  gap: 240px;
  align-items: flex-start;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 60px 0 40px;
}

.footer__col_address {
  display: flex;
  flex-direction: column;
  width: 305px;
  flex-shrink: 0;
}

.footer__col_contacts .footer__copyright {
  display: none;
}

.footer__title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #313932;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__item {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.footer__address:hover .footer__text {
  color: #f96222;
  transition: 0.5s;
}

.footer__address_inf {
  padding-left: 30px;
  font-size: 15px;
  color: #313932;
  font-weight: 500;
}

.footer__item_address {
  align-items: flex-start;
}

.footer__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.footer__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #313932;
}

.footer__text_link {
  text-decoration: underline;
  text-underline-position: from-font;
}

.footer__copyright {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #8e8e8e;
  opacity: 0.9;
  margin-top: 64px;
}

.footer__contacts {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.footer__col_contacts .footer__item {
  align-items: center;
}
