@import url("../fonts/TildaSans-Regular.css");

:root {
  --dark-blue: #02305e;
  --light-blue: #0061c0;
  --text-color-blue: #02305d;
  --white: #fff;
  --max-content-width: 1160px;
  --content-padding: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  min-height: 100%;
  height: 100%;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  font: 22px / 1.2 "TildaSans", Arial, sans-serif;
  font-weight: 400;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color-blue);
  position: relative;
}
a:link,
a:visited {
  text-decoration: none;
  color: var(--text-color-blue);
}
a:hover {
  text-decoration: none;
}
.wrapper {
  overflow: hidden;
  min-width: 320px;
}
.container {
  margin: 0 auto;
  max-width: calc(var(--max-content-width) + 2 * var(--content-padding));
  padding: 0 var(--content-padding);
  box-sizing: border-box;
}
.container-small {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 35px;
}
.container-mini {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 35px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.33;
  color: var(--text-color-blue);
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 60px;
}
h3 {
  font-size: 45px;
}
h4 {
  font-size: 40px;
}
h5 {
  font-size: 35px;
}
/*-------------------------------*/
.btn {
  display: inline-block;
  appearance: none;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  border: 0;
}
.btn--blue,
.btn--blue:link,
.btn--blue:visited {
  background-color: var(--light-blue);
  color: var(--white);
}
.btn--dark-blue,
.btn--dark-blue:link,
.btn--dark-blue:visited {
  background-color: var(--dark-blue);
  color: var(--white);
}
/*-------------------------------*/
.header__top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*-------------------------------*/
.l-header .header__content-wrapper .header__logo-blue {
  display: none;
}
/*-------------------------------*/
.header__content {
  padding: 33px 0;
  background-color: var(--dark-blue);
  color: var(--white);
}
.header__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.header__content-inner {
  display: flex;
  align-items: center;
  column-gap: 15px;
  position: relative;
}
.header__company {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  text-transform: uppercase;
  max-width: 116px;
}
.header__company-links {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.header__company-info {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  max-width: 370px;
}
.header__phone:link,
.header__phone:visited,
.header__phone a:link,
.header__phone a:visited {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.header__email:link,
.header__email:visited {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 4px 14px 8px;
  border: 1px solid rgba(0, 97, 192, 0.5);
}
/*-------------------------------*/
.header__top-wrapper > div,
.b-footer .footer__bottom > div,
.nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 740px;
}
.nav__link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}
/*---------------------------*/
.b-sandwich {
  box-sizing: border-box;
  background-color: transparent;
  z-index: 1;
  /* position: absolute;
    top: 48px;
    right: 35px; */
  display: none;
}
.b-sandwich .sandwich__icon {
  width: 30px;
  height: 14px;
  background: url("../images/icons/burger-icon.svg") 50% 50% no-repeat;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
/*---------------------------*/
.l-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.l-sidebar--open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.l-sidebar-block {
  position: fixed;
  z-index: 1000;
  background-color: #fff;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 340px;
  -webkit-box-shadow: 0 0 15px 5px rgb(0 0 0 / 30%);
  box-shadow: 0 0 15px 5px rgb(0 0 0 / 30%);
  box-sizing: border-box;
  padding: 20px 20px 0 35px;
}
.l-sidebar-block--left {
  top: 0;
  left: -150%;
  bottom: 0;
  -webkit-transition: left 0.5s ease-out;
  transition: left 0.5s ease-out;
}
.l-sidebar-block--open.l-sidebar-block--left {
  left: 0;
  -webkit-transition: left 0.5s ease-out;
  transition: left 0.5s ease-out;
}
/*--------------------------------------*/
.b-sidebar .sidebar__close {
  background-color: #fff;
  text-align: right;
  padding-top: 15px;
}
.b-sidebar .sidebar__close-btn {
  display: inline-block;
  vertical-align: middle;
  top: 0;
  background: url("../images/icons/sidebar-close.svg") 50% 50% no-repeat;
  width: 26px;
  height: 25px;
  z-index: 100;
  cursor: pointer;
}
.b-sidebar .sidebar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.b-sidebar-menu {
  margin-bottom: 75px;
}
.b-sidebar-menu .sidebar-menu__item {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(102, 53, 33, 0.3);
}
.b-sidebar-menu .sidebar-menu__item:last-child {
  border-bottom: 0;
}
.b-sidebar-menu .sidebar-menu__level-1 {
  padding: 0 35px 0 20px;
}
.b-sidebar-menu .sidebar-menu__item > span a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
  color: var();
}

.b-sidebar .b-footer .footer__contacts {
  flex-direction: column;
  align-items: center;
}
.b-sidebar .b-footer .footer__contacts > a {
  margin-bottom: 15px;
}
/*--------------------------------------*/
.l-footer {
  padding: 40px 0;
}
.l-footer .header__logo-white {
  display: none;
}
/*--------------------------------------*/
.b-footer .header__content-wrapper {
  margin-bottom: 50px;
}
.b-footer .header__phone:link,
.b-footer .header__phone:visited,
.b-footer .header__email:link,
.b-footer .header__email:visited {
  color: var(--max-content-width);
  border: 0;
}
.b-footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.b-footer .footer__policy:link,
.b-footer .footer__policy:visited {
  color: var(--text-color-blue);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.83;
}
.b-footer .footer__copy {
  font-size: 12px;
}
.b-footer .footer__additional-info {
  font-size: 14px;
}
.b-footer .footer__additional-info p {
  margin-top: 20px;
}
/*--------------------------------------*/
.b-fancy-form {
  display: none;
  max-width: 500px;
  padding: 0;
}
.b-fancy-form .fancy-form__wrapper {
  padding: 40px 50px;
  background-color: var(--light-blue);
}
.b-fancy-form .fancy-form__heafing {
  text-align: center;
  color: var();
  margin-bottom: 28px;
}
.b-fancy-form .fancy-form__description {
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.b-fancy-form input[type="text"],
.b-fancy-form input[type="tel"] {
  padding: 23px 40px;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  border: 0;
}
.b-fancy-form input[type="text"]::placeholder,
.b-fancy-form input[type="tel"]::placeholder,
.b-fancy-form textarea::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var();
}
.b-fancy-form textarea {
  width: 100%;
  padding: 20px;
  max-height: 165px;
  border: 0;
  height: 1000px;
}
.b-fancy-form .fancy-form__form-item {
  padding: 15px 0;
}
.b-fancy-form .fancy-form__button {
  background: var();
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 20px 0;
  box-sizing: border-box;
  border: 1px solid var();
  transition: background 0.3s ease;
  margin-bottom: 25px;
}
.b-fancy-form .fancy-form__button:hover {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.b-fancy-form .fancy-form__license {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  vertical-align: middle;
  text-align: center;
  max-width: 395px;
  margin: 0 auto;
}
.b-fancy-form .fancy-form__license a:link,
.b-fancy-form .fancy-form__license a:visited {
  text-decoration: underline;
  color: #fff;
}
.b-fancy-form .fancy-form__form-bottom {
  text-align: center;
}
.form-control label .star {
  display: none;
}
/*--------------------------------------*/
.fancybox__slide {
  padding-left: 35px;
  padding-right: 35px;
}
.fancybox__content > .carousel__button.is-close {
  top: 10px;
  right: 10px;
}
.carousel__button svg {
  stroke: rgba(255, 255, 255, 0.5);
}
/*--------------------------------------*/
.select2-container {
  width: 117px !important;
  flex-shrink: 0;
}
.order-block__form-item--phone {
  display: flex;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(102, 53, 33, 0.5);
}
.img-flag {
  display: flex;
  align-items: center;
  column-gap: 15px;
  max-width: 15px;
}
.img-flag img {
  flex-shrink: 0;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
  padding-top: 19px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 20px;
  right: 10px;
  height: 5px;
  width: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 5px;
  background: url("../images/icons/select-arrow-down.svg") 0 0 / cover no-repeat;
}
.select2-container .select2-selection--single {
  height: 67px;
}
/*--------------------------------------*/
.b-form .form-item__error input[type="text"],
.b-form .form-item__error input[type="tel"] {
  box-shadow: inset 0px 0px 24px rgba(255, 41, 0, 0.56);
}
.b-form .form-item__error input[type="text"]::placeholder,
.b-form .form-item__error input[type="tel"]::placeholder {
  color: #ff2900;
}
/*--------------------------------------*/
.b-scroll-top {
  box-sizing: border-box;
  position: fixed;
  right: 50px;
  bottom: 10%;
  width: 50px;
  height: 50px;
  background-color: var(--dark-blue);
  z-index: 99;
  cursor: pointer;
  -webkit-transition: background-color 0.2s linear, -webkit-transform 0.3s linear;
  transition: background-color 0.2s linear, -webkit-transform 0.3s linear;
  transition: background-color 0.2s linear, transform 0.3s linear;
  transition: background-color 0.2s linear, transform 0.3s linear, -webkit-transform 0.3s linear;
  transform: translateY(1000%);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 50px;
}
.b-scroll-top .scroll-top__scroll-arr {
  font-size: 0;
}
.b-scroll-top:hover {
  background-color: #0152a2;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.b-scroll-top.b-scroll-top--on {
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
/*--------------------------------------*/
#policy {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  background-color: #fff;
  padding: 30px 40px;
  z-index: 100;
  display: none;
}
.close-block {
  position: relative;
}
.close-block a.close {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../images/icon_close.png");
  background-size: 100% 100%;
  top: -15px;
  right: -15px;
}
/*--------------------------------------*/
.l-promo {
  background-color: var(--light-blue);
  color: var(--white);
}
/*--------------------------------------*/
.b-main-slider-content {
  padding-top: 60px;
  padding-bottom: 110px;
}
.b-main-slider-content .main-slider-content__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.b-main-slider-content .main-slider-content__left {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.b-main-slider-content .main-slider-content__slide-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 30px;
}
.b-main-slider-content .main-slider-content__compressor-name {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  max-width: 610px;
}
.b-main-slider-content .main-slider-content__slide-desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: auto;
}
.b-main-slider-content .main-slider-content__slide-desc > p {
  max-width: 160px;
}
.b-main-slider-content .main-slider-content__slide-characteristics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 400px;
  margin-bottom: 65px;
}
.b-main-slider-content .main-slider-content__slide-characteristics-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 22px;
  max-width: 175px;
}
.b-main-slider-content .main-slider-content__right {
  position: relative;
  margin-left: auto;
  max-width: 72.5%;
}
.b-main-slider-content .main-slider-content__right::before {
  content: "";
  width: 56px;
  height: 56px;
  position: absolute;
  top: 30px;
  right: 30px;
  background: url("../images/icons/plus-icon.svg") center / cover no-repeat;
}
.b-main-slider-content .main-slider-content__front-image {
  position: absolute;
  /* left: 70px; */
  left: 140px;
  bottom: -67px;
  right: 220px;
  z-index: 1;
}
.b-main-slider-content .main-slider-content__text {
  position: absolute;
  right: 60px;
  bottom: 50px;
  max-width: 150px;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.b-main-slider-content .main-slider-content__text > p {
  padding-bottom: 1em;
}
/*--------------------------------------*/
.b-promo-carousel {
  position: relative;
}
.b-promo-carousel .swiper-button-prev {
  left: 0;
  background: url("../images/icons/main-slider-prev.svg") center center / cover no-repeat;
}
.b-promo-carousel .swiper-button-next {
  right: 0;
  background: url("../images/icons/main-slider-next.svg") center center / cover no-repeat;
}
.b-promo-carousel .swiper-button-prev,
.b-promo-carousel .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  margin: 0;
  top: auto;
  bottom: 5px;
  /* background: rgba(2, 48, 93, 0.30); */
}
.b-promo-carousel .swiper-button-prev::after,
.b-promo-carousel .swiper-button-next::after {
  content: "";
}
.b-promo-carousel .swiper-wrapper {
  height: auto;
}
.b-promo-carousel .promo-carousel__pagination {
  display: none;
}
.b-promo-carousel .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.b-promo-carousel .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--text-color-blue);
}
/*--------------------------------------*/
.b-about-company {
}
.b-about-company .about-company__wrapper {
  display: flex;
  padding: 50px 0 90px;
}
.b-about-company .about-company__left {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.b-about-company .about-company__left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border: 100px solid transparent;
  border-left: 100px solid var(--dark-blue);
  border-top: 100px solid var(--dark-blue);
  z-index: 0;
  opacity: 0.3;
}
.b-about-company .about-company__name {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.21;
  margin-bottom: 3px;
}
.b-about-company .about-company__country {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 37px;
}
.b-about-company .about-company__swiper {
  margin-bottom: 20px;
  max-width: 360px;
  margin-left: 0;
}
.b-about-company .swiper-wrapper {
  height: auto;
}
.b-about-company .about-company__swiper .swiper-slide {
  position: relative;
  font-size: 0;
}
.b-about-company .about-company__swiper .swiper-slide::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border: 55px solid transparent;
  border-right: 55px solid var(--dark-blue);
  border-bottom: 55px solid var(--dark-blue);
}
.b-about-company .about-company__prev::after,
.b-about-company .about-company__next::after {
  content: "";
}
.b-about-company .about-company__prev,
.b-about-company .about-company__next {
  width: 30px;
  height: 30px;
  top: auto;
  bottom: 10px;
  margin: 0;
}
.b-about-company .about-company__prev {
  left: 10px;
  background: url("../images/icons/about-company-prev.svg") center center / cover no-repeat;
}
.b-about-company .about-company__next {
  right: auto;
  left: 47px;
  background: url("../images/icons/about-company-next.svg") center center / cover no-repeat;
}
.b-about-company .about-company__swiper .swiper-slide img {
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
}
.b-about-company .about-company__desctiption {
  max-width: 360px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.21;
  margin-bottom: 20px;
}
.b-about-company .about-company__subdesctiption {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 360px;
}
.b-about-company .about-company__right {
  position: relative;
  flex: 1;
}
.b-about-company .about-company__right::before {
  content: "";
  position: absolute;
  bottom: -90px;
  right: 0;
  border: 143px solid transparent;
  border-right: 143px solid var(--dark-blue);
  border-bottom: 143px solid var(--dark-blue);
  opacity: 0.3;
}
.b-about-company .about-company__main-title {
  color: var(--white);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 112px;
  padding-top: 90px;
  position: relative;
}
.b-about-company .about-company__main-title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border: 30px solid transparent;
  border-top: 30px solid var(--dark-blue);
  border-right: 30px solid var(--dark-blue);
}
.b-about-company .about-company__count-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.21;
  margin-bottom: 35px;
}
.b-about-company .about-company__count {
  font-size: 100px;
  font-weight: 400;
  line-height: 0.6;
}
.b-about-company .about-company__available {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
}
/*--------------------------------------*/
.l-certificates {
  padding: 200px 0 230px;
}
/*--------------------------------------*/
.b-certificates {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.b-certificates .certificates__info {
  flex: 1 1 43%;
}
.b-certificates .certificates__gallery {
  flex: 1 1 57%;
  position: relative;
}
.b-certificates .certificates__heading {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 50px;
}
.b-certificates .certificates__info p {
  margin-bottom: 1.5em;
}
.b-certificates .certificates__info p:last-child {
  margin-bottom: 0;
}
.b-certificates .certificates__item {
  position: absolute;
}
.b-certificates .certificates__item img {
  width: 100%;
}
.b-certificates .certificates__item--main {
  text-align: center;
}
.b-certificates .certificates__item--top {
  top: -32px;
  left: 50%;
  transform: translate(-100%, -100%);
  width: 100px;
}
.b-certificates .certificates__item--top::before {
  content: "";
  position: absolute;
  right: -160%;
  bottom: 0;
  border: 20px solid transparent;
  border-top: 20px solid var(--text-color-blue);
  border-left: 20px solid var(--text-color-blue);
  opacity: 0.3;
}
.b-certificates .certificates__item--left-top {
  top: 0;
  left: 70px;
  transform: translateY(-50%);
}
.b-certificates .certificates__item--left-top::before {
  content: "";
  position: absolute;
  left: -68px;
  bottom: 5px;
  border: 17px solid transparent;
  border-top: 17px solid var(--dark-blue);
  border-right: 17px solid var(--dark-blue);
}
.b-certificates .certificates__item--left {
  left: 7px;
  top: 50%;
  transform: translateY(-20%);
}
.b-certificates .certificates__item--bottom {
  bottom: -35px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 115px;
}
.b-certificates .certificates__item--bottom::before {
  content: "";
  position: absolute;
  left: -85px;
  top: 0;
  border: 20px solid transparent;
  border-top: 20px solid var(--text-color-blue);
  border-left: 20px solid var(--text-color-blue);
  opacity: 0.3;
}
.b-certificates .certificates__item--right {
  top: 50%;
  right: 70px;
  transform: translateY(-30%);
}
.b-certificates .certificates__item--right::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -100%;
  border: 20px solid transparent;
  border-top: 20px solid var(--dark-blue);
  border-right: 20px solid var(--dark-blue);
}
.b-certificates .certificates__item--top-right {
  top: 0;
  right: 0;
  transform: translate(-50%, -50%);
}
/*--------------------------------------*/
.l-advantages {
  padding: 60px 0 60px;
  background-color: #e6f0f9;
}
/*--------------------------------------*/
.b-advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px;
}
.b-advantages > * {
  width: calc(50% - 65px);
}
.b-advantages .advantages__heading {
  color: var(--text-color-blue);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}
.b-advantages .advantages__item {
  display: flex;
  column-gap: 40px;
}
.b-advantages .advantages__image {
  flex: 1 1 34.6%;
}
.b-advantages .advantages__info {
  flex: 1 1 57.7%;
}
.b-advantages .advantages__title {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.14;
  margin-bottom: 16px;
  padding-top: 35px;
}
.b-advantages .advantages__desc {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
}
/*--------------------------------------*/
.l-sphere {
  background-color: var(--light-blue);
  padding: 60px 0 70px;
  color: var(--white);
}
/*--------------------------------------*/
.b-sphere .sphere__heading {
  color: var(--white);
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 77px;
}
.b-sphere .sphere__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.b-sphere .sphere__item {
  width: calc(100% / 3 - 40px);
  padding-left: 5px;
}
.b-sphere .sphere__image {
  position: relative;
  z-index: 1;
  margin-bottom: 53px;
}
.b-sphere .sphere__item:first-child .sphere__image::before {
  --triangleColor: var(--dark-blue);
}
.b-sphere .sphere__item:nth-child(2) .sphere__image::before {
  --triangleColor: var(--white);
}
.b-sphere .sphere__item:nth-child(3) .sphere__image::before {
  --triangleColor: #2b81d3;
}
.b-sphere .sphere__image::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  border: 21px solid transparent;
  border-left: 21px solid var(--triangleColor);
  border-top: 21px solid var(--triangleColor);
  z-index: 2;
}
.b-sphere .sphere__image::after {
  content: "";
  position: absolute;
  bottom: -19px;
  right: -19px;
  border: 168px solid transparent;
  border-right: 168px solid var(--text-color-blue);
  border-bottom: 168px solid var(--text-color-blue);
  opacity: 0.2;
  z-index: -1;
}
.b-sphere .sphere__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.07;
}
/*--------------------------------------*/
.l-catalog {
  padding: 60px 0 40px;
}
/*--------------------------------------*/
.b-product {
  position: relative;
  margin-bottom: 40px;
}
.b-product--anestesia::after,
.b-product--labs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border: 55px solid transparent;
  border-right: 55px solid #e6f0f9;
  border-top: 55px solid #e6f0f9;
  z-index: -1;
}
.b-product--anestesia .product__btns {
  margin-top: 140px;
}
.b-product .product__btns--top {
  margin-top: 100px;
}
.b-product .product__heading {
  max-width: 860px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 80px;
}
.b-product .product__item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.b-product .product__top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 80px;
}
.b-product .product__image {
  flex: 1 1 45.5%;
}
.b-product .product__content {
  flex: 1 1 48.2%;
}
.b-product .product__name {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.14;
}
.b-product .product__price {
  color: var(--light-blue);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.14;
}
.b-product .product__article {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #8a93a0;
}
.b-product .product__stock {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  color: #257de3;
  text-transform: uppercase;
  white-space: nowrap;
}
.b-product .product__stock-icon {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 100%;
  background-color: #257de3;
}
.b-product .product__btns {
  display: flex;
  gap: 10px;
}
.b-product .product__btns--half-col {
  width: calc(50% - 20px);
}
.b-product .product__btns a:first-child {
  flex: 8;
}
.b-product .product__btns a:last-child {
  flex: 6;
}
.b-product .product__image-items {
  display: flex;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}
.b-product .product__image-items .product__image {
  flex: 1;
  text-align: center;
  position: relative;
}
.b-product .product__bottom {
  margin-top: 55px;
  text-align: left;
}
.b-product .product__content-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 60px 0;
}
.b-product .product__content-row > .b-characteristics {
  flex: 1 1 50%;
}
.b-product .product__content-row > .b-variants {
  flex: 1 1 calc(50% - 140px);
}
.b-product .product__content-row > .b-characteristics {
  max-width: 560px;
}
.b-product--labs .product__image-items .product__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border: 41px solid transparent;
  border-right: 41px solid var(--dark-blue);
  border-bottom: 41px solid var(--dark-blue);
}
.b-product--labs .product__content-row {
  margin-bottom: 0;
}
.b-product--labs .product__btns {
  margin-top: -13px;
}

.b-product .product__img--unique {
  max-width: 292px;
}
/* .b-product--dentist .product__image-items .product__image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border: 30px solid transparent;
    border-right: 30px solid var(--dark-blue);
    border-top: 30px solid var(--dark-blue);
} */
/*--------------------------------------*/
.b-characteristics {
  overflow-x: auto;
}
.b-characteristics .characteristics__wrapper {
  /* min-width: 530px; */
}
.b-characteristics .characteristics__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #d2dfec;
}
.b-characteristics .characteristics__name {
  max-width: 330px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}
.b-characteristics .characteristics__value {
  text-align: right;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 250px;
}
/*--------------------------------------*/
.b-variants {
  position: relative;
}
.b-variants .variants__wrapper {
  background-color: #e6f0f9;
  clip-path: polygon(58px 0, 100% 0, 100% 100%, 0 100%, 0 58px);
  padding: 58px 70px 95px;
  position: relative;
  z-index: 2;
}
.b-variants::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -46px;
  border: 280px solid transparent;
  border-right: 0 solid #b8d3ed;
  border-bottom: 280px solid #b8d3ed;
  z-index: -1;
}
.b-variants .variants__heading {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.14;
  margin-bottom: 33px;
}
.b-variants p {
  margin-bottom: 20px;
}
/*--------------------------------------*/
.b-partners .partners__heading {
  margin-bottom: 40px;
}
.b-partners .partners__wrapper {
  position: relative;
}
.b-partners .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  padding: 19px 5px;
}
.b-partners .swiper-button-prev,
.b-partners .swiper-button-next {
  width: 50px;
  height: 50px;
}
.b-partners .swiper-button-prev {
  background: url("../images/icons/partners-prev.svg") center / cover no-repeat;
}
.b-partners .swiper-button-next {
  background: url("../images/icons/partners-next.svg") center / cover no-repeat;
}
.b-partners .swiper-button-prev::after,
.b-partners .swiper-button-next::after {
  content: "";
}
.b-partners .swiper-wrapper {
  height: auto;
}
/*--------------------------------------*/
.l-clients {
  background-color: #e6f0f9;
  padding: 60px 0;
}
/*--------------------------------------*/
.l-consult {
  padding: 50px 0;
  background-color: var(--light-blue);
  color: var(--white);
}
/*--------------------------------------*/
.b-consult .consult__heading {
  color: var(--white);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 40px;
}
.b-consult .consult__description,
.b-consult .form_result.success {
  /* max-width: 890px; */
  font-size: 28px;
  font-weight: 600;
  line-height: 1.07;
  margin-bottom: 50px;
}
.b-consult .consult__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.b-consult .consult__form-item-1 {
  width: 100%;
}
.b-consult .consult__form-item-1-4 {
  width: calc(100% / 4);
}
.b-consult .consult__form-item {
  padding: 5px;
}
.b-consult .consult__form-item-1-4 input[type="text"],
.b-consult .consult__form-item-1-4 input[type="tel"],
.b-consult .consult__form-item-1-4 input[type="email"],
.b-consult textarea {
  width: 100%;
  color: #4e6f8e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.37;
  padding: 17px 20px;
  border: 0;
}
.b-consult .consult__form-item-1-4 input[type="text"]:focus,
.b-consult .consult__form-item-1-4 input[type="tel"]:focus,
.b-consult .consult__form-item-1-4 input[type="email"]:focus,
.b-consult textarea:focus {
  border: 0;
  outline: 0;
}
.b-consult .consult__form-bottom {
  margin-top: 15px;
  display: flex;
  align-items: center;
  column-gap: 27px;
}
.b-consult .consult__form-bottom input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
}
.b-consult .consult__form-bottom a:link,
.b-consult .consult__form-bottom a:visited,
.b-consult .consult__form-bottom p {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.83;
  display: inline-block;
  vertical-align: middle;
}
.b-consult .consult__form-bottom a:link,
.b-consult .consult__form-bottom a:visited {
  text-decoration: underline;
  display: inline-block;
  vertical-align: top;
}
/*--------------------------------------*/
.b-consult.b-consult--fancy .consult__heading {
  font-weight: 600;
  font-size: 45px;
  line-height: 1.44;
  color: var(--white);
  margin-bottom: 2px;
}
.b-consult.b-consult--fancy .consult__description {
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 40px;
}
.b-consult.b-consult--fancy .consult__form-item-1-4 {
  width: 100%;
}
.b-consult.b-consult--fancy .consult__form-bottom {
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
}
.b-consult.b-consult--fancy .consult__form-bottom .btn--dark-blue,
.b-consult.b-consult--fancy .consult__form-bottom .btn--dark-blue:link,
.b-consult.b-consult--fancy .consult__form-bottom .btn--dark-blue:visited {
  width: 100%;
}
.b-consult.b-consult--fancy .consult__form-bottom p {
  max-width: 300px;
  text-align: center;
}
/*--------------------------------------*/
.b-fixed-menu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  width: 100%;
  z-index: 99;
  box-shadow: 1px 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translateX(-50%) translateY(-200%);
  transform: translateX(-50%) translateY(-200%);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  background: var(--white);
}
.b-fixed-menu .fixed-menu__inner {
  width: 100%;
  max-width: var(--max-content-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.b-fixed-menu--on {
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
/*--------------------------------------*/
