@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  margin: 0 auto;
}

.header {
  height: 87px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #3d348b;
}
@media only screen and (max-width: 48em) {
  .header {
    height: 72px;
  }
}
.header__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 48em) {
  .header__wrapper {
    -webkit-box-pack: space-between;
        -ms-flex-pack: space-between;
            justify-content: space-between;
  }
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo img,
.header__logo svg {
  max-width: 277px;
  height: 67px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 48em) {
  .header__navigation {
    display: none;
  }
}
.header__navigation__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__navigation__item:not(:last-child) {
  margin-right: 5.25rem;
}
@media only screen and (max-width: 62em) {
  .header__navigation__item:not(:last-child) {
    margin-right: 2.25rem;
  }
}
.header__navigation__link {
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
}
.header__navigation__link:hover {
  opacity: 0.85;
}
.header__navigation__link.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.header__navigation__link.flex a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
}
.header__navigation__link.flex a:hover {
  opacity: 0.85;
}

.footer {
  padding: 42px 0;
  background: #3d348b;
  text-align: center;
}
.footer__logo {
  margin-bottom: 60px;
}
@media only screen and (max-width: 48em) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
.footer__logo img {
  max-width: 277px;
  width: 100%;
  height: 67px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 48em) {
  .footer__logo img {
    max-width: 121px;
    height: auto;
  }
}
.footer__contacts {
  width: 33.3333333333%;
  margin-left: 33.3333333333%;
}
@media only screen and (max-width: 48em) {
  .footer__contacts {
    width: 100%;
    margin-left: 0;
  }
}
.footer__contacts__title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  margin-bottom: 12px;
}
@media only screen and (max-width: 48em) {
  .footer__contacts__title {
    font-size: 14px;
  }
}
.footer__contacts__list ul {
  list-style: none;
}
.footer__contacts__list ul li {
  text-align: center;
  font-size: 18px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media only screen and (max-width: 48em) {
  .footer__contacts__list ul li {
    font-size: 14px;
    line-height: normal;
  }
}
.footer__contacts__list ul li a {
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
}

.btn {
  color: #ffffff;
  background: #191716;
  border-color: transparent;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  text-align: center;
  padding: 8px 40px;
  margin: 0;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.btn-primary {
  background-color: #3d348b;
  color: #e6af2e;
}
.btn-secondary {
  background-color: #e6af2e;
  color: #191716;
}
.btn-secondary:hover {
  background-color: #d29e25;
}

.scroll-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e6af2e;
  border-radius: 50%;
  z-index: 123;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}
.scroll-btn.visible {
  visibility: visible;
  opacity: 1;
}
.scroll-btn:hover {
  background-color: #d29e25;
}
@media only screen and (max-width: 48em) {
  .scroll-btn {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 48em) {
  .scroll-btn svg,
  .scroll-btn img {
    max-width: 12px;
    width: 100%;
  }
}

.swiper {
  width: 100%;
  overflow-y: visible !important;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
  bottom: -42px !important;
  top: var(--swiper-pagination-top, auto) !important;
  height: 20px !important;
  z-index: 11 !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 8px;
  height: 8px;
  content: "" !important;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 48em) {
  .swiper-button-prev,
  .swiper-button-next {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='7' viewBox='0 0 6 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75 5.66506L1 3.5L4.75 1.33494L4.75 5.66506Z' stroke='black' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='7' viewBox='0 0 6 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.25 1.33494L5 3.5L1.25 5.66506L1.25 1.33494Z' stroke='black' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.swiper-pagination {
  bottom: -42px !important;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
  border: 1px solid #191716 !important;
  opacity: 1 !important;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

.swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px !important;
  background: #3d348b !important;
}

.wrapper {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  margin: 0 auto;
}

.section-hero {
  height: calc(100vh - 87px);
  background-image: url("../../img/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 48em) {
  .section-hero {
    height: calc(100vh - 72px);
    background-position: 75% 20%;
  }
}
.section-hero-products {
  background-image: url("../../img/hero-bg-products.jpg");
}
@media only screen and (max-width: 48em) {
  .section-hero-products {
    background-position: center center;
  }
}
.section-hero-about {
  background-image: url("../../img/hero-bg-about.jpg");
}
@media only screen and (max-width: 48em) {
  .section-hero-about {
    background-position: center center;
  }
}
.section-hero .hero {
  position: relative;
  height: 100%;
}
.section-hero .hero__wrapper {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  margin: 0 auto;
}
.section-hero .hero__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-hero .hero__title {
  margin-bottom: 20px;
}
.section-hero .hero__title h1 {
  font-size: 84px;
  font-weight: 900;
  line-height: 102px;
  text-align: left;
  color: #ffffff;
}
@media only screen and (max-width: 48em) {
  .section-hero .hero__title h1 {
    font-size: 25px;
    line-height: 30px;
  }
}
.section-hero .hero__text {
  width: 41.6666666667%;
  font-size: 23px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 24px;
}
@media only screen and (max-width: 48em) {
  .section-hero .hero__text {
    width: 100%;
    font-size: 18px;
    line-height: 22px;
  }
}

.section-why-us {
  padding-top: 60px;
}
@media only screen and (max-width: 48em) {
  .section-why-us {
    padding-top: 40px;
    margin-bottom: 80px;
  }
}
.section-why-us .why-us__wrapper {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  margin: 0 auto;
}
.section-why-us .why-us__header {
  margin-bottom: 60px;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__header {
    margin-bottom: 29px;
  }
}
.section-why-us .why-us__title {
  margin-bottom: 12px;
}
.section-why-us .why-us__title h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 53px;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__title h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: normal;
  }
}
.section-why-us .why-us__text {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__text {
    display: none;
  }
}
.section-why-us .why-us__text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}
.section-why-us .why-us__cards {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 60px -10px 46px -10px;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__cards {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    margin: 0;
  }
}
.section-why-us .why-us__cards .card {
  padding: 10px;
  height: auto;
}
.section-why-us .why-us__cards .card__wrapper {
  background: #3d348b;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
}
.section-why-us .why-us__cards .card__top {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ffffff;
}
.section-why-us .why-us__cards .card__top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-why-us .why-us__cards .card__top__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.section-why-us .why-us__cards .card__top__icon img,
.section-why-us .why-us__cards .card__top__icon svg {
  height: 60px;
  max-width: 80px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__cards .card__top__icon img,
  .section-why-us .why-us__cards .card__top__icon svg {
    height: 83px;
    max-width: 80px;
  }
}
.section-why-us .why-us__cards .card__top__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #ffffff;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__cards .card__top__title {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
  }
}
.section-why-us .why-us__cards .card__bottom__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #ffffff;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__cards .card__bottom__text {
    font-size: 14px;
    line-height: normal;
  }
}
.section-why-us .why-us__card {
  width: 33.3333333333%;
}
@media only screen and (max-width: 48em) {
  .section-why-us .why-us__card {
    width: 100%;
  }
}

.section-products,
.section-about {
  margin-top: 46px;
}
@media only screen and (max-width: 48em) {
  .section-products,
  .section-about {
    margin-top: 36px;
  }
}
.section-products .products__wrapper,
.section-products .about__wrapper,
.section-about .products__wrapper,
.section-about .about__wrapper {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  margin: 0 auto;
}
.section-products .products__header,
.section-products .about__header,
.section-about .products__header,
.section-about .about__header {
  margin-bottom: 60px;
}
@media only screen and (max-width: 48em) {
  .section-products .products__header,
  .section-products .about__header,
  .section-about .products__header,
  .section-about .about__header {
    margin-bottom: 16px;
  }
}
.section-products .products__title,
.section-products .about__title,
.section-about .products__title,
.section-about .about__title {
  margin-bottom: 12px;
}
.section-products .products__title h2,
.section-products .about__title h2,
.section-about .products__title h2,
.section-about .about__title h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 53px;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .section-products .products__title h2,
  .section-products .about__title h2,
  .section-about .products__title h2,
  .section-about .about__title h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: normal;
  }
}
.section-products .products__text,
.section-products .about__text,
.section-about .products__text,
.section-about .about__text {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.section-products .products__text p,
.section-products .about__text p,
.section-about .products__text p,
.section-about .about__text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .section-products .products__text p,
  .section-products .about__text p,
  .section-about .products__text p,
  .section-about .about__text p {
    line-height: normal;
  }
}
.section-products .products__cards__wrapper,
.section-products .about__cards__wrapper,
.section-about .products__cards__wrapper,
.section-about .about__cards__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 60px -10px 91px -10px;
  height: 100%;
}
@media only screen and (max-width: 48em) {
  .section-products .products__cards__wrapper,
  .section-products .about__cards__wrapper,
  .section-about .products__cards__wrapper,
  .section-about .about__cards__wrapper {
    margin: 16px 0 44px 0;
  }
}
.section-products .products__cards__wrapper .card,
.section-products .about__cards__wrapper .card,
.section-about .products__cards__wrapper .card,
.section-about .about__cards__wrapper .card {
  position: relative;
  border-radius: 10px;
  height: 100%;
  aspect-ratio: 1/1;
  padding: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 62em) {
  .section-products .products__cards__wrapper .card,
  .section-products .about__cards__wrapper .card,
  .section-about .products__cards__wrapper .card,
  .section-about .about__cards__wrapper .card {
    height: 500px;
    aspect-ratio: unset;
  }
}
@media only screen and (max-width: 48em) {
  .section-products .products__cards__wrapper .card,
  .section-products .about__cards__wrapper .card,
  .section-about .products__cards__wrapper .card,
  .section-about .about__cards__wrapper .card {
    padding: 0;
  }
  .section-products .products__cards__wrapper .card:not(:last-child),
  .section-products .about__cards__wrapper .card:not(:last-child),
  .section-about .products__cards__wrapper .card:not(:last-child),
  .section-about .about__cards__wrapper .card:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.section-products .products__cards__wrapper .card__wrapper,
.section-products .about__cards__wrapper .card__wrapper,
.section-about .products__cards__wrapper .card__wrapper,
.section-about .about__cards__wrapper .card__wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.section-products .products__cards__wrapper .card__wrapper:hover .card__body,
.section-products .about__cards__wrapper .card__wrapper:hover .card__body,
.section-about .products__cards__wrapper .card__wrapper:hover .card__body,
.section-about .about__cards__wrapper .card__wrapper:hover .card__body {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.section-products .products__cards__wrapper .card__thumb,
.section-products .about__cards__wrapper .card__thumb,
.section-about .products__cards__wrapper .card__thumb,
.section-about .about__cards__wrapper .card__thumb {
  position: relative;
  height: 100%;
}
.section-products .products__cards__wrapper .card__thumb::after,
.section-products .about__cards__wrapper .card__thumb::after,
.section-about .products__cards__wrapper .card__thumb::after,
.section-about .about__cards__wrapper .card__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(61, 52, 139, 0)), to(rgba(61, 52, 139, 0.65)));
  background: linear-gradient(180deg, rgba(61, 52, 139, 0) 40%, rgba(61, 52, 139, 0.65) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.section-products .products__cards__wrapper .card__thumb img,
.section-products .about__cards__wrapper .card__thumb img,
.section-about .products__cards__wrapper .card__thumb img,
.section-about .about__cards__wrapper .card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.section-products .products__cards__wrapper .card__wrapper:hover .card__thumb img,
.section-products .about__cards__wrapper .card__wrapper:hover .card__thumb img,
.section-about .products__cards__wrapper .card__wrapper:hover .card__thumb img,
.section-about .about__cards__wrapper .card__wrapper:hover .card__thumb img {
  -webkit-transform: scale(1.06);
      -ms-transform: scale(1.06);
          transform: scale(1.06);
}
.section-products .products__cards__wrapper .card__wrapper:hover .card__thumb::after,
.section-products .about__cards__wrapper .card__wrapper:hover .card__thumb::after,
.section-about .products__cards__wrapper .card__wrapper:hover .card__thumb::after,
.section-about .about__cards__wrapper .card__wrapper:hover .card__thumb::after {
  opacity: 1;
}
.section-products .products__cards__wrapper .card__body,
.section-products .about__cards__wrapper .card__body,
.section-about .products__cards__wrapper .card__body,
.section-about .about__cards__wrapper .card__body {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  min-height: 74px;
  padding: 20px 32px;
  background: #3d348b;
  padding-left: 32px;
  border-radius: 0 0 10px 10px;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  -webkit-transform: translateY(calc(100% - 74px));
      -ms-transform: translateY(calc(100% - 74px));
          transform: translateY(calc(100% - 74px));
}
@media only screen and (max-width: 48em) {
  .section-products .products__cards__wrapper .card__body,
  .section-products .about__cards__wrapper .card__body,
  .section-about .products__cards__wrapper .card__body,
  .section-about .about__cards__wrapper .card__body {
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.section-products .products__cards__wrapper .card__title,
.section-products .about__cards__wrapper .card__title,
.section-about .products__cards__wrapper .card__title,
.section-about .about__cards__wrapper .card__title {
  font-size: 28px;
  line-height: normal;
  font-weight: 600;
  color: #ffffff;
}
.section-products .products__cards__wrapper .card__description,
.section-products .about__cards__wrapper .card__description,
.section-about .products__cards__wrapper .card__description,
.section-about .about__cards__wrapper .card__description {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
}
.section-products .products__card,
.section-products .about__card,
.section-about .products__card,
.section-about .about__card {
  width: 33.3333333333%;
  height: 100%;
}
@media only screen and (max-width: 48em) {
  .section-products .products__card,
  .section-products .about__card,
  .section-about .products__card,
  .section-about .about__card {
    width: 100%;
  }
}
.section-products .products__link,
.section-products .about__link,
.section-about .products__link,
.section-about .about__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-products .products__link .btn,
.section-products .about__link .btn,
.section-about .products__link .btn,
.section-about .about__link .btn {
  padding: 15px 52px;
}
.section-products .about__cards,
.section-about .about__cards {
  margin-left: 8.3333333333%;
}
@media only screen and (max-width: 48em) {
  .section-products .about__cards,
  .section-about .about__cards {
    margin-left: 0;
  }
}
.section-products .about__cards__wrapper .card,
.section-about .about__cards__wrapper .card {
  height: auto;
  aspect-ratio: unset;
}
.section-products .about__cards__wrapper .card__body,
.section-about .about__cards__wrapper .card__body {
  position: relative;
  left: unset;
  right: unset;
  bottom: unset;
  top: -20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.section-products .about__cards__wrapper .card__thumb,
.section-about .about__cards__wrapper .card__thumb {
  height: auto;
}
.section-products .about__cards__wrapper .card__thumb img,
.section-about .about__cards__wrapper .card__thumb img {
  width: 100%;
  height: 466px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-products .about__cards__wrapper .card__title,
.section-about .about__cards__wrapper .card__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
}
@media only screen and (max-width: 48em) {
  .section-products .about__cards__wrapper .card__title,
  .section-about .about__cards__wrapper .card__title {
    font-size: 30px;
    line-height: 36px;
  }
}
.section-products .about__cards__wrapper .card__subtitle,
.section-about .about__cards__wrapper .card__subtitle {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: #e6af2e;
}
@media only screen and (max-width: 48em) {
  .section-products .about__cards__wrapper .card__subtitle,
  .section-about .about__cards__wrapper .card__subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}
.section-products .about__cards__wrapper .card__links,
.section-about .about__cards__wrapper .card__links {
  margin-top: 32px;
}
.section-products .about__cards__wrapper .card__links a,
.section-about .about__cards__wrapper .card__links a {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  text-decoration: none;
}
.section-products .about__cards__wrapper .card__links a:not(:last-child),
.section-about .about__cards__wrapper .card__links a:not(:last-child) {
  margin-bottom: 0.25rem;
}
.section-products .about__card,
.section-about .about__card {
  width: 41.6666666667%;
  height: 100%;
}
.section-products .about__card:nth-child(2n),
.section-about .about__card:nth-child(2n) {
  margin-left: 8.3333333333%;
}
@media only screen and (max-width: 48em) {
  .section-products .about__card:nth-child(2n),
  .section-about .about__card:nth-child(2n) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 48em) {
  .section-products .about__card,
  .section-about .about__card {
    width: 100%;
  }
}

.section-advantages {
  position: relative;
  margin-top: 88px;
  background: #d9d9d9;
  z-index: 1;
}
.section-advantages .advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 78px;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__wrapper {
    padding-top: 18px;
    padding-bottom: 34px;
  }
}
.section-advantages .advantages__col {
  width: 50%;
}
.section-advantages .advantages__col.left-col {
  width: 41.6666666667%;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__col.left-col {
    width: 100%;
  }
}
.section-advantages .advantages__col.right-col {
  margin-left: 8.3333333333%;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__col.right-col {
    width: 100%;
    margin-left: 0;
  }
}
.section-advantages .advantages__cards {
  margin-top: 40px;
}
.section-advantages .advantages__cards ul {
  list-style: none;
}
.section-advantages .advantages__cards ul .card {
  padding: 20px 20px 20px 48px;
  background: #3d348b;
  border-radius: 10px;
}
.section-advantages .advantages__cards ul .card:not(:last-child) {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__cards ul .card:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.section-advantages .advantages__cards ul .card__container {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #ffffff;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__cards ul .card__container {
    font-size: 14px;
    line-height: 17px;
  }
}
.section-advantages .advantages__cards ul .card__container::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-advantages .advantages__cards ul .card__title {
  display: inline;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__cards ul .card__title {
    font-size: 14px;
    line-height: 17px;
  }
}
.section-advantages .advantages__title {
  margin-bottom: 12px;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__title {
    margin-bottom: 0;
  }
}
.section-advantages .advantages__title h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: #191716;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__title h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.section-advantages .advantages__text {
  margin-bottom: 24px;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__text {
    margin-bottom: 0;
  }
}
.section-advantages .advantages__text h3 {
  font-size: 35px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__text h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
.section-advantages .advantages__subtitle h2 {
  font-size: 64px;
  font-weight: 900;
  line-height: 77px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__subtitle h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.section-advantages .advantages__image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  max-width: 593px;
  width: 100%;
}
.section-advantages .advantages__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 48em) {
  .section-advantages .advantages__image {
    position: relative;
    left: -12px;
  }
}

.section-services {
  height: 100vh;
  background-image: url("../../img/services-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.section-services .services {
  height: 100%;
}
.section-services .services__wrapper {
  height: 100%;
  padding-top: 176px;
}
@media only screen and (max-width: 48em) {
  .section-services .services__wrapper {
    padding-top: 36px;
  }
}
.section-services .services__title {
  margin-bottom: 50px;
}
@media only screen and (max-width: 48em) {
  .section-services .services__title {
    margin-bottom: 18px;
  }
}
.section-services .services__title h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 53px;
}
@media only screen and (max-width: 48em) {
  .section-services .services__title h2 {
    font-size: 35px;
    line-height: 42px;
    text-align: center;
  }
}
.section-services .services__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
@media only screen and (max-width: 48em) {
  .section-services .services__text {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
  }
}

.header__lang {
  cursor: pointer;
  position: relative;
}
.header__lang-country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__lang-country>* {
  border: 1px solid transparent;
  width: 35px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.header__lang-list {
  position: absolute;
  z-index: 100;
  display: -ms-grid;
  display: grid;
  grid-gap: 7px 10px;
  padding: 7px;
  background: #1f1a4f;
  border-radius: 10px;
  top: calc(100% + 10px);
  right: 0;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
}
.header__lang-country>* {
  border: 1px solid transparent;
  width: 35px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.header__box{
  display: flex;
  align-items: center;
  gap: 25px;
}

.gallery__cards__wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .gallery__cards__wrapper{
     grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .gallery__cards__wrapper{
     grid-template-columns: 1fr 1fr;
  }
}
.gallery__card {
  display: flex;
}
.gallery__card img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}