@font-face {
  font-family: "FontAwesome";
  src: url(../fonts/FontAwesome.eot);
  src: url("../fonts/FontAwesome-1.eot") format("embedded-opentype"), url("../fonts/FontAwesome.svg") format("svg"),
    url(../fonts/FontAwesome.ttf) format("truetype"), url(../fonts/FontAwesome.woff) format("woff"),
    url(../fonts/FontAwesome.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot");
  src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url("../fonts/Montserrat-Regular-1.eot") format("embedded-opentype"),
    url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.eot");
  src: local("Montserrat Bold"), local("Montserrat-Bold"),
    url("../fonts/Montserrat-Bold-1.eot") format("embedded-opentype"),
    url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

body,
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
p {
  font-family: "ABeeZee", sans-serif;
}

body nav {
  font-family: "Montserrat", sans-serif;
}

ul li {
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: black;
  text-decoration: none;
}

body {
  font-family: "Ebrima";
}

figure.snip1206 {
  font-family: "Raleway", Arial, sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  max-height: 220px;
  width: 100%;
  color: #000000;
  text-align: center;
}

figure.snip1206 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

figure.snip1206 img {
  opacity: 1;
  width: 60%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.snip1206:after {
  background: rgba(255, 255, 255, 0.9);
  width: 115%;
  height: 115%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  opacity: 0.9;
  -webkit-transform: skew(-45deg) scaleX(0);
  transform: skew(-45deg) scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

figure.snip1206 figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

figure.snip1206 h2,
figure.snip1206 p {
  margin: 0;
  width: 100%;
  opacity: 0;
}

figure.snip1206 h2 {
  font-weight: bold;
  font-size: 23px;
  padding: 0 20px;
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
}

figure.snip1206 p {
  padding: 0 50px;
  font-size: 1em;
  font-weight: 500;
}

figure.snip1206 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.snip1206:hover:after,
figure.snip1206.hover:after {
  -webkit-transform: skew(-45deg) scaleX(1);
  transform: skew(-45deg) scaleX(1);
  -webkit-transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

figure.snip1206:hover figcaption h2,
figure.snip1206.hover figcaption h2,
figure.snip1206:hover figcaption p,
figure.snip1206.hover figcaption p {
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure.snip1206:hover figcaption h2,
figure.snip1206.hover figcaption h2 {
  opacity: 1;
}

figure.snip1206:hover figcaption p,
figure.snip1206.hover figcaption p {
  opacity: 0.7;
}

.button-effect {
  width: auto;
  height: auto;
  margin-bottom: 10px;
  padding: 10px 30px;
  cursor: pointer;
  color: white;
  background: #ffffff;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.button-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #ffffff;
  z-index: -1;
  -webkit-transition: -webkit-transform 300ms ease-in;
  transition: -webkit-transform 300ms ease-in;
  transition: transform 300ms ease-in;
  transition: transform 300ms ease-in, -webkit-transform 300ms ease-in;
}

.button-one::after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.button-one:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.button-two::after {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.button-two:hover::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  transform-origin: top;
}

.button-tree::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.button-tree:hover::after {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.fancy-link2 {
  text-decoration: none;
  position: relative;
}

.fancy-link2:hover {
  text-decoration: none;
}

.fancy-link {
  text-decoration: none;
  color: rgb(129, 192, 106);
  position: relative;
}

.fancy-link:hover {
  text-decoration: none;
}

.fancy-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: black;

  -webkit-transform: scaleX(0);

  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;

  -webkit-transition: -webkit-transform 500ms ease-in;

  transition: -webkit-transform 500ms ease-in;

  transition: transform 500ms ease-in;

  transition: transform 500ms ease-in, -webkit-transform 500ms ease-in;
}

.fancy-link:hover::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.fancy-link2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;

  -webkit-transition: -webkit-transform 400ms ease-in;

  transition: -webkit-transform 400ms ease-in;

  transition: transform 400ms ease-in;

  transition: transform 400ms ease-in, -webkit-transform 400ms ease-in;
}

.fancy-link2:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: top;
  transform-origin: top;
  border-radius: 5px;
}

.countdown_box {
  width: auto;
  margin: 5px 0;
}

.order-countdown-hours,
.order-countdown-minutes,
.order-countdown-seconds {
  background-color: rgb(239, 197, 69);
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  padding: 10px;
  text-align: center;
  margin: 0;
}

.time {
  margin: 0 auto;
  font-size: 11px;
  font-weight: 900;
  line-height: 10px;
}

.time span {
  margin: 0;
  width: 60px;
  display: inline-block;
}

.style-s1 {
  width: 1100px;
  text-align: center;
  margin: 0 auto;
  padding-top: 100px;
}
.img1 {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container.p23 .row {
}
.border-s1 {
  border: 10px solid white;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

.p-size-s1 {
  font-size: 20px;
  text-transform: uppercase;
  padding-top: 10px;
}

.btn-white {
  padding: 20px 150px;
  font-weight: bold;
  background: red;
  color: red;
  font-size: 30px;
  letter-spacing: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: 5px 5px 7px red;
  box-shadow: 5px 5px 7px red;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.btn-white:hover {
  padding: 20px 150px;
  font-weight: bold;
  background: red;
  color: white;
  font-size: 30px;
  letter-spacing: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: 1px 1px 1px red;
  box-shadow: 1px 1px 1px red;
}

.pic-before {
  background-image: url(../img/atantion_new.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 22px 22px;
  padding-left: 27px;
}

.pic-before-mob {
  background-image: url(../img/atantion_new.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 17px 17px;
  padding-left: 20px;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(460px, -100px) rotate(180deg);
  transform: translate(460px, -100px) rotate(180deg);
  -webkit-transition: all 0.2s 0.4s ease-in-out;
  transition: all 0.2s 0.4s ease-in-out;
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.hovereffect a.info:hover {
  -webkit-box-shadow: 0 0 5px #fff;
  box-shadow: 0 0 5px #fff;
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.hovereffect:hover h2 {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.hovereffect:hover a.info {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.shake {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;

  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

.img-zoom-container {
  position: relative;
}

.img-zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  width: 40px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  width: 300px;
  height: 300px;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.shake:hover {
  -webkit-animation: shake 8s;
  animation: shake 8s;

  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.vertical-center {
  vertical-align: middle;
}

.color-white {
  color: white;
}

.color-black {
  color: black;
}

.btn-red {
  padding: 15px 250px;
  background: red;
  color: white;
  font-size: 30px;
  border: 3px solid red;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 3px red;
  box-shadow: 3px 3px 3px red;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  max-width: 500px;
  padding: 20px;
  margin: 0 auto;
  display: block;
}

.btn-red:hover {
  background: white;
  color: red;
  font-size: 30px;
  border: 3px solid red;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 0px red;
  box-shadow: 0px 0px 0px red;
}

.product-move {
  padding-left: 0;
  margin-top: -50px;
  margin-right: -70px;
}

.margin-pic-benefit {
  margin-top: 100px;
}

.text-weight {
  font-weight: bold;
}

.text-justify {
  text-align: justify;
}

.li-move {
  margin-left: 140px;
}

.small-pic-behinde {
  margin-top: 130px;
  margin-left: 130px;
  margin-bottom: 50px;
}

.margin-pic {
  margin-top: 30px;
  margin-left: 30px;
}

.center-move-down {
  text-align: center;
  margin-top: 30px;
}

.nav-size {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.nav-size:hover {
  padding: 10px 30px;
  font-size: 20px;
  font-weight: bold;
}

.move-nav:hover .nav-size {
  -webkit-filter: blur(1px);
  filter: blur(1px);
  opacity: 0.5;
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.move-nav:hover .nav-size:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
}

.mob-nav-size {
  font-size: 15px;

  -webkit-transition-duration: 500ms;

  transition-duration: 500ms;
}

.mob-nav-size:hover {
  font-size: 22px;
}

.mob-width-text {
  width: 95%;
  margin-left: 10px;
}

.br {
  border: 0px solid red;
}

.li-size {
  font-size: 20px;
  margin-top: 10px;
}

.move-nav {
  padding-left: 900px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
}

.logo-move {
  margin-left: 20px;
  margin-top: 10px;
}

.about-move {
  padding-top: 60px;
  padding-left: 100px;
  padding-bottom: 100px;
  font-weight: bold;
}

.p-about {
  width: 650px;
  padding-left: 50px;
}

.p-just {
  text-align: justify;
}

.how-move-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.icon1-move {
  padding-left: 70px;
  padding-top: 50px;
}

.p-width {
  width: 400px;
}

.text-left {
  text-align: left;
  margin-bottom: 100px;
  margin-top: 100px;
  padding-left: 100px;
}

.img-padding {
  margin-top: 10px;
  margin-bottom: 10px;
}

.bg-1 {
  background-image: url(../img/bgr3.png);
  background-repeat: no-repeat;
}

.bg-2 {
  background-image: url(../img/bgr2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-3 {
  background-image: url(../img/bgr44.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.style-s6 {
  justify-content: center;
}

.bg-4 {
  padding-top: 60px;
}

.bg-4 h2 {
  text-align: center;
}

#works {
  padding-top: 60px;
}

.bg-5 {
  background-image: url(../img/down.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 12%;
  padding-bottom: 20px;
}

.bg-6 {
  background-image: url(../img/bgr4.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-7 {
  background-image: url(../img/bgr-mob.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.nav-size-mob {
  padding: 10px 15px;
  font-size: 15px;
}

.margin-pic-mob {
  margin-top: 20px;
}

.nav-size-mob1 {
  padding: 10px 35px;
  font-size: 17px;
}

.about-mob {
  padding-top: 30px;
}

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

.faq-margin {
  margin-top: 40px;
}

.pack-img {
  padding-bottom: 85px;
}

.footer-p-size {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}

.foote-h3-size {
  text-align: center;
  margin-top: 20px;
  border-bottom: 1px solid #8c8c8c;
  color: #f04f50;
}

.p-size {
  line-height: 2;
  margin-top: 30px;
  font-size: 20px;
  padding-bottom: 30px;
  text-align: justify;
}

.p-size-2 {
  line-height: 2;
  margin-top: 35px;
  font-size: 30px;
  padding-bottom: 30px;
  text-align: justify;
}

.p-size-rev {
  line-height: 1.5;
  margin-top: 25px;
  font-size: 20px;
  padding-bottom: 30px;
  text-align: justify;
  width: 98%;
}

.img-rev {
  border-radius: 50%;
  margin-right: 10px;
}

.color-rev-name {
  color: #ef6a1b;
}

.mob-p-size {
  font-size: 20px;
  margin-left: 10px;
  width: 95%;
  text-align: justify;
}

.center {
  text-align: center;
}

.bgcolor-grey {
  background: #c9c8c2;
}

.zoom {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.zoom:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.zoom-ingred {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.zoom-ingred:hover {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
}

.zoom-faq {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.zoom-faq:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.blob {
  background: #7dc1f2;
  color: white;
  padding: 10px 70px;

  -webkit-box-shadow: #7dc1f2;

  box-shadow: #7dc1f2;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.blob-red {
  background: #7dc1f2;
  color: white;

  padding: 10px 70px;

  -webkit-box-shadow: #7dc1f2;

  box-shadow: #7dc1f2;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: pulse-red 2s infinite;
  animation: pulse-red 2s infinite;
}

@-webkit-keyframes pulse-red {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.9);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 7px rgba(255, 0, 0, 0);
    box-shadow: 0 0 0 7px rgba(255, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@keyframes pulse-red {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.9);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 7px rgba(255, 0, 0, 0);
    box-shadow: 0 0 0 7px rgba(255, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}
.col-xl-5.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img.mob-margin {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 82px;
}

.cube-grey {
  width: 400px;
  padding: 40px 30px;
  margin: 0 auto;
}

.dec-none {
  list-style-type: none;
}

.p-move-left {
  margin-left: 200px;
}

.move-min {
  margin-top: -40px;
}

.h2-size {
  padding: 20px 20px;
  margin-top: 10px;
  text-align: center;
  font-size: 30px;
}

.rotate {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navbar-bg,
.who-are-we-bg {
  background: #ff4a7d;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff4a7d),
    color-stop(25%, #ff4ea3),
    color-stop(60%, #ff4a7d)
  );
  background: linear-gradient(90deg, #ff4a7d 0%, #ff4ea3 25%, #ff4a7d 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff4a7d", endColorstr="#ff4a7d", GradientType=1);
}

.hero-bg {
  background: #f4f3f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f3f8), to(#e1e0e7));
  background: linear-gradient(180deg, #f4f3f8 0%, #e1e0e7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f3f8", endColorstr="#e1e0e7", GradientType=1);
}

.bg-grey-gradient {
  background: #8e9295;
  background: -webkit-gradient(linear, left top, left bottom, from(#8e9295), color-stop(50%, #7d8895), to(#dddee0));
  background: linear-gradient(180deg, #8e9295 0%, #7d8895 50%, #dddee0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8e9295", endColorstr="#dddee0", GradientType=1);
}

.bg-grey,
.counter__heading {
  background-color: #f1f0f6;
}

.bgcolor-gray {
  background: #edecf2;
}

.bg-white {
  background-color: #fff;
}

.bg-pink,
.bg-pink:focus,
.bg-pink:hover,
.bg-pink:active {
  background-color: #ff4a7d;
}

.bg-pink-gradient {
  background: #fde8ee;
  background: -webkit-gradient(linear, left top, left bottom, from(#fde8ee), color-stop(50%, #f8a5bb), to(#fde8ed));
  background: linear-gradient(180deg, #fde8ee 0%, #f8a5bb 50%, #fde8ed 100%);
}

.bg-dark-pink-gradient {
  background: #ff4c7f;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4c7f), color-stop(50%, #ff0235), to(#ff4b7e));
  background: linear-gradient(180deg, #ff4c7f 0%, #ff0235 50%, #ff4b7e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff4c7f", endColorstr="#ff4b7e", GradientType=1);
}

.text-dark-grey {
  color: #858585;
}

.text-pink {
  color: #ff4fa4;
}

.text-gold {
  color: #ffc114;
}

.text-black {
  color: #000000 !important;
}

.text-white {
  color: #000000 !important;
}

.btn {
  border-radius: 0;
  padding: 0.27rem 1.75rem;
}

.btn,
.btn:hover {
  color: #ffffff;
}

.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar .nav-link {
  color: #ffffff;
}

.section-header {
  font-size: 30px;
  color: #ffffff;
  padding: 10px 50px;
  text-align: center;
}

.counter {
  position: relative;
}

.counter__heading {
  word-spacing: -1px;
  -webkit-transform: scale(0.75, 1.05);
  transform: scale(0.75, 1.05);
  padding: 0 5px;
  z-index: 1;
  font-size: 20px;
}

.counter::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  border-bottom: 1px solid black;
  width: 100%;
}

.counter__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.counter__time__digits {
  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;
  padding: 0 5px;
  font-size: 24px;
}

.counter__time__digits span {
  font-size: 20px;
  color: #d00000;
  text-transform: uppercase;
}

.counter__bracket {
  color: #d00000;
  font-size: 28px;
  font-weight: 700;
  -webkit-transform: scaleY(1.75);
  transform: scaleY(1.75);
  position: relative;
  top: 5px;
}

.counter__bracket:first-of-type {
  right: 30px;
}

.counter__bracket:last-of-type {
  left: 30px;
}

.hero__modal {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.hero__modal img {
  width: 500px;
  max-width: 448px;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  height: 100%;
  position: absolute;
}

.rating-stars {
  color: #ffd203;
}

.width-h2 {
  width: 1200px;
  padding: 20px 20px;
}

.pic-s1 {
  max-width: 386px;
}

.reviewer__status {
  color: #163ad7;
  margin: 0;
}

.p-width {
  width: 350px;
  margin: 0 auto;
  margin-top: 20px;
  font-size: 20px;
}

.section-move {
  margin: 0 auto;
  padding-left: 170px;
}

.pic-move-s2 {
  margin-right: 10px;
}

.size-p-s2 {
  font-size: 25px;
}

.border-p-s2 {
  border: 3px solid red;
  width: 85%;
  padding: 10px 10px;
  font-size: 25px;
  text-align: center;
  margin: 0 auto;
}

.right-h2 {
  margin-right: 20px;
  text-align: right;
  padding-top: 50px;
  padding-right: 100px;
}

.contact-size {
  padding-top: 300px;
  padding-bottom: 50px;
}

@media (max-width: 545px) {
  .hero__modal img {
    max-width: 253px;
  }

  .hero__product .product__img {
    width: 150px;
  }
}

.hero__content {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.hero__content h4 {
  font-size: 48px;
}

.hero__content p {
  font-size: 36px;
}

@media (max-width: 1700px) {
  .bg-2 {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .section-move {
    margin: 0 auto;
    padding-left: 50px;
  }

  .bg-6 {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .pic-s1 {
    width: 150%;
  }

  .width-h2 {
    width: auto;
  }

  .small-pic-1700 {
    width: 285px;
  }

  .product-move {
    padding-left: 0;
    margin-top: -20px;
    margin-right: -40px;
    width: 700px;
  }

  .move-nav {
    padding-left: 430px;
  }
}

@media (max-width: 1500px) {
  .small-pic-oldc {
    width: 90%;
    margin-left: 10px;
    margin-right: 10px;
  }
  .bg-4 {
    background-size: auto 366px;
  }
  .section-move {
    margin: 0 auto;
    padding-left: 20px;
  }

  .product-move {
    width: 500px;
  }

  .center-move-down {
    text-align: center;
    margin-top: 50px;
  }

  .small-pic {
    width: 500px;
  }

  .dnone1 {
    display: none;
  }
}

@media (max-width: 1400px) {
  .pic-s1 {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .product-move {
    width: 600px;
  }

  .small-pic1 {
    width: 40%;
  }

  .move-nav {
    padding-left: 330px;
  }

  .nav-size {
    padding: 10px 10px;
    font-size: 15px;
    font-weight: bold;
  }
}

@media (max-width: 1050px) {
  .small-pic3 {
    width: 70%;
  }

  .h2-size {
    padding: 20px 20px;
    margin-top: 10px;
    text-align: center;
    font-size: 30px;
  }

  .small-pic-mob {
    width: 100%;
  }
}

@media (max-width: 1205px) {
  .style-s1 {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }

  .dnone-1200 {
    display: none;
  }

  .btn-center {
    text-align: center;
  }

  .pack-img {
    padding-top: 100px;
    padding-bottom: 85px;
  }
}

@media (max-width: 1050px) {
  .contact-size {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .small-pic-oldc {
    width: 85%;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 100px;
  }

  .icon-move-mob {
    text-align: center;
  }

  .p-width {
    width: 100%;
  }

  .move-left {
    margin-left: 10px;
  }

  .move-left1 {
    margin-left: -80px;
  }

  .dnone3 {
    display: none;
  }
}

@media (max-width: 1000px) {
  .hero-text {
    font-size: 20px !important;
  }

  .hero-heading {
    font-size: 24px !important;
  }
}

.hero__product {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.hero__product img {
  max-width: 371px;
  max-height: 400px;
}

.hero__product__discount-img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 30px;
  left: 20px;
}

.hero__product__text-size {
  font-size: 18px;
}

.brands .brand__img {
  max-height: 100px;
  display: block;
  max-width: 130px;
  margin: 0 auto;
}

.who-we-are .section-header {
  background-color: #992f61;
}

.who-we-are .btn {
  color: black;
  background: #817f79;
  background: -webkit-gradient(linear, left top, left bottom, from(#817f79), color-stop(50%, #e5e0d6), to(#817f79));
  background: linear-gradient(180deg, #817f79 0%, #e5e0d6 50%, #817f79 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#817f79", endColorstr="#817f79", GradientType=1);
}

@media (max-width: 800px) {
  .dnone-800 {
    display: none;
  }
}

@media (max-width: 660px) {
  .who-we-are img {
    max-height: 250px;
  }
}

.wow-touch-about .section-header {
  background-color: #545659;
}

.ingredients .ingredient-item {
  position: relative;
}

.ingredients .ingredient-item img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
  max-height: 200px;
}

.ingredients .ingredient-item .plus-icon::after {
  content: "+";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ff0149;
  width: 40px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  border-radius: 50px;
  color: #ffffff;
}

.use-wow-touch .section-header {
  background-color: #571a31;
}

.reviews .section-header {
  background-color: #999999;
}

.reviews .review__comment {
  font-family: "InkFree";
  margin-top: 20px;
  max-width: 500px;
  text-align: center;
  font-size: 24px;
}

.reviews .slider {
  position: relative;
}

.reviews .arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.reviews .arrows .arrow-left,
.reviews .arrows .arrow-right {
  position: absolute;
  cursor: pointer;
  font-size: 36px;
  pointer-events: all;
  z-index: 10;
}

.reviews .arrows .arrow-left {
  left: 0;
}

.reviews .arrows .arrow-right {
  right: 0;
}

.course-duration .week-index {
  position: absolute;
  top: -10px;
  left: -10px;
  padding: 5px 15px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  background-color: #ff0149;
}

.footer {
  padding: 20px 0;
}

.footer__links,
.footer__link {
  color: #dc915d;
}

.footer__link:hover {
  text-decoration: none;
}

.step .w-90 {
  width: 90%;
  margin: 0 auto;
}

.step .line-through {
  -webkit-text-decoration: line-through #000000 solid;
  text-decoration: line-through #000000 solid;
}

.step .side-img,
.step .decoration-img {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: -1;
}

.step .side-img {
  height: 100%;
}

.step .side-img img {
  height: 100vh;
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
}

.step .decoration-img {
  bottom: 0;
}

.step .decoration-img img {
  max-height: 100px;
  width: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.step .brand .logo {
  font-size: 36px;
  color: #ffffff;
  font-weight: 900;
}

.step .brand .logo span {
  color: #fa5fab;
}

.step .main-content {
  margin-left: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  min-height: 90vh;
  margin-top: 2vh;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.step .main-content p {
  color: #ff4a7d;
  font-size: 14px;
}

.step .main-content .card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.step .main-content .card-img img {
  max-height: 100px;
}

.step .main-content .card-img img.fix-width {
  max-width: 70px;
}

.step .main-content .card-img a {
  color: red;
  background-color: transparent;
}

.step .main-content .card-text {
  font-size: 22px;
  font-weight: 700;
}

.step .main-content .card-text p {
  margin: 0;
}

.step textarea.font-control,
.step textarea.font-control::-webkit-input-placeholder {
  color: #ffffff !important;
}

.step textarea.font-control,
.step textarea.font-control:-ms-input-placeholder {
  color: #ffffff !important;
}

.step textarea.font-control,
.step textarea.font-control::-ms-input-placeholder {
  color: #ffffff !important;
}

.step textarea.font-control,
.step textarea.font-control::placeholder {
  color: #ffffff !important;
}

.step .feature__icon img {
  height: 50px;
  margin-top: 20px;
}

.step .feature__text {
  margin-top: 25px;
}

.step .feature__text h5,
.step .feature__text p {
  color: white;
}

.sticky-button {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

.sticky-order-button {
  display: none;
}

@media (min-width: 992px) {
  .sticky-button .sticky-navbar {
    display: none;
  }

  .sticky-button .sticky-order-button {
    display: block;
  }
}

.alert_message {
  background-color: #ff4278;
  border: 3px dashed #fff;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 5px;
  margin-top: 10px !important;
  color: black !important;
}

.checkbox {
  top: 0px;
  right: 15px;
}

.backGrey2 {
  border: 2px solid #bad7f9;
  padding: 10px 5px 5px 5px;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .dnone-nav {
    display: none;
  }
  .bg-4 {
    background: none;
  }
}

@media (max-width: 767px) {
  .dnone {
    display: none;
  }
  figure.snip1206 {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .ampules-mob {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-family: "Lato", sans-serif;
}

.poppage {
  color: #fff;
  padding: 20px;
  font-family: "Poppins", Sans-serif;
}

.poppage p {
  padding: 5px;
}

@-moz-document url-prefix() {
  h2 {
    margin: 10px 10px 10px 0;
  }
}

.deskk {
  display: none;
  text-align: center;
}

.list li img {
  max-height: 30px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.mobile-btn {
  display: none;
}

.red {
  color: #d80000;
}

.mobile-head-menu {
  display: none;
}

.logo-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
}

.logo-panel .badges {
  text-align: right;
}

header {
  min-height: 500px;
}

.product-info {
  color: #fff;
}

.info {
  width: 48.163%;
}

.not-show {
  display: none;
}

.show {
  display: block;
}

.space-top {
  margin-top: -20px;
}

.mini-head {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}

iframe {
  max-width: 100%;
}

.big-head {
  font-family: "Poppins", Sans-serif;
  font-size: 48px;
  font-weight: 900;
}

.inf-txt {
  font-family: "Poppins", Sans-serif;
}

.minimal-txt {
  font-size: 14px;
  font-weight: 400;
}

.hidd {
  display: none;
}

.button-position {
  text-align: center;
  margin-top: 50px;
}

.order-btn {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 800;
  fill: #ffffff;
  color: #ffffff;
  background-color: #19af42;
  border-radius: 30px 30px 30px 30px;
  padding: 20px 80px 20px 80px;
  margin-bottom: 20px;
  cursor: pointer;
  text-decoration: none;
}

.order-btn::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -3px;
}

.plus-sign::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  width: 18px;
  height: 20px;
  margin-bottom: -3px;
  float: right;
}

.minus-sign::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  width: 18px;
  height: 20px;
  margin-bottom: -3px;
  float: right;
}

.bottle-unactive {
  display: none !important;
}

.bottle-active {
  display: block !important;
  margin-left: 10px;
}

.corner {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.order-txt {
  font-size: 12px;
  margin-top: 30px;
  color: #b2b2b2;
}

.mini-bold {
  font-weight: 700;
}

.addition-product-info {
  margin-top: -150px;
  margin-bottom: -70px;
}

.right-side {
  text-align: right;
}

.bottles {
  text-align: center;
}

.bg-overlay {
  background-color: #000000;
  opacity: 0.68;
  -webkit-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.grid-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.list {
  color: #fff;
  padding-top: 15px;
}

.list li {
  list-style-type: none;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
}

.list li img {
  max-width: 30px;
  margin-right: 10px;
  height: 35px;
}

.list li span {
  color: #ffffff;
  font-family: "Oswald", Sans-serif;
  font-style: italic;
  font-weight: bold;
}

.bg-white {
  background: #fff;
}

.first-txt {
  color: #262626;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  padding: 20px;
  padding-top: 100px;
}

.gif-section {
  text-align: center;
}

.gif-section img {
  max-width: 280px;
}

.seen-on {
  margin-top: 50px;
  text-align: center;
  padding-bottom: 40px;
}

.seen-on h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.seen-pic {
  width: 600px;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rating-img img {
  max-width: 80px;
}

.rating-info {
  color: #fff;
  margin-left: 5px;
}

.approved-info {
  float: right;
  width: 50%;
  padding: 10px;
  margin-top: 50px;
}

.approved-header {
  margin-bottom: 20px;
}

.approved-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 50px;
  font-weight: 900;
}

.approved-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-top: -20px;
}

.approved-description {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
}

.approved-description p {
  background: rgba(0, 0, 0, 0.5);
}

.approved-button {
  margin-top: 30px;
}

.order-btn2 {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 800;
  fill: #fff;
  color: #fff;
  background-color: #19af42;
  border-radius: 30px;
  padding: 15px 80px;
  text-decoration: none;
  cursor: pointer;
}

.order-btn2::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -3px;
}

.reviews-header {
  padding: 20px;
}

.reviews-header h2 {
  color: #d80000;
  font-family: "Poppins", Sans-serif;
  font-size: 50px;
  font-weight: bold;
}

.reviews-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-top: -10px;
}

.reviews-fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bef-aft-img {
  max-width: 335px;
  padding: 20px;
}

.fb-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.fb-content {
  background-color: #eff1f3;
  border-radius: 18px;
  font-size: 13px;
  line-height: 135%;
  color: #1d2129;
  padding: 7px 10px;
  text-align: left;
  position: relative;
  max-width: 573px;
}

.fb-bottom {
  padding-left: 40px;
  font-size: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5px;
}

.fb-pic img {
  width: 32px;
  height: 32px;
}

.fb-name {
  color: #365899;
}

.fb-react {
  color: #365899;
}

.fb-time {
  color: #90949c;
}

.fb-stats {
  font-size: 12px;
  height: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  line-height: 20px;
  max-width: 51px;
  margin-left: 230px;
  margin-top: -15px;
  z-index: 21984190284;
}

.fb-stats-extented {
  max-width: 81px;
  margin-left: 200px;
}

.fb-stats img {
  width: 16px;
  height: 16px;
}

.fb-count {
  color: #777d88;
  font-size: 11px;
}

.amazon-header {
  padding-top: 50px;
  text-align: center;
}

.amazon-reviews-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.banner {
  background: #e93e41;
  text-align: center;
  padding: 30px;
}

.banner-position {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.banner-txt {
  font-family: "Poppins", Sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: right;
  margin-right: 20px;
}

.banner-btn {
  text-align: left;
  margin-top: 5px;
}

.order-btn3 {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 800;
  fill: #0c0c0c;
  color: #0c0c0c;
  background-color: #ffe500;
  border-radius: 30px;
  padding: 10px 50px;
  cursor: pointer;
  text-decoration: none;
}

.order-btn3::before {
  content: "";
  background-color: #000;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -3px;
}

.prod-info {
  width: 50%;
  float: right;
  text-align: center;
  margin-top: 50px;
  padding: 20px;
}

.prod-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.prod-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-top: -10px;
}

.prod-description {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  margin-top: 30px;
}

.prod-description p {
  background: rgba(0, 0, 0, 0.5);
}

.prod-gif {
  margin-top: 30px;
}

.prod-gif img {
  border-style: solid;
  border-color: #fff;
}

.order-section h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  padding: 20px;
}

.order-section-description {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  width: 72%;
  margin: 0 auto;
  padding: 20px;
}

.form-pictures {
  max-width: 350px;
  margin: 0 auto;
  padding: 20px;
}

.order-form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 61px;
  padding: 0;
  -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;
  border-radius: 7px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(17%, #ff0000), color-stop(68%, #ff0000));
  background-image: linear-gradient(180deg, #ff0000 17%, #ff0000 68%);
  -webkit-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.56);
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.56);
  font-family: Poppins, sans-serif;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.product {
  text-align: center;
}

.save-txt {
  margin-right: 10px;
}

.save-money {
  padding: 10px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 16px;
  text-align: center;
}

.choose-product {
  width: 430px;
  padding: 10px;
  border-style: solid;
  border-width: 8px;
  border-color: white;
  border-radius: 20px;
  text-align: center;
  margin-left: calc(100% - 430px);
  margin-bottom: 20px;
  background-color: #e2e2e2;
}

.choose-product h3 {
  padding: 20px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 28px;
  line-height: 30px;
  font-weight: bold;
}

.review-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-stats img {
  max-width: 130px;
}

.review-stats p {
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  padding-left: 5px;
}

.pBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 10px;
  -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;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(73, 73, 73, 0.38);
  border-radius: 7px;
  background-color: white;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.pbox #color-price {
  color: red;
}

.under-txt {
  font-size: 14px;
  font-weight: 400;
  margin-top: -20px;
}

@-moz-document url-prefix() {
  .under-txt {
    margin-top: 0;
  }
}

.pBoxActive {
  background-color: #008fff;
  color: #fff;
}

.pBoxActive #color-price {
  color: yellow;
}

.order-button {
  padding: 20px;
}

.firstBox {
  padding-left: 15px;
}

.firstItem {
  padding-left: 30px !important;
}

.old-price {
  color: #c30000;
  font-family: Poppins, sans-serif;
  color: #c30000;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 10px;
  text-align: center;
}

.al-cost-promo {
  text-decoration: line-through;
}

#old_price {
  margin-left: 5px;
}

.new-price {
  text-align: center;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 15.5px;
  line-height: 25px;
  font-weight: 700;
}

.prices-final {
  text-align: right;
  margin-bottom: -25px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 15.5px;
  line-height: 25px;
  font-weight: 700;
}

.prices-final2 {
  text-align: left;
  margin-bottom: -25px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 15.5px;
  line-height: 25px;
  font-weight: 700;
}

.money-back-section {
  background: #3f3f3f;
  color: #fff;
  padding: 20px;
}

.money-back-header {
  text-align: center;
  padding: 20px;
}

.money-back-body {
  padding: 20px;
}

.money {
  margin-right: 5px;
}

.title-p {
  font-family: "Poppins", Sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  padding-bottom: 20px;
}

.money-back-txt {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  width: 72%;
  margin: 0 auto;
}

.faq-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  padding: 20px;
}

.info-panel-information {
  display: none;
  padding: 15px 20px;
  border: 1px solid #d4d4d4;
  color: #707070;
  background: #fff;
  font-family: "Poppins", Sans-serif;
}

.info-panel {
  cursor: pointer;
  width: 80%;
  margin: 0 auto;
}

.panel-head {
  background-color: #0c0c0c;
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 10px;
  border: 1px solid #d4d4d4;
}

.button-position2 {
  text-align: center;
  padding: 30px;
}

.footer {
  text-align: center;
}

.footer-header {
  padding-top: 20px;
}

.footer-body {
  padding: 20px;
}

.footer-body ul li {
  display: inline-block;
}

.footer-body ul li a {
  color: #fff;
  text-decoration: none;
  font-family: "Open Sans", Sans-serif;
  font-weight: 400;
  margin-right: 15px;
}

@media screen and (max-width: 1150px) {
  .form-width {
    width: auto;
    margin: 0 auto;
  }

  .choose-product {
    margin: 0 auto;
  }
}

@media screen and (max-width: 820px) {
  .badges img {
    max-width: 100%;
  }

  .revive-prod {
    max-width: 95%;
  }

  .desktop-head-menu {
    display: none;
  }

  .mobile-head-menu {
    display: block;
    border-top: 1px solid #707070;
  }

  .list li img {
    max-height: 30px;
  }

  .addition-product-info {
    margin: 0;
    padding-top: 10px;
  }

  .second-info {
    color: #fff;
    padding-left: 5px;
  }

  .addition-product-info .grid-two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
  }

  .one-bottle {
    margin-top: 80px;
    padding-left: 2px;
    max-width: 100px;
  }

  .approved-info {
    float: none;
    width: auto;
    text-align: center;
  }

  .seen-on {
    display: none;
  }

  .amazon-reviews-container {
    grid-template-columns: 1fr;
  }

  .reviews-fb {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .first-txt {
    padding-top: 20px;
  }

  .amazon-header img {
    max-width: 90%;
  }

  .amazon-review img {
    max-width: 100%;
  }

  .reviews-facebook {
    max-width: 620px;
    margin: 0 auto;
  }

  .order {
    grid-template-columns: 1fr !important;
  }

  .banner-position {
    grid-template-columns: 1fr;
  }

  .banner-btn {
    text-align: center;
  }

  .prod-info {
    float: none;
    width: auto;
  }

  .prod-gif img {
    max-width: 100%;
  }

  .pBox {
    font-size: 16px;
  }

  .product {
    display: none;
  }

  .order-btn {
    font-size: 12px;
    padding: 15px 15px;
  }

  .order-btn2 {
    font-size: 14px;
    padding: 15px 50px;
  }

  .order-btn3 {
    font-size: 14px;
    padding: 15px 30px;
  }

  .order-btn4 {
    font-size: 14px;
    padding: 15px 50px;
  }

  .banner-txt {
    text-align: center;
    padding: 5px;
  }
}

@media screen and (max-width: 500px) {
  .choose-product {
    width: auto;
    margin: 0 auto;
  }
}

@media screen and (max-width: 420px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .choose-product .grid-two-column {
    display: block;
  }

  .choose-product {
    width: 340px;
    margin: 0 auto;
  }

  .pBox {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .new-price {
    margin-bottom: 0;
  }

  .right-side {
    text-align: unset;
  }

  .fb-stats {
    margin-right: 14px;
  }

  .form-pictures {
    margin-left: -20px;
    padding: 0;
    margin-top: -10px;
  }

  .save {
    margin-top: -10px;
  }

  .money-back-header img {
    max-width: 250px;
  }
}

@media screen and (max-width: 600px) {
  .list {
    background: rgba(0, 0, 0, 0.5);
    font-size: 13px;
  }

  .button-position {
    margin-top: 20px;
  }

  .choose-product h3 {
    padding: 5px;
    font-family: Poppins, sans-serif;
    color: #000;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    margin-top: -10px;
  }

  .logo img {
    width: 100px;
  }

  .mobb {
    display: none;
  }

  .firstActive {
    background-position-y: -3px;
    background-position-x: -3px;
  }

  .approved-header h2 {
    font-size: 34px;
  }

  .reviews-header h2 {
    font-size: 34px;
  }

  .button-position2 {
    padding: 20px;
  }

  .rating {
    font-size: 12px;
  }

  .mobile-btn {
    display: block;
    margin-top: 0px;
  }

  .review-stats {
    margin-bottom: 20px;
  }

  .desktop-btn {
    display: none;
  }

  .save {
    display: none;
  }

  .fb-bottom {
    display: block;
  }

  .fb-actions {
    text-align: left;
  }

  .fb-stats {
    float: right;
  }

  .list li img {
    height: 30px;
  }

  .list {
    background: rgba(0, 0, 0, 0.5);
  }

  .info {
    color: #fff;
    width: 100%;
    padding: 5px;
    margin-top: -10px;
  }

  .big-head {
    font-size: 26px;
    line-height: 1.5;
  }

  .space-top {
    margin-top: 0;
  }

  .second-info {
    margin-bottom: -20px;
  }

  .one-bottle {
    margin-top: 10px;
    padding-left: 2px;
    max-width: 100px;
  }

  .logo-panel {
    margin-bottom: -5px;
  }

  .deskk {
    display: block;
  }
}

@media screen and (max-width: 344px) {
  .choose-product {
    width: 330px;
    margin: 0 auto;
    margin-left: -20px;
  }

  .fb-comment {
    max-width: 320px;
  }

  .order-btn {
    padding: 15px 5px;
  }
}

@media screen and (max-width: 360px) {
  .rating-img {
    margin-left: 10px;
  }
}

form {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form-index .rushOrder {
  display: block;
  border: none;
  width: 330px;
  text-transform: uppercase;
  text-shadow: 1px 1px #000000;
  overflow: hidden;
  cursor: pointer;
  margin: 0 auto;
  color: #ffffff;
}

#form {
  visibility: hidden;
}

#orderform br {
  clear: both;
}

.tip {
  position: absolute !important;
  width: 150px;
}

.toolTip {
  background: #b94a48;
  border: thin solid #b94a48;
  color: #fff;
  left: 0px;
  margin-top: 28px;
  padding: 5px;
  position: absolute;
  text-align: center;
  width: 150px;
  z-index: 10;
  border-radius: 4px;
  font: bold 11px "verdana";
}

.toolTipArrow {
  border-color: transparent transparent #b94a48 transparent;
  border-style: solid;
  border-width: 11px;
  height: 0px;
  width: 0px;
  position: absolute;
  top: -20px;
  left: 20px;
  display: block;
  content: "\00a0";
}

.toolTipArrow:before {
  border-color: transparent transparent #b94a48 transparent;
  position: absolute;
  top: -11px;
  left: -12px;
  border-style: solid;
  border-width: 12px;
  height: 0px;
  width: 0px;
  display: block;
  content: "\00a0";
}

.tip1 {
  position: absolute !important;
  left: 0px;
  margin-top: -4px;
  padding: 0px;
  position: absolute;
  text-align: center;
}

#formContainer {
  width: 270px;
  margin: 0 auto;
  position: absolute;
  top: 200px;
  right: 30px;
}

.displayNone {
  display: none !important;
}

.alert_message {
  background-color: #ff0;
  border: 5px dashed #f02773;
  font-weight: bold;
  padding: 5px;
}

.address_alert {
  background: #ff0 !important;
  color: #000 !important;
  width: 370px !important;
  border-color: #ff0 !important;
  width: 358px !important;
}

.arrowColor {
  border-color: transparent transparent #ffd200 transparent !important;
}

.arrowColor:before {
  border-color: transparent transparent #ffd200 transparent !important;
}

#orderform > #shipping_areacode {
  width: 33px;
  float: left;
}

#orderform > #shipping_mobilecode {
  width: 14%;
  display: inline-block;
  margin-right: 2%;
  vertical-align: top;
  padding: 6px 5px 5px 6px;
}

#orderform > #shipping_mobilenumber {
  width: 75%;
  display: inline-block;
}

.rushOrder {
  color: #ffffff !important;
  background: rgb(255, 0, 0);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(255, 0, 0, 1)),
    color-stop(50%, rgba(168, 4, 4, 1)),
    color-stop(92%, rgba(255, 0, 0, 1))
  );
  background: linear-gradient(0deg, rgba(255, 0, 0, 1) 0%, rgba(168, 4, 4, 1) 50%, rgba(255, 0, 0, 1) 92%);
  border-radius: 10px !important;
  border: none;
  padding: 15px 50px !important;
  font: bold 14px Verdana, Geneva, sans-serif !important;
  text-align: center !important;
  margin: 10px auto !important;
  display: block !important;
  margin-top: 20px !important;
  text-transform: uppercase !important;
}

.within-24-hours-box {
  width: 100%;
  border: 3px dashed red;
  background: yellow;
  margin: 20px 0;
}

.within-24-hours-box p {
  text-align: center;
  padding: 0;
  margin: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.within-24-hours-box p span {
  font-weight: bold;
}

@media only screen and (max-width: 310px) {
  #orderform {
    overflow: visible;
    position: relative;
    width: 93%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.backGrey {
  padding: 5px;
  margin-bottom: 20px;
  border: 2px solid #bad7f9;
  padding: 6px;
  border-radius: 10px;
}

.alert_message {
  background-color: #f2b44f;
  border: 3px dashed #fff;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 5px;
  margin-top: -15px;
}

#orderform {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

input,
select {
  font: normal 12px/16px Arial, Helvetica, sans-serif;
  padding: 3px;
  background: #ffffff;
  border: 1px solid #dc3545 !important;
  width: 100%;
  border-radius: 5px;
  padding: 0 10px;
  height: 44px !important;
  font-size: 17px;
  color: black !important;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input#shipping_phone2 {
  margin-top: -20px;
}

#orderform #shipping_areacode {
  width: 40px !important;
  float: left;
  margin: 0 9px 0 0;
  padding: 6px 5px 5px 6px;
}

#orderform input:focus,
#form-index input:focus {
  box-shadow: 0 0 5px #3e00ff;
  -webkit-box-shadow: 0 0 5px #3e00ff;
  -moz-box-shadow: 0 0 5px red;
  border: 1px solid #3e00ff;
}

select#billing_state {
  padding: 6px 5px 5px 6px;
}

#form {
  visibility: hidden;
}

#orderform br {
  clear: both;
}

.tip {
  position: absolute !important;
  width: 150px;
}

.toolTip {
  background: #b94a48;
  border: thin solid #b94a48;
  color: #fff;
  top: 20px;
  padding: 6px;
  position: absolute;
  text-align: center;
  width: 150px;
  z-index: 10;
  border-radius: 4px;
  font: bold 11px "verdana";
}

.tip1:hover + .tip {
  display: block !important;
}

.ssss {
  -webkit-box-shadow: 0 0 5px #ff0000 !important;
}

.greeen {
  -webkit-box-shadow: 0 0 5px #00ff34;
}

.toolTipArrow {
  border-color: transparent transparent #b94a48 transparent;
  border-style: solid;
  border-width: 11px;
  height: 0px;
  width: 0px;
  position: absolute;
  top: -22px;
  left: 121px;
  display: block;
  content: "\00a0";
}

.toolTipArrow:before {
  border-color: transparent transparent #b94a48 transparent;
  position: absolute;
  top: -11px;
  left: -12px;
  border-style: solid;
  border-width: 12px;
  height: 0px;
  width: 0px;
  display: block;
  content: "\00a0";
}

form .input-wrapper label {
  display: none;
  pointer-events: none;
}

form .input-wrapper {
  position: relative;
}

.form-group {
  margin-bottom: 20px !important;
}

form .input-wrapper .error {
  border: 1px solid red !important;
  padding-top: 6px !important;
}

form .input-wrapper .error + label {
  width: 100%;
  height: 100%;
  color: red;
  display: block !important;
  font-size: 11px;
  line-height: 17px;
  position: absolute;
  top: 0;
  left: 10px;
  text-align: left;
}

form .input-wrapper .error + label:before,
form .input-wrapper .error + label:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 3px;
  height: 21px;
  background-color: red;
}

form .input-wrapper .error + label:before {
  -webkit-transform: translate(0, -50%) rotate(135deg);
  transform: translate(0, -50%) rotate(135deg);
}

form .input-wrapper .error + label:after {
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

.price-wrap {
  width: 469px;
  height: 468px;
  margin: 0 auto;
  position: relative;
}
.price-wrap-mob {
  width: 235px;
  height: 225px;
}
.price-wrap img {
  width: 100%;
}
.price-wrap .price {
  width: 100%;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  text-transform: uppercase;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
}
.price-wrap-mob .price {
  font-size: 28px;
}
.price-wrap .price .al-cost-promo {
  color: #cd0505;
}
.price-wrap .price .al-cost {
  font-size: 64px;
  color: #599403;
}
.price-wrap-mob .price .al-cost {
  font-size: 34px;
}

#slider {
  width: 100%;
  height: 520px;
  overflow: hidden;
}

#slider > div {
  width: 200%;
}

#slider > div > div {
  width: 25%;
  float: left;
}

#slider p {
  line-height: 1.3em;
}

.b-people {
  position: relative;
  width: 304px;
  margin: 0 auto;
}

.b-people-2 {
  position: relative;
  width: 100%;
  margin: 0;
  display: block;
}

.b-people .mob-margin {
  width: 100%;
  display: block;
  margin: 0;
}

.b-people .b-head {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  width: 80%;
  text-align: center;
  position: absolute;
  left: 10%;
  top: 3%;
}

.b-people .b-p {
  color: #fff;
  width: 90%;
  position: absolute;
  font-size: 17px;
  left: 5%;
  top: 50%;
}

.b-people .b-p:nth-of-type(3) {
  top: 65%;
}

.b-people .b-p:nth-of-type(4) {
  top: 80%;
}

.b-people .b-p span {
  text-align: right;
}
@media (max-width: 1700px) {
  .b-people .b-p {
    font-size: 13px;
  }
}

.b-sale-box {
  position: relative;
  width: 500px;
  display: inline-block;
}

.b-sale-box .b-p {
  font-size: 16px;
  color: #000;
  position: absolute;
  transform: rotate(-5deg);
  width: 100%;
  text-align: center;
  top: 24%;
  left: -8%;
  text-transform: uppercase;
  font-weight: bold;
}
.b-sale-box .b-h {
  position: absolute;
  color: #fff;
  text-shadow: -2px 5px 0 #000;
  transform: rotate(-5deg);
  width: 100%;
  text-align: center;
  top: 28%;
  left: -4%;
  text-transform: uppercase;
  font-size: 76px;
  line-height: 128px;
}
.b-sale-box .b-p:nth-of-type(3) {
  top: 50.5%;
  left: -1%;
}
.b-sale-box .b-h:nth-of-type(4) {
  top: 51%;
}

.small-pic {
  width: 500px;
}

.all-conteiner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 550px) {
  .blockRed-left {
    margin-left: -55px !important;
  }
  .blockRed-right {
    margin-right: -55px !important;
  }
}

.ac_footer {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 50px 0;
  color: #a12000;
}

.ac_footer a {
  color: #a12000;
}

.ac_footer p {
  text-align: center;
}

img[height="1"],
img[width="1"] {
  display: none !important;
}
.p1 {
  margin-top: -35px;
}
.p2 {
  background: rgb(255, 0, 0);
}
.p3 {
  background: rgb(160, 15, 46);
  padding-top: 10px;
  padding-bottom: 10px;
}
.p4 {
  color: white;
}
.p5 {
  border: 1px solid white;
  background: red;
}
.p6 {
  vartical-align: middle;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.16);
  display: none;
  left: 50%;
  margin-left: -200px;
  margin-top: -100px;
  opacity: 1;
  padding: 45px 40px 40px;
  position: fixed;
  top: 50%;
  width: 400px;
  z-index: 1000;
}
.p7 {
  padding: 10px 0 15px 0;
}
.p8 {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: block;
}
.p9 {
  color: #000;
  background: linear-gradient(to bottom, #35870d 4%, #297b00 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: medium none;
  border-radius: 5px;
  box-shadow: 0 -1px 0 0 rgba(13, 69, 9, 1) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.22);
  color: #fff;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  height: 53px;
  line-height: 53px;
  margin: 0 auto;
  width: 235px;
}
.p10 {
  margin-left: 10px;
  color: white;
}
.p11 {
  z-index: 999;
  position: fixed;
  background-color: #efeee9;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}
.p12 {
  color: rgb(255, 255, 255);
  overflow: hidden;
  background: red;
  box-sizing: border-box;
  font: 400 16px / 1.15 Arial, sans-serif;
  position: relative;
  z-index: 1000000;
  padding: 0px;
  margin: 0px;
  direction: ltr;
  text-transform: none;
}
.p14 {
  font: inherit;
  margin: 0px auto;
  padding: 10px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.p15 {
  width: 65px;
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0px 0px 10px 20px;
  box-sizing: border-box;
}
.p16 {
  background: rgba(240, 240, 240, 0.8);
}
.p17 {
  border: 1px solid white;
  background: red;
  text-align: justify;
}
.p18 {
  padding: 20px 20px;
  margin-top: 40px;
}
.p19 {
  color: red;
  font-weight: bold;
  font-size: 25px;
}
.p20 {
  padding-top: 100px;
}
.p21 {
  font-size: 35px;
  font-weight: bold;
}
.p13 {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
.p22 {
  width: 65px;
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0px 0px 0px 10px;
  box-sizing: border-box;
}
.p23 {
  margin-top: 100px;
}
.p24 {
  font-size: 15px;
}
.p25 {
  padding-bottom: 20px;
}
.p26 {
  padding-top: 50px;
}
.p27 {
  margin-top: 30px;
  padding-bottom: 15px;
}
.p28 {
  text-align: right;
}
.p29 {
  padding-top: 92px;
}
.p30 {
  margin-top: 50px;
}
.p31 {
  margin-bottom: 20px;
}
.p32 {
  padding-top: 130px;
}
.p33 {
  margin-top: 40px;
}
.p34 {
  margin-top: 120px;
}
.p35 {
  border: 5px solid red;
  padding: 5px 11px;
  border-radius: 5px;
}
.p36 {
  padding-top: 60px;
  padding-bottom: 30px;
}
.p37 {
  line-height: 1.4;
}
.p38 {
  margin-top: 30px;
  padding: 0;
}
.p39 {
  margin-top: 30px;
  padding: 0;
  margin-bottom: 30px;
}
.p40 {
  margin-top: 30px;
  padding-bottom: 50px;
}
.p41 {
  line-height: 1.4;
}
.p42 {
  margin-top: 70px;
  margin-bottom: 70px;
}
.p43 {
  padding-top: 30px;
}
.p44 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 10px;
  padding-top: 30px;
}
.p45 {
  text-align: center;
}
.p46 {
  margin-left: 40px;
}
.p47 {
  margin-top: -10px;
  margin-bottom: -10px;
}
.p48 {
  margin-top: -25px;
}
.p49 {
  background: rgb(160, 15, 46);
  padding-top: 10px;
  padding-bottom: 10px;
}
.p50 {
  width: 65px;
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0px 0px 10px;
  box-sizing: border-box;
}
.p51 {
  padding-left: 100px;
}
.p52 {
  margin-top: -180px;
}
.p53 {
  margin-left: 40px;
  width: 50%;
}
.p54 {
  text-align: center;
}
.p55 {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 60px;
  height: auto;
  margin: 0px;
  padding: 0px;
}
.p56 {
  font: inherit;
  text-align: center;
  box-sizing: border-box;
  padding: 0px 5px;
  margin: 0px;
}
.p57 {
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  line-height: inherit;
  font-family: inherit;
  font-size: 15px;
  color: inherit;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
.p58 {
  background: rgb(187, 192, 196);
}
.p59 {
  margin-right: 10px;
}
.p60 {
  padding-top: 20px;
  width: 100%;
}
.p61 {
  border: 3px solid red;
  background: white;
  padding: 20px;
  border-radius: 10px;
  font-size: 30px;
  margin-bottom: 20px;
  color: red;
}
.p62 {
  font-style: inherit;
  font-variant: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  padding: 0px;
  margin: 0px 0px 5px;
  box-sizing: border-box;
}
.p63 {
  text-align: left;
}
