html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #000000;
}

img {
  max-width: 100%;
}

ul,
li {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.overflow {
  overflow: hidden;
}

/*-----------------------------------------Common-----------------------------------------*/
.container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #d5ae2f;
}

.title__span {
  display: inline-block;
}

.border {
  color: #000000;
  text-shadow: #d5ae2f 1px 0 0, #d5ae2f 1px 1px 0, #d5ae2f 0 1px 0, #d5ae2f -1px 0 0, #d5ae2f -1px -1px 0, #d5ae2f 0 -1px 0px, #d5ae2f 1px 0 0;
}

.border--white {
  text-shadow: #ffffff 1px 0 0, #ffffff 1px 1px 0, #ffffff 0 1px 0, #ffffff -1px 0 0, #ffffff -1px -1px 0, #ffffff 0 -1px 0, #ffffff 1px 0 0;
}

.product-name {
  font-weight: 900;
  font-size: 30px;
  line-height: 2;
  text-transform: uppercase;
  color: #d5ae2f;
}

.regular {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.accent {
  font-weight: 700;
  color: #d5ae2f;
}

.button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 228px;
  min-height: 68px;
  margin: 0 auto;
  padding: 23px 15px;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #e62020;
  -webkit-box-shadow: 0 5px 18px 0 rgba(230, 32, 32, 0.5);
          box-shadow: 0 5px 18px 0 rgba(230, 32, 32, 0.5);
  border-radius: 3px;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  z-index: 1;
}

.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 0;
  height: 0;
  border-radius: 3px;
  background-color: #d5ae2f;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  z-index: -1;
}

.button:hover {
  color: #000000;
  -webkit-box-shadow: 0 5px 18px 0 rgba(255, 196, 0, 0.5);
          box-shadow: 0 5px 18px 0 rgba(255, 196, 0, 0.5);
}

.button:hover::after {
  width: 101%;
  height: 100%;
}


.main-header {
  padding: 20px 0;
  background-color: #000000;
  background: url("../images/smoke-bg.jpg") center / cover no-repeat, #000000;
}

.main-header__title {
  text-align: center;
}

.main-header__paragraph {
  margin-top: 10px;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
}

.main-header__strong {
  display: block;
  margin-top: 5px;
}

.main-header__product-name {
  margin-top: 10px;
  text-align: center;
}

.main-header__list {
  max-width: 220px;
  margin: 15px auto 0;
}

.main-header__item:not(:first-of-type) {
  margin-top: 20px;
}

.main-header__item {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
  font-size: 14px;
}

.main-header__item::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 25px;
  height: 28px;
  background: url("../images/main-header-list-marker.svg") no-repeat;
}

.main-header__product {
  position: relative;
  max-width: 154px;
  margin: 30px auto 0;
  font-size: 0;
  text-align: center;
  z-index: 1;
}

.main-header__product::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 65%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 273px;
  height: 188px;
  background: url("../images/main-header-rhino.png?v1") no-repeat;
  z-index: -1;
}

.main-header__button {
  max-width: 265px;
  margin-top: 5px;
}

.intro {
  padding: 40px 0 30px;
  background-color: #000000;
  background: url("../images/smoke-bg.jpg") center bottom no-repeat, #000000;
}

.intro__image {
  max-width: 217px;
  margin: 30px auto 0;
  font-size: 0;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.intro__image-desc {
  margin-top: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #ff0000;
}

.intro__image-desc + .intro__paragraph {
  margin-top: 15px;
}

.intro__paragraph {
  margin-top: 30px;
}

.intro__paragraph--uppercase {
  text-transform: uppercase;
}

.intro__wrapper {
  max-width: 270px;
  margin: 30px auto 0;
  padding: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: #d5ae2f;
  border: 1px solid #d5ae2f;
  border-radius: 4px;
}

.intro__subtitle {
  margin-top: 50px;
  text-align: center;
  color: #303030;
}

.intro__product {
  position: relative;
  max-width: 237px;
  margin: 30px auto;
  z-index: 1;
}

.intro__product::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle closest-side at center, rgba(213, 174, 47, 0.4) 0%, rgba(213, 174, 47, 0.2) 60%, transparent 100%);
  z-index: -1;
}

.intro__heading {
  position: relative;
  text-align: center;
  color: #ffffff;
  z-index: 1;
}

.advantages {
  padding: 30px 0 0;
  background-color: #191919;
}

.advantages__container {
  position: relative;
}

.advantages .border {
  color: #191919;
}

.advantages__list {
  margin-top: 30px;
}

.advantages__item:not(:first-of-type) {
  margin-top: 20px;
}

.advantages__item {
  position: relative;
  padding-left: 45px;
  font-size: 14px;
  line-height: 1.3;
}

.advantages__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 32px;
  height: 32px;
  background: url("../images/advantages-list-marker.png") center / contain  no-repeat;
  background-repeat: no-repeat;
}

.advantages__strong {
  display: block;
  text-transform: uppercase;
}

.advantages__wrapper {
  margin-top: 30px;
  padding: 25px 15px;
  font-size: 14px;
  color: #d5ae2f;
  border: 1px solid #d5ae2f;
  border-radius: 4px;
}

.advantages__info:not(:first-of-type) {
  margin-top: 20px;
}

.advantages__info {
  position: relative;
}

.advantages__info::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}


.advantages__info--1 {
  padding-left: 10px;
}

.advantages__info--1::before {
  content: "*";
}

.advantages__info--2 {
  padding-left: 15px;
}

.advantages__info--2::before {
  content: "**";
}

.advantages__info--3 {
  padding-left: 20px;
}

.advantages__info--3::before {
  content: "***";
}

.advantages__image {
  margin-top: 25px;
  font-size: 0;
  text-align: center;
}

.advantages__button {
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.reasons {
  padding: 30px 0 40px;
  background-color: #000000;
}

.reasons__title {
  text-align: center;
  margin: 0 -15px;
}

.reasons__image {
  width: 218px;
  height: 218px;
  margin: 30px auto 0;
  border-radius: 50%;
  overflow: hidden;
}

.reasons__list {
  max-width: 190px;
  margin: 30px auto 0;
  text-align: center;
}

.reasons__item {
  position: relative;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.reasons__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #d5ae2f;
}

.reasons__item--1::before {
  background: url("../images/reasons-icon1.png") center no-repeat;
}

.reasons__item--2::before {
  background: url("../images/reasons-icon7.png") center no-repeat;
}

.reasons__item--3::before {
  background: url("../images/reasons-icon2.png") center no-repeat;
}

.reasons__item--4::before {
  background: url("../images/reasons-icon6.png") center no-repeat;
}

.reasons__item--5::before {
  background: url("../images/reasons-icon3.png") center no-repeat;
}

.reasons__item--6::before {
  background: url("../images/reasons-icon5.png") center no-repeat;
}

.reasons__item--7::before {
  background: url("../images/reasons-icon4.png") center no-repeat;
}

.expert {
  padding: 40px 0 0;
  background-color: #303030;
  background: url("../images/expert-bg.jpg?v1") center top / cover no-repeat, #303030;
}

.expert__wrapper {
  position: relative;
  margin-top: 30px;
  padding-top: 50px;
}

.expert__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 42px;
  height: 31px;
  background: url("../images/expert-quotes.png") center / contain no-repeat;
}

.expert__paragraph:not(:first-of-type) {
  margin-top: 30px;
}

.expert__photo {
  position: relative;
  max-width: 230px;
  margin: 20px auto 0;
  font-size: 0;
  text-align: center;
}

.expert__photo-desc {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  color: #222222;
  text-align: left;
}

.expert__photo-desc span {
  padding: 5px;
  background-color: #d5ae2f;
}

.expert__name {
  font-size: 17px;
  color: #ffffff;
}

.composition {
  padding: 40px 0 0;
  background-color: #000000;
}

.composition__list {
  margin-top: 45px;
}

.composition__item {
  position: relative;
  max-width: 290px;
  margin: 0 auto;
  padding-top: 95px;
  text-align: center;
  outline: none !important;
}

.composition__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display:  block;
  width: 127px;
  height: 92px;
}

.composition__item--1::before {
  background: url("../images/composition-item1.png") no-repeat;
} 

.composition__item--2::before {
  background: url("../images/composition-item2.png") no-repeat;
} 

.composition__item--3::before {
  background: url("../images/composition-item4.png?v1") no-repeat;
} 

.composition__item--4::before {
  background: url("../images/composition-item4.png?v1") no-repeat;
} 

.composition__image {
  position: relative;
  max-width: 250px;
  margin: 20px auto 0;
  font-size: 0;
  text-align: center;
}

.composition__product {
  position: absolute;
  left: -15px;
  bottom: 30px;
  max-width: 95px;
  font-size: 0;
  text-align: center;
}

.reviews {
  padding: 40px 0 30px;
  background-color: #303030;
  background: url("../images/reviews-bg.jpg?v1") center / cover no-repeat;
}

.reviews__title {
  text-align: center;
}

.reviews__title-smaller {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}

.reviews__list {
  max-width: 240px;
  margin: 30px auto 0;
}

.reviews__item {
  min-height: 410px !important;
  max-width: 240px;
  margin: 0 10px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  outline: none !important;
}

.reviews__image {
  font-size: 0;
  text-align: center;
}

.reviews__blockquote {
  padding: 15px 15px 15px;
  font-size: 14px;
  line-height: 1.4;
}

.reviews__author {
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  color: #d5ae2f;
}

.reviews__author-name {
  font-weight: 900;
}

.reviews__quote {
  margin-top: 5px;
}

.reviews__button {
  padding: 10px 15px;
  margin-top: 40px;
}

.usage {
  padding: 40px 0 30px;
  background-color: #000000;
  background: url("../images/smoke-bg.jpg") center bottom / auto 768px no-repeat, #000000;
}

.usage__product {
  max-width: 250px;
  margin: 35px auto 0;
  font-size: 0;
  text-align: center;
}

.usage__list {
  max-width: 320px;
  margin: 50px auto 0;
  counter-reset: item;
}

.usage__item:not(:first-of-type) {
  margin-top: 30px;
}

.usage__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 55px;
  padding-left: 70px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

.usage__item::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 55px;
  height: 55px;
  padding: 2px 0;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  text-align: center;
  color: #000000;
  border-radius: 50%;
  border: 1px solid #d5ae2f;
  text-shadow: #d5ae2f 1px 0 0, #d5ae2f 1px 1px 0, #d5ae2f 0 1px 0, #d5ae2f -1px 0 0, #d5ae2f -1px -1px 0, #d5ae2f 0 -1px 0px, #d5ae2f 1px 0 0;
}

.steps {
  padding: 40px 0;
  background-color: #222222;
}

.steps__title {
  text-align: center;
}

.steps__list {
  max-width: 290px;
  margin-top: 40px auto 0;
}

.steps__item {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 290px;
  min-height: 415px;
  margin: 0 auto;
  padding: 30px 0 0;
  outline: none !important;
}

.steps__image {
  position: relative;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
  z-index: 1;
}

.steps__image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle closest-side at center, rgba(213, 174, 47, 1) 0%, rgba(213, 174, 47, 0.7) 50%, transparent 100%);
  z-index: -1;
}

.steps__image--laptop {
  width: 100%;
  max-width: 230px;
  min-height: 183px;
  margin: 0 auto;
}

.steps__laptop {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  max-width: 328px;
}

.steps__product-name {
  position: absolute;
  top: 25px;
  left: 15px;
  max-width: 86px;
  font-size: 24px;
  line-height: 1;
  text-align: left;
}

.steps__button {
  position: absolute;
  bottom: 45px;
  left: 15px;
  max-width: 105px;
  min-height: 30px;
  padding: 2px 5px;
  cursor:initial;
}

.steps__button::after {
  display: none;
}

.steps__button:hover {
  color: #ffffff;
  background-color: #e62020;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.steps__product {
  position: absolute;
  max-width: 55px;
  top: 25px;
  right: 15px;
}

.steps__desc {
  margin-top: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.steps__desc--laptop {
  margin-top: 10px;
}

.steps__wrapper {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #d5ae2f;
  border-radius: 4px;
  
}

.steps__paragaraph {
  font-size: 14px;
  text-align: center;
  color: #d5ae2f;
}

.order {
  padding: 40px 0;
  background-color: #000000;
  background: url("../images/smoke-bg.jpg") center bottom / auto 768px no-repeat;
}

.order__title {
  text-align: center;
}

.order__product-name {
  margin-top: 15px;
  font-size: 48px;
  line-height: 1;
  text-align: center;
}

.order__paragraph {
  max-width: 180px;
  margin-top: 20px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
}

.order__paragraph .accent {
  font-weight: 900;
}

.order__product {
  position: relative;
  max-width: 320px;
  margin: 20px auto 0;
  font-size: 0;
  text-align: right;
  z-index: 1;
}

.order__product img {
  max-width: 92px;
  margin-right: 20px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.order__product::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  display: block;
  width: 223px;
  height: 142px;
  background: url("../images/order-rhino.png?v1") no-repeat;
  z-index: -1;
}

.order__discount {
  position: relative;
  width: 130px;
  height: 130px;
  margin: -15px auto 0;
  padding: 40px 0;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  color: #000000;
  border-radius: 50%;
  background-color: #d5ae2f;
  -webkit-box-shadow: 0px 3px 18px 0px rgba(213, 174, 47, 0.8);
          box-shadow: 0px 3px 18px 0px rgba(213, 174, 47, 0.8);
  z-index: 1;
}

.order__percent {
  vertical-align: top;
  font-weight: 400;
  font-size: 35px;
}

.order__form {
  max-width: 270px;
  margin: -25px auto 0;
  padding: 80px 25px 35px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 4px;
}

.order__subtitle {
  display: none;
}

.order__label {
  display: block;
  width: 100%;
}

.order__label:not(:first-of-type) {
  margin-top: 10px;
}

.order__field {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-weight: 300;
  font-size: 14px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #000000;
  border-radius: 4px;
  border: 1px solid transparent;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  outline: none;
}

.order__field--select::-ms-expand {
  display: none;
}
.order__field--select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: url("../images/customselect.svg") center right 15px no-repeat, #ffffff;
}

.order__field::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 14px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #000000;
  opacity: 1;
}

.order__field::-moz-placeholder {
  font-weight: 300;
  font-size: 14px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #000000;
  opacity: 1;
}

.order__field:-moz-placeholder {
  font-weight: 300;
  font-size: 14px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #000000;
  opacity: 1;
}

.order__field:-ms-input-placeholder {
  font-weight: 300;
  font-size: 14px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #000000;
  opacity: 1;
}

.order__field:focus {
  border-color: #d5ae2f;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.order__prices {
  margin-top: 20px;
  padding-left: 45px;
}

.order__price {
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
}

.order__price--old {
  text-decoration: line-through;
}

.order__price--new {
  font-weight: 900;
  font-size: 48px;
  color: #d5ae2f;
}

.order__currency {
  font-weight: 400;
}

.order__button {
  max-width: 100%;
  margin-top: 20px;
}


@media (min-width: 992px) {
  .container {
    max-width: 1060px;
  }
  
  .title {
    font-size: 48px;
    line-height: 1.2;
  }
  
  .product-name {
    font-size: 48px;
    line-height: 1.2;
  }
  
  .regular {
    font-size: 24px;
  }
  

  .main-header {
    padding: 50px 0 50px;
    background-color: #000000;
    background: url("../images/main-header-rhino-desktop.png?v1") right calc(50% - 100px) bottom no-repeat,
                url("../images/smoke-bg-desktop.jpg") center / cover no-repeat, 
                #000000;
  }

  .main-header__container {
    position: relative;
  }
  
  .main-header__title {
    text-align: center;
  }
  
  .main-header__paragraph {
    font-size: 20px;
  }
  
  .main-header__strong {
    display: inline-block;
    margin-top: 0;
  }
  
  .main-header__product-name {
    max-width: 380px;
    margin-top: 50px;
    font-size: 66px;
    line-height: 1;
    text-align: left;
  }
  
  .main-header__list {
    max-width: 380px;
    margin: 50px auto 0 0;
  }
  
  .main-header__item:not(:first-of-type) {
    margin-top: 40px;
  }
  
  .main-header__item {
    padding-left: 32px;
    font-size: 15px;
  }
  
  .main-header__product {
    position: absolute;
    bottom: -130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
  }
  
  .main-header__product::before {
    display: none;
  }
  
  .main-header__button {
    margin-top: 50px;
    margin-left: 0;
  }
  
  .intro {
    padding: 150px 0 120px;
    background: url("../images/smoke-bg-desktop.jpg") center bottom no-repeat, #000000;
  }

  .intro__container {
    position: relative;
  }

  .intro__image {
    max-width: 363px;
    margin: 30px auto 0;
    font-size: 0;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
  }

  .intro__image--rhino {
    position: absolute;
    top: 0;
    left: 15px;

    max-width: 300px;
    margin-top: 0;
    margin-left: 0;
  }
  
  .intro__title,
  .intro__rhino-desc {
    max-width: calc(100% - 300px - 60px);
    width: 100%;
    margin-right: 0;
    margin-left: auto;
  }

  .intro__rhino-desc {
    margin-top: 20px;
  }
  
  .intro__image-desc {
    margin-top: 0;
    font-size: 20px;
  }
  
  .intro__rhino-desc .intro__paragraph {
    font-size: 20px;
  }
  
  .intro__paragraph {
    margin-top: 20px;
  }
  
  .intro__african-desc {
    margin-top: 110px;
  }

  .intro__african-desc::after {
    content: "";
    display: block;
    clear: both;
  }
  
  .intro__image--african {
    float: right;
    margin-left: 60px;
    margin-top: -72px;
  }

  .intro__paragraph--uppercase {
    max-width: calc(100% - 363px - 60px);
    font-size: 24px;
  }
  
  .intro__wrapper {
    max-width: calc(100% - 363px - 60px);
    margin: 50px auto 40px 0;
    padding: 20px 25px;
    text-align: left;
  }
  
  .intro__product {
    position: absolute;
    left: 15px;
    bottom: -60px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .intro__product::before {
    width: 600px;
    height: 600px;
  }

  .intro__subtitle,
  .intro__heading {
    max-width: calc(100% - 515px);
    margin-left: auto;
    margin-right: 0;
  }

  .intro__subtitle {
    margin-top: 110px;
    text-align: left;
  }
  
  .intro__heading {
    text-align: left;
  }
  
  
  .advantages {
    padding: 50px 0;
  }

  .advantages__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .advantages__right {
    max-width: 400px;
    margin-top: -170px;
    margin-left: 50px;
    margin-right: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .advantages__title .title__span {
    max-width: calc(100% - 400px - 50px);
  }

  .advantages__title {
    max-width: 100%;
    width: 100%;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    margin-left: 0;
    margin-right: auto;
  }

  .advantages__image {
    max-width: calc(100% - 400px - 50px);
    margin-left: 0;
    margin-right: auto;
  }

  .advantages__list {
    margin-top: 0;
  }
  
  .advantages__item {
    padding-left: 60px;
    font-size: 15px;
  }
  
  .advantages__item::before {
    width: 37px;
    height: 37px;
  }
  
  .advantages__strong {
    font-weight: 900;
  }
  
  .advantages__wrapper {
    margin-top: 30px;
    padding: 15px 30px;
  }
  
  .advantages__info:not(:first-of-type) {
    margin-top: 10px;
  }
  
  .advantages__image {
    margin-bottom: -280px;
    margin-top: 0;
  }
  
  .advantages__button {
    position: relative;
    left: auto;
    bottom: auto;
    margin-left: 0;
    margin-top: 35px;
    -webkit-transform: none;
            transform: none;
  }

  
  .reasons {
    position: relative;
    padding: 50px 0 70px;
    z-index: 2;
  }

  .reasons__container {
    position: relative;
  }
  
  .reasons__title {
    max-width: 640px;
    margin: 0 auto;
  }
  
  .reasons__image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 424px;
    height: 424px;
  }
  
  .reasons__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 100%;
    margin: 40px auto 0;
  }

  .reasons__item {
    max-width: 190px;
    outline: none;
  }

  .reasons__item:nth-child(n+3):not(:last-of-type) {
    margin-top: 50px;
  }
  
  .reasons__item--1 {
    margin-left: 70px;
    margin-right: 430px;
  }

  .reasons__item--2 {
    margin-left: auto;
    margin-right: 70px;
  }

  .reasons__item--3 {
    margin-left: 0;
    margin-right: 548px;
  }

  .reasons__item--4 {
    margin-left: auto;
    margin-right: 0;
  }

  .reasons__item--5 {
    margin-left: 70px;
    margin-right: 430px;
  }

  .reasons__item--6 {
    margin-left: auto;
    margin-right: 70px;
  }

  .reasons__item--7 {
    max-width: 310px;
    padding-top: 0;
    padding-left: 110px;
    text-align: left;
  }

  .reasons__item--7::before {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  
  
  .expert {
    padding: 50px 0 60px;
    background: url("../images/expert-bg-desktop.jpg?v1") center top / cover no-repeat, #303030;
  }

  .expert__container {
    position: relative;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .expert__container::after {
    content: "";
    display: block;
    clear: both;
  }

  .expert__title {
    width: 100%;
    max-width: 100%;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
  }

  .expert__title .title__span {
    max-width: 450px;
  }
  
  .expert__wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: calc(100% - 450px - 50px);
    margin-top: -85px;
    padding-top: 0;
    padding-left: 85px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 18px;
  }
  
  .expert__wrapper::before {
    width: 79px;
    height: 59px;
  }
  
  .expert__paragraph:not(:first-of-type) {
    margin-top: 30px;
  }
  
  .expert__photo {
    max-width: 450px;
    margin: 0;
    margin-left: -30px;
    margin-bottom: -60px;
  }
  
  .expert__photo-desc {
    max-width: 335px;
    left: auto;
    right: -50px;
    bottom: 60px;
    -webkit-transform: none;
            transform: none;
    font-weight: 900;
    font-size: 18px;
  }
  
  .expert__photo-desc span {
    padding: 5px;
    background-color: #d5ae2f;
  }
  
  .expert__name {
    font-size: 24px;
    color: #ffffff;
  }
  
  .composition {
    padding: 50px 0 100px;
  }

  .composition__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .composition__list {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    max-width: 440px;
    margin-top: -199px;
    margin-right: 60px;
  }
  
  .composition__item {
    max-width: 100%;
    padding-top: 0;
    padding-left: 85px;
    text-align: left;
  }
  
  .composition__item::before {
    top: 50%;
    left: -50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .composition__item:not(:first-of-type) {
    margin-top: 73px;
  }

  .composition__title {
    -ms-flex-item-align: start;
        align-self: flex-start;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-left: auto;
  }

  .composition__title .title__span {
    display: block;
    max-width: calc(100% - 440px - 60px);
    margin-right: 0;
    margin-left: auto;
  }
  
  .composition__image {
    max-width: calc(100% - 440px - 60px);
    margin-right: 0;
    margin-bottom: -100px;
    margin-top: 0;
    z-index: 1;
  }
  
  .composition__product {
    position: absolute;
    left: -65px;
    bottom: 30px;
    max-width: 169px;
  }
  
  .composition__product::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: 20px;
    display: block;
    width: 195px;
    height: 272px;
    background: url("../images/product4.png?v1") no-repeat;
    z-index: -1;
  }


  .reviews {
    padding: 50px 0 60px;
    background: url("../images/reviews-bg-desktop.jpg?v1") center / cover no-repeat;
  }

  .reviews__container {
    max-width: 1170px;
  }
  
  .reviews__title {
    text-align: center;
  }
  
  .reviews__title-smaller {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.2;
  }
  
  .reviews__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    margin: 50px auto 0;
  }
  
  .reviews__item {
    max-width: calc((100% - 40px)/5);
    min-height: 369px !important;
    margin: 0;
  }

  .reviews__item:not(:last-of-type) {
    margin-right: 10px;
  }
  
  .reviews__blockquote {
    padding: 15px 10px 20px;
  }
  

  .usage {
    padding: 50px 0 90px;
    background: url("../images/smoke-bg-desktop.jpg") center bottom / auto 768px no-repeat, #000000;
  }

  .usage__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .usage__title {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  
  .usage__product {
    max-width: 402px;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    margin-right: 60px;
    margin-left: 0;
  }
  
  .usage__list {
    max-width: calc(100% - 402px - 60px);
    width: 100%;
    margin: auto;
  }
  
  .usage__item:not(:first-of-type) {
    margin-top: 40px;
  }
  
  .usage__item {
    min-height: 80px;
    padding-left: 100px;
    font-size: 18px;
  }
  
  .usage__item::before {
    width: 80px;
    height: 80px;
    font-size: 72px;
  }

  .usage__item:nth-child(even) {
    margin-left: 60px;
  }

  
  .steps {
    padding: 50px 0;
  }
  
  .steps__title {
    text-align: center;
  }
  
  .steps__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 100%;
    margin: 60px auto 0;
  }
  
  .steps__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: calc((100% - 160px)/3);
    min-height: 385px;
    margin: 0;
    padding: 0;
  }

  .steps__item:nth-child(2) {
    margin: 0 80px;
  }

  .steps__item:nth-child(2)::before,
  .steps__item:nth-child(2)::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 130px;
    display: block;
    width: 24px;
    height: 38px;
    background: url("../images/steps-arrow.svg") no-repeat;
    z-index: 10;
  }

  .steps__item:nth-child(2)::before {
    left: -40px;
    right: auto;
  }

  .steps__item:nth-child(odd) .steps__image {
    margin-top: 48px;
  }
  
  .steps__product-name {
    font-size: 24px;
    line-height: 1;
  }

  .steps__wrapper {
    max-width: 500px;
    margin: 30px auto 0;
    padding: 20px 10px;   
  }
  
  .order {
    padding: 60px 0 80px;
    background: url("../images/smoke-bg-desktop.jpg") center bottom no-repeat, 
                #000000;
  }
  
  .order__product-name {
    position: relative;
    max-width: 445px;
    margin-top: 20px;
    font-size: 82px;
    line-height: 1;
    text-align: left;
    z-index: 10;
  }

  .order__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: -130px;
  }
  
  .order__paragraph {
    -ms-flex-item-align: start;
        align-self: flex-start;
    position: relative;
    padding-top: 320px;
    max-width: 410px;
    margin-top: 105px;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    z-index: 1;
  }

  .order__paragraph::before {
    content: "";
    position: absolute;
    top: 0;
    left: -160px;
    display: block;
    width: 633px;
    height: 405px;
    background: url("../images/order-rhino-desktop.png?v1") no-repeat;
    z-index: -1;
  }
  
  .order__product {
    max-width: 223px;
  }
  
  .order__product img {
    max-width: 100%;
    margin-right: 0;
  }
  
  .order__product::before {
    display: none;
  }

  .order__form-wrapper {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    max-width: 270px;
    margin-left: 50px;
  }

  .order__form {
    max-width: 100%;
    padding: 40px 25px 35px;
  }
  
  .order__subtitle {
    display: block;
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .order__button {
    max-width: 100%;
    margin-top: 20px;
  }
}

.tax {
  margin-top: 20px;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  color: #888888;
}