
html {
    scroll-behavior: smooth;
}

/* button */

.button {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    width: 400px;
    height: 80px;
    border: none;
    text-shadow: 0 0 11px #0000008a;
    box-shadow: inset -1px 1px 12px rgba(0, 0, 0, 0.4), -2px 12px 10px rgba(0, 0, 0, 0.43);
    background: linear-gradient(348deg, #d91da4, #57b8d7);
    font-family: "AvenirNextCyr", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 80px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 30px;

    /* animation for scale */
    animation: pulse 3s ease-in-out infinite;
}

/* Анимация "пульсации" (увеличение) */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Анимированный блик */
.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    filter: blur(2px);
    animation: shine 2.5s ease-in-out infinite;
    pointer-events: none;
}
/* Анимация "блика" */
@keyframes shine {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.5;
    }
}


.form{
margin: 42px auto 50px;
    background: linear-gradient(325deg, #7f7f7f69, #9d9d9d40);
    padding: 20px 0px 30px;
    width: 96%;
    border-radius: 20px;
    box-shadow: inset -1px 1px 9px rgb(0 0 0 / 12%), -2px 12px 10px rgb(0 0 0 / 12%);
}


.otz{
     background: linear-gradient(348deg, #8353e06e, #3c72f28a);
    width: 96%;
    margin: 50px auto 0px;
    border-radius: 20px;
    color: #fff;
    text-shadow: 0 0 0px #838383a6;
    padding: 30px 0px 30px;
    box-shadow: inset -1px 1px 12px rgba(0, 0, 0, 0.4), -2px 12px 10px rgba(0, 0, 0, 0.43);
    width: 96%;
    border-radius: 20px;
}

.otz img {
    max-width: 96%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
}

.otz p {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 19px;
  text-align: center; /
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); 
  color: #ffffff;
}



/* styles */

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Black.woff2') format('woff2'),
        url('../fonts/Gilroy-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-HeavyItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-HeavyItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBoldItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Heavy.woff2') format('woff2'),
        url('../fonts/Gilroy-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.woff2') format('woff2'),
        url('../fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
        url('../fonts/Gilroy-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-BoldItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-BlackItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-MediumItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy-RegularItalic';
    src: url('../fonts/Gilroy-RegularItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-LightItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBold.woff2') format('woff2'),
        url('../fonts/Gilroy-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-UltraLight.woff2') format('woff2'),
        url('../fonts/Gilroy-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ThinItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-UltraLightItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-UltraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Thin.woff2') format('woff2'),
        url('../fonts/Gilroy-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* titles */

.title span{
  color:#fb6d2e;
}

h2.title {
  margin: 25px 25px 13px;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
      color: #000000;
  text-transform: uppercase;

}


.element p{

  margin: 10px 20px;

}

.element h2{
  margin: 40px 0 20px 0!important;
}

.element{
  padding:0px!important;
}
.description_section{
  padding:0px 0 0 0!important;
}

body {
  min-width: 480px;
  background: #eee;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333!important;
  cursor: default;
}

.payment-form .pf-options {
    display: flex;
    flex-direction: column;
    position: relative;
}

.pf-option.active .pf-content {
    display: block;
    border-radius: 0 0 6px 6px;
}

.pf-option .pf-content {
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    zoom: 1;
    position: relative;
    background-color: #fafafa;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    min-height: 100px;
    padding: 5px;
}

.pf-option .pf-content p {
    margin: 0 10px 15px;
    line-height: 1.8;
    font-size: 16px;
    color: #7a7a7a;
    font-style: italic;
}

.pf-option:first-child .pf-header {
    border-radius: 6px 6px 0 0;
}

.pf-option.active .pf-header {
    border-radius: 0;
    border-color: #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.pf-option .pf-header {
    position: relative;
    cursor: pointer;
    display: flex;
    background-color: #fff;
    color: inherit;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    min-height: 44px;
    align-items: center;
    text-align: start;
}

.pf-option .pf-header input {
    width: 18px;
    height: 18px;
    transition: all .2s ease-in-out;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 10px;
    box-shadow: 0 0 0 0 #f4743c inset;
    outline: 0;
    border-radius: 50%;
    color: inherit;
    font: inherit;
    -webkit-appearance: none;
    -webkit-font-smoothing: inherit;
    background: 0 0;
    line-height: normal;
    border: 1px solid #d9d9d9;
}

.advantages-style-1 h2 {
    font-size: 28px;    
	margin: 0 15px -10px;
    text-align: center;
    color: #333;
    text-transform: uppercase;
	line-height: 1.3;
  }

  .advantages-style-1 ul {
    list-style: none;
    padding: 0;
  }

  .advantages-style-1 li {    
    font-size: 19px;
    margin: 13px 17px -22px;
    color: #444;
    line-height: 1.5;
	padding-left: 14px;
  }

  .advantages-style-1 li::before {
    content: "⚡";
    margin-right: 9px;
    font-size: 25px;       
  }


h2.title.advantages-style-1 {
  font-size: 26px;
  color: #444;
  text-transform: none;
  margin-top: 10px;
}

.advantages-style-1 li b {
  font-weight: bold;  
  display: inline; /* или inline-block, если нужно */
}




  @media (max-width: 600px) {
    .advantages-style-1 {
      padding: 20px 15px;
    }

    .advantages-style-1 h2 {
      font-size: 22px;
    }
   
  }

.advantages-style-2 h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
	margin-top: 30px; /* можно больше или меньше по вкусу */
    color: #333;
    text-transform: uppercase;
  }

  .advantages-style-2 ul {
    list-style: none;
    padding: 0;
  }

  .advantages-style-2 li {
    display: flex;
    align-items: flex-start;
    font-size: 19px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.5;
	padding-left: 14px;
  }

  .advantages-style-2 li::before {
    content: "🌀️";
    margin-right: 12px;
    font-size: 25px;
    line-height: 1.5;
    flex-shrink: 0;
  }
  .advantages-style-2 li b::after {
  content: "\00A0"; /* неразрывный пробел */
}

  @media (max-width: 600px) {
    .advantages-style-2 {
      padding: 20px 15px;
    }

   
  }






 .main_wrapper {
  margin: 0 auto;
  width: 480px;
  background: linear-gradient(to right, #b1a19a70, #babdff36);
}

section {
  padding: 30px 0;
}


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

.otzivSlide {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

img {
    max-width: 96%;
    height: auto;
    border-radius: 20px;
    box-shadow: inset -1px 1px 12px rgba(0, 0, 0, 0.4), -2px 5px 10px rgba(0, 0, 0, 0.43);
}

b {
  font-weight: 700;
}

.owl-height {
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  -moz-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}





/* header */

.offer_section {
  padding: 0 0 ;
}

.offer_section.offer1 {
  background: #333;
}

.offer_section .title_block {
  text-transform: uppercase;
  text-align: center;
}

.offer_section.offer3 .title_block {
  display: flex;
  flex-direction: column;
  padding: 15px 10px 7px 15px;
  background: #036ee6;
  color: #fff;
  text-align: center;
}

.offer_section .title_block .main_title {
  font-weight: 700;
  font-size: 35px;
  line-height: 47px;
  text-align: center;
}

.offer_section.offer1 .title_block .main_title {
  padding: 12px 0;
  background: #41944b;
  color: #fff;
}

.offer_section.offer2 .title_block .main_title {
  padding: 12px 0;
}

.offer_section .title_block .subtitle {
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    text-align: center;
    /* margin-left: -11px; */
    width: 100%;
    padding-bottom: 6px;
}

.offer_section.offer1 .title_block .subtitle {
  padding: 10px 0;
  color: #fff;
}

.offer_section.offer2 .title_block .subtitle {
  padding: 10px 0;
  background: #41944b;
  color: #fff;
}

.offer_image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.offer_section.offer3 .image_block {
  position: relative;
}

.offer_section.offer3 .discount_block {
  padding: 18px 0 0;
  width: 79px;
  height: 101px;
  background: url("../images/offer3__discount_bg.png") center no-repeat;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  right: 20px;
}

.offer_section.offer3 .discount_block .value {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

.offer_section.offer3 .discount_block .text {
  line-height: 20px;
}

.offer_section.offer1 .price_block {
  background: #fff;
  text-align: center;
}

.offer_section.offer1 .price_item {
  float: left;
  padding: 16px 0 0;
  width: 170px;
  height: 80px;
}

.offer_section.offer1 .price_item.new {
  background: #41944b;
  color: #fff;
}

.offer_section.offer1 .price_item .text {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 14px;
}

.offer_section.offer1 .price_item .value {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
}

.offer_section.offer1 .price_item.old .value {
  text-decoration: line-through;
}

.offer_section.offer1 .discount_block {
  float: left;
  padding: 12px 0 0;
  width: 140px;
  height: 80px;
  background: #ffd800;
  position: relative;
}

.offer_section.offer1 .discount_block:before,
.offer_section.offer1 .discount_block:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
}

.offer_section.offer1 .discount_block:before {
  border-top: 40px solid #ffd800;
  border-bottom: 40px solid #ffd800;
  border-left: 20px solid #fff;
  left: -10px;
}

.offer_section.offer1 .discount_block:after {
  border-top: 40px solid #41944b;
  border-bottom: 40px solid #41944b;
  border-left: 20px solid #ffd800;
  right: -10px;
}

.offer_section.offer1 .discount_block .text {
  margin: 0 0 5px;
  line-height: 16px;
  letter-spacing: 2px;
}

.offer_section.offer1 .discount_block .value {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
}

.offer_section.offer2 .price_block {
  margin: -16px 0 25px;
  height: 126px;
  background: url("../images/offer2__price_bg.png")
    center no-repeat;
  text-align: center;
  position: relative;
}

.offer_section.offer2 .price_item {
  float: left;
  padding: 40px 0 0;
  width: 170px;
}

.offer_section.offer2 .price_item .text {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
}

.offer_section.offer2 .price_item .value {
  font-size: 34px;
  line-height: 34px;
}

.offer_section.offer2 .price_item.old .value {
  text-decoration: line-through;
}

.offer_section.offer2 .price_item.new .value {
  font-weight: 700;
}

.offer_section.offer2 .discount_block {
  float: left;
  padding: 33px 0 0;
  width: 140px;
  font-weight: 700;
  color: #fff;
}

.offer_section.offer2 .discount_block .text {
  margin: 0 0 5px;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 2px;
}

.offer_section.offer2 .discount_block .value {
  font-size: 40px;
  line-height: 40px;
}

.offer_section.offer3 .price_block {
  padding: 0 17px;
}

.offer_section.offer3 .price_item {
  float: left;
      padding: 35px 10px 0 26px;
  width: 50%;
  /* height: 90px; */
  text-align: left;
color: #1a1a1ac7;

}
.offer_section.offer3 .price_item.old {
    width: 45%;
}
.offer_section.offer3 .price_item:last-child {
  border: none;
}

.offer_section.offer3 .price_item.new {
  padding-top: 20px;
  float: right;
}

.offer_section.offer3 .price_item.new .text {
  margin: 0 0 5px;
  color: #202020;
}
.offer_section.offer3 .price_item .text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 14px;
}

.offer_section.offer3 .price_item.new .text {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.offer_section.offer3 .price_item.new .text span {
  padding: 4px 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #ee3737;
  color: #fff;
  font-weight: 400;
  line-height: 12px;
}

.offer_section.offer3 .price_item.old .value {
  font-weight: 700;
  font-size: 40px;
  line-height: 30px;
  text-decoration: line-through;
    color: #636363c7;
}

.sale_price {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;

  color: #202020;
}


.offer_section.offer3 .price_item.new .value {
  font-weight: 700;
  font-size: 46px;
  line-height: 51px;

  color: #1e1e1ee3;
}


.offer_section ul li,


.offer_section.offer1 ul li {
  color: #fff;
}


.offer_section.offer1 .timer_block {
  margin: 25px auto;
  width: 400px;
  color: #fff;
  text-align: center;
}

.offer_section.offer1 .timer_block p {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 18px;
}

.offer_section.offer1 .timer_item {
  float: left;
  margin: 0 32px 0 0;
  width: 112px;
  position: relative;
}

.offer_section.offer1 .timer_item:last-child {
  margin: 0;
}

.offer_section.offer1 .timer_item:before {
  display: block;
  content: ":";
  width: 32px;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  right: -32px;
}

.offer_section.offer1 .timer_item:last-child:before {
  display: none;
}

.offer_section.offer1 .timer_item .count {
  margin: 0 0 10px;
  height: 60px;
  font-weight: 700;
  font-size: 25.2782px;
  line-height: 31px;
}

.offer_section.offer1 .timer_item .count span {
  display: block;
  float: left;
  margin: 0 4px 0 0;
  width: 54px;
  height: 60px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.3)),
    color-stop(50%, rgba(0, 0, 0, 0.3)),
    color-stop(50%, #4a4a4a),
    color-stop(51%, #4a4a4a),
    color-stop(51%, rgba(0, 0, 0, 0.3)),
    to(rgba(0, 0, 0, 0.3))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    #4a4a4a 50%,
    #4a4a4a 51%,
    rgba(0, 0, 0, 0.3) 51%,
    rgba(0, 0, 0, 0.3) 100%
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    #4a4a4a 50%,
    #4a4a4a 51%,
    rgba(0, 0, 0, 0.3) 51%,
    rgba(0, 0, 0, 0.3) 100%
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    #4a4a4a 50%,
    #4a4a4a 51%,
    rgba(0, 0, 0, 0.3) 51%,
    rgba(0, 0, 0, 0.3) 100%
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    #4a4a4a 50%,
    #4a4a4a 51%,
    rgba(0, 0, 0, 0.3) 51%,
    rgba(0, 0, 0, 0.3) 100%
  );
  -webkit-box-shadow: inset 0 -2px 0 #4a4a4a;
  -moz-box-shadow: inset 0 -2px 0 #4a4a4a;
  box-shadow: inset 0 -2px 0 #4a4a4a;
}

.offer_section.offer1 .timer_item .count span:last-child {
  margin: 0;
}

.offer_section.offer1 .timer_item .text {
  line-height: 16px;
}

.offer_section.offer2 .timer_block {
  margin: 0 auto 25px;
  width: 400px;
  text-align: center;
}

.offer_section.offer2 .timer_block p {
  margin: 0 0 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
}

.offer_section.offer2 .timer_item {
  float: left;
  margin: 0 32px 0 0;
  width: 112px;
  position: relative;
}

.offer_section.offer2 .timer_item:last-child {
  margin: 0;
}

.offer_section.offer2 .timer_item:before {
  display: block;
  content: ":";
  width: 32px;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  color: #41944b;
  text-align: center;
  position: absolute;
  top: 0;
  right: -32px;
}

.offer_section.offer2 .timer_item:last-child:before {
  display: none;
}

.offer_section.offer2 .timer_item .count {
  margin: 0 0 6px;
  height: 60px;
  font-weight: 700;
  font-size: 36px;
  line-height: 60px;
  color: #41944b;
}

.offer_section.offer2 .timer_item .count span {
  display: block;
  float: left;
  margin: 0 4px 0 0;
  width: 54px;
  height: 60px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #f5f5f5;
}

.offer_section.offer2 .timer_item .count span:last-child {
  margin: 0;
}

.offer_section.offer2 .timer_item .text {
  line-height: 16px;
}

.offer_section.offer3 .timer_block {
  padding: 23px 10px 7px 20px;
  margin-bottom: 25px;
}

.offer_section.offer3 .timer_block p {
  float: left;
  margin: 6px 0 0;
  padding: 0 0 0 45px;
  width: 170px;
  background: url("../fonts/offer_benefit3.svg") left center no-repeat;
  background-size: contain;
  font-size: 14px;
  line-height: 16px;
}

.offer_section.offer3 .timer {
  float: right;
  border-bottom: 2px solid;
  padding-bottom: 8px;
}

.offer_section.offer3 .timer_item {
  float: left;
  width: 60px;
  text-align: center;
  margin-right: 10px;
}
.offer_section.offer3 .timer_item:last-child{
    margin-right: 0;
}
.offer_section.offer3 .timer_item .text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 12px;
}

.offer_section.offer3 .timer_item .count {
  font-weight: 700;
  font-size: 40px;
  line-height: 30px;
  position: relative;
}

.offer_section.offer3 .timer_item .count:before {
  display: block;
  content: ":";
  width: 10px;
  line-height: 24px;
  position: absolute;
  top: 0;
  right: -8px;
}

.offer_section.offer3 .timer_item:last-child .count:before {
  display: none;
}

.offer_section.offer3 .benefits_list {
  padding: 12px 0 12px 18px;
  background: #1bbfdf;
  color: #fff;
}

.offer_section.offer3 .benefits_list .benefit_item {
  float: left;
  padding: 0 0 0 44px;
  width: 160px;
  font-size: 14px;
  line-height: 16px;
  position: relative;
}

.offer_section.offer3 .benefits_list .benefit_item:last-child {
  width: 130px;
}

.offer_section.offer3 .benefits_list .benefit_item:before {
  display: block;
  content: "";
  width: 34px;
  height: 34px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white center no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
      box-shadow: 0 0 20px 1px #00000017;
}

.offer_section.offer3 .benefits_list .benefit_item:nth-child(1):before {
  background-image: url("../fonts/offer_benefit1.svg");
}

.offer_section.offer3 .benefits_list .benefit_item:nth-child(2):before {
  background-image: url("../fonts/offer_benefit2.svg");
}

.offer_section.offer3 .benefits_list .benefit_item:nth-child(3):before {
  background-image: url("../fonts/offer_benefit3.svg");
}

.products_count {
  margin: 20px 0 0;
  text-align: center;
}

.offer_section.offer1 .products_count {
  color: #fff;
}

.products_count span {
  margin: 0 3px;
  padding: 3px 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #41944b;
  color: #fff;
}

.offer_section .field {
  display: block;
  margin: 0 auto 20px;
  padding: 0 20px 0 80px;
  width: 400px;
  height: 66px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 25px;
  background-color: #ffffff;
  font-family: "AvenirNextCyr", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #333;
      box-shadow: inset -1px 1px 9px rgb(0 0 0 / 12%), -2px 3px 10px rgb(0 0 0 / 12%);
}

.offer_section.offer1 .field {
  border: none;
  background-color: #fff;
}

.offer_section .field[name="name"] {
  margin-top: 25px;
  background-image: url("../images/offer__name_icon.png");
  background-position: 23px center;
  background-repeat: no-repeat;
}

.offer_section .field[name="phone"] {
  margin-top: 25px;
  background-image: url("../images/offer__phone_icon.png");
  background-position: 20px center;
  background-repeat: no-repeat;
}


.offer_section .field[name="product"] {
  margin-top: 25px;
  background-image: url("../images/product.png");
  background-position: 20px center;
  background-repeat: no-repeat;
}



.offer_section .field::-webkit-input-placeholder {
  opacity: 1;
  color: #333;
}

.offer_section .field:-moz-placeholder {
  opacity: 1;
  color: #333;
}

.offer_section .field::-moz-placeholder {
  opacity: 1;
  color: #333;
}

.offer_section .field:-ms-input-placeholder {
  opacity: 1;
  color: #333;
}

.offer_section .field:focus::-webkit-input-placeholder {
  opacity: 0;
}

.offer_section .field:focus:-moz-placeholder {
  opacity: 0;
}

.offer_section .field:focus::-moz-placeholder {
  opacity: 0;
}

.offer_section .field:focus:-ms-input-placeholder {
  opacity: 0;
}


/* video */


.video {
    margin: 40px auto 25px;
    width: 100%;
    max-width: 440px;
}

.video .player {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    background: transparent;
    text-align: center;
    box-shadow: 0 0 11px #000000cc;
}

/* Важно: стили для самого видео */
.video .player video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 20px; /* если нужно, чтобы скругление применялось и к самому видео */
}

/* для продвинутого видео */

.video-wrapper {
  position: relative;
  display: inline-block;
  max-width: 440px;
  width: 100%;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}


/* slider */

.slider {
  position: relative;
}

/* Общие стили стрелок */
.slider .owl-prev,
.slider .owl-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%; /* Центрирование по вертикали */
  transform: translateY(-50%); /* Коррекция: точно по центру */
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14) url('../images/slider__arrows.png') no-repeat center center;
  background-size: 200%; /* Чтобы влезло два значка — влево и вправо */
  z-index: 5;
}

/* Левая стрелка */
.slider .owl-prev {
  left: 20px;
  background-position: left center;
}

/* Правая стрелка */
.slider .owl-next {
  right: 20px;
  background-position: right center;
}

/* image */

img.image {
  display: block;
}

/* description */

.description_section .text_block li
 {
  margin: 0 40px 20px;
  padding: 0 0 6 30px;
  /*background: url("../fonts/tick.svg") left 1px no-repeat;*/
  flex: 1 0 40%;
  font-size: 21px;
  max-width: 90%;
  background-size: 20px;
      text-align: left;
}


.description_section img {
    width: 460px;
  display: block;
  margin: 22px auto 30px;
}
.description_section .products_count {
    margin-bottom: 30px;
}
.description_section .image_block img {
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.description_section .text_block {
  margin: 0 0 30px;
}

.description_section .text_block p {
  margin:47px 20px 30px;
      font-size: 30px;
    padding: 0px 25px;
        color: #1a1a1ac7;
        font-weight: 400;
}

.description_section .text_block p:last-child {
  margin: 10 10px;
}

.description_section .benefit {
  background: #1bbfdf;
  border-radius: 5px;
  padding: 20px 5px;
  margin: 0 20px 15px;
}

.description_section .benefit .benefit_text {
  text-align: center;
  font-weight: 400;
  color: white;
}


/* characteristics 1 */

.characteristics_list1 {
  margin: 0 20px;
}

.characteristics_list1 .characteristic_item {
  display: table;
  margin: 0 0 4px;
  width: 100%;
  height: 64px;
  border-left: 3px solid #1396bf;
  background: #f5f5f5;
}

.characteristics_list1 .characteristic_item:last-child {
  margin: 0;
}

.characteristics_list1 .characteristic_item .text {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px;
  font-weight: 700;
}

.characteristics_list1 .characteristic_item .value {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px 0 0;
  text-align: right;
}

/* characteristics 2 */

.characteristics_list2 {
  margin: 0 20px;
  font-size: 0;
  line-height: 0;
  letter-spacing: -1px;
}

.characteristics_list2 .characteristic_item {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px 15px 0;
  padding: 0 0 0 30px;
  width: 210px;
  background: url("../images/blue_tick_icon.png") left 2px no-repeat;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
}

.characteristics_list2 .characteristic_item:nth-child(even) {
  margin: 0 0 15px;
}

.characteristics_list2 .characteristic_item:nth-last-child(2) {
  margin: 0 20px 0 0;
}

.characteristics_list2 .characteristic_item:last-child {
  margin: 0;
}

.characteristics_list2 .characteristic_item .text {
  font-weight: 700;
}

/* benefits 1 */

.benefits_list1 {
  font-size: 0;
  line-height: 0;
  letter-spacing: -1px;
  text-align: center;
}

.benefits_list1 .benefit_item {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px 30px 0;
  width: 210px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
}

.benefits_list1 .benefit_item:nth-child(even) {
  margin: 0 0 30px;
}

.benefits_list1 .benefit_item:nth-last-child(2) {
  margin: 0 20px 0 0;
}

.benefits_list1 .benefit_item:last-child {
  margin: 0;
}

.benefits_list1 img {
  display: block;
  margin: 0 auto 15px;
  width: 150px;
  border: 3px solid #e6e6e6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #e6e6e6;
}

.dark_theme .benefits_list1 img {
  border: 3px solid #fff;
  background: #fff;
}

.benefits_list1.image_rounded img {
  width: 170px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.benefits_list1 h4 {
  font-weight: 700;
}

.dark_theme .benefits_list1 h4 {
  color: #ffd800;
}

.benefits_list1 h4 + p {
  margin: 5px 0 0;
}



/* comparison */

.comparison_section {
  padding: 30px 0 0;
}

.comparison_section h2.title {
  padding: 0 20px;
}

.comparison_section .titles_block h4 {
  float: left;
  margin: 0 4px 0 0;
  padding: 20px 0;
  width: 238px;
  background: #333;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.comparison_section .titles_block h4:last-child {
  margin: 0;
  background: #41944b;
}

.comparison_section .images_block {
  margin: 0 0 4px;
}

.comparison_section .images_block img {
  display: block;
  float: left;
  margin: 0 4px 0 0;
  width: 238px;
}

.comparison_section .images_block img:last-child {
  margin: 0;
}

.comparison_section .row {
  display: table;
  margin: 0 0 4px;
  width: 100%;
}

.comparison_section .row:last-child {
  margin: 0;
}

.comparison_section .row .column {
  display: table-cell;
  vertical-align: top;
  padding: 10px 20px;
  width: 50%;
  border-right: 2px solid #fff;
  background: #f5f5f5;
}

.comparison_section .row .column:last-child {
  border-right: none;
  border-left: 2px solid #fff;
}

.comparison_section .row:last-child .column:first-child {
  padding-bottom: 16px;
  -webkit-box-shadow: 0 -6px 0 0 #333 inset;
  -moz-box-shadow: 0 -6px 0 0 #333 inset;
  box-shadow: 0 -6px 0 0 #333 inset;
}

.comparison_section .row:last-child .column:last-child {
  padding-bottom: 16px;
  -webkit-box-shadow: 0 -6px 0 0 #41944b inset;
  -moz-box-shadow: 0 -6px 0 0 #41944b inset;
  box-shadow: 0 -6px 0 0 #41944b inset;
}


/* reviews stats */

.reviews_stats_block {
  margin: 0 0 40px;
  text-align: center;
}

.reviews_stats_block .line {
  margin: 5px auto 0;
  width: 330px;
  height: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #e6e6e6;
  overflow: hidden;
}

.reviews_stats_block .line:before {
  display: block;
  content: "";
  width: 97%;
  height: 10px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  background: #41944b;
}

/*order_steps*/

.order_steps_list1 .number {
	display: none;
}
.order_steps_list1 .step_item {
    float: left;
    margin: 0 10px 12px 0;
    padding: 23px 20px 10px 30px;
    width: 48%;
    min-height: 140px;
    height: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 15px;
    /* background: #31696a; */
    background: linear-gradient(92deg, #08080696 13.54%, #5469a3fa 85.29%);
    -webkit-box-shadow: 0 2px 0 #d9d9d9;
    -moz-box-shadow: 0 2px 0 #d9d9d9;
    box-shadow: 0 2px 0 #d9d9d9;
    position: relative;
}

.dark_theme .order_steps_list1 .step_item {
	background: #fff;
	-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
	color: #333;
}

.order_steps_list1 .step_item:nth-child(2) {
   /* background: #31696a;*/
    /* color: white; */
     background: linear-gradient(92deg, #08080696 13.54%, #5469a3fa 85.29%);
}

.order_steps_list1 .step_item:nth-child(3) {
   /* background: #31696a;*/
    /* color: white; */
     background: linear-gradient(92deg, #08080696 13.54%, #5469a3fa 85.29%);
}

.order_steps_list1 .step_item:nth-child(2) h4 {
	/* color:white; */
}

.order_steps_list1 .step_item:nth-child(3) h4 {
	/* color:white; */
}

.order_steps_list1 .step_item:nth-child(even) {
	margin: 0 0 11px;
}

.order_steps_list1 .step_item:before {
	display: block;
	content: '';
	width: 32px;
	height: 32px;
	background: center no-repeat;
	position: absolute;
	top: 19px;
	right: 19px;
}

.order_steps_list1 .box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 10px;
}

.order_steps_list1 .step_item:nth-child(1):before {
	background-image: url(../images/order_steps1__step1_icon.png);
}

.order_steps_list1 .step_item:nth-child(2):before {
	background-image: url(../images/order_steps1__step2_icon.png);
}

.order_steps_list1 .step_item:nth-child(3):before {
	background-image: url(../images/order_steps1__step3_icon.png);
}

.order_steps_list1 .step_item:nth-child(4):before {
	background-image: url(../images/order_steps1__step4_icon.png);
}

@media (max-width: 440px) {
	.order_steps_list1 .box {
		padding: 0 15px;
	}
	.order_steps_list1 .step_item,
	.order_steps_list1 .step_item:nth-child(even) {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

.order_steps_list1 .step_item h4 {
    margin: 0 0 7px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
}

.order_steps_list1 .step_item p {
    font-size: 16px;
    color: #fff;
}

.order_steps_list1 .step_item h4:after {
	display: block;
	content: '';
	margin: 12px 0 0;
	width: 30px;
	height: 2px;
	background: linear-gradient(92deg, #08080696 13.54%, #5469a3fa 85.29%);
}

.phone-text {
  text-align: center;
  font-size: 16px; 
  color: #333;
  margin: 0;
  line-height: 1.4;
  margin-top: 20px;
}



/* footer */

.footer_section {
  padding: 25px 0;
  background: #f2f2f2;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin-top: 30px;
}

