@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
   Убираем внутренние отступы слева тегам списков,
   у которых есть атрибут class
  */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
   Убираем внешние отступы body и двум другим тегам,
   у которых есть атрибут class
  */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
   Убираем внешние отступы вертикали нужным тегам,
   у которых есть атрибут class
  */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

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

h2 {
  font-size: 33px;
}

h3 {
  font-size: 25px;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
   Убираем стандартный маркер маркированному списку,
   у которого есть атрибут class
  */
:where(ul[class]) {
  list-style: none;
}

/**
   Обнуляем вертикальные внешние отступы параграфа,
   объявляем локальную переменную для внешнего отступа вниз,
   чтобы избежать взаимодействие с более сложным селектором
  */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
  font-size: 20px;
}

/**
   Внешний отступ вниз для параграфа без атрибута class,
   который расположен не последним среди своих соседних элементов
  */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
   Упрощаем работу с изображениями
  */
img {
  display: block;
  max-width: 85%;
  margin: 0 auto;
}

/**
   Наследуем свойства шрифт для полей ввода
  */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  height: 100%;
}

/**
   Плавный скролл
  */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  min-height: 100%;
  /**
     Унифицированный интерлиньяж
    */
  line-height: 1.3;
  font-family: Arial, Helvetica, sans-serif;
}

/**
   Приводим к единому цвету svg-элементы
  */
svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

/**
   Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
svg * {
  transition-property: fill, stroke;
}

/**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  display: contents;
}

body {
  margin: 0;
  padding: 0;
}

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

.align-center {
  align-items: center;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.section-smoking {
  margin-top: 40px;
}
.section-smoking-top {
  background-color: cornsilk;
  padding: 20px 0;
  margin-bottom: 60px;
}
.section-smoking img, .section-why img {
  max-width: 285px;
}
.section-why {
  background-color: cornsilk;
  padding: 20px 0 50px;
}
.section-forget {
  border: 1px solid #000;
  background-color: red;
  color: #fff;
  padding-block: 40px;
  margin-top: -50px;
}
.section-forget h2 {
  margin-bottom: 40px;
}
.section-forget img {
  max-width: 70%;
}
.section-form {
  margin: 20px 0;
}
.section-form h3,
.section-form p {
  font-weight: 700;
}
.section-how {
  background-color: cornsilk;
  padding: 40px 0;
}
.section-how h2 {
  margin-bottom: 40px;
}
.section-sertif {
  background-color: red;
  color: #fff;
  padding: 20px 0;
}
.section-sertif h2 {
  margin-bottom: 40px;
}
.section-sertif img {
  max-width: 50%;
}
.section-faq {
  background-color: #e9e9e9;
  margin-top: 60px;
}
.section-faq p {
  font-size: 15px;
}

.small-wide {
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flex-between {
  justify-content: space-between;
}

.icon-check {
  fill: #097479;
}

.header__top {
  background-color: red;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding-block: 15px;
  border: 1px solid #000;
  margin-bottom: 40px;
}

.product__left {
  max-width: 50%;
  margin: 0 auto;
}
.product__right {
  max-width: 50%;
}
.product__img {
  max-width: 60%;
}
.product__name {
  max-width: 620px;
  font-size: 33px;
  font-weight: 700;
  border-bottom: 3px solid #097479;
}
.product__list {
  max-width: 100%;
  margin: 30px auto 70px;
}
.product__price {
  font-size: 33px;
  font-weight: 700;
  margin-top: 60px;
}
.product__packs {
  font-size: 28px;
  color: grey;
  font-weight: 700;
}
.product__rating {
  max-width: 50%;
  margin: unset;
}
.product__list-item {
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 28px;
  color: #494949;
  font-size: 1.65rem;
  letter-spacing: .03rem;
  font-weight: 700;
}
.product__list-item:last-child {
  margin-bottom: 0;
}
.product__slider {
  max-width: 85%;
  margin: 0 auto;
}

.smoking {
  text-align: center;
  margin: 0 auto;
}
.smoking__benefits {
  margin-bottom: 60px;
  gap: 0 20px;
}
.smoking__title {
  font-size: 25px;
}
.smoking__text {
  max-width: 605px;
  font-size: 20px;
  margin-top: 40px;
}
.smoking__benefits-left {
  max-width: 540px;
}
.smoking__benefits-title {
  margin-bottom: 15px;
}
.smoking__btn {
  max-width: 40% !important;
  margin: 0 auto;
}

.smoking__channels {
  max-width: 85% !important;
  margin: 0 auto;

}
@media(min-width: 1024px) {
  .smoking__channels {
    max-width: 1000px !important;
    margin: 0 auto;
    width: auto;
  }
}
.smoking__quit {
  gap: 0 30px;
}

.why__wrap {
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.why__right {
  max-width: 66%;
}

.quantity {
  padding: 40px 0 0;
}
.quantity__images {
  justify-content: flex-end;
}
.quantity__images-big img {
  max-width: 100%;
  height: 69%;
}
.quantity__images-small img {
  max-width: 151px;
  margin-left: auto;
}
.quantity__title {
  max-width: 540px;
}

.number-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.number-wrapper:last-child {
  margin-bottom: 0;
}

.number {
  font-size: 48px;
  font-weight: bold;
  z-index: 1;
  position: relative;
  letter-spacing: 2px;
}

.circle {
  position: absolute;
  top: -19px;
  left: 298px;
  width: 100px;
  height: 100px;
}

.circle circle {
  fill: none;
  stroke: green;
  stroke-width: 5;
  stroke-dasharray: 0 296;
  stroke-dashoffset: 0;
  animation: drawCircle 2s linear forwards;
  animation-delay: 2s;
  animation-iteration-count: infinite;
}

@keyframes drawCircle {
  to {
    stroke-dasharray: 296 0;
  }
}
.line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 100px;
  height: 100px;
  right: -4px;
}

.line line {
  stroke: red;
  stroke-width: 5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 1s linear forwards infinite;
  animation-delay: 1s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.form__top {
  background-color: red;
  color: yellow;
  padding: 10px 0;
  margin-bottom: 40px;
}
.form__cont {
  align-items: center;
  border: 1px solid #000;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.form__left {
  text-align: left;
  max-width: 40%;
}
.form img {
  max-width: 90%;
  margin: unset;
}
.form__right {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form__right h2 {
  color: red;
  margin-bottom: 38px;
  font-size: 38px;
}
.first-link {
  text-align: center;
  display: block;
  text-decoration: none;
  margin-right: 10px;
}


@media(max-width: 1170px) {
  .form__cont {
    max-width: 90%;
  }
  .form__right h2 {
    color: red;
    margin-bottom: 30px;
    font-size: 31px;
  }
}

.prod-number {
  color: #fff;
}
.prod-number a {
  color: inherit;
  text-decoration: underline;
}

.how__left, .how__right {
  max-width: 80%;
}
.how__right {
  position: relative;
}
.how__arrow {
  position: absolute;
  right: -80px;
  top: 120px;
  transform: rotate(75deg);
}
.how__days {
  position: absolute;
  right: -95px;
  top: 120px;
  font-size: 20px;
}

.red {
  color: red;
}

@media (max-width: 1200px) {
  .how__left,
  .how__right {
    max-width: 50%;
    margin-right: auto;
  }
  .how__first-img {
    max-width: 60%;
    margin-right: auto;
  }
}
@media (max-width: 992px) {
  h3 {
    font-size: 20px;
  }
  .how__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .how__wrap:not(:last-child) {
    margin-bottom: 60px;
  }
  .how__days, .how__arrow {
    display: none;
  }
  .how__left,
  .how__right {
    max-width: 100%;
    margin: 0 auto;
  }
  .quantity {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .quantity__images {
    flex-direction: column;
  }
  .quantity__images-small img {
    max-width: 80%;
    margin: 0 auto 20px;
  }
  .quantity__images-big img {
    max-width: 80%;
    height: auto;
  }
  .quantity__title {
    text-align: center;
    margin-bottom: 20px;
  }
  .section-forget {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .product {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 60px;
  }
  .product__left, .product__right {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .product__name {
    max-width: 100%;
  }
  .product__rating {
    margin: 0 auto;
  }
  .product__list-item {
    font-size: 1rem;
  }
  .product__name {
    font-size: 23px;
  }
  .product h2 {
    font-size: 23px;
  }
  .product__packs {
    font-size: 20px;
  }
  .product h1 {
    font-size: 25px;
  }
  .smoking__quit {
    flex-direction: column;
    align-items: center;
    gap: 30px 0;
  }
  .smoking__btn {
    max-width: 85% !important;
  }
  .smoking__text {
    max-width: 100%;
  }
  .smoking__benefits {
    flex-direction: column;
    align-items: center;
    gap: 30px 0 !important;
    margin-bottom: 30px;
  }
  .smoking__benefits-right {
    order: 2;
  }
  .smoking__benefits-left {
    max-width: 100%;
    text-align: center;
  }
  .section-smoking img {
    max-width: 60%;
  }
  .section-forget img {
    max-width: 100%;
  }
  .section-why img {
    max-width: 160px;
  }
  h2 {
    font-size: 25px;
  }
  .why__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px 0;
    margin: 50px 0;
  }
  .why__right {
    max-width: 100%;
  }
  .why-mob {
    order: -1;
  }
  .circle {
    top: -26px;
    left: 223px;
  }
  .number {
    font-size: 35px;
  }
  .form img {
    max-width: 80%;
    margin: 0 auto;
  }
  .form__left {
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
  }
  .form__cont {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .product__img {
    max-width: 50%;
  }
}/*# sourceMappingURL=style.css.map */







.elementor-toggle .elementor-tab-content {
  display: block !important;
}



@media(max-width: 480px) {
  .form img {
    max-width: 97%;
    margin: 0 auto;
  }
  .form__right h2 {
    color: red;
    margin-bottom: 17px;
    font-size: 24px;
  }
}


.content-img2 {
  display: none;
  margin-top: 30px;
}
.content-img {
  display: block;
  margin-top: 50px;
}


.content-img__list {
  display: flex;
  justify-content: space-between;
}

.content-img__list_item {
  list-style-type: none !important;
  border-radius: 24px;
  background: rgb(255, 255, 255) linear-gradient(rgba(18,18,18, .04), rgba(18,18,18, .04));
}

.content-img__list_item {
  width: 31%;
  position: relative;
}

.content-img__img {
  padding-top: 25px;
  margin: 0 25px;
}

.content-img__img img {
  max-width: unset;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.content-img__block {
  position: relative;
  padding: 1.25rem;
}

.content-img__block_svg {
  font-size: 4rem;
  position: absolute;
  top: 0;
  right: 1.15rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
  color: rgba(253, 251, 247, .9);
  background-color: rgb(9, 116, 121);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-img__block_svg svg {
  width: 55%;
}

.content-img__block h3{
  margin-top: .5rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.rte p {
  text-align: center;
  font-size: 1.01rem;
  line-height: 28.5px;
  letter-spacing: .6px;
}

@media(max-width: 1087px) {

  .product__list {
    max-width: 100%;
    margin: 30px auto 25px;
  }
}

@media(max-width: 991px) {
  body {
    overflow-x: hidden;
  }
  .content-img__img {
    padding-top: 25px;
    margin: 0 12px;
  }
  .content-img__block {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem;
  }
  .rte p {
    text-align: center;
    font-size: 1.01rem;
    line-height: 26.5px;
    letter-spacing: .45px;
  }
  .product__list-item {
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 20px;
    color: #494949;
    font-size: 1.5rem;
    letter-spacing: .015rem;
    font-weight: 700;
  }
  .product__list {
    max-width: 100%;
    margin: 30px auto 20px;
  }
}

@media(max-width: 868px) {
  .product__list-item {
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 15px;
    color: #494949;
    font-size: 1.13rem;
    letter-spacing: .01rem;
    font-weight: 700;
  }
  .product__list {
    max-width: 100%;
    margin: 20px auto 15px;
  }
}

@media(max-width: 767px) {
  .content-img {
    display: none;
  }
  .content-img2 {
    display: block;
  }
  .product__list {
    display: none;
  }

  .content-img__list {
    display: flex;
    justify-content: unset;
    flex-direction: column;
  }
  .content-img__list_item {
    width: 100%;
    position: relative;
    margin-bottom: 47px;
  }
  .content-img__list_item:last-child {
    margin-bottom: 0;
  }
  .content-img__img {
    padding-top: 25px;
    margin: 0 25px;
  }
}

@media(max-width: 768px) {
  .content-img__list_item {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
  }
}