.banner-container {
  padding-top: 100px;
}

.banner-top {
  text-align: center;
  margin-bottom: 20px;
}

.banner-top p {
  max-width: 470px;
  margin: 35px auto 0;
}

.banner-bottom {
  display: flex;
  justify-content: space-between;
}

.banner-image {
  position: relative;
  width: 50%;
}

.contact-banner-img {
  position: absolute;
  bottom: 0;
  left: -150px;
  width: 128%;
  max-width: initial;
}


.banner-form {
  width: 46%;
  padding: 50px 40px 50px 55px;
  background-color: var(--white);
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  position: relative;
  bottom: -50px;
}

.form-title {
  margin-bottom: 40px;
  max-width: 460px;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
}

.form-textarea {
  width: 100%;
  min-height: 130px;
  background: var(--light-grey);
  border: 2px solid var(--blue);
  border-radius: 20px;
  color: var(--blue);
  font-size: 20px;
  padding: 20px 25px;
  resize: none;
}

.contact-form-name, .contact-form-phone {
  flex: 1 0 calc(50% - 9px);
}

.support {
  background: #E9ECF4;
  padding: 110px 0;
}

.support-top {
  text-align: center;
}

.support-title {
  max-width: 450px;
  margin: 0 auto 24px;
}

.support-bottom {
  margin-top: 50px;
}

.support-bottom-text {
  text-align: center;
  max-width: 670px;
  margin: 0 auto;
}

.support-feature-list {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.support-feature-list-item {
  display: flex;
  line-height: 28px;
  position: relative;
  max-width: 210px;
}

.support-feature-list-item.with-dot:before {
  width: 26px;
  height: 26px;
  animation: none;
  transition: all ease .3s;

}

.support-feature-list-item:hover.with-dot:before {
  transform: scale(1.3);
  transition: all ease .3s;
}


.feature-list-item-icon {
  margin-right: 10px;
  flex-shrink: 0;
}


@media (max-width: 992px) {
  .contact-form-name, .contact-form-phone {
    flex: 1 0 100%;
  }
}

@media (max-width: 768px) {
  .banner-bottom {
    flex-direction: column;
    position: relative;
  }

  .banner-image {
    height: 90vw;
    width: 100%;
  }

  .contact-banner-img {
    left: initial;
    right: 0;
    width: 150%;
  }

  .banner-form {
    position: absolute;
    width: 100%;
    bottom: -50vh;
    padding: 22px 15px 50px;
  }

  #contact-form-btn {
    margin: 0 auto;
  }

  .support {
    padding-top: 55vh;
  }
  .banner-container {
    padding-top: 50px;
  }

  .support-feature-list {
    flex-direction: column;
  }

  .support-feature-list-item {
    max-width: none;
  }
}
