*, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1;
  background: #000;
  color: #fff;
}

.wrapper {
  overflow: hidden;
}

.container {
  width: 970px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timer{
  font-size: 0;
  max-width: 268px;
  margin: 0 auto;
}
.timer__item{
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
  position: relative;
}
.timer__item:not(:last-child):after{
  content: ':';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 35px;
}
.timer__item div{
  font-size: 35px;
  text-align: center;
}

.present {
  padding: 35px 0;
  position: relative;
}

.present:before {
  content: '';
  width: 894px;
  height: 1342px;
  background: url("content/img/bg_0.jpg") center no-repeat;
  position: absolute;
  top: -50%;
  left: 50%;
  margin: -55px 0 0 -1000px;
  opacity: .7;
}

.container_logo-mod {
  padding: 0 50px 0 110px;
}

.logo {
  font-size: 50px;
  font-weight: 900;
  line-height: 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: -50%;
  margin: 10px 0 0 45px;
}

.present__title {
  font-size: 48px;
  font-weight: bold;
  padding: 5px 0 20px;
}

.clr-mod {
  color: #fbbb3f;
}

.clr-mod_02 {
  color: #000;
}

.clr-mod_03 {
  color: #000;
}

.present__wrap {
  display: table;
  width: 100%;
  /*table-layout: fixed;*/
}

.present__cell {
  display: table-cell;
  vertical-align: top;
}

.present__text {
  font-size: 19px;
  line-height: 2;
  padding: 0 0 30px;
  width: 75%;
}

.advantage {
  width: 75%;
  font-size: 19px;
  font-weight: bold;
  list-style: none;
  padding: 0 0 30px;
  position: relative;
  z-index: 2;
}

.advantage__item {
  padding: 10px 0 15px 55px;
  position: relative;
}

.advantage__item:before {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid #fbbb3f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.advantage__item:after {
  content: '';
  width: 16px;
  height: 10px;
  border: 3px solid transparent;
  border-left: 3px solid #fbbb3f;
  border-bottom: 3px solid #fbbb3f;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 14px 0 0 12px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

button {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px ;
  /*background: #ff1e19;*/
  background-image: linear-gradient( 
0deg, #ff226d 0%, #fa4545 100%);
    border-radius: 3px;
  display: table;
  margin: 0 auto;
  color: #ffffff;
  cursor: pointer;
  letter-spacing: 5px;
  position: relative;
  z-index: 5;
  text-shadow: 0 0 0 #000;
  overflow: hidden;
  -webkit-transition: color .3s;
  -moz-transition: color .3s;
  -ms-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.button__wrap {
  position: relative;
  z-index: 2;
}

button:before {
  content: '';
  width: 98%;
  height: 96%;
  position: absolute;
  top: 2%;
  left: 1%;
  box-shadow: inset 0 0 0 0 #000;
  -webkit-transition: box-shadow .2s;
  -moz-transition: box-shadow .2s;
  -o-transition: box-shadow .2s;
  transition: box-shadow .2s;
  z-index: 1;
}

button:after {
  content: '';
  width: 98%;
  height: 96%;
  position: absolute;
  top: 2%;
  left: 1%;
  background: #ffba00;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: transform .3s;
  -moz-transition: transform .3s;
  -ms-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}

button:hover {
  color: #000;
}

button:hover:before {
  box-shadow: inset 0 0 7px 3px #000;
  background: #fbbb3f;
}

button:hover:after {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.subbutton {
  letter-spacing: 1px;
  margin: 0;
}

.sale {
  min-width: 125px;
  min-height: 125px;
  margin: 0 30px 0 auto;
  font-size: 29px;
  font-weight: bold;
  text-transform: uppercase;
  background: url("content/img/sale_bg.png") center no-repeat;
  position: relative;
  z-index: 1;
  display: table;
}

.sale__wrap {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #000;
}

.sale:after {
  content: '';
  width: 1000px;
  height: 625px;
  background: url("content/img/product.png") center no-repeat;
  position: absolute;
  top: 46%;
  right: -365px;
  margin: auto 17px 0 0;
}

.sale:before {
  content: '';
  width: 244px;
  height: 436px;
  background: url("content/img/product_tube_shadow.png") center no-repeat;
  position: absolute;
  top: 100%;
  right: 0;
  margin: -60px 0 0 0;
}

.sale__text {
  display: block;
}

.sale__value {
  font-size: 43px;
  position: relative;
}

.sale__value:after {
  content: '%';
  font-size: 29px;
  font-weight: 400;
  line-height: 1.43;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 0 0 0 5px;
}

.sale_text {
  font-weight: 400;
  font-size: 10px;
}

form {
  width: 265px;
}
#offerdiv {
    width: 100%;
}
.form__wrap {
  background: #fbbb3f;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  line-height: 1.3;
  padding: 20px;
  margin: 20px 0 20px;
  position: relative;
  z-index: 1;
}

.form__title {
  font-size: 20px;
  color: #000;
  padding: 0 0 10px;
  text-align: center;
}

.form__field {
  background: #ffffff;
  margin: 10px 0;
  border: 1px solid #a6a6a6;
  position: relative;
}

.form__field_select:before {
  content: '';
  border: 4px solid transparent;
  border-top-color: #000;
  position: absolute;
  top: 50%;
  right: 15px;
  margin: -2px 0 0 0;
}

.form__field input,
.form__field select {
  font-size: 14px;
  padding: 10px;
  width: 100%;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  line-height: 1;
}

select::-ms-expand {
  display: none;
}

.price {
  padding: 10px 0 0;
  text-align: center;
}

.price__old {
  font-size: 20px;
  color: #000;
}

.price__old span {
  text-decoration: line-through;
}

.price__new {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  padding: 10px 0 0;
}

.statistic {
  padding: 40px 0;
}

.subtitle {
  font-size: 35px;
  font-weight: bold;
  padding: 20px 10px;
  text-align: center;
  line-height: 1.3;
}

.subtitle_mod {
  font-weight: 400;
  padding: 0 0 50px;
}

.subtitle_l-mod {
  text-align: left;
}

.statistic__photo {
  float: left;
  margin: 0 -90px 0 0;
  position: relative;
}

.statistic__photo:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #535353;
  position: absolute;
  top: 30px;
  left: 100px;
}

.statistic__photo img {
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 10px 0 60px 2px #000;;
  -moz-box-shadow: 10px 0 60px 2px #000;;
  box-shadow: 10px 0 60px 2px #000;;
}

.statistic__wrap {
  background: #fff;
  padding: 10px 40px 30px;
  color: #000;
  width: 52%;
  margin: 45px 90px 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.statistic__text {
  font-size: 20px;
  line-height: 1.8;
}

.statistic__text:before {
  content: '';
  width: 100px;
  border: 1px solid #fbbb3f;
  display: block;
  margin: 0 0 10px;
}

.promo {
  padding: 40px 0;
  position: relative;
}

.promo__video {
  padding: 40px 0 15px;
  display: table;
  margin: 0 auto;
}

.promo__video video {
  width: 100%;
}

.promo__text {
  font-size: 22px;
  text-align: center;
}

.composition {
  padding: 70px 0 120px;
  position: relative;
}

.composition:before {
  content: '';
  width: 848px;
  height: 976px;
  background: url("content/img/bg_02.jpg") center  no-repeat;
  position: absolute;
  bottom: 0;
  left: 120px;
  opacity: .3;
}

.title {
  font-size: 39px;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.title_p-mod {
  padding: 0 10px;
}

.composition__wrap {
  display: table;
  width: 100%;
  table-layout: fixed;
  padding: 90px 0 50px;
}

.composition__cell {
  display: table-cell;
  vertical-align: top;
  padding: 0 20px 0 10px;
  position: relative;
}

.composition__cell:before {
  content: '';
  width: 146px;
  height: 146px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 0 40px;
}

.composition__item_01:before {
  background: url("content/img/composition_icon_01.png") center no-repeat;
}

.composition__item_02:before {
  background: url("content/img/composition_icon_02.png") center no-repeat;
}

.composition__item_03:before {
  background: url("content/img/composition_icon_03.png") center no-repeat;
}

.composition__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  padding: 20px 0;
  width: 70%;
}

.composition__title:after {
  content: '';
  width: 70px;
  border-top: 1px solid #fbbb3f;
  display: block;
  margin: 10px 0 0;
}

.composition__text {
  line-height: 1.7;
}

.effect {
  padding: 80px 0 90px;
  background: #eeeeee;
  position: relative;
  z-index: 2;
}

.subtitle_w-mod {
  width: 70%;
  margin: 0 auto;
}

.effect__wrap {
  display: table;
  width: 75%;
  padding: 0 15px 0 35px;
  margin: 0 auto;
  table-layout: fixed;
  background: url("content/img/efeect-scale_bg.png") top center no-repeat;
  height: 465px;
}

.effect__cell {
  display: table-cell;
  vertical-align: bottom;
}

.effect__pict img {
  margin: 0 auto;
}

.effect__data {
  display: table;
  padding: 10px;
  background: #000;
  margin: 45px auto 0;
}

.effect__parameter {
  font-size: 18px;
  font-weight: bold;
}

.effect__parameter:after {
  content: '';
  width: 50px;
  border-top: 1px solid #e42929;
  display: block;
  margin: 15px 0;
}

.effect__parameter:last-child:after {
  display: none;
}

.effect__parameter span {
  display: block;
}

.use {
  padding: 110px 0;
  position: relative;
}

.use:before {
  content: '';
  width: 2000px;
  height: 662px;
  background: url("content/img/bg_03.jpg") center bottom no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0 0 0 -1000px;
}

.use__wrap {
  display: table;
  width: 95%;
  margin: 0 auto;
  table-layout: fixed;
  padding: 70px 0 0;
}

.use__cell {
  display: table-cell;
  vertical-align: top;
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.use__pict {
  width: 146px;
  height: 146px;
  background: #a1a1a1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.use__cell:before {
  content: '';
  width: 146px;
  height: 146px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.use__item_01:before {
  background: url("content/img/use_pict_01.png") center no-repeat;
  background-size: contain;
}

.use__item_02:before {
  background: url("content/img/use_pict_02.png") center no-repeat;
  background-size: contain;
}

.use__item_03:before {
  background: url("content/img/use_pict_03.png") center no-repeat;
  background-size: contain;
}

.use__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  padding: 20px 0;
}

.use__title:after {
  content: '';
  width: 70px;
  border-top: 1px solid #fbbb3f;
  display: block;
  margin: 10px auto 0;
}

.use__text {
  line-height: 1.7;
  width: 85%;
  margin: 0 auto;
}

.review {
  padding: 90px 0 70px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #000;
}

.review:before {
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("content/img/bg_04.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: .17;
  position: absolute;
}

.user {
  padding: 50px;
  display: table;
  width: 100%;
}

.user:before {
  content: '';
  width: 146px;
  height: 146px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 20px 0 0;
}

.user_01:before {
  background: url("content/img/user_ava_01.jpg") center no-repeat;
}

.user_02:before {
  background: url("content/img/user_ava_02.jpg") center no-repeat;
}

.user_03:before {
  background: url("content/img/user_ava_03.jpg") center no-repeat;
}

.user__data {
  display: table-cell;
  vertical-align: top;
  padding: 0 0 0 20px;
  border-left: 2px solid #fbbb3f;
}

.user__info {
  font-size: 24px;
  padding: 0 0 15px;
}

.user__name {
  font-weight: bold;
}


.review__text {
  line-height: 1.7;
}

.order {
  padding: 55px 0 160px;
  position: relative;
}

.order .timer{
  max-width: 265px;
  margin-top: 95px;
}
.present__form .price__new {
    text-align: center;
    padding-top: 0;
}
.order:before {
  content: '';
  background: url("content/img/bg_03.jpg") right top no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .4;
}

.order__wrap {
  display: table;
  width: 65%;
  margin: 0 auto;
  direction: rtl;
}

.order__cell {
  display: table-cell;
  vertical-align: top;
  direction: ltr;
  margin-top: 50px;
}

.sale__order {
  margin: 30px 10px 0 0;
}

.sale__order:before {
  display: none;
}

.sale__order:after {
  display: none;
}

.product__order {
  width: 260px;
}

.product__order:after {
  content: '';
  width: 1500px;
  height: 370px;
  background: url("content/img/product.png") center no-repeat;
  position: absolute;
  bottom: 0;
  right: -550px;
  margin: 0 165px -145px 0;
}

.order__btn {
  margin: 0 auto;
}

.use .owl-item {
  opacity: .4;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.use .owl-item .use__title,
.use .owl-item .use__text {
  opacity: 0;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.use .owl-item.center .use__title,
.use .owl-item.center .use__text {
  opacity: 1;
}

.use .owl-item.center{
  opacity: 1;
}

.owl-dots {
  text-align: center;
}

.owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: transparent;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
  display: inline-block;
}

.owl-dot.active span {
  background-color: #000;
}

/*DECORE*/

.effect__arrow {
  width: 100px;
  height: 8px;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #ff2a00), to(transparent));
  background: -webkit-linear-gradient(right, #ff2a00 50%, transparent);
  background: -moz-linear-gradient(right, #ff2a00 50%, transparent);
  background: -o-linear-gradient(right, #ff2a00 50%, transparent);
  background: linear-gradient(to left, #ff2a00 50%, transparent);
  -webkit-transform: rotate(-12deg);
  -moz-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  -o-transform: rotate(-12deg);
  transform: rotate(-12deg);
  transform-origin: left bottom;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -320px;
}

.effect__arrow_move {
  -webkit-animation: arrow-rise 2.5s forwards linear;
  -o-animation: arrow-rise 2.5s forwards linear;
  animation: arrow-rise 2.5s forwards linear;
}

@-webkit-keyframes arrow-rise {
  from {
    width: 100px;
  }
  to {
    width: 600px;
  }
}
@-moz-keyframes arrow-rise {
  from {
    width: 100px;
  }
  to {
    width: 600px;
  }
}
@-o-keyframes arrow-rise {
  from {
    width: 100px;
  }
  to {
    width: 600px;
  }
}
@keyframes arrow-rise {
  from {
    width: 100px;
  }
  to {
    width: 600px;
  }
}

.effect__arrow:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 6px solid transparent;
  border-bottom-color: red;
  border-right-color: red;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  margin: -8px 0 0 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.glare {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.glare__item {
  width: 1px;
  height: 1px;
  background: rgba(126, 126, 126, .7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
}

.glare__item_01 {
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
  box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
}

.glare__item_02 {
  top: -10%;
  right: 30%;
  -webkit-box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
  box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
}

.glare__item_03 {
  top: 60%;
  left: 30%;
  -webkit-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
  box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
  z-index: 1;
}

.glare__item_04 {
  top: 45%;
  left: 45%;
  -webkit-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
  box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
  z-index: 1;
}

.glare__item_05 {
  top: 0;
  left: 55%;
  -webkit-box-shadow: 0 0 530px 430px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 530px 430px rgba(126, 126, 126, .7);
  box-shadow: 0 0 530px 430px rgba(126, 126, 126, .7);
}

.glare__item_06 {
  top: 10%;
  left: 40%;
  -webkit-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
  box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
}

.glare__item_07 {
  top: 25%;
  right: 0;
  -webkit-box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
  box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
}

.glare__item_08 {
  bottom: -10%;
  left: 5%;
  -webkit-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
  -moz-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
  box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
}

.use .bx-viewport {
  overflow: visible !important;
}

.bx-pager.bx-default-pager {
  text-align: center;
}

.bx-pager-item {
  margin: 0 10px;
  display: inline-block;
  font-size: 0;
}

.bx-pager-link {
  display: block;
  border: 1px solid #000;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
}

.active {
  background: #000;
}
.experts__item {
  position: relative;
  margin-bottom: 100px;
  padding-left: 345px;
  min-height: 230px;
}
.experts__item-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-image: url(content/img/retina.png);
  background-position: 0 0;
  width: 310px;
  height: 310px;
}
.experts__item-image {
  position: absolute;
  left: 42px;
  bottom: 2px;
  border: none;
  width: 240px;
}
.experts__item-title {
  position: absolute;
  right: 27px;
  bottom: -50px;
  text-align: right;
}
.experts__item-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fbbb3f;
}
.experts__item-post {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.experts__item-text {
  position: relative;
  padding: 52px 40px 24px 60px;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  background-image: url(content/img/expert1-bg.png);
  background-repeat: no-repeat;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
}
.experts__item-text:after, .experts__item-text:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  background-color: #1c98d2;
}
.experts__item-text:before {
  position: absolute;
  left: -23px;
  width: 40px;
  height: 3px;
}

.experts__item-text p {
  margin-bottom: 25px;
}
.experts__item-text p:last-child {
  margin-bottom: 0;
}
.experts__item-text span {
  font-weight: 700;
}
.experts__item:nth-child(even) {
   padding-right: 345px;
   padding-left: 0;
   margin-top: 70px;
 }
.experts__item:last-child {
  margin-bottom: 0;
}
.experts__item:nth-child(even) .experts__item-image-wrapper {
  right: 0;
  left: auto;
  bottom: 2px;
}
.experts__item:nth-child(even) .experts__item-image-wrapper {
  background-image: url(content/img/retina.png);
  background-position: -318px 0;
  width: 310px;
  height: 310px;
}
.experts__item:nth-child(even) .experts__item-image {
  bottom: 4px;
  left: 25px;
}
.experts__item:nth-child(even) .experts__item-title {
  right: auto;
  left: 27px;
  text-align: left;
}
.experts__item:nth-child(even) .experts__item-text {
  background-image: url(content/img/expert2-bg.png);
}
.experts__item:nth-child(even) .experts__item-text:before {
  right: -40px;
  left: auto;
}
.experts__item:nth-child(even) .experts__item-text:after {
  right: -41px;
  left: auto;
}
.experts__item-text:after {
  left: -25px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
h1,
h2,
h3,
h4,
h5,
h6 h7 h8 h9 h10 {
  margin: 0;
  padding: 0;
}
.no-padding {
  padding: 0;
}
.header {
  padding-bottom: 10px;
  text-align: center;
  position: fixed;
  z-index: 10;
  background-image: linear-gradient( 0deg, #ff226d 0%, #fa4545 100%);
  width: 100%;
  height: 80px;
}
.header-call {
  color: #ff0004;
  border-radius: 0 0 10px 10px;
  padding: 0 0 0 10px;
  display: inline-block;
  background: #00ffe4;
  font-size: 24px;
  font-weight: 900;
}
.header-call a {
  color: #000;
  text-shadow: 0 1px 1px #fff;
  border-radius: 0 0 10px 10px;
  padding: 10px 10px 10px 5px;
  display: inline-block;
  background: #00ffe4;
  font-size: 30px;
  font-weight: 900;
  transition: 0.5s;
}
.header-call a:hover {
  text-decoration: none;
  color: #000;
  text-shadow: 1px 1px 1px #fff;
  padding: 10px 25px 10px 15px;
}
.bottom-call {
  background-image: linear-gradient( 0deg, #ff226d 0%, #fa4545 100%);
  text-align: center;
  background-position: bottom;
  position: fixed;
  bottom: 0;
  border-top: solid 1px #000;
  padding: 10px 0;
  z-index: 9;
  width: 100%;
  color: white !important;
  font-size: 50px;
}
.bottom-call h1 {
  font-size: 24px;
  color: #000;
  font-weight: 900;
  display: inline-block;
}
.bottom-call a {
  color: #c00;
  padding: 10px 0;
}
.section1 {
  background: url(../images/section1-back.jpg) no-repeat center bottom;
  background-size: cover;
  border-bottom: solid 2px #000;
  padding-top: 100px;
}
.logo {
  padding: 0 0 20px;
  color: #00ffe4;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 40px;
  text-shadow: 3px 3px #ff0000;
  line-height: 50px;
}
.section1 p {
  color: #00ffe4;
  font-size: 26px;
  text-shadow: 0 1px 4px #000;
  text-align: center;
  line-height: 44px;
}
.section1 .productdesk {
  display: block;
}
.section1 .productdesk2 {
  display: none;
}
.productmob {
  display: none;
}
.section2 {
  background: #000000;
  padding: 15px 0 40px;
}
.section2 .points {
  color: #fff;
  font-size: 18px;
  padding: 15px 5px 15px 10px;
  line-height: 26px;
}
.section2 a {
  color: #000;
  box-shadow: 0 0 2px 4px #e05252;
  border-radius: 10px;
  padding: 10px 20px;
  display: inline-block;
  background: #00ffe4;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s;
}
.section2 a:hover {
  text-decoration: none;
  color: #000;
  text-shadow: 1px 1px 1px #fff;
  padding: 15px 30px;
}
.fotorow-img-responsive {
  display: none;
}
.section3 {
  padding-bottom: 20px;
}
.s5but {
  position: relative;
  display: inline-block;
  top: -11px;
  left: 0;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 700;
  background: #00ffe4;
  border-radius: 5px 5px;
  clear: both;
}
.caution {
  font-size: 18px;
  font-size: 1.8rem;
  color: red;
  font-weight: 700;
  padding-bottom: 5px;
}
.testi-heading {
  position: relative;
  left: -15px;
  background: #929292;
  padding: 10px 15px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  color: #fff;
  text-shadow: 0 1px 1px #353535;
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 10px;
  border-radius: 0 10px 10px 0;
}
.boldtext {
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 15px;
}
.section3 p {
  font-size: 18px;
}
.section3 a {
  color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  display: inline-block;
  text-shadow: 0 1px 1px #790000;
  background: #000000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s;
  margin-top: 20px;
}
.section3 a:hover {
  text-decoration: none;
  padding: 10px 20px;
}
.section4 {
  padding-bottom: 20px;
  background: #e3e3e3;
}
.section4 p {
  font-size: 18px;
}
.section4 a {
  color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  display: inline-block;
  text-shadow: 0 1px 1px #790000;
  background: #000000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s;
  margin-top: 20px;
}
.section4 a:hover {
  text-decoration: none;
  padding: 10px 20px;
}
.section5 {
  padding: 30px 0;
  background: #ec15a1;
}
.section5 h1 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  width: 50%;
  line-height: 79px;
}
.section5 h1 b {
  color: #00ffe4;
}
.section5separator {
  background: #fff;
  height: 1px;
  margin: 15px 0;
}
.priceItem {
  color: #fff;
  font-size: 26px;
  padding: 20px 0;
}
.priceItem span {
  color: #00ffe4;
  background: #000;
  padding: 10px;
  border-radius: 10px;
}
.pricemark {
  text-decoration: line-through;
  font-size: 26px;
  padding-top: 10px;
  color: #fff;
}
.pricemark2 {
  font-size: 74px;
  color: #00ffe4;
}
.section5 a {
  color: #000;
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 0 2px 4px #e05252;
  display: inline-block;
  text-shadow: 0 1px 1px #fffdba;
  background: #00ffe4;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s;
}
.section5 a:hover {
  text-decoration: none;
  padding: 10px 20px;
}
.stock-bg {
  padding: 10px;
}
.stock-bg h2 {
  font-size: 17px;
  color: #fff;
  text-shadow: 0 1px 1px #003f6b;
  text-transform: uppercase;
}
.stock-bg .text-box {
  margin: 4px 0 0;
}
.stock-bg .text-box h3 {
  font-size: 58px;
  float: left;
  color: #fff;
  padding-right: 5px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 1px #031c2e;
  margin-top: -9px;
}
.stock-bg .text-box .text-depart {
  margin-left: 5px;
}
.stock-bg .text-box .text-depart h4 {
  font-size: 23px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 1px 1px #000;
  line-height: 1;
}
.stock-bg .text-box .text-depart h4 span {
  font-size: 38px;
  display: block;
}
.clock-bg {
  padding: 14px 0;
}
.clock-bg .no-padding {
  border: 0;
}
.clock-bg h5 {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.clock-bg .myButton {
  background-color: #004474;
  border-radius: 8px;
  border: 3px solid #82ccff;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  padding: 4px 7px;
  text-decoration: none;
  text-shadow: 0 2px 0 #242e40;
  font-family: "Lato", sans-serif;
  font-weight: 800;
}
.clock-bg .myButton span {
  border-left: 1px solid #484848;
  padding-left: 4px;
}
.clock-bg .point {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  text-shadow: 1px 1px 1px #000;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.section6 {
  padding-bottom: 20px;
  background: #f9f9f9;
}
.section6 p {
  font-size: 18px;
}
.section6 a {
  color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  display: inline-block;
  text-shadow: 0 1px 1px #790000;
  background: #000000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s;
  margin-top: 20px;
}
.section6 a:hover {
  text-decoration: none;
  padding: 10px 20px;
}
.section7 {
  padding: 30px 0 10px;
  background: #ec15a1;
}
.section7 h1 {
  font-size: 60px;
  font-weight: 900;
  color: #00ffe4;
  padding-bottom: 30px;
}
.section7 h1 span {
  font-size: 40px;
}
.section7 h2 {
  color: #00ffe4;
  font-size: 18px;
  padding-bottom: 5px;
  padding-top: 10px;
  line-height: 28px;
}
.section7 p {
  color: #fff;
  padding-bottom: 20px;
  line-height: 28px;
}
.section8 {
  padding-bottom: 20px;
  background: #f9f9f9;
}
.section8 p {
  font-size: 18px;
}
.section8 a {
  color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  display: inline-block;
  text-shadow: 0 1px 1px #790000;
  background: #000000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s;
  margin-top: 20px;
}
.section8 a:hover {
  text-decoration: none;
  padding: 10px 20px;
}
.section9-header {
  color: #fff;
  background: #1b9f57;
  font-size: 45px;
  font-size: 4.5rem;
  padding: 15px;
  font-weight: 900;
  word-break: break-all;
  margin-bottom: 10px;
}
ul {
  list-style: none;
}
.section9 li {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed;
}
.section9 li .profil {
  float: left;
  width: 100px;
}
.section9 img {
  max-width: 70%;
  height: auto;
}
.section9 li .commentcontent {
  margin-left: 120px;
}
.time {
  float: left;
  width: 100%;
  margin-bottom: 5px;
}
.time > span {
  font-size: 13px;
  line-height: normal;
  float: left;
}
.commentcontent > p {
  margin: 0;
  line-height: normal;
  font-size: 14px;
  font-weight: 400;
}
.section10 {
  background: #ec15a1;
  padding-top: 30px;
  padding-bottom: 120px;
}
.section10 h1 {
  color: #00ffe4;
  width: 50%;
  line-height: 72px;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}
.section10 h1 span {
  color: #fff;
}
.section10 a {
  color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  display: inline-block;
  text-shadow: 0 1px 1px #790000;
  box-shadow: 0 0 2px 4px #ffe4e4;
  background: #000000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s;
  margin-top: 40px;
}
.section10 a:hover {
  text-decoration: none;
  padding: 10px 20px;
}
.priceItem2 {
  color: #fff;
  font-size: 26px;
  padding: 20px 0;
}
.priceItem2 span {
  color: #00ffe4;
  background: #000;
  padding: 10px;
  border-radius: 10px;
  margin: 0 5px;
}
input.inp,
select.inp {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #d5dde9;
  padding: 0 10px;
  color: #000 !important;
  font-family: "Open Sans";
  font-size: 16px;
  height: 48px;
  margin: 0 auto 10px;
  display: block;
  width: 100%;
}
.bigg {
  background: #00ffe4;
  border: 0;
  border-radius: 10px;
  width: 100%;
  line-height: 50px;
  font-size: 22px;
  font-size: 2.2rem;
  transition: 0.5s;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}
.bigg:hover {
  background: #383838;
  transform: scale(1.02);
  color: #fff;
}
.priceItem2 {
  color: #fff;
  line-height: 48px;
  font-size: 24px;
  padding: 20px 0;
}

@keyframes btn-ani {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

.btn-ani {
  animation: btn-ani 1s infinite;
}

@media (max-width: 768px) {
  .header-call {
    font-size: 18px;
    font-weight: 900;
  }
  .header-call a {
    font-size: 28px;
  }
  .section1 p {
    font-size: 25px;
  }
  .section1 .productdesk {
    display: none;
  }
  .section1 .productdesk2 {
    display: block;
  }
  .productmob {
    display: block;
  }
  .section2 a {
    font-size: 26px;
  }
  .section2 a:hover {
    padding: 15px 30px;
  }
  .section2 .section5 a {
    font-size: 20px;
  }
  .fotorow-img {
    display: none;
  }
  .fotorow-img-responsive {
    display: inline-block;
  }
  .text-right {
    text-align: center;
  }
  .priceItem {
    color: #fff;
    font-size: 16px;
    padding: 20px 0;
  }
  .section3 {
    padding-bottom: 40px;
  }
  .section5 {
    padding: 30px 0 45px;
  }
  .clock-bg h5 {
    font-size: 18px;
  }
  .section5 h1 {
    font-size: 40px;
    width: 90%;
    line-height: inherit;
  }
  .section7 h1 {
    font-size: 60px;
    font-weight: 900;
    color: #ff0;
    padding-bottom: 10px;
  }
  .section7 h1 span {
    font-size: 23px;
  }
  .section10 h1 {
    color: #ff0;
    width: 100%;
    line-height: 72px;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
  }
}

b {
  font-weight: 900;
  text-transform: uppercase;
  color: #ff0;
  text-shadow: 0 0 5px #000c;
}
.thankpage {
  background-color: #85ffbd;
  background-image: linear-gradient(45deg, #85ffbd 0%, #fffb7d 100%);
  text-shadow: 1px 1px #fff;
  font-family: "Arya", sans-serif;
}
.thanks {
  margin: 150px 0 100px;
  line-height: 1.8;
  color: #000;
  font-size: 19px;
}
.thanks h1,
.thanks h3 {
  margin-bottom: 30px;
  line-height: 1.8;
}
.thanks strong {
  color: #c00;
}
.thanks a {
  background-color: #eee;
  padding: 0 10px;
  color: #000;
  display: inline-block;
}
.thanks a strong {
  color: #000;
}
.thanks a:hover,
.thanks a:hover strong {
  background-color: #c00;
  color: #fff;
  text-shadow: none;
}
