/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */

*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: #1A2936;
}

body.noscroll {
  overflow: hidden;
}

.btn-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  font-size: 15px;
  font-family: Manrope;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 155%;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(176deg, #87001E 2.84%, #FF0037 153.39%);
}

.btn-primary:hover {
  background-position: right center;
  -webkit-box-shadow: 0 0 10px rgba(255, 0, 55, 0.3);
          box-shadow: 0 0 10px rgba(255, 0, 55, 0.3);
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.btn-link {
  color: #1A2936;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
  font-family: Manrope;
  font-weight: 500;
  white-space: nowrap;
  padding: 11px 30px;
  line-height: normal;
  border-radius: 50px;
  border: 1px solid #FF0037;
}

.btn-link:hover {
  background-color: #FF0037;
  color: #fff;
}

.container {
  max-width: 1374px;
  margin: 0 auto;
  padding: 0 35px;
}

.iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #9A9A9A;
}

.header__burger {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__burger::after,
.header__burger::before,
.header__burger span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 10%;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__burger::after {
  content: "";
  bottom: 0;
}

.header__burger::before {
  content: "";
  top: 0;
}

.header__burger.active::after {
  bottom: 50%;
  -webkit-transform: rotate(45deg) translateY(50%);
      -ms-transform: rotate(45deg) translateY(50%);
          transform: rotate(45deg) translateY(50%);
}

.header__burger.active::before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
      -ms-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.header__burger.active span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.header {
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  padding-top: 28px;
  left: 0;
  right: 0;
  z-index: 9;
  margin: auto;
  -webkit-transition: background-color 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.header.scrolled {
  background: #011527;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}

.header__top {
  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;
  gap: 10px;
}

.header__city {
  position: relative;
  color: #C7D2E9;
  font-size: 14px;
  line-height: 155%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: capitalize;
}

.header__city:hover {
  opacity: 0.8;
}

.header__city::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 0;
  bottom: 2px;
  width: 6px;
  height: 6px;
  margin: auto;
  background: url("../img/icons/arrow-direction.svg") 0 0/cover no-repeat;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header__menu li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #FFF;
  font-size: 14px;
  line-height: 155%;
}

.header__menu li a:hover,
.header__menu li a.active {
  color: rgba(255, 255, 255, 0.5);
}

.header__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__item-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__phone {
  color: #FFF;
  font-size: 14px;
  line-height: 155.556%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__phone:hover {
  color: rgba(255, 255, 255, 0.5);
}

.header__phone-city {
  color: #C7D2E9;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: capitalize;
}

.header__bottom {
  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;
  gap: 10px;
  padding-bottom: 17px;
}

.header__logo {
  width: 15.5%;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__catalog {
  position: relative;
  padding-left: 59px;
}

.header__catalog::before {
  content: "";
  width: 19px;
  height: 19px;
  background: url("../img/icons/catalog-icon.svg") 0 0/cover no-repeat;
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header__search {
  position: relative;
}

.header__search input {
  max-width: 100%;
  width: 100%;
  padding: 12px 24px;
  font-family: "Manrope", sans-serif;
  background: transparent;
  outline: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 155%;
}

.header__search input::-webkit-input-placeholder {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.header__search input::-moz-placeholder {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.header__search input:-ms-input-placeholder {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.header__search input::-ms-input-placeholder {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.header__search input::placeholder {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.header__search .header__btn-search img {
  -webkit-transition: 3s;
  transition: 3s;
}

.header__search .header__btn-search img:hover {
  opacity: 0.8;
}

.header__link-btn {
	    margin-right: 5px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 11px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__link-btn:hover {
  background: rgba(218, 215, 215, 0.3);
}

.header__mobile-catalog .has-submenu.active a.menu-item {
  color: rgba(115, 155, 188, 0.5);
  border-bottom: none;
}

.header__mobile-catalog.active .has-submenu.active .submenu {
  margin-top: -5px;
}

.header__mobile {
  position: fixed;
  inset: 0;
  overflow: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  background: #011527;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(-200%);
      -ms-transform: translateY(-200%);
          transform: translateY(-200%);
}

.header__mobile.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 222;
}

.header__mobile .header__city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__mobile .header__city::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header__mobile .header__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
}

.header__mobile .header__phones .header__phone {
  font-size: 18px;
}

.header__mobile .btn-primary {
  margin: 0 20px 20px;
}

.header .mobile-catalog > .has-submenu.active > a {
  margin-bottom: 10px;
}

.header .mobile-catalog.active > li > a {
  margin-bottom: 10px;
}

.header__list-menu,
.header .mobile-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  background: #011527;
}

.header__list-menu .has-submenu.active > a .arrow,
.header .mobile-catalog .has-submenu.active > a .arrow {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.header__list-menu li,
.header .mobile-catalog li {
  padding: 20px;
  border-bottom: 1px solid rgba(115, 155, 188, 0.5);
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-weight: 800;
  line-height: 100%;
}

.header__list-menu li a,
.header .mobile-catalog li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .mobile-catalog .has-submenu a:not(.menu-item) {
  color: #739BBC !important;
}

.header .mobile-catalog .has-submenu .active a.menu-item {
  color: #fff !important;
}

.header .mobile-catalog .has-submenu .active a.menu-item .arrow {
  margin-bottom: 0;
}

.header .mobile-catalog a {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .mobile-catalog .arrow {
  margin-bottom: 3px;
}

.header .mobile-catalog .has-submenu.active .mobile-catalog__menu {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}

.header .mobile-catalog__menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  visibility: hidden;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header .mobile-catalog__menu .submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  visibility: hidden;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header .mobile-catalog__menu li {
  color: #739BBC;
  font-size: 14px;
  font-weight: 500;
  line-height: 146%;
  border-bottom: none;
  padding: 0;
  padding-left: 20px;
}

.header .mobile-catalog__menu li.has-submenu a {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .mobile-catalog__menu li .submenu {
  padding-left: 18px;
}

.header .mobile-catalog__menu li .submenu li {
  padding: 5px;
}

.header .mobile-catalog__menu li a.menu-item {
  padding: 8px 0;
}

.header .mobile-catalog__menu li a.menu-item .arrow {
  border-right: 2px solid #6FA2CD;
  border-bottom: 2px solid #6FA2CD;
}

.header .mobile-catalog__menu li a.menu-item.active {
  color: #fff;
}

.header .mobile-catalog__menu li.active {
  color: #FFF;
}

.header__social {
  padding: 0 20px 15px;
}
div.title_h3{
	margin: 32px 0 12px;
}
.header__social-title {
  color: rgba(199, 210, 233, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 162%;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.header__citys {
  padding-left: 40px;
}

.header__item-city {
  color: #C7D2E9;
  font-size: 15px;
  line-height: 155%;
  text-transform: capitalize;
}

.header__item-city.active {
  color: #FFF;
}

.header__mobile-top {
  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;
  padding: 16px;
}

.header__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .catalog-menu .menu-item {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.46;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-bottom: 1px solid rgba(115, 155, 188, 0.5);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.header .catalog-menu .submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  visibility: hidden;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  border-bottom: 1px solid rgba(115, 155, 188, 0.5);
}

.header .catalog-menu .submenu li:last-child a {
  padding-bottom: 16px;
}

.header .catalog-menu .submenu li a {
  display: block;
  padding: 5px 30px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.header .catalog-menu .submenu li a:hover {
  opacity: 1;
}

.arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.has-submenu.active .submenu {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}

.has-submenu.active .submenu a {
  color: #FFF;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 500;
  line-height: 146%;
}

.has-submenu.active .menu-item .arrow {
  border-right: 2px solid rgba(115, 155, 188, 0.5);
  border-bottom: 2px solid rgba(115, 155, 188, 0.5);
}

.has-submenu.active > a .arrow {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.footer {
  background: #1A2936;
}

.footer__body {
  padding: 46px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 316px;
  gap: 20px;
}

.footer__logo {
  width: 138px;
  height: 29px;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-family: Manrope;
  font-size: 12px;
  line-height: 178%;
  margin-bottom: 28px;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.footer__links li {
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
  line-height: 178%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__links li:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  gap: 12px 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 408px;
}

.footer__list a {
  display: inline-block;
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  line-height: 155%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__list a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer__list a.active {
  color: rgba(255, 255, 255, 0.5);
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.footer__phones {
  gap: 20px 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 330px;
}

.footer__phones .header__item-phone {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 40px);
          flex: 1 1 calc(50% - 40px);
}

.footer__phones .header__phone-city {
  color: #C7D2E9;
  font-size: 15px;
  line-height: 155%;
}

.footer__method-payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.footer__subtitle {
  color: #C7D2E9;
  font-size: 14px;
}

.footer__pay-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__pay-icon img {
  max-width: 100%;
}

.footer__socials img {
  max-width: 100%;
}

.footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner {
  position: relative;
  height: 100vh;
  margin-bottom: 180px;
}

.banner__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 192px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 125px;
  height: 100%;
}

.banner__slider {
  max-width: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.banner__slider-wrapper {
  position: relative;
}

.banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner__image img:nth-child(2):not(:first-child) {
  display: none;
}

.banner__slide {
  position: relative;
  padding-top: 15%;
}

.banner__slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 5;
  background: linear-gradient(240deg, rgba(0, 0, 0, 0.1) 8.63%, rgba(0, 0, 0, 0) 68.13%);
}

.banner__title {
  color: #FFF;
  font-size: 52px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}

.banner__subtitle {
  color: #739BBC;
  font-weight:400;
  max-width: 653px;
  font-size: 26px;
  line-height: 147%;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 20px;
  letter-spacing: 0em;
}

.banner__btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 8;
  padding: 16px 21px 15px 21px;
  font-size: 16px;
}

.banner__bottom {
  position: relative;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 7%;
}

.banner__pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.banner__pagination .banner-prev,
.banner__pagination .banner-next {
  cursor: pointer;
  border-radius: 100px;
  background: rgba(245, 245, 245, 0.1);
  margin: 0 !important;
}

.banner__pagination .banner-prev:hover,
.banner__pagination .banner-next:hover {
  background: rgba(197, 197, 197, 0.1);
}

.banner__pagination .banner-prev svg,
.banner__pagination .banner-next svg {
  width: 15px;
  height: 28px;
  padding: 2px;
}

.banner__pagination .banner-prev svg path,
.banner__pagination .banner-next svg path {
  fill: #FFF;
}

.banner__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner__item {
  position: relative;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 28px;
  padding: 58px 17px 17px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.banner__item:hover {
  background: rgba(255, 255, 255, 0.65);
}

.banner__item-text {
  padding: 12px 18px 12px 30px;
  color: #FFF;
  font-size: 16px;
  line-height: 137.5%;
  border-radius: 20px;
  background: #021527;
  text-transform: uppercase;
}

.banner__item-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.breadcrumbs {
  position: relative;
  z-index: 3;
}

.breadcrumbs__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.breadcrumbs__item {
  color: #C7D2E9;
  font-size: 14px;
  line-height: 155%;
}

.breadcrumbs__item img {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.banner__block-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: 4;
}

.banner__block-wrapper {
  background: linear-gradient(176deg, #87001E 2.84%, #FF0037 153.39%);
  padding: 94px 42px 63px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}

.banner__block-right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.banner__block-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.banner__block-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 43%;
          flex: 1 1 43%;
  color: #FFF;
  font-size: 42px;
  font-weight: 700;
  line-height: 100%;
}

.banner__block-text {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 145%;
}

.block-info__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 25px;
}

.block-info__list li {
  position: relative;
}

.block-info__list li::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -35px;
  left: 0;
  border-radius: 50%;
  border: 2px solid #fff;
}

.block-info__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 7px;
  top: -28px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
}

.block-info__title {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.block-info__desc {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.about {
  margin-bottom: 100px;
}

.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

.about__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.about__desc {
  color: #1A2936;
  font-size: 18px;
  font-weight: 500;
  line-height: 122%;
}

.about__desc:not(:last-child) {
  margin-bottom: 20px;
}

.about__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.about__logo {
  width: 210px;
  height: 45px;
}

.about__logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__implement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about__implement li {
  position: relative;
  color: #1A2936;
  font-size: 18px;
  font-weight: 400;
  line-height: 122.222%;
  padding-left: 20px;
}

.about__implement li:not(:last-child) {
  margin-bottom: 10px;
}

.about__implement li::after {
  content: "";
  background: #FF0037;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  left: 0;
  top: 6px;
  margin: auto;
  position: absolute;
}

.about__subtitle {
  color: #1A2936;
  font-size: 22px;
  font-weight: 700;
  line-height: 91%;
  margin-bottom: 20px;
}

.about__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}

.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.about__block-image {
  width: 65px;
  height: 65px;
}

.about__block-image img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

.about__title-item {
  color: #1A2936;
  font-size: 22px;
  font-weight: 700;
  line-height: 127%;
}

.about__desc-item {
  color: #1A2936;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.title {
  color: #011527;
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
}

.suppliers {
  margin-bottom: 122px;
  overflow: hidden;
}

.suppliers__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.suppliers__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 103px;
}

.suppliers__block-image {
  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: #FF0037;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.suppliers__block-image img {
  width: 28px;
  height: 23px;
}

.suppliers__marquee {
  position: relative;
  white-space: nowrap;
}

.suppliers__marquee--left .suppliers__track {
  -webkit-animation: marquee-left 90s linear infinite;
          animation: marquee-left 90s linear infinite;
}

.suppliers__marquee--right .suppliers__track {
  -webkit-animation: marquee-right 100s linear infinite;
          animation: marquee-right 100s linear infinite;
}

.suppliers__track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 40px;
}

.suppliers__item {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #BECAD7;
  border-radius: 6px;
  padding: 18px 30px;
  color: #395974;
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
}

.suppliers__item.official::after {
  content: "";
  width: 38px;
  height: 38px;
  background-color: #FF0037;
  position: absolute;
  right: 2px;
  top: -23px;
  border-radius: 50%;
  background-image: url("../img/icons/official.svg");
  background-position: center;
  background-size: 21px 16px;
  background-repeat: no-repeat;
}

.suppliers__off {
  max-width: 168px;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}

.suppliers__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@-webkit-keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@-webkit-keyframes marquee-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes marquee-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.clients {
  margin-bottom: 100px;
}

.clients .title {
  margin-bottom: 40px;
}

.clients__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.clients__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#092F4F), to(#0E416C));
  background: linear-gradient(180deg, #092F4F 0%, #0E416C 100%);
}

.clients__block-image {
  width: 64px;
  height: 64px;
}

.clients__block-image img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.clients__title {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 155%;
}

.assortment {
  margin-bottom: 100px;
}

.assortment__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.assortment__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.assortment__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.assortment__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 30px;
  overflow: hidden;
  min-height: 183px;
  overflow: hidden;
  border-radius: 20px;
  background: #F5F5F5;
}

.assortment__item:hover {
  background: #e8e8e8;
}

.assortment__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  gap: 12px;
}

.assortment__title {
  color: #1A2936;
  font-size: 24px;
  line-height: 100%;
}

.assortment__quantity {
  color: #395974;
  font-size: 14px;
  line-height: 157%;
}

.assortment__block-image {
  position: absolute;
  right: 0;
  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;
  width: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.assortment__block-image img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews {
  margin-bottom: 100px;
}

.reviews__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.reviews__slider {
  max-width: 100%;
}

.reviews__bottom {
  position: relative;
  padding: 0 90px;
  z-index: 2;
}

.reviews__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 25px;
  border-radius: 30px;
  background: #F5F8FA;
}

.slide-review__block-image {
  margin: 0 auto 20px;
  max-width: 239px;
  height: 145px;
  border-radius: 20px;
}

.slide-review__block-image img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.slide-review__job {
  color: #395974;
  font-family: Manrope;
  line-height: normal;
  font-size: 12px;
}

.slide-review__name {
  color: #395974;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.slide-review__title {
  font-family: Manrope;
  font-size: 24px;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.slide-review__desc {
  font-size: 14px;
  line-height: 155%;
}

.reviews-prev svg {
  color: #222;
  width: 15px;
  height: 28px;
}

.reviews-next svg {
  color: #222;
  width: 15px;
  height: 28px;
}

.work {
  margin-bottom: 100px;
}

.work .title {
  margin-bottom: 40px;
}

.work__wrapper {
  border-radius: 30px;
  background: #F5F5F5;
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.work__info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.work__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.work__number {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  color: rgb(207, 214, 219);
  font-family: Manrope;
  font-size: 104px;
  font-weight: 800;
  line-height: 75%;
  z-index: 2;
}

.work__number.active {
  color: #FF0037;
}

.work__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.work__desc {
  color: rgba(26, 41, 54, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.block-form {
  margin-bottom: 100px;
}

.block-form .iti__country-list {
  background-color: #28435A;
}

.block-form__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1A2936), to(#28435A));
  background: linear-gradient(180deg, #1A2936 0%, #28435A 100%);
  padding: 41px 55px 56px;
}

.block-form__info {
  position: relative;
  gap: 20px;
  max-width: 589px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.block-form__title {
  color: #FFF;
  font-family: Manrope;
  font-size: 40px;
  font-weight: 800;
  line-height: 100%;
}

.block-form__desc {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  max-width: 295px;
  line-height: 137.5%;
  margin-bottom: 40px;
}

.block-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.block-form__list li {
  position: relative;
  color: #FFF;
  padding-left: 36px;
  font-family: Manrope;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.block-form__list li::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid #fff;
}

.block-form__list li::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 7px;
  top: 7px;
  bottom: 7px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
}

.block-form__img {
  width: 100%;
  height: 351px;
}

.block-form__img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  color: #fff;
}

.form__title {
  font-family: Manrope;
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
}

.form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.form__group {
  width: 100%;
}

.form__group > div {
  width: 100%;
}

.form__group > div > div {
  padding-left: 17px;
}

.form__input {
  width: 100%;
  background: transparent;
  border-radius: 50px;
  border: 1px solid #395974;
  padding: 18px 17px;
  font-family: Manrope;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  outline: none;
  color: #6FA2CD;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form__input::-webkit-input-placeholder {
  opacity: 0.5;
  color: #6FA2CD;
}

.form__input::-moz-placeholder {
  opacity: 0.5;
  color: #6FA2CD;
}

.form__input:-ms-input-placeholder {
  opacity: 0.5;
  color: #6FA2CD;
}

.form__input::-ms-input-placeholder {
  opacity: 0.5;
  color: #6FA2CD;
}

.form__input::placeholder {
  opacity: 0.5;
  color: #6FA2CD;
}

.form__input#phoneContacts {
  padding-left: 67px;
}

.form__input:focus {
  border-color: #344de1;
}

.form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.form__checkbox input {
  display: none;
}

.form__checkbox .form__checkmark {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  border: 1px solid #35536C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 6px;
}

.form__checkbox .form__checkmark svg {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.form__checkbox input:checked + .form__checkmark svg {
  opacity: 1;
}

.form__checkbox .form__checkbox-text {
  line-height: 1.37;
}

.form__checkbox .form__checkbox-text a {
  text-decoration: underline;
}

.form__btn {
  background: linear-gradient(176deg, #87001E 2.84%, #FF0037 153.39%);
  border-radius: 50px;
  text-transform: uppercase;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  padding: 14px 35px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0 25px;
}

.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal__content {
	overflow-y: auto;
	max-width: 400px;
    margin: 0 auto;
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  z-index: 1;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  -webkit-animation: modalFade 0.4s ease forwards;
          animation: modalFade 0.4s ease forwards;
  padding: 35px 30px 55px;
}

.modal__close {
  position: relative;
  z-index: 5;
  background: none;
  border: none;
  color: #1a2936;
  cursor: pointer;
}

.modal__close svg {
  width: 28px;
  height: 28px;
}

.modal__title {
  color: #1a2936;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 10px;
  font-size: 22px;
}

.modal__subtitle {
  color: #1a2936;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  line-height: 127%;
  margin-bottom: 30px;
  font-size: 14px;
}

@-webkit-keyframes modalFade {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalFade {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.form-ask {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.form-ask__input,
.form-ask__textarea {
  border-radius: 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #395974;
  color: #1A2936;
  font-family: Manrope, sans-serif;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  padding: 14px 16px;
  font-size: 14px;
}

.form-ask__input::-webkit-input-placeholder, .form-ask__textarea::-webkit-input-placeholder {
  color: #6fa2cd;
}

.form-ask__input::-moz-placeholder, .form-ask__textarea::-moz-placeholder {
  color: #6fa2cd;
}

.form-ask__input:-ms-input-placeholder, .form-ask__textarea:-ms-input-placeholder {
  color: #6fa2cd;
}

.form-ask__input::-ms-input-placeholder, .form-ask__textarea::-ms-input-placeholder {
  color: #6fa2cd;
}

.form-ask__input::placeholder,
.form-ask__textarea::placeholder {
  color: #6fa2cd;
}

.form-ask__input:focus,
.form-ask__textarea:focus {
  border-color: #6fa2cd;
}

.form-ask__checkbox .form__checkmark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid #35536c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.form-ask__checkbox .form__checkmark svg {
  display: none;
}

.form-ask__checkbox input:checked + .form__checkmark {
  background: #6fa2cd;
}

.form-ask__checkbox input:checked + .form__checkmark svg {
  display: block;
}

.form-ask__checkbox .form__checkbox-text {
  color: #1a2936;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  line-height: 1.27;
}

.form-ask__checkbox .form__checkbox-text a {
  color: #6fa2cd;
  text-decoration: underline;
}

@media (min-width: 660px) {
  .header__mobile .btn-primary {
    display: none;
  }

  .header .mobile-catalog {
    display: none;
  }

  .banner__btn {
    min-width: 250px;
  }
}

@media (min-width: 751px) {
  .banner-prev {
    position: static;
  }

  .banner-next {
    position: static;
  }

  .banner-next svg {
    margin-left: 3px;
  }
}

@media (min-width: 996px) {
  .reviews__slide {
    min-height: 380px;
  }
}

@media (min-width: 997px) {
  .header__search {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(1, 21, 38, 0.5);
  }

  .header__search .header__btn-search {
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .block-form__img {
    position: absolute;
    left: -8%;
    bottom: -69px;
    height: 379px;
    width: 105%;
  }
}

@media (min-width: 1024px) {
  .banner {
    height: 1180px;
  }
}

@media (min-width: 1150px) {
  .about__top .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41%;
            flex: 0 0 41%;
  }

  .about__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 41%;
            flex: 0 1 41%;
  }

  .about__implement li {
    max-width: 541px;
  }
}

@media (min-width: 1180px) {
  .about__descriptions {
    max-width: 751px;
    margin-top: 18px;
  }
}

@media (min-width: 1200px) {
  .header__burger {
    display: none;
  }
}

@media (min-width: 1201px) {
  .footer__nav {
    width: 23%;
  }

  .footer__list li:nth-child(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .footer__list li:nth-child(2) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .footer__list li:nth-child(3) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .footer__list li:nth-child(4) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 4;
    grid-row: 4;
  }

  .footer__list li:nth-child(5) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 5;
    grid-row: 5;
  }

  .footer__list li:nth-child(6) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .footer__list li:nth-child(7) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .footer__list li:nth-child(8) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .footer__list li:nth-child(9) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 4;
    grid-row: 4;
  }

  .footer__list li:nth-child(10) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 5;
    grid-row: 5;
  }
}

@media (min-width: 1280px) {
  .banner {
    min-height: 1190px;
  }
}

@media (min-width: 1281px) {
  .work__item {
    max-width: 332px;
  }

  .work__item:not(:first-child) .work__number::before {
    content: "............";
    position: absolute;
    left: -47%;
    top: 0;
    color: #E8EBEE;
    font-family: Manrope;
    font-size: 33px;
    font-weight: 800;
    line-height: 75%;
    bottom: 0;
    z-index: -1;
    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;
  }

  .work__title {
    min-height: 46px;
  }
}

@media (min-width: 1341px) {
  .footer__nav {
    width: 33%;
  }
}

@media (min-width: 1400px) {
  .header__search {
    min-width: 625px;
  }
}

@media (min-width: 2100px) {
  .banner__block-info {
    bottom: -150px;
  }
}

@media (max-width: 1550px) {
  .banner__slide {
    padding-top: 17%;
  }
}

@media (max-width: 1400px) {
  .header__bottom {
    gap: 49px;
  }

  .header__center {
    width: 100%;
  }
}

@media (max-width: 1350px) {
  .banner__slide {
    padding-top: 22%;
  }

  .banner__bottom {
    gap: 2%;
  }

  .assortment__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .work__number {
    font-size: 95px;
  }
}

@media (max-width: 1300px) {
  .banner__item:last-child > .banner__item-img {
    bottom: 40px !important;
  }
}

@media (max-width: 1280px) {
  .footer__copy {
    margin-bottom: 30px;
  }

  .banner {
    margin-bottom: 300px;
  }

  .banner__item:last-child > .banner__item-img {
    bottom: 25px !important;
  }

  .banner__block-info {
    bottom: -230px;
  }

  .banner__block-right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }

  .banner__block-title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }

  .block-info__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 73px 40px;
  }

  .about__logo {
    height: 33px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .about__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .title {
    font-size: 28px;
  }

  .suppliers__top {
    margin-bottom: 60px;
  }

  .suppliers__track {
    gap: 30px;
  }

  .suppliers__item {
    font-size: 28px;
    padding: 18px 30px;
  }

  .suppliers__item.official::after {
    width: 35px;
    height: 35px;
    top: -18px;
    background-size: 18px 14px;
  }

  .clients__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .assortment__title {
    font-size: 22px;
  }

  .work__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .work__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 30px);
            flex: 1 1 calc(50% - 30px);
  }

  .work__number {
    font-size: 90px;
  }

  .block-form__body {
    padding: 56px 60px 48px;
  }

  .block-form__title {
    font-size: 36px;
  }

  .block-form__desc {
    margin-bottom: 30px;
  }

  .form__input {
    padding: 20px 21px;
  }

  .form__btn {
    padding: 16px 50px;
  }
}

@media (max-width: 1200px) {
  .header__city {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header__logo {
    width: 16.3%;
  }

  .footer__list {
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .banner {
    height: 1303px;
  }

  .banner__bottom {
    padding-top: 20%;
  }

  .banner__item:nth-child(2) > .banner__item-img {
    bottom: -4px !important;
  }

  .banner__item-text {
    font-size: 14px;
  }

  .banner__item-img {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media (max-width: 1150px) {
  .footer__phones {
    gap: 40px;
  }

  .suppliers__item {
    font-size: 24px;
    padding: 16px 28px;
  }

  .suppliers__item.official::after {
    width: 26px;
    height: 26px;
    top: -16px;
    background-size: 15px 12px;
  }

  .work__number {
    font-size: 82px;
  }
}

@media (max-width: 1149px) {
  .about__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 63px;
  }

  .about__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .about__logo {
    position: absolute;
    top: 0;
    right: 0;
  }

  .about__logo img {
    max-width: 100%;
  }

  .title {
    font-size: 26px;
  }
}

@media (max-width: 1100px) {
  .banner__item-text {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .banner {
    height: 1333px;
  }

  .banner__slide {
    padding-top: 27%;
  }

  .banner__item:first-child > .banner__item-img {
    right: -41px;
    bottom: -39px;
  }

  .banner__item:nth-child(2) > .banner__item-img {
    right: -57px !important;
    bottom: -20px !important;
  }

  .banner__item:last-child > .banner__item-img {
    bottom: -16px !important;
    right: -47px !important;
  }

  .banner__item-img {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    bottom: -25px;
  }
}

@media (max-width: 996px) {
  .btn-link {
    font-size: 14px;
  }

  .header__logo {
    width: 183px;
    height: 38px;
  }

  .header__search input {
    display: none;
  }

  .header__search .header__btn-search {
    width: 52px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .footer__body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 72px;
    padding: 55px 0 43px;
  }

  .footer__copy {
    margin-bottom: 20px;
  }

  .footer__links {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .footer__nav {
    display: none;
  }

  .footer__list {
    gap: 16px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }

  .footer__right {
    padding-top: 51px;
  }

  .footer__phones {
    gap: 20px;
  }

  .footer__subtitle {
    font-size: 10px;
  }

  .footer__socials {
    margin-top: -20px;
  }

  .banner {
    margin-bottom: 490px;
    height: 1165px;
  }

  .banner__body {
    gap: 52px;
  }

  .banner__image img {
    -o-object-position: bottom;
       object-position: bottom;
  }

  .banner__image img:nth-child(2):not(:first-child) {
    display: block;
  }

  .banner__image img:nth-child(1):not(:last-child) {
    display: none;
  }

  .banner__bottom {
    padding-top: 30%;
  }

  .banner__item {
    padding: 33px 10px 9px 11px;
  }

  .banner__item-text {
    font-size: 11px;
    padding: 7px 10px 7px 17px;
  }

  .banner__block-info {
    bottom: -405px;
  }

  .banner__block-wrapper {
    gap: 50px;
    padding: 94px 38px 81px;
  }

  .banner__block-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
  }

  .banner__block-title {
    font-size: 32px;
  }

  .about {
    margin-bottom: 80px;
  }

  .about__body {
    gap: 60px;
  }

  .about__logo {
    height: 35px;
  }

  .title {
    font-size: 24px;
  }

  .suppliers__block-image {
    width: 48px;
    height: 48px;
  }

  .suppliers__block-image img {
    width: 22px;
    height: 17px;
  }

  .suppliers__track {
    gap: 23px;
  }

  .suppliers__item {
    font-size: 22px;
    padding: 13px 24px;
  }

  .suppliers__item.official::after {
    width: 26px;
    height: 26px;
    top: -14px;
    background-size: 12px 9px;
  }

  .clients {
    margin-bottom: 80px;
  }

  .clients__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .clients__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 20px;
    padding: 25px;
  }

  .clients__block-image {
    width: 48px;
    height: 48px;
  }

  .assortment {
    margin-bottom: 80px;
  }

  .assortment__body {
    gap: 30px;
  }

  .assortment__item {
    padding: 20px;
    border-radius: 14px;
    min-height: 161px;
  }

  .assortment__info {
    gap: 8px;
  }

  .assortment__title {
    font-size: 18px;
    line-height: 1.2;
  }

  .assortment__quantity {
    font-size: 12px;
    line-height: 125%;
  }

  .reviews {
    margin-bottom: 80px;
  }

  .reviews__body {
    gap: 30px;
  }

  .reviews__bottom {
    padding: 0 100px;
  }

  .work {
    margin-bottom: 80px;
  }

  .work__item {
    gap: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .work__number {
    font-size: 68px;
  }

  .work__title {
    font-size: 24px;
  }

  .block-form {
    margin-bottom: 80px;
  }

  .block-form__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 51px 40px 18px 40px;
    gap: 50px;
  }

  .block-form__title {
    font-size: 32px;
  }

  .block-form__desc {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .block-form__list {
    gap: 16px;
  }

  .block-form__list li {
    font-size: 18px;
    line-height: 1.55;
  }

  .block-form__img {
    height: 100%;
    text-align: center;
    width: calc(100% + 80px);
    -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
            transform: translateX(-40px);
  }

  .block-form__img img {
    height: 100%;
  }

  .form__title {
    font-size: 22px;
  }

  .form__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .form__group > div .iti__selected-flag {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }

  .form__input {
    padding: 17px 21px;
  }

  .form__checkbox {
    font-size: 12px;
  }

  .form__checkbox .form__checkbox-text {
    line-height: 1.57;
  }

  .form__btn {
    padding: 14px 40px;
  }
}

@media (max-width: 900px) {
  .banner__slide {
    padding-top: 34%;
  }

  .banner__block-info {
    bottom: -450px;
  }
}

@media (max-width: 880px) {
  .banner__item:nth-child(2) > .banner__item-img {
    bottom: -34px !important;
    right: -62px !important;
  }
}

@media (max-width: 850px) {
  .footer__phones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 750px) {
  .banner__pagination {
    width: 100%;
  }

  .banner__pagination .banner-prev,
  .banner__pagination .banner-next {
    top: 0 !important;
    bottom: 0;
    margin: auto !important;
    width: 28px;
    height: 28px;
  }

  .banner__pagination .banner-prev svg,
  .banner__pagination .banner-next svg {
    width: 14px;
    height: 18px;
  }

  .banner__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 50px;
  }

  .banner__items .banner__item {
    display: none;
  }
  .banner__items-1 .banner__item-1, .banner__items-2 .banner__item-3, .banner__items-3 .banner__item-2{
    display: block;
  }
}

@media (max-width: 740px) {
  .header__phones {
    gap: 20px;
  }

  .header__phone {
    font-size: 13px;
  }

  .header__bottom {
    gap: 12px;
  }

  .header__center {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .banner {
    margin-bottom: 520px;
  }

  .banner__block-info {
    bottom: -457px;
  }

  .banner__block-bottom {
    gap: 16px;
  }

  .banner__block-title {
    font-size: 20px;
  }

  .banner__block-text {
    font-size: 12px;
  }

  .block-info__title {
    font-size: 15px;
  }

  .block-info__desc {
    font-size: 11px;
  }
}

@media (max-width: 670px) {
  .banner__block-info {
    bottom: -487px;
  }
}

@media (max-width: 660px) {
  .btn-primary {
    font-size: 14px;
    line-height: 82%;
    padding: 16px 30px;
  }

  .btn-link {
    padding: 10px 20px;
    font-size: 11px;
  }

  .header {
    padding-bottom: 28px;
  }

  .header__phones {
    display: none;
  }

  .header__bottom {
    display: none;
  }

  .header__mobile {
    gap: 15px;
  }

  .header__mobile .header__phones {
    gap: 20px;
  }

  .footer__body {
    padding: 35px 0 32px;
    gap: 45px;
  }

  .footer__info {
    max-width: 196px;
    gap: 15px;
  }

  .footer__logo {
    height: 25px;
  }

  .footer__copy {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .footer__links li {
    font-size: 10px;
  }

  .footer__list {
    display: none;
  }

  .footer__right {
    padding-top: 46px;
    gap: 15px;
  }

  .footer__method-payments {
    gap: 7px;
  }

  .footer__pay-list {
    gap: 15px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 39px 27px 46px;
    grid-template-columns: 39px 27px 46px;
  }

  .footer__socials {
    margin-top: 0;
  }

  .footer__socials a {
    width: 20px;
    height: 20px;
  }

  .footer__social-list {
    gap: 7px;
  }

  .banner {
    margin-bottom: 80px;
  }

  .banner__body {
    padding: 90px 0;
  }

  .banner__slide {
    padding-top: 26%;
  }

  .banner__title {
    font-size: 45px;
  }

  .banner__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .banner__btn {
    padding: 10px 16px;
    line-height: 1.15;
    font-size: 10px;
  }

  .banner__pagination .banner-prev,
  .banner__pagination .banner-next {
    border-radius: 46px;
    background: rgba(245, 245, 245, 0.2);
  }

  .banner__block-info {
    bottom: -25px;
  }

  .banner__block-wrapper {
    gap: 35px;
    padding: 50px 22px 34px;
  }

  .about {
    margin-bottom: 60px;
  }

  .about__body {
    gap: 37px;
  }

  .about__info {
    gap: 30px;
  }

  .about__top {
    gap: 45px;
  }

  .about__desc:not(:last-child) {
    margin-bottom: 15px;
  }

  .about__desc {
    font-size: 14px;
    line-height: 130%;
  }

  .about__logo {
    height: 30px;
  }

  .about__implement li {
    font-size: 14px;
    padding-left: 15px;
  }

  .about__subtitle {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .about__item {
    gap: 15px;
  }

  .about__block-image {
    width: 50px;
    height: 50px;
  }

  .about__title-item {
    font-size: 16px;
  }

  .about__desc-item {
    font-size: 13px;
  }

  .title {
    font-size: 22px;
  }

  .suppliers {
    margin-bottom: 60px;
  }

  .suppliers__rows {
    gap: 25px;
  }

  .suppliers__top {
    margin-bottom: 50px;
    gap: 30px;
  }

  .suppliers__block-image {
    width: 32px;
    height: 32px;
  }

  .suppliers__block-image img {
    width: 13px;
    height: 11px;
  }

  .suppliers__track {
    gap: 18px;
  }

  .suppliers__item {
    font-size: 16px;
    padding: 10px 18px;
  }

  .suppliers__item.official::after {
    width: 18px;
    height: 18px;
    top: -8px;
    background-size: 9px 6px;
  }

  .suppliers__off {
    font-size: 12px;
    max-width: 100%;
  }

  .suppliers__note {
    gap: 12px;
  }

  .clients {
    margin-bottom: 60px;
  }

  .clients .title {
    margin-bottom: 30px;
  }

  .clients__items {
    gap: 15px;
  }

  .clients__item {
    gap: 20px;
    padding: 18px;
  }

  .clients__block-image {
    width: 32px;
    height: 32px;
  }

  .clients__title {
    font-size: 14px;
    line-height: 130%;
  }

  .assortment {
    margin-bottom: 60px;
  }

  .assortment__body {
    gap: 20px;
  }

  .assortment__item {
    padding: 15px;
    min-height: 110px;
  }

  .assortment__title {
    font-size: 12px;
  }

  .assortment__quantity {
    font-size: 9px;
  }

  .reviews {
    margin-bottom: 60px;
  }

  .reviews__body {
    gap: 20px;
  }

  .reviews__bottom {
    padding: 0 85px;
  }

  .reviews__slide {
    padding: 25px;
  }

  .slide-review__block-image {
    width: 163px;
    height: 115px;
    margin: 0 auto 15px;
  }

  .slide-review__job {
    font-size: 10px;
  }

  .slide-review__name {
    font-size: 12px;
  }

  .slide-review__title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .slide-review__desc {
    font-size: 12px;
  }

  .reviews-prev svg {
    width: 10px;
    height: 18px;
  }

  .reviews-next svg {
    width: 10px;
    height: 18px;
  }

  .work {
    margin-bottom: 60px;
  }

  .work .title {
    margin-bottom: 30px;
  }

  .work__wrapper {
    gap: 30px;
    padding: 30px;
  }

  .work__item {
    gap: 18px;
  }

  .work__number {
    font-size: 48px;
  }

  .work__title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .work__desc {
    font-size: 12px;
  }

  .block-form {
    margin-bottom: 60px;
  }

  .block-form__body {
    padding: 15px 30px 0px;
    border-radius: 30px;
    gap: 40px;
  }

  .block-form__info {
    gap: 15px;
  }

  .block-form__title {
    font-size: 22px;
  }

  .block-form__desc {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .block-form__list {
    gap: 12px;
  }

  .block-form__list li {
    font-size: 12px;
    padding-left: 32px;
  }

  .block-form__list li::before {
    width: 21px;
    height: 21px;
  }

  .block-form__list li::after {
    width: 9px;
    height: 9px;
    left: 6px;
    top: 6px;
    bottom: 6px;
  }

  .block-form__img {
    height: 245px;
    width: calc(100% + 60px);
    -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
            transform: translateX(-30px);
  }

  .form {
    gap: 20px;
  }

  .form__title {
    font-size: 16px;
  }

  .form__items {
    gap: 13px;
  }

  .form__group > div > div {
    padding-left: 10px;
  }

  .form__group > div .iti__selected-flag {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }

  .form__input#phoneContacts {
    padding-left: 51px;
  }

  .form__input {
    font-size: 13px;
    padding: 13px 16px;
  }

  .form__checkbox {
    font-size: 11px;
    gap: 8px;
  }

  .form__checkbox .form__checkmark {
    width: 24px;
    height: 24px;
    padding: 5px;
  }

  .form__btn {
    padding: 12px 35px;
    font-size: 13px;
    border-radius: 23px;
  }

  .form-ask__textarea {
    min-height: 120px;
    padding: 13px 15px;
    resize: none;
  }
}

@media (max-width: 650px) {
  .banner__bottom {
    padding-top: 17%;
  }

  .banner__block-info {
    bottom: 8%;
  }
}

@media (max-width: 540px) {
  .banner__block-info {
    bottom: 2%;
  }
}

@media (max-width: 520px) {
  .btn-link {
    padding: 8px 18px;
    font-size: 8px;
  }

  .container {
    padding: 0 16px;
  }

  .wrappertop {
	  padding-top: 26px;
  }
  .header__mobile.active{padding-top:46px;}
  .header {
   /* padding-top: 16px;*/
    padding-top: 62px;
    padding-bottom: 16px;
  }

  .header__logo {
    width: 132px;
    height: 27px;
  }

  .footer__body {
    gap: 33px;
    padding: 25px 0 20px;
  }

  .footer__info {
    max-width: 148px;
    gap: 10px;
  }

  .footer__logo {
    height: 23px;
  }

  .footer__copy {
    margin-bottom: 10px;
    font-size: 7px;
    line-height: 154%;
  }

  .footer__links {
    gap: 3px;
  }

  .footer__links li {
    font-size: 8px;
    line-height: 135%;
  }

  .footer__right {
    padding-top: 34px;
    gap: 10px;
  }

  .footer__method-payments {
    gap: 5px;
  }

  .footer__subtitle {
    font-size: 8px;
  }

  .footer__pay-list {
    gap: 10px;
    -ms-grid-columns: 29px 17px 36px;
    grid-template-columns: 29px 17px 36px;
  }

  .footer__socials a {
    width: 15px;
    height: 15px;
  }

  .footer__social-list {
    gap: 5px;
  }

  .banner {
    height: 550px;
    margin-bottom: 300px;
  }

  .banner__body {
    padding: 62px 0 47px;
  }

  .banner__slide {
    padding-top: 30%;
  }

  .banner__title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .banner__subtitle {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  h2.banner__title{
	  margin:0;
  }

  .banner__item {
    border-radius: 20px;
  }

  .banner__item-text {
    border-radius: 11px;
    line-height: 1.69;
  }

  .breadcrumbs__item {
    font-size: 10px;
    line-height: 1.48;
  }

  .banner__block-info {
    bottom: -257px;
  }

  .banner__block-wrapper {
    gap: 23px;
    padding: 40px 16px 24px;
  }

  .banner__block-right {
    gap: 10px;
  }

  .banner__block-title {
    font-size: 16px;
  }

  .banner__block-text {
    font-size: 8px;
  }

  .block-info__list {
    gap: 34px 20px;
  }

  .block-info__list li::after {
    top: -15px;
    border: 1px solid #fff;
    width: 12px;
    height: 12px;
  }

  .block-info__list li::before {
    width: 6px;
    height: 6px;
    left: 3px;
    top: -12px;
  }

  .block-info__title {
    font-size: 11px;
  }

  .block-info__desc {
    font-size: 7px;
  }

  .about {
    margin-bottom: 45px;
  }

  .about__body {
    gap: 28px;
  }

  .about__info {
    gap: 20px;
  }

  .about__top {
    gap: 30px;
  }

  .about__desc:not(:last-child) {
    margin-bottom: 10px;
  }

  .about__desc {
    font-size: 10px;
    line-height: 140%;
  }

  .about__logo {
    height: 26px;
  }

  .about__implement li:not(:last-child) {
    margin-bottom: 5px;
  }

  .about__implement li {
    font-size: 10px;
    padding-left: 10px;
  }

  .about__implement li::after {
    width: 5px;
    height: 5px;
  }

  .about__subtitle {
    margin-bottom: 10px;
    line-height: 85%;
    font-size: 12px;
  }

  .about__list {
    gap: 20px;
  }

  .about__item {
    gap: 10px;
  }

  .about__block-image {
    width: 36px;
    height: 36px;
  }

  .about__title-item {
    font-size: 11px;
    line-height: 118%;
  }

  .about__desc-item {
    font-size: 8px;
  }

  .title {
    font-size: 20px;
  }

  .suppliers {
    margin-bottom: 25px;
  }

  .suppliers__rows {
    gap: 15px;
  }

  .suppliers__top {
    margin-bottom: 25px;
    gap: 16px;
  }

  .suppliers__block-image {
    width: 24px;
    height: 24px;
  }

  .suppliers__block-image img {
    width: 11px;
    height: 8px;
  }

  .suppliers__track {
    gap: 11px;
  }

  .suppliers__item {
    font-size: 10px;
    padding: 6px 11px;
  }

  .suppliers__item.official::after {
    width: 12px;
    height: 12px;
    top: -6px;
    background-size: 6px 4px;
  }

  .suppliers__off {
    font-size: 9px;
  }

  .suppliers__note {
    gap: 10px;
  }

  .clients {
    margin-bottom: 40px;
  }

  .clients .title {
    margin-bottom: 20px;
  }

  .clients__items {
    gap: 10px;
  }

  .clients__item {
    gap: 13px;
    padding: 14px;
    border-radius: 10px;
  }

  .clients__block-image {
    width: 24px;
    height: 24px;
  }

  .clients__title {
    font-size: 10px;
  }

  .assortment {
    margin-bottom: 40px;
  }

  .assortment__body {
    gap: 10px;
  }

  .assortment__items {
    gap: 17px;
  }

  .assortment__item {
    padding: 10px;
    min-height: 75px;
    border-radius: 10px;
  }

  .assortment__info {
    gap: 6px;
  }

  .assortment__title {
    font-size: 9px;
  }

  .assortment__quantity {
    line-height: 117%;
    font-size: 6px;
  }

  .reviews {
    margin-bottom: 45px;
  }

  .reviews__body {
    gap: 10px;
  }

  .reviews__bottom {
    padding: 0 59px;
  }

  .reviews__slide {
    padding: 15px;
    border-radius: 14px;
  }

  .slide-review__block-image {
    border-radius: 10px;
    width: 111px;
    height: 87px;
    margin: 0 auto 10px;
  }

  .slide-review__job {
    font-size: 7px;
  }

  .slide-review__name {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .slide-review__title {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 125%;
  }

  .slide-review__desc {
    font-size: 8px;
    line-height: 140%;
  }

  .reviews-prev svg {
    width: 6px;
    height: 12px;
  }

  .reviews-next svg {
    width: 6px;
    height: 12px;
  }

  .work {
    margin-bottom: 40px;
  }

  .work .title {
    margin-bottom: 20px;
  }

  .work__wrapper {
    gap: 20px;
    padding: 20px;
    border-radius: 14px;
  }

  .work__item {
    gap: 12px;
  }

  .work__number {
    font-size: 30px;
  }

  .work__title {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .work__desc {
    font-size: 8px;
  }

  .block-form {
    margin-bottom: 40px;
  }

  .block-form__body {
    padding: 23px 20px 0px;
    border-radius: 20px;
    gap: 30px;
  }

  .block-form__info {
    gap: 10px;
  }

  .block-form__title {
    font-size: 16px;
  }

  .block-form__desc {
    font-size: 8px;
    line-height: 1.27;
    margin-bottom: 10px;
  }

  .block-form__list {
    gap: 8px;
  }

  .block-form__list li {
    font-size: 9px;
    line-height: 1.44;
    padding-left: 20px;
  }

  .block-form__list li::before {
    width: 12px;
    height: 12px;
  }

  .block-form__list li::after {
    width: 6px;
    height: 6px;
    left: 3px;
    top: 3px;
    bottom: 3px;
  }

  .block-form__img {
    height: 185px;
    width: calc(100% + 40px);
    -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
            transform: translateX(-20px);
  }

  .form {
    gap: 15px;
  }

  .form__title {
    font-size: 12px;
  }

  .form__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form__group > div > div {
    padding-left: 2px;
  }

  .form__input#phoneContacts {
    padding-left: 44px;
  }

  .form__input {
    font-size: 10px;
    padding: 11px 13px;
    border-radius: 30px;
  }

  .form__checkbox {
    gap: 5px;
    font-size: 8px;
  }

  .form__checkbox .form__checkmark {
    width: 20px;
    border: 0.5px solid #35536C;
    border-radius: 2px;
    height: 20px;
    padding: 3px;
  }

  .form__checkbox .form__checkbox-text {
    line-height: 1.27;
  }

  .form__btn {
    padding: 11px 33px;
    font-size: 10px;
  }

  .modal {
    padding: 0 18px;
  }

  .modal.active {
    gap: 22px;
  }

  .modal__content {
    padding: 23px 20px 40px;
  }

  .modal__close svg {
    width: 22px;
    height: 22px;
  }

  .modal__title {
    font-size: 16px;
  }

  .modal__subtitle {
    font-size: 8px;
  }

  .form-ask {
    gap: 9px;
  }

  .form-ask .form__group #phone {
    padding-left: 42px;
  }

  .form-ask__input,
  .form-ask__textarea {
    padding: 10px 12px;
    font-size: 10px;
    border: 0.6px solid #395974;
  }

  .form-ask__textarea {
    min-height: 93px;
    padding: 10px 12px;
    border-radius: 15px;
    resize: none;
  }

  .form-ask__checkbox .form__checkbox-text {
    font-size: 8px;
  }

  .form-ask button {
    line-height: normal;
  }
}

@media (max-width: 450px) {
  .banner {
    margin-bottom: 270px;
  }

  .banner__block-info {
    bottom: -232px;
  }

  .block-form {
    margin-bottom: 30px;
  }

  .block-form__img {
    height: 164px;
  }
}

@media (max-width: 430px) {
  .block-form {
    margin-bottom: 12px;
  }
}

@media (max-width: 1400px) and (min-width: 1200px) {
  .header__menu {
    gap: 10px 15px;
  }

  .header__phones {
    gap: 15px;
  }
}

@media (max-width: 1280px) and (min-width: 1201px) {
  .header__menu li a {
    font-size: 14px;
  }

  .header__phone {
    font-size: 14px;
  }
}

@media (max-width: 1400px) and (min-width: 997px) {
  .header__search {
    width: 100%;
  }
}

@media (max-width: 1200px) and (min-width: 741px) {
  .header__search {
    margin-left: 39px;
  }
}

@media (max-width: 740px) and (min-width: 660px) {
  .banner {
    height: 957px;
  }
}

@media (max-width: 1280px) and (min-width: 751px) {
  .banner__pagination {
    display: none;
  }
}

@media (max-width: 660px) and (min-width: 450px) {
  .assortment__block-image img {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media (min-width: 1281px) and (max-width: 1550px) {
  .work__item:not(:first-child) .work__number::before {
    content: "................";
    left: -54%;
  }
}

@media (min-width: 1281px) and (max-width: 1350px) {
  .work__item:not(:first-child) .work__number::before {
    content: "............";
    left: -45%;
  }
}

@media (max-width: 1500px) and (min-width: 1281px) {
  .block-form__img {
    width: 115%;
  }
}

@media (max-width: 1280px) and (min-width: 997px) {
  .block-form__img {
    width: 105%;
    left: -10%;
    bottom: -109px;
  }
}

h1.banner__block-title{margin:0;}
.fav path{fill:white;}
#bx_basketFKauiI a{line-height:60%;}
.btn-open-formm, .btn-open-form, .authForm, .authForm_mob, .authForm_allready, .authFormpas, .authFormchange, .authFormpcr{
	cursor: pointer;
}

.modal__content .btn.form__btn.btn-fill{
	margin: 20px auto 0;
}

.catalog-section .product-items-wrap .product-item-price-container {
    max-width: calc(100% - 130px);
}