/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
  background-color: transparent;
}

input::-moz-placeholder {
  color: inherit;
}

input::-webkit-input-placeholder {
  color: inherit;
}

input:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder {
  color: inherit;
}

input::placeholder {
  color: inherit;
}

a {
  display: inline-block;
  color: inherit;
  font-family: inherit;
}

@font-face {
  font-family: "IBMPlexSans";
  src: url("../fonts/IBMPlexSans-Regular.ttf");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "IBMPlexSans";
  src: url("../fonts/IBMPlexSans-Medium.ttf");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "IBMPlexSans";
  src: url("../fonts/IBMPlexSans-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "IBMPlexSans";
  src: url("../fonts/IBMPlexSans-Bold.ttf");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --primary-font: "IBMPlexSans";
  --primary-text-color: #000000;
  --accent-text-color: #f32501;
}

html {
  font-size: 10px;
}

body {
  font-family: var(--primary-font);
  color: var(--primary-text-color);
}

.wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 48rem;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 48rem;
  height: 5rem;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #000000;
  z-index: 10;
}

.header .container {
  height: 100%;
  padding: 0 2rem;
  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;
}

.header__title {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 600;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}

.header__burger_item {
  display: block;
  width: 2.2rem;
  height: 0.2rem;
  background-color: #FFFFFF;
}

.menu {
  position: fixed;
  background-color: #000000;
  width: 30rem;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 11;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
}

.menu.active {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.menu__link {
  color: #FFFFFF;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.menu__button {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2.4rem;
  height: 2rem;
}

.menu__button .menu__button_item:nth-child(1) {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu__button .menu__button_item:nth-child(2) {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #FFFFFF;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -0.2rem;
}

.menu__list {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.5rem;
  padding: 4.2rem 2.5rem;
}

.hero {
  padding-top: 6.5rem;
  background-color: rgba(243, 243, 243, 0.6784313725);
}

.hero img {
  width:100%;
}

.box-img {
    position: relative;
}


.bottom-block {
	position: fixed;
	bottom: 0;
	max-width: 480px;
	width: 100%;
	background: white;
	z-index: 101;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	box-shadow: 0px -4px 6px rgb(0 0 0 / 10%);
}

a.button-bottom {
	display: block;
	max-width: 400px;
	border: none;
	-webkit-border-radius: 0.7rem;
	-moz-border-radius: 0.7rem;
    border-radius: 0.7rem;
	background: #000000;
	letter-spacing: 2px;
	color: white;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	padding: 20px 40px;
    font-size: 1.6rem;
    font-weight: 700;
}

.price-and-sale-block {
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	align-items: flex-start;
	justify-content: center;
}

.price-and-sale-block-top {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
}

.old-price {
	text-decoration: line-through;
	font-size: 18px;
	color: #6f6f6f;
}

.sale-block {
	font-size: 20px;
	padding: 3px 8px;
	background: #f88505;
	border-radius: 8px;
	color: white;
	margin: 0 0 0 10px;
}

.price-new {
	font-size: 28px;
	color: #051832;
}


.discount_block {
	/* width: 230px; */
	/* height: 50px; */
	padding: 10px 15px;
	background: #f88505;
	color: #ffffff;
	text-align: center;
	position: absolute;
	bottom: 3%;
	left: 3%;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	align-items: center;
	/* box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 15%); */
	/* transform: rotate(-90deg); */
}

.discount_block .value {
	font-weight: 700;
	font-size: 4rem;
	/* line-height: 24px; */
}

.discount_block .text {
	line-height: 20px;
	font-size: 24px;
	/* padding: 0 0 0 7px; */
	text-align: center;
}

.box-title span {
  background-color: #000000;
  font-size: 1.4rem;
  text-align: center;
  color: #FFFFFF;
  padding: 0.7rem 0;
  margin: 20px 0;
  display: block;
}

.order {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.order img{
  width:100%;
  margin: 0 0 20px 0;
}

.order .container {
  padding: 0 2rem;
}

.box-title {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-wrap: balance;
  text-transform: uppercase;
}

.order__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}

.order__price_block {
  width: 50%;
  padding: 1rem 0;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.order__price_block:nth-child(1) {
  border-right: 0.2rem solid #000000;
}

.order__price_subtitle {
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
}

.order__price_old {
  font-size: 3rem;
  color: #BDBDBD;
  text-decoration: line-through;
  font-style: italic;
  font-weight: 600;
}

.order__price_new {
  font-size: 3.2rem;
  color: var(--accent-text-color);
  /* text-decoration: line-through; */
  font-style: italic;
  font-weight: 600;
}

.order__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: 2.5rem;
}

.order__input {
  width: 100%;
  border-radius: 0.7rem;
  height: 6rem;
  border: 0.1rem solid #000000;
  padding: 0 2rem;
  color: #393838;
  font-size: 1.6rem;
}

.order__button {
  width: 100%;
  height: 6rem;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 0.7rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.video {
  /* padding-bottom: 2rem; */
}

.video__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.video_block {
  height: 27rem;
}

.feature .container {
  padding: 2rem;
  background-color: #f3f3f3;
}

ul.feature__list2 li {
    font-size: 2rem;
    font-weight: 700;
    /* margin-bottom: 2rem; */
    text-align: left;
    background: url(../img/offer__tick_icon.png) 20px 45% no-repeat;
    padding: 10px 20px 10px 60px;
    /* border-top: 1px solid #ffc224; */
    position: relative;
    font-size: 16px;
    font-weight: 700;
    background-size: 32px;
    border-radius: 25px;
    display: inline-block;
    text-wrap: balance;
    width: 100%;
}

.feature__list {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.feature__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature__item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.feature__content {
  width: 50%;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.feature__subtitle {
  font-size: 2rem;
  font-weight: 700;
  /* margin-bottom: 2rem; */
  text-align: center;
}

.feature__desc {
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
}

.feature__image_wrapper {
  width: 50%;
}

.feature__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.about .container {
  padding: 2rem;
}

.text_block img {
  width: 100%;
}

.text_block p {
  font-size: 1.6rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.char {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.char .container {
  padding: 0 2rem;
}

.feedback .container {
  padding: 0 2rem;
}

.char__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.char__image {
  width: 100%;
  margin: 20px 0;
}

.characteristics_list2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    list-style: disc;
    padding-left: 1rem;
    font-size: 1.6rem;
}

.char__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: 1rem;
  list-style: disc;
  padding-left: 1rem;
  font-size: 1.6rem;
}

.char__button {
  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;
  text-decoration: none;
}

.how {
  padding-bottom: 5rem;
}

.how .container {
  padding: 0 2rem;
}

.how__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.reviews_stats_block {
    background-color: #000000;
    font-size: 1.4rem;
    text-align: center;
    color: #FFFFFF;
    padding: 0.7rem 0;
    margin: 0 0 20px 0;
    display: block;
}

.reviews.swiper {
    width: 100%;
    margin: 0 0 40px 0;
}

.how__list {
  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: 3rem;
}

.how__list::before {
  content: "";
  width: 0.2rem;
  height: calc(100% - 1.5rem);
  position: absolute;
  top: 0.5rem;
  left: 2.4rem;
  background-color: #000000;
  z-index: -1;
}

.how__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.how__number {
  min-width: 5rem;
  height: 5rem;
  background-color: #000000;
  border-radius: 50%;
  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;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
}

.how__subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.how__desc {
  font-size: 1.3rem;
  line-height: 1.4;
}

.footer_section {
  padding-bottom: 12rem;
}