@import "https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap";
:root {
  --content-width: 1344px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width)  + (var(--container-offset) * 2));
  --font-family-primary: "Inter", sans-serif;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --color-black: #050f28;
  --color-white: #fff;
  --color-gray-100: #f1f1f1;
  --color-blue-900: #182338;
  --color-blue-800: #202d47;
  --color-blue-600: #2e3a59;
  --color-blue-400: #0038c4;
  --radius-main: 16px;
  --gradient: linear-gradient(270deg, #f1f1f100 0%, #f1f1f1de 24.5%, #f1f1f1 43.5%, #f1f1f1 100%);
}

.checkbox__field:checked + .checkbox__content:after {
  opacity: 1;
}

.checkbox__field:focus + .checkbox__content:before {
  outline: 1px solid var(--color-gray-100);
  outline-offset: 1px;
}

.checkbox__field:disabled + .checkbox__content {
  opacity: .4;
  pointer-events: none;
}

html, body {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

.page {
  height: var(--vh);
  font-family: var(--font-family-primary);
  font-weight: var(--fw-500);
  letter-spacing: 0;
  color: var(--color-blue-900);
  background-color: var(--color-white);
  font-optical-sizing: auto;
  --radius-big: calc((var(--radius-main) * 2));
  font-size: clamp(16px, .9167rem + .3704vi, 20px);
  font-style: normal;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .page {
    --radius-big: 16px;
  }
}

.page__body {
  min-width: 320px;
  min-height: var(--vh);
}

.page.open {
  overflow: hidden;
}

.page.open .header__inner {
  background-color: var(--color-white);
}

section {
  margin-bottom: 32px;
}

.container {
  padding: 0 var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-container {
  min-height: var(--vh);
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  display: grid;
}

.main {
  padding-top: calc(var(--header-height)  + 54px);
}

.background {
  border-radius: var(--radius-big);
  background-color: var(--color-gray-100);
  padding: clamp(16px, 4.44444vw, 64px);
}

.logo {
  width: 100%;
  max-width: 312px;
  margin-right: 10px;
}

@media only screen and (max-width: 1180px) {
  .logo {
    max-width: 200px;
  }
}

.text {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  margin-bottom: 1.2rem;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.text h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.hidden {
  display: none !important;
}

.sr-only {
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  width: 1px !important;
  height: 1px !important;
  white-space: nowrap !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.dis-scroll {
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  overscroll-behavior: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.js-focus-visible:focus:not(.focus-visible) {
  outline: none;
}

h1, h2, h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: var(--fw-700);
  color: var(--color-black);
  margin-bottom: 24px;
  font-size: clamp(32px, 1.5rem + 2.2222vi, 56px);
  line-height: 1.22;
  overflow: hidden;
}

h2 {
  margin-bottom: 2.4rem;
  font-size: clamp(32px, 1.5rem + 1.6667vi, 48px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(18px, 1rem + .5556vi, 24px);
}

p {
  opacity: .8;
}

.header {
  z-index: 10;
  width: 100%;
  transition-property: transform, background-color;
  transition-duration: .15s;
  position: fixed;
  top: 24px;
}

.header__inner {
  border-radius: var(--radius-big);
  background-color: var(--color-gray-100);
  padding-left: clamp(16px, 4.44444vw, 64px);
  transition-property: box-shadow, background-color;
  transition-duration: .15s;
}

@media only screen and (max-width: 992px) {
  .header__inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.header.hide {
  transform: translateY(-200%);
}

.header.scroll .header__inner {
  box-shadow: 0 0 8px 0 var(--color-gray-100);
  background-color: var(--color-white);
}

.nav {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.nav__inner {
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

@media only screen and (max-width: 992px) {
  .nav__inner {
    z-index: -1;
    padding-top: calc(var(--header-height) * 2);
    width: 100%;
    height: calc(var(--vh));
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    transition-property: transform;
    transition-duration: .4s;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    transform: translateX(150%);
  }
}

.nav__list {
  align-items: center;
  margin-right: clamp(16px, 3.33333vw, 48px);
  display: flex;
}

@media only screen and (max-width: 992px) {
  .nav__list {
    z-index: -1;
    flex-direction: column;
    margin-right: 0;
  }
}

.nav__item:not(:last-of-type) {
  margin-right: clamp(10px, 1.73611vw, 25px);
}

@media only screen and (max-width: 992px) {
  .nav__item:not(:last-of-type) {
    margin-right: 0;
  }

  .nav__item {
    margin-bottom: 30px;
  }
}

.nav__link {
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.2;
  transition: color .3s linear;
}

.nav__link:hover, .nav__link.true {
  color: var(--color-blue-400);
}

@media only screen and (max-width: 992px) {
  .nav .btn {
    margin: 0 auto;
  }
}

.nav .btn--reverse {
  margin-right: 8px !important;
}

@media only screen and (max-width: 992px) {
  .nav .btn--reverse {
    background-color: var(--color-white) !important;
    margin: 0 auto 20px !important;
  }

  .nav .btn--reverse:hover {
    background-color: var(--color-blue-900) !important;
  }
}

[class].btn {
  border-radius: var(--radius-main);
  width: 100%;
  min-width: 140px;
  max-width: 255px;
  font-weight: var(--fw-500);
  white-space: nowrap;
  color: var(--color-white);
  background-color: var(--color-blue-900);
  border: 2px solid #0000;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: clamp(18px, 1.66667vw, 24px);
  font-size: 18px;
  line-height: 1;
  transition-property: background-color, color, border-color;
  transition-duration: .3s;
  display: flex;
}

[class].btn:hover, [class].btn:focus {
  border-color: var(--color-blue-900);
  color: var(--color-black);
  background-color: var(--color-white);
}

[class].btn.formsapp-button {
  background-color: var(--color-blue-900) !important;
}

[class].btn.formsapp-button:hover, [class].btn.formsapp-button:focus {
  color: var(--color-blue-900) !important;
  background-color: var(--color-white) !important;
}

[class].btn--big {
  border-radius: var(--radius-main) var(--radius-big) var(--radius-big) var(--radius-main);
  max-width: 189px;
  background-color: var(--color-blue-900);
  padding: clamp(18px, 2.01389vw, 29px) 0;
}

[class].btn--reverse {
  border: 2px solid var(--color-blue-900);
  min-width: max-content;
  max-width: 116px;
  color: var(--color-blue-900);
  background-color: var(--color-gray-100);
  padding: clamp(18px, 2.01389vw, 29px) 24px;
}

[class].btn--reverse:hover, [class].btn--reverse:focus {
  color: var(--color-white);
  background-color: var(--color-blue-900);
}

[class].btn--slider {
  z-index: 2;
  height: 64px;
  min-width: max-content;
  max-width: 64px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

[class].btn--slider:before {
  content: "";
  width: 10px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='18' viewBox='0 0 10 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292894 0.292893C0.683418 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L9.70711 8.29289C10.0976 8.68342 10.0976 9.31658 9.70711 9.70711L1.70711 17.7071C1.31658 18.0976 0.683417 18.0976 0.292893 17.7071C-0.0976311 17.3166 -0.0976311 16.6834 0.292893 16.2929L7.58579 9L0.292894 1.70711C-0.0976304 1.31658 -0.0976304 0.683417 0.292894 0.292893Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-color .3s linear;
  position: relative;
}

[class].btn--slider:hover, [class].btn--slider:focus {
  background-color: var(--color-blue-800);
}

.burger {
  --line-height: 2px;
  --burger-size: 20px;
  --move: calc(var(--burger-size) / 3);
  --move-decrement: calc(var(--move) * -1);
  --transition-time: .5s;
  --lines-color: var(--color-blue-900);
  width: calc(var(--burger-size)  + 5px);
  height: var(--burger-size);
  transition: opacity var(--transition-time) ease;
  background-color: #0000;
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.burger span {
  z-index: -1;
  width: 100%;
  height: var(--line-height);
  background-color: var(--lines-color);
  transition: transform var(--transition-time) ease, background-color var(--transition-time) ease .3s;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.burger span:before, .burger span:after {
  content: "";
  width: 100%;
  height: var(--line-height);
  background-color: var(--lines-color);
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  animation-fill-mode: forwards;
  position: absolute;
  left: 0;
}

.burger span:before {
  transform: translateY(var(--move-decrement)) rotate(0);
}

.burger span:after {
  transform: translateY(var(--move)) rotate(0);
}

.burger:hover {
  opacity: 1;
}

@media only screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}

.closed.opened span {
  background-color: var(--lines-color);
  transition: background-color .2s;
}

.closed.opened span:before {
  animation-name: toplineburger;
}

.closed.opened span:after {
  animation-name: bottomlineburger;
}

.opened .nav__inner {
  transform: translateX(0);
}

.opened span {
  background-color: #0000;
  transition: background-color .2s;
}

.opened span:before, .opened span:after {
  animation-duration: .2s;
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  animation-fill-mode: forwards;
}

.opened span:before {
  animation-name: toplinecross;
}

.opened span:after {
  animation-name: bottomlinecross;
}

.services h2 {
  margin-bottom: 2.4rem;
}

.services__grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(min-content, 1fr);
  gap: 24px;
  display: grid;
}

.services__grid li {
  border-radius: var(--radius-big);
  height: 100%;
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.services__grid li img {
  border-radius: var(--radius-big);
  width: 100%;
  max-height: 345px;
  margin-bottom: 24px;
  overflow: hidden;
}

.services__grid h3 {
  margin-bottom: 8px;
}

.services__grid p {
  font-size: 16px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.services--main {
  margin-bottom: 0;
}

.services--main .services__grid {
  margin-bottom: 2.4rem;
}

.services--main h2 {
  margin-bottom: 32px;
  font-size: clamp(32px, 1.75rem + .625vi, 40px);
}

.services .btn {
  margin: 0 auto;
}

@keyframes toplinecross {
  0% {
    transform: translateY(var(--move-decrement));
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: rotate(45deg);
  }
}

@keyframes bottomlinecross {
  0% {
    transform: translateY(var(--move));
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0)rotate(-45deg);
  }
}

@keyframes toplineburger {
  0% {
    transform: rotate(45deg);
  }

  50% {
    transform: rotate(0);
  }

  100% {
    transform: translateY(var(--move-decrement)) rotate(0);
  }
}

@keyframes bottomlineburger {
  0% {
    transform: translateY(0)rotate(-45deg);
  }

  50% {
    transform: rotate(0);
  }

  100% {
    transform: translateY(var(--move)) rotate(0);
  }
}

.policy__content {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  padding: clamp(16px, 3.33333vw, 48px);
}

.policy__content:not(:last-child) {
  margin-bottom: 16px;
}

.policy h1 {
  margin-bottom: 2.4rem;
  font-size: clamp(26px, 1.225rem + 2vi, 58px);
}

.policy h2 {
  font-weight: var(--fw-600);
  margin-bottom: 16px;
  font-size: clamp(18px, 1.05rem + .375vi, 24px);
}

.policy ul {
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 15px;
  font-weight: 600;
}

.policy li {
  letter-spacing: .02em;
  list-style-type: disc;
}

.policy li:not(:last-child) {
  margin-bottom: 3px;
}

.policy p {
  line-height: 1.2;
}

.policy a {
  color: var(--color-blue-400);
  text-decoration: underline;
}

.footer {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.2;
}

.footer__inner {
  background-color: var(--color-gray-100);
  border-radius: 32px;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 30px clamp(16px, 4.44444vw, 64px);
  display: flex;
}

@media only screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

@media only screen and (max-width: 576px) {
  .footer__inner {
    align-items: center;
  }
}

.footer p {
  opacity: 1;
}

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

@media only screen and (max-width: 576px) {
  .footer__list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__item:not(:last-child) {
  white-space: nowrap;
  margin-right: clamp(16px, 1.66667vw, 24px);
}

@media only screen and (max-width: 576px) {
  .footer__item:not(:last-child) {
    margin: 0 0 16px;
  }
}

.footer__link {
  transition: color .3s linear;
}

.footer__link:hover {
  color: var(--color-blue-400);
}

@media only screen and (max-width: 768px) {
  .footer__copyright {
    text-align: center;
    font-size: 14px;
  }
}

.request {
  border-radius: var(--radius-big);
  background-color: var(--color-blue-900);
  margin-bottom: 24px;
  padding: clamp(16px, 4.44444vw, 64px);
}

.request h2 {
  color: var(--color-white);
  margin-bottom: 0;
  font-size: clamp(36px, 2rem + 1vi, 56px);
}

@media only screen and (max-width: 992px) {
  .request h2 {
    margin-bottom: 1rem;
  }
}

.request__inner {
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 3.33333vw, 48px);
  display: flex;
}

@media only screen and (max-width: 992px) {
  .request__inner {
    flex-direction: column;
  }
}

.request__form {
  border-radius: var(--radius-big);
  width: 100%;
  max-width: 700px;
  background-color: var(--color-blue-800);
  padding: clamp(16px, 2.22222vw, 32px);
  box-shadow: 0 4px 40px #2b59ff14;
}

.request__form label {
  display: block;
}

.request__form label:not(:last-child) {
  margin-bottom: 16px;
}

.request__form textarea, .request__form input {
  width: 100%;
  height: 66px;
  background-color: var(--color-gray-100);
  border-radius: 24px;
  margin-right: 8px;
  padding: 16px;
  font-size: 16px;
  line-height: 1;
}

.request__form textarea {
  height: 156px;
  resize: none;
}

.request .btn {
  margin-top: 20px;
}

@media only screen and (max-width: 576px) {
  .request .btn {
    max-width: none;
  }
}

.single h1 {
  margin-bottom: 48px;
  font-size: clamp(32px, 1.8rem + 1vi, 48px);
}

.single p {
  line-height: 1.2;
}

.single__date {
  opacity: .5;
  margin-bottom: 25px;
  font-size: 20px;
  display: block;
}

.single__inner {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  padding: clamp(16px, 3.33333vw, 48px);
}

.single__list {
  gap: 25px;
  margin-bottom: 32px;
  display: grid;
}

.single__item h3, .single__item span {
  font-weight: var(--fw-700);
  color: var(--color-blue-900);
  opacity: .8;
  margin-bottom: 0;
  font-size: clamp(16px, 15.2px + .25vi, 20px);
}

.single__content {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  padding: clamp(16px, 2.77778vw, 40px);
}

.single__image {
  border-radius: var(--radius-big);
  overflow: hidden;
}

.single__image img {
  width: 100%;
  height: 100%;
}

.single__image:not(:last-child) {
  margin-bottom: clamp(20px, 6.11111vw, 88px);
}

.single h2 {
  margin-bottom: 24px;
  font-size: clamp(20px, 1.2083rem + 1.2963vi, 38px);
}

.single h2 + p {
  margin-bottom: 24px;
}

.article {
  border-radius: var(--radius-big);
  height: 100%;
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.article__image {
  border-radius: var(--radius-big);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.article__image img {
  width: 100%;
  height: 100%;
  min-height: 293px;
}

.article__time {
  border-radius: var(--radius-main);
  background-color: var(--color-white);
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.article__date {
  opacity: .5;
  margin-bottom: 15px;
  font-size: 14px;
  display: block;
}

.article__content {
  height: auto;
  background-color: var(--color-white);
}

.article__link {
  align-items: center;
  margin-top: auto;
  display: flex;
}

.article__link:before {
  content: "";
  position: absolute;
  inset: 0;
}

.article h3 {
  font-weight: var(--fw-600);
  margin-bottom: 6px;
  transition: color .3s linear;
}

.article p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.2;
}

.article:hover h3 {
  color: var(--color-blue-400);
}

.hero * {
  z-index: 1;
  position: relative;
}

.hero__inner {
  border-radius: var(--radius-big);
  min-height: 646px;
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px 0 clamp(16px, 4.44444vw, 64px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero__inner:before {
  content: "";
  z-index: 1;
  width: 60%;
  background: var(--gradient);
  position: absolute;
  inset: 0;
}

@media only screen and (max-width: 992px) {
  .hero__inner:before {
    width: 100%;
    opacity: .9;
  }
}

@media only screen and (max-width: 1180px) {
  .hero__inner {
    background-size: cover;
  }
}

@media only screen and (max-width: 576px) {
  .hero__inner {
    padding: 20px;
  }
}

.hero p {
  width: 100%;
  max-width: 627px;
  color: var(--color-blue-800);
  margin-bottom: 1.6rem;
}

@media only screen and (max-width: 992px) {
  .hero p {
    max-width: 100%;
  }

  .hero__inner {
    min-height: 442px;
  }
}

@media only screen and (max-width: 576px) {
  .hero .btn {
    max-width: none;
  }

  .hero br {
    display: none;
  }
}

.hero--about p, .hero--services p {
  max-width: 567px;
  margin-bottom: 0;
}

.hero--product p {
  margin-bottom: 0;
}

.about__inner {
  justify-content: space-between;
  gap: 24px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column;
  }
}

.about__content {
  border-radius: var(--radius-big);
  width: 100%;
  max-width: 764px;
  background-color: var(--color-gray-100);
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4.44444vw, 64px);
  display: flex;
}

.about__image {
  border-radius: var(--radius-big);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
}

.about--home p {
  margin-bottom: clamp(16px, 3.33333vw, 48px);
}

.about--services .about__content {
  max-width: 596px;
  background-color: var(--color-white);
  padding: clamp(16px, 1.66667vw, 24px);
}

@media only screen and (max-width: 768px) {
  .about--services .about__content {
    max-width: 100%;
  }
}

.about--services .about__inner {
  margin-bottom: clamp(30px, 6.11111vw, 88px);
}

.about h2 {
  margin-bottom: 24px;
}

.faq__list {
  margin-bottom: 2.4rem;
}

.faq__item {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
}

.faq__item:not(:last-child) {
  margin-bottom: 8px;
}

.faq details {
  border-radius: var(--radius-big);
  overflow: hidden;
}

.faq details p {
  font-size: 16px;
  line-height: 1.2;
}

.faq details[open] summary:after {
  transform: scaleY(1);
}

.faq summary {
  font-weight: var(--fw-600);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 1.66667vw, 24px);
  font-size: clamp(18px, 1.05rem + .375vi, 24px);
  line-height: 1.2;
  display: flex;
}

.faq summary:after {
  content: "";
  min-width: 32px;
  min-height: 32px;
  background-color: currentColor;
  background-color: var(--color-blue-800);
  transition: transform .3s linear;
  display: block;
  position: relative;
  transform: scaleY(-1);
  -webkit-mask-image: url("../images/icons/arrow-down.svg");
  mask-image: url("../images/icons/arrow-down.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.faq summary + div {
  padding: 0 clamp(16px, 5.55556vw, 80px) clamp(16px, 1.66667vw, 24px) clamp(16px, 1.66667vw, 24px);
}

.faq .btn {
  margin: 0 auto;
}

.faq h1 {
  margin-bottom: 2.4rem;
  font-size: clamp(32px, 1.8rem + 1vi, 48px);
  line-height: 1.2;
}

.products__list {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 2rem;
  display: grid;
}

@media only screen and (max-width: 768px) {
  .products__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.products__item {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  padding: clamp(16px, 1.66667vw, 24px);
}

.products__item img {
  border-radius: var(--radius-big);
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
}

.products__item p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.2;
}

.products__item h3 {
  margin-bottom: 8px;
}

.products__benefits {
  font-size: 16px;
  line-height: 1.2;
}

.products__benefits li:not(:first-child) {
  margin-left: 26px;
  list-style-type: disc;
}

.products__benefits li:not(:last-child) {
  margin-bottom: 8px;
}

.products__benefits li:first-child {
  font-weight: var(--fw-700);
  margin-bottom: 12px;
}

.products .btn {
  margin: 0 auto;
}

.reviews__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

@media only screen and (max-width: 768px) {
  .reviews__list {
    grid-template-columns: 1fr;
  }
}

.reviews__item {
  border-radius: var(--radius-big);
  height: 100%;
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.reviews__item p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.2;
}

.reviews__item svg {
  max-height: 20px;
  margin-bottom: 20px;
}

.reviews__item h3 {
  margin: auto 0 0 auto;
  font-size: 20px;
}

.choose__list {
  counter-reset: choose-counter;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 24px;
  margin-bottom: 2.4rem;
  display: grid;
}

@media only screen and (max-width: 1180px) {
  .choose__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .choose__list {
    grid-template-columns: 1fr;
  }
}

.choose__item {
  counter-increment: choose-counter;
  border-radius: var(--radius-big);
  min-height: 324px;
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
  position: relative;
}

.choose__item:before {
  content: counter(choose-counter, decimal-leading-zero);
  font-weight: var(--fw-700);
  font-size: clamp(32px, 1.5rem + 1.6667vi, 48px);
  line-height: 1.2;
  position: absolute;
  right: 24px;
}

.choose__item h3 {
  min-height: 58px;
  font-weight: var(--fw-600);
  margin: 4rem 0 0;
  font-size: 24px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .choose__item {
    min-height: 230px;
  }
}

.choose .btn {
  margin: 0 auto;
}

.service__inner {
  grid-template-columns: auto 1fr;
  gap: 24px;
  margin-bottom: clamp(30px, 6.11111vw, 88px);
  display: grid;
}

@media only screen and (max-width: 1180px) {
  .service__inner {
    grid-template-columns: 1fr;
  }
}

.service__content {
  border-radius: var(--radius-big);
  width: 100%;
  max-width: 596px;
  background-color: var(--color-white);
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  display: flex;
}

@media only screen and (max-width: 1180px) {
  .service__content {
    max-width: 100%;
    padding: 16px;
  }
}

.service__content h2 {
  margin-bottom: 24px;
}

.service__list {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(min-content, 1fr);
  gap: 24px;
  display: grid;
}

@media only screen and (max-width: 768px) {
  .service__list {
    grid-template-columns: 1fr;
  }
}

.service__item {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.service__item:before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("../images/icons/heart.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: flex-end;
  margin-bottom: clamp(16px, 2.22222vw, 32px);
  position: relative;
}

.service__item--optimal:before {
  background-image: url("../images/icons/efficiency.svg");
}

.service__item--longevity:before {
  background-image: url("../images/icons/logevity.svg");
}

.service__item--solution:before {
  background-image: url("../images/icons/pers.svg");
}

.service__item--mind:before {
  background-image: url("../images/icons/heart.svg");
}

.service__item h3 {
  margin-bottom: 8px;
}

.service__item p {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.2;
}

.problems__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  display: grid;
}

@media only screen and (max-width: 992px) {
  .problems__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .problems__list {
    grid-template-columns: 1fr;
  }
}

.problems__item {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.problems__item:before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("../images/icons/cooling.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: flex-end;
  margin-bottom: clamp(1px, 2.22222vw, 32px);
  position: relative;
}

@media only screen and (max-width: 992px) {
  .problems__item:last-child {
    max-width: 400px;
    grid-column: 2 span;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .problems__item:last-child {
    max-width: 100%;
    grid-column: auto;
  }
}

.problems__item--cooling:before {
  background-image: url("../images/icons/cooling.svg");
}

.problems__item--leaks:before {
  width: 49px;
  height: 60px;
  background-image: url("../images/icons/drop.svg");
}

.problems__item--noises:before {
  width: 52px;
  height: 56px;
  background-image: url("../images/icons/volume.svg");
}

.problems__item--energy:before {
  background-image: url("../images/icons/energy.svg");
}

.problems__item--lifespan:before {
  background-image: url("../images/icons/clepsydra.svg");
}

.problems__item--peace:before {
  background-image: url("../images/icons/heart.svg");
}

.problems__item h3 {
  margin-bottom: 8px;
}

.problems__item p {
  font-size: 16px;
  line-height: 1.2;
}

.problems__content {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

@media only screen and (max-width: 992px) {
  .problems__content {
    flex-direction: column;
  }
}

.problems__desc {
  width: 100%;
  max-width: 849px;
}

.problems__desc p {
  font-size: 16px;
  line-height: 1.2;
}

.problems h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 1.75rem + .625vi, 40px);
}

.problems h3 {
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.packages__list {
  counter-reset: packages-counter;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(30px, 6.11111vw, 88px);
  display: grid;
}

@media only screen and (max-width: 992px) {
  .packages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .packages__list {
    grid-template-columns: 1fr;
  }
}

.packages__item {
  counter-increment: packages-counter;
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.packages__item:before {
  content: counter(packages-counter, decimal-leading-zero);
  font-weight: var(--fw-700);
  align-self: flex-end;
  margin-bottom: clamp(16px, 2.22222vw, 32px);
  font-size: clamp(30px, 1.5rem + 1.6667vi, 48px);
  line-height: 1.2;
  position: relative;
}

.packages__item h3 {
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

@media only screen and (max-width: 992px) {
  .packages__item:last-child {
    max-width: 400px;
    grid-column: 2 span;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .packages__item:last-child {
    max-width: 100%;
    grid-column: auto;
  }
}

.packages__benefits {
  margin-bottom: 2.4rem;
}

.packages__benefits h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 1.75rem + .625vi, 40px);
}

.packages__benefits ul {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.packages__benefits ul li {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  padding: clamp(16px, 1.66667vw, 24px);
}

@media only screen and (max-width: 992px) {
  .packages__benefits ul li:last-child {
    max-width: 400px;
    grid-column: 2 span;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .packages__benefits ul li:last-child {
    max-width: 100%;
    grid-column: auto;
  }
}

@media only screen and (max-width: 992px) {
  .packages__benefits ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .packages__benefits ul {
    grid-template-columns: 1fr;
  }
}

.packages__benefits h3 {
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.packages p {
  font-size: 16px;
  line-height: 1.2;
}

.packages .btn {
  margin: 0 auto;
}

.team__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  display: grid;
}

@media only screen and (max-width: 992px) {
  .team__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .team__list {
    grid-template-columns: 1fr;
  }
}

.team__item {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.team__item img {
  width: 100%;
  min-height: 267px;
  border-radius: 24px;
  margin-bottom: 32px;
  overflow: hidden;
}

.team__item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.team__item p {
  font-size: 16px;
  line-height: 1.2;
}

.core__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  display: grid;
}

@media only screen and (max-width: 992px) {
  .core__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .core__list {
    grid-template-columns: 1fr;
  }
}

.core__item {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.core__item:before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("../images/icons/heart.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: flex-end;
  margin-bottom: 32px;
  position: relative;
}

.core__item h3 {
  margin-bottom: 8px;
}

.core__item p {
  font-size: 16px;
  line-height: 1.2;
}

.core__item--customer:before {
  background-image: url("../images/icons/heart.svg");
}

.core__item--quality:before {
  background-image: url("../images/icons/check.svg");
}

.core__item--excelence:before {
  background-image: url("../images/icons/star.svg");
}

.core__item--integrity:before {
  background-image: url("../images/icons/circle-check.svg");
}

@media only screen and (max-width: 768px) {
  br {
    display: none;
  }
}

.contact__list {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: clamp(20px, 3.33333vw, 48px);
  display: grid;
}

@media only screen and (max-width: 768px) {
  .contact__list {
    grid-template-columns: 1fr;
  }
}

.contact__item {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  gap: 36px;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.contact__link {
  align-items: center;
  gap: clamp(10px, 1.66667vw, 24px);
  font-size: clamp(14px, .6964rem + .8929vi, 24px);
  display: flex;
}

.contact__link:before {
  content: "";
  width: 64px;
  height: 64px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .contact__link:before {
    width: 48px;
    height: 48px;
  }
}

.contact__link--email:before {
  background-image: url("../images/icons/email.svg");
}

@media only screen and (max-width: 576px) {
  .contact__link--email {
    flex-direction: column;
  }
}

.contact__link--phone:before {
  background-image: url("../images/icons/phone.svg");
}

@media only screen and (max-width: 576px) {
  .contact__link--phone {
    flex-direction: column;
  }
}

.contact__link--shedule:before {
  background-image: url("../images/icons/clock.svg");
}

.contact__name {
  display: grid;
}

.contact__name span:not([class]) {
  font-weight: var(--fw-600);
}

.contact .btn {
  margin: 0 auto;
}

.partners__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

@media only screen and (max-width: 992px) {
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .partners__list {
    grid-template-columns: 1fr;
  }
}

.partners li {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  padding: clamp(16px, 1.66667vw, 24px);
}

.partners li img {
  margin-bottom: 19px;
  padding: 8px;
}

.partners p {
  font-size: 16px;
  line-height: 1.2;
}

.instalation__inner {
  min-height: clamp(400px, 44.8611vw, 646px);
  margin-bottom: 24px;
  position: relative;
}

.instalation__image {
  border-radius: var(--radius-big);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .instalation__image {
    position: relative;
  }
}

.instalation__box {
  z-index: 1;
  border-radius: var(--radius-big);
  width: 100%;
  max-width: 490px;
  background-color: var(--color-white);
  padding: 24px;
  position: absolute;
  top: 24px;
  left: 24px;
}

.instalation__box h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 1.6rem + .75vi, 40px);
}

@media only screen and (max-width: 768px) {
  .instalation__box {
    max-width: 100%;
    margin-bottom: 2rem;
    position: relative;
    inset: 0;
  }
}

.instalation__list {
  counter-reset: li;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: clamp(20px, 3.33333vw, 48px);
  display: grid;
}

@media only screen and (max-width: 992px) {
  .instalation__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .instalation__list {
    grid-template-columns: 1fr;
  }
}

.instalation__item {
  counter-increment: li;
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  flex-direction: column;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.instalation__item:before {
  content: counter(li, decimal-leading-zero);
  font-weight: var(--fw-700);
  align-self: flex-end;
  margin-bottom: clamp(16px, 2.22222vw, 32px);
  font-size: clamp(30px, 1.65rem + 1.125vi, 48px);
  line-height: 1.2;
  position: relative;
}

.instalation__item h3 {
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.instalation__item p {
  font-size: 16px;
  line-height: 1.2;
}

.instalation .btn {
  margin: 0 auto;
}

.support__inner {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(20px, 5.83333vw, 84px);
  display: grid;
}

@media only screen and (max-width: 768px) {
  .support__inner {
    grid-template-columns: 1fr;
  }
}

.support__list {
  border-radius: var(--radius-big);
  width: 100%;
  max-width: 700px;
  background-color: var(--color-white);
  flex-direction: column;
  gap: 1.6rem;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

.support__links {
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  display: flex;
}

.support__links a {
  font-weight: var(--fw-700);
}

.support h2, .support h3 {
  margin-bottom: 0;
}

.product {
  padding-bottom: clamp(20px, 2.77778vw, 40px);
}

.product__slider {
  position: relative;
  overflow: hidden;
}

.product__list {
  padding-bottom: 24px;
}

.product__item {
  border-radius: var(--radius-big);
  height: auto;
  background-color: var(--color-white);
  gap: 2.4rem;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
}

@media only screen and (max-width: 768px) {
  .product__item {
    flex-direction: column;
  }
}

.product__image {
  border-radius: var(--radius-big);
  overflow: hidden;
}

.product__image img {
  width: 100%;
  height: 100%;
}

.product__content {
  width: 100%;
  max-width: 445px;
  padding-top: 28px;
}

.product__content svg {
  max-height: 20px;
  margin-bottom: 16px;
}

.product__content h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 1.1rem + .75vi, 32px);
}

.product__content p {
  margin-bottom: clamp(20px, 3.47222vw, 50px);
  font-size: 16px;
}

.product__content li:not(:first-child) {
  margin-left: 25px;
  font-size: 16px;
  list-style-type: disc;
}

.product__content li:not(:last-child) {
  margin-bottom: 4px;
}

.product__content li:first-child {
  font-weight: var(--fw-700);
  margin-bottom: 16px;
  font-size: 20px;
}

.product h2 {
  margin-bottom: 24px;
}

.product .swiper-pagination {
  --swiper-pagination-color: var(--color-blue-900);
  --swiper-pagination-bullet-horizontal-gap: 8px;
  z-index: 1;
  position: relative;
  bottom: 12px;
}

.product .btn.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.product .btn--prev {
  left: 8px;
  scale: -1 1;
}

.product .btn--next {
  left: auto;
  right: 8px;
}

@media only screen and (max-width: 576px) {
  .product .btn {
    display: none;
  }
}

.blog__list {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(min-content, auto);
  gap: 24px;
  display: grid;
}

@media only screen and (max-width: 768px) {
  .blog__list {
    grid-template-columns: 1fr;
  }
}

.blog h1 {
  margin-bottom: 2.4rem;
  font-size: clamp(32px, 1.5rem + 1.6667vi, 48px);
}

.blog h2 {
  margin-bottom: 24px;
  font-size: clamp(22px, 1.1528rem + 1.1111vi, 40px);
}

@media only screen and (max-width: 576px) {
  .blog br {
    display: none;
  }
}

.recent {
  margin-bottom: clamp(30px, 7.77778vw, 112px);
}

.recent__article {
  border-radius: var(--radius-big);
  background-color: var(--color-white);
  gap: 48px;
  padding: clamp(16px, 1.66667vw, 24px);
  display: flex;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .recent__article {
    flex-direction: column;
  }
}

.recent__content {
  width: 100%;
  max-width: 445px;
  padding-top: clamp(20px, 4.30556vw, 62px);
  position: relative;
}

.recent__content h3 {
  margin-bottom: 16px;
  font-size: clamp(18px, 1.1651rem + 1.0494vi, 32px);
}

.recent__content p {
  margin-bottom: 16px;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .recent__content {
    max-width: 100%;
  }
}

.recent__image {
  border-radius: var(--radius-big);
  position: relative;
  overflow: hidden;
}

.recent__image img {
  width: 100%;
  height: 100%;
}

.recent__time {
  border-radius: var(--radius-main);
  background-color: var(--color-white);
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 25px;
}

.recent__date {
  opacity: .5;
  margin-bottom: 24px;
  font-size: 14px;
  display: block;
}

.recent__link:before {
  content: "";
  position: absolute;
  inset: 0;
}

