:root {
  --header-height: 60px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  z-index: 2;
  background-color: #fff;
  transform: translateY(0);
  transition: transform 0.25s ease;
  will-change: transform;
}

.header.header--hidden {
  transform: translateY(-100%);
}

main {
  padding-top: var(--header-height);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.logo-img {
  height: 32px;
  width: 84px;
}

.header__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: none;
  background-color: #f5f3f4;
  color: #333333;
  transition:
    background-color ease 0.5s,
    color ease 0.5s;
}

.icon-btn svg {
  stroke: currentColor;
}

.icon-btn:hover {
  background-color: #e74346;
  color: #f8f8f8;
}

.header__burger {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;

  background: #e74346;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header__burger::before,
.header__burger::after {
  content: "";
  position: absolute;

  width: 11px;
  height: 1px;
  background: #f8f8f8;
  border-radius: 999px;

  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.25s ease;
}

.header__burger::before {
  top: 12px;
  box-shadow: 0 4px 0 0 #f8f8f8;
}

.header__burger::after {
  top: 20px;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(320px, 90vw);
  padding: 80px 16px 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);

  display: flex;
  flex-direction: column;
  gap: 12px;

  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 1000;
}

.nav.is-open {
  transform: translateX(0);
}

.nav__link {
  width: fit-content;
  padding: 10px 0;
  font-family:
    "Manrope",
    -apple-system,
    system-ui,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: #333333;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.nav__link:focus-visible,
.nav__link[aria-current="page"] {
  opacity: 1;
}

.nav__link:hover,
.nav__link:active {
  opacity: 1;
  border-bottom: 1px solid #333333;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 900;
}

.header__burger.is-open::before {
  top: 16px;
  box-shadow: none;
  transform: rotate(45deg);
}

.header__burger.is-open::after {
  top: 16px;
  transform: rotate(-45deg);
}

.body--locked {
  overflow: hidden;
}

.main-heading_mobile {
  margin: 0;
  line-height: 28px;
  text-transform: uppercase;
}

.hero__illustration {
  padding: 24px 0;
  color: #f8f8f8;
  background-color: #333333;
}

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

.hero__img {
  background-image: url(../assets/img/hero.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: clamp(273px, 50vw, 400px);
  width: 100%;
}

.hero__description {
  padding-top: 40px;
  padding-bottom: 81px;
}

.hero__heading {
  margin-bottom: 12px;
  font-size: 20px;
  color: #a4a4a4;
}

.heading__list,
.normal__list {
  list-style: none;
  margin: 0;
  margin-bottom: 40px;
  padding: 0;

  display: grid;
  gap: 8px;
}

.heading__list li,
.normal__list li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
}

.heading__list-text {
  opacity: 0.7;
}

.heading__list li::before,
.normal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;

  width: 8px;
  height: 8px;

  background-color: #e74346;
  border-radius: 50%;
}

.cta-btn {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 12px;
  background-color: #e74346;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: #f8f8f8;
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease;
}

.cta-btn:hover {
  background-color: #e74346;
  opacity: 0.6;
}

.about {
  padding: 24px 0;
  background-color: #333333;
}

.about__heading {
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

.about__stat {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.stat-numbers {
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  color: #fff;
}

.stat-text {
  font-weight: 350;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}

.about__description {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.about__description p {
  margin: 0;
  color: #fff;
}

.about__description p + p {
  margin-top: 27px;
}

.about__description p + p + p {
  margin-top: 8px;
}

.about__comment {
  padding: 16px;
  border-radius: 20px;
  background-color: #a4a4a4;
}

.about__sub-heading {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.about__comment p {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 350;
  font-style: italic;
  color: #fff;
}

.about__expert {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.about__expert p {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: #f5f3f4;
}

.about__expert img {
  height: 40px;
  width: 40px;
}

.services {
  padding: 80px 0 122px 0;
}

.services .heading,
.heading-normal {
  margin-bottom: 4px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  color: #333333;
}

.services .subtitle {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;

  color: #a4a4a4;
}

.services-list__heading {
  margin: 0 0 8px 0;

  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}

.services-list__list {
  display: flex;
  flex-direction: column;
  margin: 0 0 8px 0;
  padding-left: 24px;
  gap: 4px;
  font-weight: 350;
  font-size: 16px;
  line-height: 20px;
}

.services-list__list li::marker {
  opacity: 0.7;
  color: #333333;
}

.services-list__list-p {
  margin: 0;
}

.services-types {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  gap: 8px;
  padding: 0;
  margin-bottom: 40px;
  list-style: none;
}

.services-item {
  min-height: 190px;
  min-width: 309px;
  max-width: 429px;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;

  background-color: #333333;
}

.item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: #f8f8f833;
  opacity: 80%;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;

  color: #f5f3f4;
}

.services-type_heading {
  color: #f5f3f4;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}

.services-types__cta {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding-left: 0;
  padding-top: 11px;
  background-color: unset;
  border: none;
  font-weight: 500;
  font-size: 16px;
  color: #a4a4a4;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.services-types__cta::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff33;
  opacity: 80%;
}

.services__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.services__cta-text {
  margin: 0;
  font-weight: 350;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -2%;
  color: #333333;
}

.partners {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}

.partners__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}

.partners__slider {
  padding-left: var(--container-pad, 16px);
  overflow: hidden;
}

.partners__nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.partners__nav button:hover {
  opacity: 0.7;
}

.partners__arrow {
  border: none;
  background-color: unset;
}

.partners__arrow {
  position: relative;
  width: 32px;
  height: 32px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.partners__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-left: 1.5px solid #333333;
  border-bottom: 1.5px solid #333333;
  border-radius: 1px;
}

.partners__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(45deg);
}

.partners__arrow--next::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.partners__head {
  padding-bottom: 20px;
  border-bottom: 1px solid #a4a4a4;
}

.partners-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.partners-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-swiper .swiper-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80px;
  height: auto;
  object-fit: contain;
}

.necessity {
  padding-top: 120px;
  padding-bottom: 100px;
}

.necessity .heading-normal {
  margin-bottom: 40px;
}

.necessity-img {
  margin-bottom: 37px;
}

.necessity .normal__list {
  gap: 24px;
  margin-bottom: 0;
}

.normal__list li p {
  margin: 0;
  opacity: 70%;
}

.contacts {
  padding-top: 40px;
  padding-bottom: 32px;
  margin-bottom: 80px;
  background-color: #fff;
}

.big-heading {
  margin: 0 0 16px 0;
  font-weight: 457;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -2%;
  text-transform: uppercase;
}

.contacts-descr {
  margin-bottom: 40px;
  opacity: 80%;
  color: #333333;
}

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

.contacts-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-weight: 350;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}

.contacts__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: #e74346;
}

.adress {
  align-items: start;
}

.adress p {
  margin: 0;
}

.contacts__contacts-list {
  margin-bottom: 60px;
}

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

.contacts-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-form__input {
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background-color: #f8f8f8;
  font-weight: 350;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}

.contacts-form__input::placeholder {
  font-weight: 350;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  opacity: 60%;
}

.contacts-form__input:focus {
  outline: none;
  border: 1px solid #a4a4a4;
}

.contacts-form__message {
  min-height: 120px;
  resize: vertical;
}

.contacts-form__field.is-invalid .contacts-form__input {
  border-color: #e74346;
}

.contacts-form__field.is-invalid .contacts-form__input::placeholder {
  color: #e74346;
  opacity: 1;
}

.contacts-form__consent {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  opacity: 80%;
  color: #333333;
}

.contacts-form__checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  opacity: 1;
  border: 1.5px solid #333333;
  appearance: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.contacts-form__checkbox:checked {
  background-color: transparent;
}

.contacts-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid #333333;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.contacts-form__captcha {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-form__captcha.is-disabled {
  opacity: 0.6;
}

.contacts-form__captcha-widget {
  min-height: 65px;
}

.contacts-form__captcha-note {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: #333333;
  opacity: 0.8;
}

.contacts-form__submit {
  transition: opacity 0.5s ease;
}

.contacts-form__submit:disabled {
  opacity: 20%;
  cursor: not-allowed;
}

.contacts-form__status {
  min-height: 16px;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: #333333;
}

.contacts-form__status.is-success {
  color: #333333;
}

.contacts-form__status.is-error {
  color: #e74346;
}

.footer {
  background-color: #333333;
}

footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;

  color: #f8f8f8;
  font-weight: 350;
  font-size: 14px;
}

#year {
  display: none;
}

@media (min-width: 640px) {
  .hero__img {
    height: 400px;
  }

  .hero__description {
    padding-bottom: 142px;
  }

  .about__heading {
    margin-bottom: 38px;
  }

  .about__stat {
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 40px;
  }

  .about__description p + p {
    margin-top: 8px;
  }

  .stat-block {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 180px;
    width: 182px;
    border-radius: 50%;
    background-color: #fff;
  }

  .stat-numbers,
  .stat-text {
    color: #333333;
  }

  .stat-icon {
    position: absolute;
    top: 0;
    left: 0;
  }

  .services {
    padding: 160px 0 160px 0;
  }

  .services-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .services-types .services-item {
    min-width: unset;
    max-width: none;
  }

  .services .heading-block {
    flex-direction: column;
    justify-content: flex-start;
    border: none;
  }

  .services .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    align-items: start;
  }

  /* .services .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 40px;
    align-items: start;
  } */

  .services__column--left {
    display: contents;
  }

  .services .heading-block {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .services-list {
    grid-column: 2;
    grid-row: 1;
  }

  .services__column--right {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .services__cta {
    flex: 0 0 100%;
  }

  .partners-swiper .swiper-wrapper {
    align-items: baseline;
  }

  .necessity {
    padding-top: 162px;
    padding-bottom: 160px;
  }

  .necessity .heading-normal {
    max-width: 55%;
  }

  .contacts-form__consent {
    max-width: 65%;
    align-items: center;
  }

  .footer .container > * {
    flex: 0 0 calc(100% / 3);
  }

  .footer .container > :first-child {
    display: flex;
    justify-content: flex-start;
  }

  .footer .container > :nth-child(2) {
    text-align: center;
  }

  .footer .container > :last-child {
    text-align: right;
  }

  #year {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .hero {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    width: 100%;
    max-width: var(--container-max, 1440px);
    margin: 0 auto;
    padding: 0 var(--container-pad, 16px);
    padding-top: 35px;
    padding-bottom: 200px;
  }

  .hero__illustration,
  .hero__description {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    padding: 0;
  }

  .hero__main,
  .hero__description {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__illustration {
    background-color: unset;
  }

  .hero__description {
    padding-top: 13px;
  }

  .hero__wrapper {
    justify-content: center;
    width: 464px;
    height: 501px;
    border-radius: 24px;
    background-color: #333333;
  }

  .hero__img {
    background-position: center center;
  }

  .hero__desktop-intro {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 42px;
  }

  .hero__desktop-logo {
    width: 36px;
    align-self: flex-start;
    margin-left: 6px;
  }

  .hero__desktop-title {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #333333;
  }

  .hero__cta {
    width: 385px;
  }

  .main-heading_mobile {
    display: none;
  }

  .about {
    padding-top: 40px;
    padding-bottom: 3px;
  }

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
    align-items: start;
  }

  .about__heading {
    margin: 0;
  }

  .about__stat {
    margin-bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    justify-self: stretch;
  }

  .stat-block {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 54px;
    height: unset;
    width: unset;
    background-color: unset;
  }

  .stat-numbers,
  .stat-text {
    color: white;
  }

  .about__description,
  .about__comment {
    grid-column: auto;
  }

  .services {
    padding-top: 192px;
    padding-bottom: 200px;
  }

  .services .container {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 29px;
    align-items: start;
  }

  .services__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .services__column--left {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    gap: 58px;
  }

  .services__column--right {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    padding-left: 0;
    gap: 40px;
  }

  .services .heading-block {
    margin-bottom: 0;
  }

  .services-types li {
    min-width: 309px;
  }

  .services-list {
    align-self: start;
  }

  .services-types {
    margin-top: 0;
    margin-bottom: 0;
  }

  .services__cta {
    width: calc((100% - 8px) / 2);
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .services__cta-text {
    text-align: center;
  }

  .partners {
    padding: 80px 0;
  }

  .partners__slider {
    width: 100%;
    max-width: var(--container-max, 1440px);
    margin: 0 auto;
    padding: 0 var(--container-pad, 16px);
  }

  .partners-swiper .swiper-wrapper {
    align-items: baseline;
  }

  .necessity {
    padding: 200px 0 180px 0;
  }

  .necessity .container {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .necessity__intro,
  .necessity .normal__list {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .necessity .heading-normal {
    max-width: 70%;
  }

  .necessity__intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .necessity-img {
    margin-bottom: 0;
  }

  .necessity .normal__list {
    max-width: 49%;
  }

  .contacts {
    padding: 60px 0;
  }

  .contacts .container {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .contacts__content,
  .contacts-form {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .contacts__content {
    display: flex;
    flex-direction: column;
  }

  .contacts__contacts-list {
    margin-bottom: 0;
    margin-top: auto;
  }

  .contacts .big-heading {
    margin: 0;
  }

  .contacts {
    margin-bottom: 100px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .services .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .nav {
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    transform: none;
    transition: none;
    z-index: auto;
  }

  .nav__link {
    padding: 0;
    font-size: 16px;
    line-height: 16px;
  }

  .nav-backdrop,
  .header__burger {
    display: none;
  }
}
@media (min-width: 1280px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 200px;
  }
  .hero__desktop-logo {
    width: 53px;
  }
  .hero__desktop-logo {
    margin-left: 10px;
  }

  .hero__desktop-logo {
    width: 61px;
  }

  .hero__desktop-intro {
    padding-top: 10px;
    gap: 30px;
  }

  .hero__desktop-title {
    font-size: 40px;
    line-height: 48px;
  }
  .hero__heading {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 32px;
  }
  .hero__desktop-intro {
    margin-bottom: 29px;
  }
  .heading__list {
    margin-bottom: 27px;
    max-width: 90%;
  }
  .hero__cta {
    width: 375px;
  }
  .hero__description {
    padding-bottom: 16px;
  }
  .hero__main,
  .hero__wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .hero__img {
    height: 100%;
  }

  .about {
    padding: 60px 0;
  }

  .about .container {
    column-gap: 16px;
  }

  .about__heading {
    font-size: 32px;
    grid-column: 1;
    grid-row: 1;
  }

  .about__description {
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .about__stat {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    align-self: end;
    gap: 10px;
  }

  .about__comment {
    grid-column: 2;
    grid-row: 2;
  }

  .stat-block {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-left: 0;
    height: 180px;
    width: 182px;
    border-radius: 50%;
    background-color: #fff;
  }

  .stat-numbers,
  .stat-text {
    color: #333333;
  }

  .stat-icon {
    position: absolute;
    top: 0;
    left: 0;
  }

  .services .container {
    column-gap: 103px;
  }

  .services .heading {
    font-size: 32px;
  }

  .services {
    padding-top: 180px;
  }
  .services .subtitle {
    max-width: 70%;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
  }

  .services__column--left {
    gap: 82px;
  }

  .services-list__heading {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    text-transform: uppercase;
  }

  .services-types {
    gap: 15px;
  }

  .services-types .services-item {
    height: 220px;
  }

  .services-type_heading {
    font-size: 20px;
  }
  /* .services__cta {
    min-height: 220px;
  } */

  .partners .heading,
  .necessity .heading-normal {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
  }

  .necessity .heading-normal {
    max-width: 87%;
  }

  .necessity-img {
    width: 394px;
    height: 272px;
  }
}
@media (min-width: 1440px) {
  .hero__img {
    height: 704px;
  }

  .hero__desktop-intro {
    gap: 37px;
  }

  .hero__desktop-intro {
    margin-bottom: 83px;
  }

  .heading__list {
    margin-bottom: 82px;
  }

  .hero__cta {
    width: 430px;
  }

  .about__stat {
    justify-content: flex-start;
  }

  .about__description,
  .about__comment {
    max-width: 92%;
  }

  .services {
    padding-top: 201px;
  }

  .services .container {
    column-gap: 156px;
  }
  .necessity .heading-normal {
    max-width: 79%;
  }

  .necessity .normal__list {
    max-width: 50%;
  }

  .necessity {
    padding: 200px 0 197px 0;
  }
  .necessity-img {
    width: 365px;
    height: 252px;
  }
}
