.hero {
  --p-top: 60px;
  padding-bottom: 60px;
}

.hero__content {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  flex-grow: 1;
}

.hero__title {
  margin-bottom: 12px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__actions .contact-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #011f5b;
}
.hero__actions .contact-link {
  font-size: 20px;
}
.hero__actions .contact-link--location svg {
  width: 12px;
  height: 20px;
}
.hero__actions .contact-link--phone svg {
  width: 16px;
  height: 16px;
}

.send-request-form {
  /* margin-bottom: 20px; */
  width: 100%;
}

.location {
  padding: 60px 0;
}

.location__img-wrap {
  position: relative;
}

.location__img {
  width: 100%;
  height: 400px;

  object-fit: cover;
  border-radius: 20px;
}

.location__box-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 32px;
  margin-top: 8px;

  color: #fff;

  border-radius: 10px;
  background: #d00c00;
}
.location__box-wrap .location-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location__box-wrap .location-box--sm {
  flex-direction: row;
}
.location-box__title {
  font-size: 24px;

  font-weight: 600;
  line-height: 111%; /* 26.64px */
}

.form-wrap {
  
  position: relative;
  /* height: fit-content; */
  margin-bottom: 20px;
  width: 100%;
}
.form-wrap .contacts__box {
  border-radius: 0;
}

@media (width >= 1440px) {
  .hero__title {
    max-width: 608px;
  }
  .hero__actions {
    flex-direction: row;
    gap: 80px;
  }

  .hero__actions .contact-link__text {
    font-size: 20px;
    max-width: 280px;
  }

  .form-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 111;
    margin: 0;
    max-width: 368px;
  }

  .location {
    padding: 32px 0;
  }
  .location__box-wrap {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: 300px;
  }
  .location__img {
    height: 623px;
  }
}
