@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
:root {
  --main-black: #272e38;
  --light-grey: #f8f8f8;
  --light-dark-color: #767676;
  --bg-color: #3f5e73;
  --yellow: #f8c304;
  --orange: #de541e;
  --light: #d6d6b1;
  --gold: #c79d07;
  --grey: #d9d9d9;
  --bg-light: white;
  --dark-grey: #797979;
  --main-color: #2D5794;
  --main-color2: #17a186;
  --error-color: #ec2830;
  --red: #ec2830;
  --blue: #15b2f5;
  --green: #17a186;
  --light-green: #7ab82983;
  --secondary-color: #1d1f31;
  --green-main: #7ef277;
  --green-dark: #40b48b;
  --background-label: #e1e1e3;
  --background-main: #ecf7f3;
  --background-secondary: #eff1f3;
  --linear-button: linear-gradient(
  	180deg,
  	var(--main-color2) 0%,
  	var(--orange) 100%
  );
  --box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1019607843);
  --small-size: 12px;
  --standart-size: 14px;
  --medium-size: 16px;
  --large-size: 18px;
  --big-size: 20px;
  --extra-big-size: 24px;
  --border-radius: 30px;
  --border-button-radius: 40px;
  --border-small-radius: 8px;
  --border-medium-radius: 15px;
  --border: 1px solid #74869880;
  --border-color: #d9d9d9;
  --font-family: "Montserrat", sans-serif;
}

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

html {
  font-size: var(--medium-size);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  line-height: normal;
}

body {
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: var(--medium-size);
  line-height: var(--medium-size);
  color: var(--main-black);
  overflow-x: hidden;
  background: #ebebeb;
}

body.open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 700;
}

div,
p,
li,
span,
label,
input,
textarea {
  font-weight: 400;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  line-height: normal;
}

select,
button,
input,
textarea {
  font-weight: 400;
  font-size: var(--medium-size);
  line-height: normal;
  color: var(--border-color);
  font-family: var(--font-family);
}

textarea {
  resize: none;
  min-height: 120px;
}

button {
  border: none;
  cursor: pointer;
  background: inherit;
}

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

ul,
ol {
  list-style: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: inherit;
  cursor: pointer;
}

.container {
  max-width: 1208px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 540px) {
  .container {
    padding: 0 10px;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

section {
  padding: 30px 0;
  background: #fdfdfd;
}
@media (max-width: 768px) {
  section {
    scroll-margin-top: 100px;
  }
}

.standart-button {
  color: #ffffff;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 500;
  padding: 15px;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: transparent;
  background-position: center center;
  border: 1px solid var(--main-color);
  transition: 0.2s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.standart-button:hover {
  transition: 0.2s ease-in-out;
}

.phone__block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.phone__block .phone__block-number {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.phone__block .phone__block-number .phone__block-link {
  font-size: 18px;
  font-weight: 500;
}
.phone__block .phone__block-number i {
  color: var(--main-color);
}
.phone__block .phone__block-subtitle {
  font-size: 10px;
  color: #93979c;
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.phone__block .phone__block-subtitle::before {
  content: "";
  position: static;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #78ed7d;
}

.social__block {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social__block .social__icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  background: #f0f0f0;
  padding: 20px 0;
  position: sticky;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 768px) {
  header {
    padding: 5px 0;
  }
}
header .header__wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
header .header__wrapper .header__menu .header__list {
  display: flex;
  gap: 15px;
}
header .header__wrapper .header__menu .header__list .header__list-item a {
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  header .header__wrapper .header__menu.hideMobile {
    display: none;
  }
}
header .header__wrapper .header__menu.showMobile {
  display: none;
  order: 1;
}
header .header__wrapper .header__menu.showMobile .header__menu-button {
  transition: 0.3s ease-in-out;
}
header .header__wrapper .header__menu.showMobile .header__menu-button.open {
  transition: 0.3s ease-in-out;
  transform: rotate(90deg);
}
header .header__wrapper .header__menu.showMobile .header__menu-button i {
  font-size: 34px;
}
@media (max-width: 1200px) {
  header .header__wrapper .header__menu.showMobile {
    display: block;
  }
}
header .header__wrapper .header__callback {
  color: var(--main-color);
}
header .header__wrapper .header__callback:hover {
  background: var(--main-color);
  color: #ffffff;
}
@media (max-width: 768px) {
  header .header__wrapper .header__callback {
    display: none;
  }
}
header .header__wrapper .header__logo img {
  width: auto;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  header .header__wrapper .header__logo img {
    height: 40px;
  }
}
@media (max-width: 768px) {
  header .header__wrapper .header__logo img {
    height: 30px;
  }
}
header .header__wrapper .header__contacts {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 540px) {
  header .header__wrapper .header__contacts .phone__block {
    display: none;
  }
}

.section__main-banner {
  background: #eaeaea;
  padding-bottom: 0;
  background-image: url(/assets/img/catalog-background.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.section__main-banner .main-banner__wrapper {
  display: flex;
  gap: 10px;
  flex-direction: column;
  text-align: center;
}
.section__main-banner .main-banner__wrapper .main-banner__title {
  text-transform: uppercase;
  font-size: 44px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section__main-banner .main-banner__wrapper .main-banner__title {
    font-size: 20px;
  }
}
.section__main-banner .main-banner__wrapper .main-banner__title span {
  font-weight: inherit;
  color: var(--main-color);
}
.section__main-banner .main-banner__wrapper .main-banner__subtitle {
  margin-top: 50px;
  color: var(--main-color);
  font-size: 24px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .section__main-banner .main-banner__wrapper .main-banner__subtitle {
    font-size: 16px;
    margin-top: 20px;
  }
}
.section__main-banner .main-banner__wrapper .main-banner__subtitle .main-banner__h2 {
  font-size: inherit;
}
.section__main-banner .main-banner__wrapper .main-banner__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section__main-banner .main-banner__wrapper .main-banner__buttons {
    grid-template-columns: 1fr;
    margin: unset;
  }
}
.section__main-banner .main-banner__wrapper .main-banner__buttons .main-banner__button {
  width: 100%;
  background: var(--main-color);
  font-weight: bold;
  text-transform: none;
  padding: 20px 40px;
}
.section__main-banner .main-banner__wrapper .main-banner__buttons .main-banner__button:hover {
  background: white;
  color: var(--main-color);
}
.section__main-banner .main-banner__wrapper .main-banner__buttons .main-banner__button.whatsapp {
  background: #125f03;
  border: 1px solid #125f03;
}
.section__main-banner .main-banner__wrapper .main-banner__buttons .main-banner__button.whatsapp:hover {
  background: white;
  color: #125f03;
}
.section__main-banner .main-banner__wrapper .main-banner__image-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.section__main-banner .main-banner__wrapper .main-banner__image-container .main-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section__main-banner .main-banner__wrapper .main-banner__image-container .main-banner__logo {
  position: absolute;
  top: 80px;
  left: 60px;
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section__main-banner .main-banner__wrapper .main-banner__image-container .main-banner__image-text {
  position: absolute;
  top: 100px;
  right: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
  color: white;
  font-size: 20px;
  text-align: start;
  font-weight: bold;
  text-transform: uppercase;
}

.section__steps {
  padding: 50px 0;
}
.section__steps .steps__wrapper {
  height: 950px;
  padding: 100px;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper {
    height: auto;
    padding: 40px 0;
  }
}
.section__steps .steps__wrapper .steps__block {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps-background.hideMobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps-background.showMobile {
    display: none;
  }
}
.section__steps .steps__wrapper .steps__block .steps__item {
  position: absolute;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  width: 330px;
  text-align: center;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item {
    width: 100%;
    gap: 20px;
  }
}
@media (max-width: 1200px) and (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item .steps__item-icon img {
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.section__steps .steps__wrapper .steps__block .steps__item .steps__decsription {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section__steps .steps__wrapper .steps__block .steps__item .steps__decsription .steps__item-title {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.section__steps .steps__wrapper .steps__block .steps__item .steps__decsription .steps__item-title span {
  color: var(--main-color);
  font-weight: 800;
}
.section__steps .steps__wrapper .steps__block .steps__item .steps__decsription .steps__item-subtitle {
  font-size: 15px;
  text-align: center;
}
.section__steps .steps__wrapper .steps__block .steps__item .steps__button {
  padding: 20px 40px;
  background: var(--main-color);
  font-weight: bold;
}
.section__steps .steps__wrapper .steps__block .steps__item .steps__button:hover {
  background: white;
  color: var(--main-color);
}
.section__steps .steps__wrapper .steps__block .steps__item .steps__number {
  border: 1px solid var(--main-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
}
.section__steps .steps__wrapper .steps__block .steps__item.steps__item-1 {
  left: -140px;
  top: 35px;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item.steps__item-1 {
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
  }
}
.section__steps .steps__wrapper .steps__block .steps__item.steps__item-2 {
  left: 285px;
  top: 35px;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item.steps__item-2 {
    left: 50%;
    transform: translateX(-50%);
    top: 330px;
  }
}
.section__steps .steps__wrapper .steps__block .steps__item.steps__item-3 {
  right: -80px;
  top: 35px;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item.steps__item-3 {
    left: 50%;
    transform: translateX(-50%);
    top: 690px;
  }
}
.section__steps .steps__wrapper .steps__block .steps__item.steps__item-4 {
  right: 50px;
  top: 440px;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item.steps__item-4 {
    left: 50%;
    transform: translateX(-50%);
    top: 1070px;
  }
}
.section__steps .steps__wrapper .steps__block .steps__item.steps__item-5 {
  left: 300px;
  top: 480px;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item.steps__item-5 {
    left: 50%;
    transform: translateX(-50%);
    top: 1440px;
  }
}
.section__steps .steps__wrapper .steps__block .steps__item.steps__item-6 {
  left: -160px;
  top: 540px;
}
@media (max-width: 1200px) {
  .section__steps .steps__wrapper .steps__block .steps__item.steps__item-6 {
    left: 50%;
    transform: translateX(-50%);
    top: 1790px;
  }
}
.section__steps .section__title {
  text-align: center;
  font-size: 64px;
  text-transform: uppercase;
}
.section__steps .section__title span {
  color: var(--main-color);
  font-weight: inherit;
}
@media (max-width: 768px) {
  .section__steps .section__title {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .section__steps .section__title {
    font-size: 25px;
  }
}

.section__benefits {
  background-image: url(/assets/img/benefits-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--main-color);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section__benefits {
    padding: 40px 0;
  }
}
.section__benefits * {
  background-image: none;
  background: transparent;
}
.section__benefits .section__title {
  text-align: center;
  font-size: 60px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section__benefits .section__title {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .section__benefits .section__title {
    font-size: 25px;
  }
}
.section__benefits .benefits__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
@media (max-width: 1200px) {
  .section__benefits .benefits__wrapper {
    grid-template-columns: 1fr;
  }
}
.section__benefits .benefits__wrapper .benefits__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: white;
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section__benefits .benefits__wrapper .benefits__item .benefits__item-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__benefits .benefits__wrapper .benefits__item .benefits__item-description .benefits__item-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 10px;
}
.section__benefits .benefits__wrapper .benefits__item .benefits__item-description .benefits__item-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #93979c;
  left: 0;
  bottom: -5px;
}
.section__benefits .benefits__wrapper .benefits__item .benefits__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-bottom: 15px;
}
.section__benefits .benefits__wrapper .benefits__item .benefits__item-icon img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .section__benefits .benefits__wrapper .benefits__item .benefits__item-icon img {
    width: 200px;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.section__benefits .benefits__wrapper .benefits__item.wide {
  grid-column: 1/4;
  display: flex;
  flex-direction: row;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .section__benefits .benefits__wrapper .benefits__item.wide {
    grid-column: unset;
    flex-direction: column;
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
  }
}
.section__benefits .benefits__wrapper .benefits__item.wide .benefits__item-description {
  width: 500px;
}
@media (max-width: 1200px) {
  .section__benefits .benefits__wrapper .benefits__item.wide .benefits__item-description {
    width: unset;
  }
}
.section__benefits .benefits__wrapper .benefits__item.wide .benefits__item-description .benefits__item-title {
  width: -moz-fit-content;
  width: fit-content;
}
.section__benefits .benefits__wrapper .benefits__item.benefits__item-1 {
  background-image: url(/assets/img/benefits-bg-1.png);
}
.section__benefits .benefits__wrapper .benefits__item.benefits__item-2 {
  background-image: url(/assets/img/benefits-bg-2.png);
}
.section__benefits .benefits__wrapper .benefits__item.benefits__item-3 {
  background-image: url(/assets/img/benefits-bg-3.png);
}
.section__benefits .benefits__wrapper .benefits__item.benefits__item-4 {
  background-image: url(/assets/img/benefits-bg-4.png);
  background-position: right center;
  background-size: contain;
}
@media (max-width: 1200px) {
  .section__benefits .benefits__wrapper .benefits__item.benefits__item-1, .section__benefits .benefits__wrapper .benefits__item.benefits__item-2, .section__benefits .benefits__wrapper .benefits__item.benefits__item-3, .section__benefits .benefits__wrapper .benefits__item.benefits__item-4 {
    background-size: cover;
    background-position: center -100px;
  }
}

.section__catalog {
  padding: 60px 0;
  background-image: url(/assets/img/catalog-background.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .section__catalog {
    padding: 40px 0;
  }
}
.section__catalog * {
  background-image: none;
  background: transparent;
}
.section__catalog .section__title {
  font-size: 60px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.section__catalog .section__title.top-sales {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .section__catalog .section__title.top-sales {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .section__catalog .section__title {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .section__catalog .section__title {
    font-size: 25px;
  }
}
.section__catalog .catalog__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}
.section__catalog .catalog__list .catalog__item {
  display: flex;
  flex-direction: column;
  background: white;
  gap: 15px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
.section__catalog .catalog__list .catalog__item .catalog__item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__catalog .catalog__list .catalog__item .catalog__item-description {
  padding: 0 15px;
}
.section__catalog .catalog__list .catalog__item .catalog__item-button {
  width: 100%;
  background: var(--main-color);
  text-align: center;
}
.section__catalog .catalog__list .catalog__item .catalog__item-button:hover {
  transition: 0.2s ease-in-out;
  background: white;
  color: var(--main-color);
}
.section__catalog .catalog__list .catalog__item .catalog__item-subtitle {
  font-weight: bold;
}
.section__catalog .catalog__list .catalog__item .catalog__item-price {
  margin-top: 15px;
  font-size: 20px;
}
.section__catalog .catalog__list .catalog__item .catalog__item-price span {
  font-weight: bold;
}
.section__catalog .top-sales__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.section__catalog .top-sales__list .top-sales__item {
  display: flex;
  flex-direction: column;
  background: white;
  gap: 15px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-title {
  font-size: 30px;
  margin-bottom: 30px;
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-title span {
  font-weight: 500;
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-params {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-params .top-sales__item-param span {
  font-weight: bold;
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-description {
  padding: 0 15px;
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-button {
  width: 100%;
  background: var(--main-color);
  text-align: center;
}
.section__catalog .top-sales__list .top-sales__item .top-sales__item-button:hover {
  transition: 0.2s ease-in-out;
  background: white;
  color: var(--main-color);
}
@media (max-width: 768px) {
  .section__catalog .top-sales__list {
    grid-template-columns: 1fr;
  }
}

.section__form {
  background: var(--main-color);
  padding: 50px 0;
  color: white;
  position: relative;
}
.section__form * {
  background-image: none;
  background: transparent;
}
.section__form .form__background {
  background-image: url(/assets/img/form-background.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  top: -10px;
  right: 40px;
  height: 100%;
  width: 800px;
  scale: 1.1;
}
@media (max-width: 768px) {
  .section__form .form__background {
    height: 100%;
    width: 300px;
    right: 0;
    bottom: 0;
    top: unset;
    background-position: right bottom;
    scale: 1;
  }
}
.section__form .form__wrapper {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.section__form .form__wrapper .form__title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section__form .form__wrapper .form__title {
    font-size: 24px;
  }
}
.section__form .form__wrapper .form__button {
  background: white;
  color: var(--main-color);
  padding: 20px 40px;
}

.section__about {
  background: #f2f2f2;
  overflow: hidden;
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .section__about {
    padding-bottom: 0;
  }
}
.section__about .about__wrapper {
  position: relative;
}
.section__about .about__wrapper .about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 50px 20px;
}
.section__about .about__wrapper .about__container .about__block {
  background: white;
  padding: 30px;
  height: 500px;
}
@media (max-width: 1200px) {
  .section__about .about__wrapper .about__container .about__block {
    height: auto;
  }
}
.section__about .about__wrapper .about__container .about__block .about__title {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section__about .about__wrapper .about__container .about__block .about__title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .section__about .about__wrapper .about__container .about__block .about__title {
    font-size: 25px;
  }
}
.section__about .about__wrapper .about__container .about__block .about__subtitle {
  font-size: 20px;
}
.section__about .about__wrapper .about__container .about__block .about__subtitle span {
  color: var(--main-color);
  font-weight: 500;
}
@media (max-width: 1200px) {
  .section__about .about__wrapper .about__container {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.section__about .about__wrapper .about__container .about__block.empty {
  background: transparent;
  background-image: url(/assets/img/about-figure.svg);
}
@media (max-width: 1200px) {
  .section__about .about__wrapper .about__container .about__block.empty {
    display: none;
  }
}
.section__about .about__wrapper .about__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  bottom: -200px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .section__about .about__wrapper .about__image {
    display: none;
  }
}

.section__prices {
  background: #f2f2f2;
  padding-bottom: 80px;
}
.section__prices .section__title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section__prices .section__title {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .section__prices .section__title {
    font-size: 25px;
  }
}
.section__prices .section__title span {
  color: var(--main-color);
  font-weight: inherit;
}
.section__prices .prices__wrapper {
  z-index: 2;
  position: relative;
}
.section__prices .prices__wrapper .prices__images {
  position: relative;
  width: 100%;
  background: white;
  height: 500px;
  z-index: 1;
  margin-top: -150px;
  padding: 0 10px;
  overflow: hidden;
  display: flex;
  align-items: end;
}
@media (max-width: 1200px) {
  .section__prices .prices__wrapper .prices__images {
    display: none;
  }
}
.section__prices .prices__wrapper .prices__images .prices__image-container {
  z-index: 2;
  background: transparent;
}
.section__prices .prices__wrapper .prices__images .prices__image-container .prices__image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 3;
}
.section__prices .prices__wrapper .prices__images .prices__image-container img.prices__logo {
  position: absolute;
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  left: 55%;
  top: 40%;
  z-index: 5;
  transform: translate(-40%, -55%);
}
.section__prices .prices__wrapper .prices__images .prices__background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  top: 0;
}
.section__prices .prices__container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
}
@media (max-width: 1200px) {
  .section__prices .prices__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.section__prices .prices__container .prices__block .prices__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__prices .prices__container .prices__block .prices__list .prices__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  font-size: 20px;
}
.section__prices .prices__container .prices__block .prices__list .prices__item i {
  width: 30px;
  height: 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--main-color);
}
.section__prices .prices__container .prices__block .prices__subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
.section__prices .prices__container .prices__block.white {
  position: relative;
  z-index: 2;
  padding: 0 30px 30px 30px;
}
@media (max-width: 1200px) {
  .section__prices .prices__container .prices__block.white {
    padding: 30px 0 0 0;
  }
}
.section__prices .prices__container .prices__block.white .prices__list .prices__item i {
  background: white;
  color: var(--main-color);
}

.section__contacts {
  background-image: url(/assets/img/contacts-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--main-color);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section__contacts {
    padding: 40px 0;
  }
}
.section__contacts .contacts__wrapper {
  background: #f2f2f2;
}
.section__contacts .contacts__wrapper .contacts__container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .section__contacts .contacts__wrapper .contacts__container {
    grid-template-columns: 1fr;
  }
}
.section__contacts .contacts__wrapper .contacts__container .contacts__block.info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section__contacts .contacts__wrapper .contacts__container .contacts__block.info .contacts__title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: bold;
}
.section__contacts .contacts__wrapper .contacts__container .contacts__block.info .phone__block {
  align-items: start;
}

.mobile-overlay {
  background: transparent;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: end;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
}
.mobile-overlay.open {
  background: rgba(0, 0, 0, 0.4);
  transform: translateX(0);
  transition: 0.3s ease-in-out;
}
.mobile-overlay .mobile-overlay__wrapper {
  width: 70%;
  background: white;
  padding: 50px 20px;
  position: relative;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__close i {
  font-size: 26px;
  color: var(--main-color);
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__logo {
  width: 100px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__container {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__container .mobile-overlay__contacts-block {
  padding-top: 10px;
  border-top: 1px solid var(--main-color);
  color: var(--main-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__container .mobile-overlay__contacts-block .mobile-overlay__callback {
  text-align: center;
  color: var(--main-color);
  font-size: 16px;
  padding: 10px 15px;
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__container .mobile-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-overlay .mobile-overlay__wrapper .mobile-overlay__container .mobile-overlay__list .mobile-overlay__list-item {
  color: var(--main-color);
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
}
.scroll-top.show {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

footer {
  background: var(--main-black);
  color: white;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}/*# sourceMappingURL=main.css.map */