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

html {
  line-height: 1;
  font-size: 18px;
  color: #151515;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
}

html.wf-inactive {
  font-family: Arial, Helvetica, sans-serif;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mk-wrapper {
  width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.header-hero {
  background: url(../images/hero-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
  height: 480px;
}

.header__discount {
  position: absolute;
  left: 20px;
  top: 9s0px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.8em;
  color: #440025;
}

.header__price {
  position: absolute;
  left: 0;
  top: 350px;
  width: 140px;
  height: 82px;
  background: url(../images/price-bg.png) no-repeat 50% 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header__price span {
  display: block;
  text-align: center;
  font-family: 'Oswald', sans-serif;
}

.header__price span.old {
  font-size: 1.2em;
}

.header__price span.new {
  font-size: 1.6em;
  font-weight: 700;
}

.header__product {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.header-cta {
  background-color: #63544D;
  padding-bottom: 20px;
}

.header-cta__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
}

.header-cta__title span {
  width: 50%;
  min-width: 50%;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Oswald', sans-serif;
}

.header-cta__title span:first-child {
  font-weight: 700;
  background-color: #453D3A;
}

.header-cta__title span:last-child {
  background-color: #3E3936;
}

.header-cta-list li {
  padding: 14px 20px;
}

.header-cta-list li p {
  color: #fff;
  text-transform: uppercase;
  padding-left: 40px;
  position: relative;
}

.header-cta-list li p:before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 16px);
  width: 24px;
  height: 28px;
  background: url(../images/bullet-white.png) no-repeat 0 50%;
  background-size: cover;
}

.header-cta-list li:nth-child(2) {
  background-color: #453D3A;
}

.header-timer {
  padding: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.header-timer__remain {
  color: #440025;
  font-weight: 600;
}

.header-timer__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
}

.header-timer__wrap .block {
  margin-left: 6px;
}

.header-timer__wrap .block span {
  color: #fff;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 0;
}

.menubar {
  padding: 30px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.menubar.isOpened .menubar__menu-button span {
  width: 100% !important;
}

.menubar.isOpened .menubar__menu-button span:nth-child(2) {
  transform: translateX(150%);
  opacity: 0;
}

.menubar.isOpened .menubar__menu-button span:nth-child(1) {
  transform: rotate(45deg);
  top: calc(50% - 2px);
}

.menubar.isOpened .menubar__menu-button span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: calc(50% - 2px);
}

.menubar.isOpened .menu {
  transform: translateX(0);
  opacity: 1;
}

.menubar__logo {
  text-decoration: none;
}

.menubar__logo span {
  padding: 4px 10px;
  color: #fff;
  font-size: 1.2em;
  background-color: #151515;
}

.menubar__menu-button {
  width: 50px;
  height: 26px;
  position: relative;
  cursor: pointer;
  transition: all .2s ease-in-out;
  z-index: 20;
}

.menubar__menu-button:hover span {
  width: 100% !important;
}

.menubar__menu-button span {
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #151515;
  border-radius: 6px;
  overflow: hidden;
  right: 0;
  transition: all 0.2s ease-in-out;
}

.menubar__menu-button span:nth-child(1) {
  top: 0;
}

.menubar__menu-button span:nth-child(2) {
  width: 50%;
  top: calc(50% - 2px);
}

.menubar__menu-button span:nth-child(3) {
  width: 75%;
  bottom: 0;
}

.menubar .menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: radial-gradient(#FFFFFF, #E3E3E5);
  transition: all .2s ease-in-out;
  transform: translateX(-200%);
  opacity: 0;
}

.menubar .menu-list {
  padding: 20px;
  padding-top: 60px;
}

.menubar .menu-list li {
  text-align: center;
  padding: 20px 0;
}

.menubar .menu-list li a {
  color: #151515;
  font-size: 1.4em;
  text-decoration: none;
  text-transform: uppercase;
}

.mk-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none !important;
  background: none;
  display: block;
  background-color: #440025;
  max-width: 300px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2em;
}

.mk-button--dark {
  background-color: #151515;
}

.section {
  padding-bottom: 40px;
}

.section__title {
  color: #fff;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  background-color: #453D3A;
}

.section__title--nobg {
  background-color: transparent;
}

.section__title--nobg-dark {
  color: #151515;
  background-color: transparent;
}

.section__title--nobg-dark span {
  color: #440025;
}

.section.header {
  padding-bottom: 0;
}

.video__wrap {
  height: 270px;
  width: 100%;
  background-color: #000;
}

.video iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.video__text {
  padding: 20px;
  text-align: justify;
  line-height: 1.2;
}

.video__colors p {
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 600;
  font-size: 1.2em;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.video__colors p span {
  padding: 10px 30px;
  font-size: 0.9em;
}

.video__colors p span:first-child {
  background-color: #BFA58C;
}

.video__colors p span:last-child {
  color: #fff;
  background-color: #000;
}

.special {
  overflow: hidden;
}

.special-list__item {
  padding: 40px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}

.special-list__item p {
  color: #453D3A;
  text-align: center;
  padding-right: 10px;
}

.special-list__item p span {
  font-weight: 600;
  font-size: 1.2em;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.special-list__item img {
  width: 185px;
  min-width: 185px;
  height: 185px;
}

.special-list__item--reverse {
  -ms-flex-flow: row-reverse nowrap;
      flex-flow: row-reverse nowrap;
  background-color: #453D3A;
  transform: skewY(-5deg);
}

.special-list__item--reverse p,
.special-list__item--reverse img {
  transform: skewY(5deg);
}

.special-list__item--reverse p {
  color: #fff;
  padding-right: 0;
  padding-left: 10px;
}

.special-list__item:last-child:before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #453D3A;
  transform: skewY(5deg);
}

.cta-small {
  padding-top: 40px;
  background-color: #440025;
}

.cta-small .mk-button {
  margin-bottom: 0;
}

.cta-small p {
  text-align: center;
  color: #fff;
  padding: 0 80px;
  font-size: 1.8em;
}

.diff-images {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 20px;
}

.diff-table__list {
  padding: 0 20px;
}

.diff-table__list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px 0;
}

.diff-table__list li > div {
  width: 50%;
  min-width: 50%;
  position: relative;
  padding-left: 45px;
}

.diff-table__list li > div:before {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  left: 0;
  top: calc(50% - 19px);
}

.diff-table__list li > div.left {
  padding-right: 10px;
}

.diff-table__list li > div.left:before {
  background: url(../images/bullet-purple.png) no-repeat 50% 50%;
}

.diff-table__list li > div.right:before {
  background: url(../images/bullet-green.png) no-repeat 50% 50%;
}

.poll {
  background-color: #440025;
}

.poll-list {
  padding: 20px;
}

.poll-list.isClicked .poll-list__field:before {
  opacity: 1;
}

.poll-list > * + * {
  margin-top: 20px;
}

.poll-list__field {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background-color: #BFA7B5;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.poll-list__field:before {
  content: attr(data-pc) "%";
  position: absolute;
  right: 20px;
  top: 16px;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.4em;
  z-index: 2;
  opacity: 0;
  transition: all .2s ease-in-out;
}

.poll-list__field p {
  text-transform: uppercase;
  color: #fff;
  padding-right: 50px;
  position: relative;
  z-index: 2;
}

.poll-list__field .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #200815;
  z-index: 1;
}

.poll__text {
  padding: 0 20px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.measure {
  background-color: #E9E9EB;
}

.measure-table {
  width: 100%;
  border-collapse: collapse;
}

.measure-table tr:nth-child(odd) {
  background-color: #716C69;
}

.measure-table tr:nth-child(odd) td {
  color: #fff;
}

.measure-table td {
  font-weight: 600;
  padding: 10px 0 10px 10px;
}

.testimonials-slider {
  padding-bottom: 40px;
}

.testimonials-slider__item {
  padding: 20px;
}

.testimonials-slider__item img {
  display: block;
  margin: 0 auto;
}

.testimonials-slider__item p {
  line-height: 1.5;
  margin: 20px 0;
  text-align: justify;
}

.testimonials-slider__item p span {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
}

.opinion {
  background-color: #F0F0F0;
}

.opinion__avatar {
  background: linear-gradient(to bottom, #453D3A 50%, #F0F0F0 50%, #F0F0F0 100%);
  padding: 10px 0;
  margin-top: -1px;
}

.opinion__avatar img {
  display: block;
  margin: 0 auto;
}

.opinion p {
  line-height: 1.3;
  font-size: 1.1em;
  text-align: justify;
  padding: 20px;
  padding-bottom: 0;
}

.opinion p span {
  display: block;
  font-weight: 600;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 10px;
}

.order-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}

.order-list__item {
  width: 50%;
  min-width: 50%;
  padding: 20px;
}

.order-list__item img {
  display: block;
  margin: 0 auto;
}

.order-list__item p {
  text-align: center;
}

.order-list__item p span {
  text-transform: uppercase;
  font-weight: 600;
  margin: 6px 0;
  display: block;
  font-size: 1.2em;
}

.form {
  padding: 0 20px;
  padding-bottom: 20px;
  background-color: #63544D;
}

.form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #fff;
}

.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 10px;
  font-size: 1.2em;
  margin-bottom: 20px;
  background-color: #fff;
  color: #151515;
}

.form__stock {
  color: #fff;
  text-align: center;
  font-size: 0.8em;
}

.form__stock span {
  display: inline-block;
  background-color: #453D3A;
  padding: 4px;
  font-weight: 600;
}

.footer {
  padding: 10px;
}

.footer p {
  text-align: center;
  margin: 0;
  font-size: 0.8em;
}

.footer p a {
  color: inherit;
  text-decoration: underline;
}

.slick-dots {
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  text-align: center;
}

.slick-dots li {
  margin: 0 5px;
  display: inline-block;
}

.slick-dots li button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  outline: none !important;
  border: none;
  text-indent: -99999px;
  background-color: transparent;
  padding: 0;
  line-height: 1;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid #440025;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slick-dots li.slick-active button, .slick-dots li:active button, .slick-dots li:hover button {
  background-color: #440025;
}
