@charset "UTF-8";
/* Home Hero — layout по макету. */
.home-hero {
  position: relative;
  overflow: hidden;
  background: #f7f8fc;
  isolation: isolate;
}
.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f8fc 0%, #f7f8fc 34%, rgba(247, 248, 252, 0.88) 48%, rgba(247, 248, 252, 0.35) 68%, rgba(247, 248, 252, 0) 100%);
}
.home-hero__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.home-hero__picture {
  width: 100%;
  /* margin: 32px 0 24px 0; */
}
.home-hero__picture-img {
  width: 100%;
  height: 254px;
  display: block;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/10;
}
.home-hero__container {
  position: relative;
  z-index: 1;
}
.home-hero__body {
  display: flex;
  align-items: center;
  padding: 210px 0 174px 0;
}
@media (max-width: 992px) {
  .home-hero__body {
    padding: 170px 0 150px 0;
  }
}
@media (max-width: 767px) {
  .home-hero__body {
    padding: 130px 0 50px 0;
  }
}
.home-hero__content {
  /* max-width: 750px; */
  max-width: 900px;
  width: 100%;
}
@media (max-width: 992px) {
  .home-hero__content {
    max-width: 100%;
  }
}
.home-hero__label {
  display: block;
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #5f646e;
}
@media (max-width: 767px) {
  .home-hero__label {
    font-size: 16px;
    line-height: normal;
  }
}
.home-hero__title {
  margin: 0 0 24px 0;
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  line-height: 66px;
  font-weight: 800;
  color: #0f1929;
}
@media (max-width: 767px) {
  .home-hero__title {
    font-size: 32px;
    line-height: 36px;
  }
}
.home-hero__text {
  margin: 0 0 40px;
  max-width: 520px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: #5f646e;
}
@media (max-width: 767px) {
  .home-hero__text {
    font-size: 16px;
    line-height: 21px;
    margin: 0 0 24px 0;
    font-weight: 500;
  }
}
.home-hero__items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 64px;
  padding: 0;
  list-style: none;
}
@media (max-width: 992px) {
  .home-hero__items {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .home-hero__items {
    margin: 32px 0;
  }
}
.home-hero__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  /* max-width: 220px; */
}
@media (max-width: 992px) {
  .home-hero__item {
    max-width: 100%;
    align-items: center;
  }
}
.home-hero__item-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.home-hero__item-icon img {
  width: 40px;
  height: 40px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-hero__item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.home-hero__item-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: #020f58;
}
@media (max-width: 992px) {
  .home-hero__item-sub {
    font-size: 18px;
    line-height: normal;
  }
  .home-hero__item-sub br {
    display: none;
  }
}
.home-hero__item-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: #5f646e;
}
@media (max-width: 992px) {
  .home-hero__item-desc {
    font-size: 14px;
    line-height: normal;
  }
  .home-hero__item-desc br {
    display: none;
  }
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.home-hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  min-height: 50px;
  height: 50px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.home-hero__btn svg {
  flex-shrink: 0;
}
.home-hero__btn svg path {
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .home-hero__btn {
    padding: 6px 8px;
    height: 46px;
    min-height: 46px;
    font-size: 15px;
  }
}
.home-hero__btn--primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fafafa;
  background: linear-gradient(90deg, rgb(1, 28, 81) 0%, rgb(2, 63, 183) 100%);
  transition: color 0.35s ease;
}
.home-hero__btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(2, 63, 183) 0%, rgb(1, 28, 81) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.home-hero__btn--primary:hover::before {
  opacity: 1;
}
.home-hero__btn--secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #fff;
  border: 1px solid #011c51;
  color: #011c51;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.home-hero__btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(1, 28, 81) 0%, rgb(2, 63, 183) 100%);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.home-hero__btn--secondary:hover {
  color: #fafafa;
  border-color: #011c51;
}
.home-hero__btn--secondary:hover svg path {
  fill: #fafafa;
}
.home-hero__btn--secondary:hover::before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 767px) {
  .home-hero__btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */