/*------- fonts --------*/
@font-face {
  font-family: "BebasLight";
  src: url("../fonts/Bebas Light.otf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Bebas";
  src: url("../fonts/Bebas Neue.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamPro";
  src: url("../fonts/GothamPro.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamProBlack";
  src: url("../fonts/GothamPro-Black.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamProBold";
  src: url("../fonts/GothamPro-Bold.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamProItalic";
  src: url("../fonts/GothamPro-Italic.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamProMedium";
  src: url("../fonts/GothamPro-Medium.ttf");
  font-style: normal;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "GothamPro", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
}

b {
  font-family: "GothamProBold";
}

.mainBtn, .sent {
  display: block;
  width: 220px;
  font-family: "GothamProMedium";
  font-size: 14px;
  color: #fff !important;
  text-decoration: none;
  border-radius: 25px;
  border: none;
  padding: 20px 0 !important;
  background: linear-gradient(to right, #FF763B, #F51479);
  box-shadow: 10px 5px 15px -5px rgba(255, 118, 59, 0.7), 10px 5px 15px -5px rgba(245, 20, 121, 0.7);
  cursor: pointer;
  transition: all 0.5s ease;
}

.mainBtn:hover, .sent:hover {
  transform: scale(1.06);
  box-shadow: 10px 5px 20px -2px #ff763b, 10px 5px 20px -2px #f51479;
}

section {
  padding: 100px 0 70px;
}

h2, h2 span {
  font-family: "Bebas";
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  color: #434548;
  padding-bottom: 50px;
}

h2 span, h2 span span {
  color: #E21B41;
}

.section__descript {
  line-height: 24px;
  padding: 0 45px 70px;
  text-align: center;
}

/*------- header  --------*/
header {
  position: fixed;
  width: 100%;
  padding: 5px 0;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  border-right: 1px solid #F3F3F3;
  border-left: 1px solid #F3F3F3;
}

.header__logo {
  font-family: "Bebas";
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
}

.header__logo span {
  display: block;
  font-size: 10px;
  line-height: 15px;
  font-family: "GothamProMedium";
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  height: 117px;
}

.menu li {
  display: flex;
  align-items: center;
  padding: 0 25px;
  height: 100%;
  border-left: 1px solid #F3F3F3;
}

.menu li:last-child {
  border-right: 1px solid #F3F3F3;
}

.menu li a {
  font-family: "GothamProMedium";
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: all 0.1s ease;
}

.menu li a:hover {
  border-bottom: 3px solid #E21B41;
  margin-bottom: 5px;
  opacity: 0.8;
}

.header__callRequest {
  text-align: center;
}

.header__callRequest a {
  display: block;
  font-family: "GothamProBold";
  color: #434548;
  text-decoration: none;
  padding-bottom: 15px;
}

.menuBtn {
  width: 35px;
  padding: 10px 0 3px;
  text-align: center;
  z-index: 5;
  cursor: pointer;
  display: none;
}

.menuBtn div {
  height: 4px;
  background-color: #E21B41;
  border-radius: 100px;
  margin-bottom: 7px;
  transition: all 0.2s ease-in-out;
}

/*------- first screen  --------*/
#main {
  padding: 120px 0 60px;
  background-image: url(../img/fon_main.png);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main__wrap {
  display: flex;
  justify-content: space-between;
}

.main__text {
  width: 64%;
  padding-top: 30px;
}

h1, h1 span {
  font-family: "Bebas";
  font-size: 56px;
  color: #434548;
  text-transform: uppercase;
}

h1 span, h1 span span {
  color: #E21B41;
}

h1 {
  margin-right: -70px;
}

.main__hr {
  width: 50%;
  height: 1px;
  background-color: #E1DDDE;
  margin: 10px 0 20px;
  position: relative;
}

.main__hr:before {
  content: '';
  position: absolute;
  top: -3px;
  height: 6px;
  width: 6px;
  background-color: #E1DDDE;
}

.main__description {
  font-family: "GothamProMedium";
}

.main__description span {
  font-family: "GothamProBlack";
  color: #E21B41;
}

.main__mobile__image {
  display: none;
}

.main__plus {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.main__plus__item {
  width: 33%;
}

.main__plus__item__heading {
  font-family: "GothamProBold";
  color: #434548;
  padding: 25px 0;
}

.main__plus__item__text {
  line-height: 24px;
  max-width: 200px;
}

.main__image {
  width: 40%;
  position: relative;
}

.main__image__big img {
  width: 150%;
  margin-left: -50px;
}

.main__image__gift {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: -130px;
}

.main__image__gift__image {
  background-color: #fff;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px 20px 0 0;
}

.main__image__gift__text {
  font-size: 18px;
  background-color: #fff;
  max-width: 300px;
  margin: -20px auto 0;
  padding: 20px 10px;
  border-radius: 20px;
}

.main__image__gift__text span {
  font-family: "GothamProBlack";
  font-size: 40px;
  color: #E21B41;
}

.main__price, .about__price, .about__price .rub {
  text-align: center;
  margin-top: 20px;
  font-size: 65px;
  font-family: "Bebas";
  color: #E21B41;
}

.main__price .mainBtn, .about__price .mainBtn, .about__price .rub .mainBtn {
  margin: 0 auto;
}

.main__price span, .about__price span {
  text-align: center;
  font-size: 65px;
  font-family: "BebasLight";
  color: #434548;
  position: relative;
}

.main__price span:before, .about__price span:before {
  content: '';
  position: absolute;
  height: 4px;
  width: 100%;
  top: 50%;
  background-color: #434548;
}

/*------- tech  --------*/
#technology {
  background-image: url(../img/fon_tech.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  z-index: 3;
  position: relative;
}

.technology__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.technology__item {
  width: 49%;
}

.technology__ifno {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.technology__ifno__image {
  margin-right: 20px;
}

.technology__ifno__text {
  font-family: "GothamProBold";
  line-height: 24px;
  color: #434548;
}

.technology__table__heading {
  font-family: "GothamProBold";
  text-transform: uppercase;
  color: #434548;
  text-align: center;
  padding: 35px 0 20px;
  border-top: 1px solid #F3F3F3;
}

table {
  width: 100%;
  padding: 15px 5px 15px 30px;
  border: 1px solid #F61678;
  border-radius: 20px;
  text-align: left;
  position: relative;
  box-shadow: 0 25px 15px -5px rgba(255, 118, 59, 0.1), 0 25px 15px -5px rgba(245, 20, 121, 0.1);
}

table th {
  padding-bottom: 30px;
  width: 52%;
  position: relative;
}

table th:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 85%;
  bottom: 15px;
  left: -10px;
  background-color: #F3F3F3;
}

table th::before::nth-last-child {
  background-color: red;
}

table td {
  padding-bottom: 30px;
  position: relative;
}

table td:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 15px;
  left: -10px;
  background-color: #F3F3F3;
}

table:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background-color: #F61678;
}

tr:last-child th::before, tr:last-child td::before {
  background-color: #fff;
}

.technology__table__dop {
  font-family: "GothamProBold";
  font-size: 14px;
  padding-top: 40px;
  text-align: center;
}

.technology__bigImage {
  width: 100%;
}

.technology__bigImage img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.technology__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}

.technology__row__item {
  text-align: center;
  width: 33%;
  border-right: 1px solid #F3F3F3;
}

.technology__row__item:last-child {
  border-right: none;
}

.technology__row__text {
  color: #434548;
  margin-top: 20px;
}

/*------- shave  --------*/
#shave {
  background-image: url(../img/fon_shave.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

#shave:before {
  content: '';
  background-image: url(../img/wave_tech.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 170px;
}

#shave h2 {
  position: relative;
}

#shave h2:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 30%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #EAE7E8;
}

.shave__wrap {
  margin-top: 50px;
  position: relative;
}

.shave__wrap:before {
  content: '';
  position: absolute;
  height: 84%;
  width: 1px;
  top: -50px;
  left: -50px;
  background-color: #EAE7E8;
}

.shave__wrap:after {
  content: '';
  position: absolute;
  height: 84%;
  width: 1px;
  top: -50px;
  right: -50px;
  background-color: #EAE7E8;
}

.shave__line {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.shave__lineTop {
  justify-content: center;
  margin-bottom: -120px;
}

.shave__lineBottom {
  justify-content: center;
  margin-bottom: 0;
  margin-top: -190px;
}

.shave__item {
  max-width: 355px;
  text-align: center;
  line-height: 24px;
}

.shave__item__heading {
  font-family: "GothamProBold";
  font-size: 20px;
  padding: 10px 0;
}

.shave__bigImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shave__bigImage img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.shave__mobileSlider {
  display: none;
}

/*------- about  --------*/
#about {
  padding-bottom: 100px;
}

.about__mobileSlider {
  display: none;
}

.about__wrap {
  display: flex;
  justify-content: space-between;
}

.about__images {
  width: 45%;
  text-align: center;
  margin-top: 65px;
}

.aboutShadow {
  margin-left: -65px;
  margin-top: -45px;
}

.about__gallery {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.about__gallery__item {
  width: 19%;
  max-width: 102px;
  max-height: 102px;
  cursor: pointer;
}

.about__gallery__item img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 0.2s ease-in;
}

.about__gallery__item img:hover {
  transform: scale(1.1);
}

.about__descript {
  width: 54%;
}

.about__descript h2 {
  text-align: left;
  padding-bottom: 45px;
  border-bottom: 2px solid #F7E8EB;
  max-width: 500px;
}

.about__buttons {
  margin: 45px 0;
  display: flex;
}

.about__buttons button {
  width: 50%;
  padding: 25px 0;
  background-color: transparent;
  border: 1px solid #EAE7E8;
  border-radius: 5px;
  font-family: "GothamProBold";
  color: #434548;
  cursor: pointer;
  transition: all 0.3 ease-in;
}

.about__buttonActive {
  color: #fff !important;
  background: linear-gradient(to top, #FF763B, #F51479);
}

.about__checked {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 5px;
  border: 1px solid #EAE7E8;
  padding: 20px 20px 20px 25px;
  margin-top: 10px;
}

.about__checked__col {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__checked__item {
  font-family: "GothamProMedium";
  line-height: 18px;
  padding: 0 0 20px 35px;
  position: relative;
}

.about__checked__item:before {
  content: url(../img/circle-check.png);
  position: absolute;
  left: 0;
  top: -3px;
}

.about__checked__item:last-child {
  padding-bottom: 0;
}

.about__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.about__price .mainBtn {
  display: inline-block;
  padding: 25px 0;
  margin: 0;
}

.about__price span {
  margin-top: -5px;
}

.about__price .rub {
  display: inline-block;
  margin-top: 0;
  font-size: 48px;
  margin: 10px 0 0 -30px;
}

.about__price .rub:before {
  width: 0;
  height: 0;
}

.about__gift {
  display: flex;
  border: 1px solid #EAE7E8;
  border-radius: 20px;
  margin-top: 30px;
  position: relative;
}

.about__gift:before {
  content: '+';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: "GothamProBlack";
  font-size: 40px;
  color: #E21B41;
}

.about__gift__item {
  font-size: 18px;
  padding: 15px 10px;
  border-right: 1px solid #EAE7E8;
}

.about__gift__item:last-child {
  border-right: none;
  padding-right: 0;
}

.about__gift__item img {
  margin-top: 1px;
}

.about__gift__item span {
  font-family: "GothamProBlack";
  font-size: 40px;
  color: #E21B41;
}

.about__content2 {
  display: none;
}

/*------- result  --------*/
#result {
  background-image: url(../img/fon_result.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 105px;
}

.result__slider {
  width: 90%;
  margin: 0 auto;
}

.result__slider__item {
  width: 50%;
  max-height: 324px;
  margin: 0 15px;
  overflow: hidden;
}

.result__slider__item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/*------- instead  --------*/
#instead {
  padding-top: 40px;
}

.instead__wrap {
  display: flex;
  justify-content: space-between;
}

.instead__wrap h2 {
  text-align: left;
  margin-top: 20px;
  margin-right: -30px;
  padding-bottom: 50px;
  border-bottom: 2px solid #F7E8EB;
  max-width: 570px;
}

.instead__wrap .section__descript {
  text-align: left;
  padding: 0;
  margin-top: 50px;
}

.instead__item {
  width: 49%;
}

.instead__slider {
  width: 99%;
  margin-top: 50px;
}

.instead__slider .slick-slide {
  display: flex;
}

.instead__slider .slick-prev, .instead__slider .slick-next {
  transform: scale(0.6);
  top: 45%;
  font-size: 50px;
}

.instead__slider .slick-prev {
  left: -40px;
}

.instead__slider .slick-next {
  right: -30px;
}

.instead__slider .slick-dots {
  bottom: -40px;
}

.instead__slider .slick-dots li {
  margin: 0 7px;
}

.instead__slider .slick-dots li button:before {
  transform: scale(0.6);
}

.instead__slider__item {
  border-radius: 5px;
  border: 1px solid #EAE7E8;
  padding: 20px 0 20px 10px;
}

.instead__slider__part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "GothamProMedium";
  width: 50%;
}

.instead__slider__part span {
  font-family: "GothamProBold";
}

.instead__slider__part:last-child {
  margin-left: -5px;
  padding-left: 50px;
  border-left: 1px solid #EAE7E8;
}

.instead__slider__blackText, .instead__slider__redText {
  font-size: 70px;
  font-family: "Bebas";
  color: #1D1C1C;
}

.instead__slider__redText {
  color: #E21B41;
  margin-top: 18px;
}

.instead__dop {
  font-family: "GothamProBold";
  font-size: 14px;
  padding-top: 25px;
  margin-right: -50px;
}

/*------- steps  --------*/
#steps {
  background-image: url(../img/fon_steps.png);
  background-position: 35% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 170px 0 100px;
}

.steps__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.steps__item {
  width: 17%;
  text-align: center;
  position: relative;
}

.steps__item:nth-child(odd):before {
  position: absolute;
  right: -95px;
  top: 70px;
  content: url(../img/arrow_down.png);
}

.steps__item:nth-child(even):before {
  position: absolute;
  right: -90px;
  top: 70px;
  content: url(../img/arrow_up.png);
}

.steps__item:last-child:before {
  content: '';
}

.steps__text {
  margin-top: 45px;
}

.steps__mobileSlider {
  display: none;
}

/*------- expert  --------*/
#expert {
  padding: 0;
}

.expert__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding: 20px 0 110px;
}

.expert__wrap h2 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 60px;
  border-bottom: 2px solid #F7E8EB;
}

.expert__wrap h2 span {
  color: #F62071;
}

.expert__item {
  width: 30%;
}

.expert__item:nth-child(2) {
  display: flex;
  align-items: flex-end;
}

.expert__person {
  margin-top: 40px;
  max-width: 340px;
  line-height: 24px;
}

.expert__italicText {
  font-family: "GothamProItalic";
  line-height: 24px;
  margin-bottom: -20px;
}

.expert__image {
  position: absolute;
  bottom: -2px;
  left: -45px;
}

/*------- smallDescript  --------*/
#smallDescript {
  position: relative;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  padding: 50px 0;
}

#smallDescript h2 span {
  color: #F62071;
}

#smallDescript .underHeading {
  margin: 50px auto;
}

#smallDescript p {
  text-align: center;
  line-height: 24px;
  max-width: 730px;
  margin: 0 auto;
}

#smallDescript .smallDescript__bold {
  font-family: "GothamProBold";
  margin-bottom: 40px;
}

/*------- question  --------*/
#question {
  background-image: url(../img/fon_question.png);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}

#question h2 span {
  color: #F62071;
}

#question .underHeading {
  margin: 50px auto;
}

.question__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.question__item {
  width: 49%;
  padding: 25px;
  border: 1px #F62071 dashed;
  border-radius: 20px;
  margin-bottom: 25px;
}

.question__item:last-child {
  margin: 0 auto;
}

.question__item__heading {
  font-family: "GothamProBold";
  color: #F62071;
  border-bottom: 1px solid #EAE7E8;
  min-height: 55px;
}

.question__item__text {
  line-height: 24px;
  margin-top: 30px;
}

/*------- garanty  --------*/
#garanty {
  padding: 60px 0;
}

#garanty h2 span {
  color: #F62071;
}

#garanty .underHeading {
  margin: 50px auto;
}

.garanty__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.garanty__item {
  width: 24%;
}

.garanty__item img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/*------- delivery  --------*/
#delivery {
  padding: 0 0 50px;
}

#delivery h2 span {
  color: #F62071;
}

.delivery__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.delivery__wrap p {
  font-size: 18px;
  margin-left: 50px;
}

.delivery__item {
  width: 49%;
}

.delivery__item img {
  width: 100%;
}

.delivery__warn {
  font-family: "GothamProBlack";
  font-size: 22px;
  color: #F62071;
  margin-left: 50px;
}

.deliveryBold {
  font-family: "GothamProBlack";
  padding: 20px 0;
}

.deliveryPink {
  font-size: 18px;
  font-family: "GothamProMedium";
  color: #F62071;
}

/*------- footer  --------*/
footer {
  padding: 10px;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

footer .header__logo {
  cursor: pointer;
}

footer .mainBtn {
  margin: 0 auto;
}

.footer__item {
  width: 30%;
}

.footer__requisites {
  text-align: center;
  font-size: 14px;
}

.footer__links {
  text-align: center;
  padding: 10px 0 30px;
}

.footer__links a {
  color: #919191;
}

/*------- popup  --------*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
}

.popup__body {
  width: 500px;
  height: auto;
  background-color: #fff;
  text-align: center;
  padding: 50px 30px;
  border-radius: 5px;
  position: relative;
  z-index: 100;
}

.popup__body .sent {
  margin: 20px auto;
}

.popup__body h3 {
  font-size: 34px;
  font-family: "Bebas";
}

.popup__body a {
  color: #919191;
  font-size: 12px;
}

.policyBody {
  margin-top: 100px;
  width: 70%;
  height: 100%;
  text-align: left;
  overflow: scroll;
  font-size: 14px;
}

.policyBody h3 {
  text-align: center;
}

.policyBody a {
  color: #E21B41;
  font-size: 14px;
}

.popup__close {
  width: 20px;
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup__close div {
  height: 3px;
  background-color: #828282;
  margin-bottom: 7px;
}

.popup__close div:first-child {
  transform: translate(7px, 2px) rotate(45deg);
  transform-origin: left top;
}

.popup__close div:last-child {
  transform: translate(1px, -9px) rotate(-45deg);
  transform-origin: right bottom;
}

input {
  width: 90%;
  margin-top: 20px;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #EAE7E8;
}

.mailSent {
  font-family: "GothamProMedium";
  font-size: 18px;
  margin-top: 20px;
  color: #F62071;
  display: none;
}

/*------- media  --------*/
@media (max-width: 1400px) {
  section {
    padding: 60px 0;
  }
  .section__descript {
    line-height: 24px;
    padding: 0 0 40px;
    text-align: center;
  }
  h2 {
    padding-bottom: 40px;
  }
  .header__logo {
    font-size: 30px;
    line-height: 30px;
  }
  .header__logo span {
    font-size: 8px;
  }
  .mainBtn, .sent {
    font-size: 12px;
  }
  header {
    padding: 0;
  }
  h1, h1 span, h2, h2 span {
    font-size: 50px;
  }
  .main__text {
    padding-top: 30px;
  }
  .main__plus__item__text {
    font-size: 14px;
    line-height: 20px;
  }
  .main__image__big img {
    width: 140%;
  }
  .main__image__gift {
    bottom: 34px;
  }
}

@media (max-width: 1200px) {
  * {
    font-size: 15px;
  }
  .container {
    max-width: 970px;
  }
  .menu li {
    padding: 0 10px;
  }
  .main__image__big img {
    width: 160%;
    margin-left: -45px;
  }
  .main__image__gift {
    bottom: 0;
    left: -100px;
  }
  h1, h1 span, h2, h2 span {
    font-size: 44px;
    line-height: 50px;
  }
  .main__plus__item__text {
    max-width: 170px;
  }
  .main__price {
    margin-top: 20px;
  }
  .shave__bigImage {
    width: 30%;
  }
  .shave__item {
    max-width: 300px;
    line-height: 20px;
  }
  .about__wrap {
    flex-direction: column-reverse;
  }
  .about__images {
    width: 100%;
    margin-top: 30px;
  }
  .about__descript {
    width: 100%;
  }
  .about__descript h2 {
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
    max-width: 100%;
  }
  .about__buttons {
    margin: 30px 0;
  }
  .about__price, .about__gift, .about__gallery {
    max-width: 650px;
    margin: 20px auto 0;
  }
  .aboutShadow {
    margin-left: 0;
  }
  .instead__wrap h2 {
    max-width: 100%;
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
  }
  .instead__wrap .section__descript {
    text-align: center;
    margin-top: 40px;
  }
  .instead__dop {
    text-align: center;
  }
  .instead__item {
    width: 100%;
  }
  .instead__item img {
    display: none;
  }
  .instead__slider {
    width: 100%;
  }
  .instead__dop {
    margin-right: 0;
  }
  .steps__item:nth-child(odd):before {
    content: '';
  }
  .steps__item:nth-child(even):before {
    content: '';
  }
  .steps__text {
    margin-top: 20px;
  }
  .expert__image {
    width: 70%;
  }
  .expert__image img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 750px;
  }
  .header__wrap {
    position: relative;
    padding: 10px 30px;
    border-right: none;
    border-left: none;
  }
  .header__callRequest .mainBtn {
    display: inline-block;
  }
  .header__callRequest a {
    display: inline-block;
    padding: 20px;
  }
  .header__nav {
    order: 3;
  }
  .menuBtn {
    display: block;
  }
  .menu {
    position: absolute;
    top: 100px;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 5;
    display: none;
  }
  .menu li {
    padding: 10px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  .menu li:last-child {
    border-right: none;
  }
  #main {
    padding: 100px 0 90px;
  }
  .main__plus {
    display: none;
  }
  .main__image__big img {
    width: 120%;
    margin-left: 0;
  }
  .main__image__gift {
    bottom: -5px;
    left: -55px;
  }
  .main__image__gift__text {
    font-size: 16px;
  }
  .main__image__gift__text span {
    font-size: 28px;
  }
  .technology__item {
    width: 100%;
  }
  .technology__ifno {
    margin: 0 auto 35px;
    justify-content: center;
  }
  .technology__bigImage {
    margin-top: 30px;
  }
  #shave h2:before {
    background-color: transparent;
    height: 0;
    width: 0;
  }
  .shave__wrap {
    margin-top: 0;
  }
  .shave__line {
    justify-content: center;
    margin-bottom: 0;
  }
  .shave__bigImage {
    display: none;
  }
  .shave__lineTop {
    margin-bottom: 0;
  }
  .shave__lineBottom {
    margin-top: 0;
  }
  .shave__item {
    margin-bottom: 30px;
  }
  #steps {
    padding: 100px 0 50px;
  }
  .steps__wrap {
    justify-content: space-around;
  }
  .steps__item {
    width: 30%;
    margin-top: 30px;
  }
  .expert__wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    padding: 20px 0 0;
  }
  .expert__image {
    position: static;
    margin-top: 50px;
  }
  .expert__item {
    width: 49%;
  }
  .expert__item:nth-child(2) {
    display: flex;
    align-items: flex-end;
  }
  .delivery__item {
    width: 100%;
  }
  .delivery__image img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
  .delivery__wrap p, .delivery__warn {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
  .container {
    max-width: none;
    padding: 0 10px;
  }
  .header__wrap {
    padding: 10px;
  }
  .main__wrap {
    flex-direction: column;
  }
  .main__text {
    width: 100%;
    padding-top: 20px;
  }
  h1 {
    margin-right: 0;
    text-align: center;
    font-size: 38px;
    line-height: 40px;
  }
  h1 span {
    font-size: 38px;
    line-height: 40px;
  }
  h2, h2 span {
    font-size: 38px;
    line-height: 40px;
  }
  .main__hr {
    display: none;
  }
  .main__image {
    display: none;
  }
  .main__description {
    text-align: center;
    margin: 30px 0;
  }
  .main__mobile__image {
    display: block;
    margin: 0 auto;
    width: 55%;
  }
  .main__mobile__image img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
  .main__price {
    margin-top: 0;
  }
  .main__price, .about__price, .about__price .rub {
    font-size: 60px;
  }
  .main__price span, .about__price span {
    font-size: 60px;
  }
  #technology {
    padding-bottom: 50px;
  }
  .about__gift {
    display: none;
  }
  .about__price {
    display: block;
  }
  .about__price .mainBtn {
    display: block;
    margin: 0 auto;
  }
  .about__price .rub {
    font-size: inherit;
    margin: 0;
  }
  .about__price .rub:before {
    width: 0;
    height: 0;
  }
  #result {
    padding-bottom: 40px;
  }
  #result .slick-dots {
    bottom: -40px;
  }
  #result .slick-dots li {
    margin: 0 7px;
  }
  #result .slick-dots li button:before {
    transform: scale(0.6);
  }
  .result__slider {
    width: 100%;
  }
  .result__slider__item {
    margin: 0 5px;
  }
  .expert__wrap h2 {
    text-align: left;
    margin-top: 20px;
    padding: 30px 0 0;
    border-bottom: none;
  }
  .expert__item {
    width: 100%;
  }
  .expert__item:nth-child(2) {
    display: block;
    margin-top: 30px;
  }
  .expert__person {
    max-width: 100%;
  }
  .expert__italicText {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
  .popup__body {
    width: 95%;
    padding: 50px 10px;
  }
  footer .header__wrap {
    flex-wrap: wrap;
  }
  .footer__item {
    width: auto;
    max-width: 300px;
  }
  footer .footer__requisites {
    margin-top: 30px;
    width: 100%;
    max-width: none;
    order: 3;
  }
}

@media (max-width: 650px) {
  .header__wrap .mainBtn {
    display: none;
  }
  footer .header__wrap .mainBtn {
    display: block;
  }
  #main {
    padding: 100px 0 50px;
  }
  .instead__slider__blackText, .instead__slider__redText {
    font-size: 50px;
  }
  .question__item {
    width: 100%;
  }
  .garanty__item {
    width: 49%;
  }
  .shave__wrap {
    display: none;
  }
  .shave__mobileSlider {
    display: block;
    width: 100%;
  }
  .shave__mobileSlider .slick-dots {
    bottom: -40px;
  }
  .shave__mobileSlider .slick-dots li {
    margin: 0 7px;
  }
  .shave__mobileSlider .slick-dots li button:before {
    transform: scale(0.6);
  }
  .shave__mobileSlider__item {
    text-align: center;
  }
  .shave__mobileSlider__item img {
    margin: 0 auto;
  }
  .about__images {
    display: none;
  }
  .about__mobileSlider {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  .about__mobileSlider .slick-dots {
    bottom: -40px;
  }
  .about__mobileSlider .slick-dots li {
    margin: 0 7px;
  }
  .about__mobileSlider .slick-dots li button:before {
    transform: scale(0.6);
  }
  .about__mobileSlider__item {
    width: 100%;
    max-height: 300px;
  }
  .about__mobileSlider__item img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
  .steps__wrap {
    display: none;
  }
  .steps__mobileSlider {
    display: block;
    width: 100%;
  }
  .steps__mobileSlider .slick-dots {
    bottom: -40px;
  }
  .steps__mobileSlider .slick-dots li {
    margin: 0 7px;
  }
  .steps__mobileSlider .slick-dots li button:before {
    transform: scale(0.6);
  }
  .steps__mobileSlider img {
    margin: 0 auto;
  }
  .steps__mobileSlider__item {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .header__logo {
    font-size: 24px;
    line-height: 24px;
  }
  .header__logo span {
    font-size: 6px;
  }
  .menu {
    top: 90px;
  }
  .header__callRequest a {
    font-size: 14px;
    padding: 5px;
  }
  h1, h1 span, h2, h2 span {
    font-size: 30px;
    line-height: 30px;
  }
  table:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0%;
    background-color: transparent;
  }
  .technology__row {
    display: none;
  }
  #about {
    padding-bottom: 40px;
  }
  .about__checked__col {
    width: 100%;
  }
  .about__checked__col:first-child {
    margin-bottom: 20px;
  }
  .about__bigImage {
    width: 100%;
  }
  .about__bigImage img {
    object-fit: cover;
    object-position: center;
    height: 90%;
    width: 90%;
  }
  .instead__slider__item {
    display: flex;
    flex-wrap: wrap;
  }
  .instead__slider__part {
    width: 100%;
    padding: 10px;
  }
  .instead__slider__part:last-child {
    margin-left: 0;
    padding-left: 10px;
    border-left: none;
    border-top: 1px solid #EAE7E8;
  }
  .instead__slider__redText {
    margin-top: 0;
  }
  .steps__item {
    width: 50%;
  }
  .delivery__warn {
    font-size: 18px;
  }
  .delivery__wrap p {
    font-size: 15px;
  }
  .deliveryPink {
    font-size: 15px;
  }
  .footer__links a {
    display: block;
    margin: 10px 0;
    font-size: 14px;
  }
}

@media (max-width: 440px) {
  .steps__item {
    width: 100%;
  }
  .mainBtn, .sent {
    width: 180px !important;
  }
}
