.home-section__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 990px) {
  .home-section__wrap {
    grid-template-columns: 1fr;
  }
}
.home-section__info {
  display: flex;
  flex-direction: column;
}
.home-section__title {
  font-size: 56px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 120%;
}
@media (max-width: 990px) {
  .home-section__title {
    font-size: 40px;
  }
}
.home-section__title span {
  color: #003580;
}
.home-section__text {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 20px;
}
.home-section__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
  max-width: 510px;
  width: 100%;
  box-sizing: border-box;
}
.home-section__btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #003580;
  border-radius: 6px;
  transition: 0.3s;
  padding: 10px;
  height: 56px;
  font-size: 17px;
  font-weight: 700;
  appearance: none;
  outline: none;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 990px) {
  .home-section__btn button {
    height: 50px;
  }
}
.home-section__btn button:first-child {
  background: #003580;
  color: #fff;
}
.home-section__btn button:first-child:hover {
  box-shadow: 0 0 15px 0 rgba(124, 114, 231, 0.8);
}
.home-section__btn button:last-child {
  color: #000;
  background: transparent;
}
.home-section__btn button:last-child:hover {
  color: #fff;
  background: #003580;
}
.home-section__img {
  max-width: 100%;
  height: 450px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  width: 100%;
}
@media (max-width: 990px) {
  .home-section__img {
    height: 300px;
  }
}

.attr__title {
  font-size: 56px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 990px) {
  .attr__title {
    font-size: 40px;
  }
}
.attr__text {
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  font-weight: 400;
  margin-bottom: 25px;
}
.attr__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
@media (max-width: 990px) {
  .attr__wrap {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.attr__item {
  border: 1px solid #F88B03;
  padding: 12px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 15px;
  align-items: center;
}
.attr__item img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.attr__item p {
  font-size: 14px;
  line-height: 1.5;
}

.advantages__wrap {
  display: grid;
  grid-template-columns: 600px 1fr;
  grid-gap: 30px;
  align-items: center;
}
@media (max-width: 1200px) {
  .advantages__wrap {
    grid-gap: 20px;
    grid-template-columns: 500px 1fr;
  }
}
@media (max-width: 990px) {
  .advantages__wrap {
    display: block;
  }
}
.advantages__title {
  font-size: 56px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .advantages__title {
    font-size: 40px;
  }
}
.advantages__title span {
  color: #003580;
}
.advantages__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.advantages__list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.3;
}
.advantages__list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  background: #003580;
  border-radius: 2px;
}
.advantages__list li span {
  color: #003580;
}

.mySwiper {
  width: 600px;
  overflow: hidden;
  height: 420px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .mySwiper {
    height: 400px;
    width: 500px;
  }
}
@media (max-width: 990px) {
  .mySwiper {
    width: 100%;
    max-width: 100%;
    height: 300px;
    box-sizing: border-box;
    margin-bottom: 25px;
  }
}
.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mySwiper .swiper-button-next, .mySwiper .swiper-button-prev {
  color: #fff;
  background: #003580;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.mySwiper .swiper-button-next:after, .mySwiper .swiper-button-prev:after {
  font-size: 15px;
}

.contact {
  position: relative;
}
.contact__wrap {
  padding: 70px 0;
  position: relative;
  z-index: 2;
}
.contact__img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  object-fit: cover;
  top: 0;
  bottom: 0;
}

.contact-feedback {
  padding: 25px;
  border-radius: 32px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: #FFF;
  box-shadow: -2px 1px 20px 0 rgba(0, 0, 0, 0.2);
  max-width: 460px;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.contact-feedback span {
  color: #003580;
}
.contact-feedback__title {
  text-align: center;
  color: #111;
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
  max-width: 360px;
  margin: 0 auto;
}
.contact-feedback input {
  height: 56px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  width: 100%;
  box-sizing: border-box;
}
.contact-feedback button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #003580;
  border-radius: 6px;
  transition: 0.3s;
  padding: 10px;
  height: 56px;
  font-size: 17px;
  font-weight: 700;
  appearance: none;
  outline: none;
  text-transform: uppercase;
  cursor: pointer;
  background: #003580;
  color: #fff;
}
.contact-feedback button:hover {
  box-shadow: 0 0 15px 0 rgba(124, 114, 231, 0.8);
}
@media (max-width: 990px) {
  .contact-feedback button {
    height: 50px;
  }
}
.contact-feedback a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #003580;
  border-radius: 6px;
  transition: 0.3s;
  height: 56px;
  font-size: 17px;
  margin-top: 15px;
  font-weight: 700;
  appearance: none;
  outline: none;
  text-transform: uppercase;
  cursor: pointer;
  color: #000;
  background: transparent;
}
@media (max-width: 990px) {
  .contact-feedback a {
    height: 50px;
  }
}
.contact-feedback a:hover {
  color: #fff;
  background: #003580;
}
.contact-feedback__thank {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #003580;
  margin: 10px 0;
  display: none;
}

/*# sourceMappingURL=item-style.css.map */
