/* VARS */
:root {
  --color-dark: #4F4F4F;
  --color-light: #FFFFFF;
  --color-gray: #828282;
  --color-gray-2: #BDBDBD;
  --color-gray-light: #F6F7F6;
  --color-gray-light-2: #EDEDED;
  --color-orange: #FBA733;
  --color-orange-light-1: #FFC44D;
  --color-orange-light-2: #FCC647;
  --color-green: #B0C97E;

  --primary-color: var(--color-orange);
  --secondary-color: var(--color-green);
}

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

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

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

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

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

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

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

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

/***************************************************************************/
/* CSS RESET */
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

:focus,
:active {
  outline: none;
}

html,
body {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 100%;
}

body {
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

a:focus,
a:active {
  outline: none;
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

input[type='text'],
input[type='email'],
input[type='tel'],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-ms-clear {
  display: none;
}

/***************************************************************************/
/***************************************************************************/
/* BODY */
body {
  color: var(--color-dark);
  font-family: "Gilroy";
  font-size: 18px;
  font-weight: 500;
}

body.is-locked {
  overflow: hidden;
}

/***************************************************************************/
/* WRAPPER */
.wrapper {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/***************************************************************************/
/* CONTAINER */
.container {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1640px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1400px) {
  .container {
    padding: 0 20px;
    max-width: 1100px;
  }
}

@media (max-width: 1100px) {
  .container {
    max-width: none;
  }
}

/***************************************************************************/
/* COMMON ELEMENTS/CLASSES */
/* SECTION */
.section--bg {
  background: -webkit-gradient(linear, left bottom, left top, from(var(--color-light)), color-stop(23.89%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(var(--color-light)), color-stop(28.31%, rgba(255, 255, 255, 0))), #F1FFF7;
  background: linear-gradient(360deg, var(--color-light) 0%, rgba(255, 255, 255, 0) 23.89%), linear-gradient(180deg, var(--color-light) 0%, rgba(255, 255, 255, 0) 28.31%), #F1FFF7;
}

.section-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.section-title--small {
  font-size: 42px;
}

.section-title > span {
  color: var(--color-orange);
}

.section-content > p {
  line-height: 1.2;
}

.section-content > p:not(:last-child) {
  margin: 0px 0px 15px 0px;
}
/* COLUMNS */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
}

.flex-column {
  flex: 1 0 0%;
}
/* TEXT STYLES */
.text--primary-color {
  color: var(--primary-color);
}
.text--nowrap {
  white-space: nowrap;
}

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

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

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

.text--italic {
  font-style: italic;
}
/* MARGINS */
.margin-top-100 {
  margin-top: 100px;
}
/* WIDTH */
.width-80 {
  width: 80%;
}
/* BACKGROUND */
.bg--gray {
  background-color: var(--color-gray-light);
}
/***************************************************************************/
/* BUTTONS */
.btn {
  width: 320px;
  height: 60px;
  color: var(--color-light);
  font-size: 24px;
  font-weight: 700;
  background-color: var(--color-orange);
  -webkit-box-shadow: 0px 4px 20px rgba(190, 122, 27, 0.4);
          box-shadow: 0px 4px 20px rgba(190, 122, 27, 0.4);
  border-radius: 100px;
  -webkit-transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.btn--green {
  background-color: var(--color-green);
  -webkit-box-shadow: 0px 4px 20px rgba(176, 201, 126, 0.4);
          box-shadow: 0px 4px 20px rgba(176, 201, 126, 0.4);
}

body._desktop .btn:hover {
  background-color: var(--color-green);
  -webkit-box-shadow: 0px 4px 20px rgba(176, 201, 126, 0.4);
          box-shadow: 0px 4px 20px rgba(176, 201, 126, 0.4);
}

body._desktop .btn.btn--green:hover {
  background-color: var(--color-orange);
  -webkit-box-shadow: 0px 4px 20px rgba(190, 122, 27, 0.4);
          box-shadow: 0px 4px 20px rgba(190, 122, 27, 0.4);
}

/***************************************************************************/
/* POPUP */
.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.popup.is-open {
  opacity: 1;
  visibility: visible;
}

.popup.is-open .popup-content {
  opacity: 1;
  -webkit-transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
          transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
}

.popup-body {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
}

.popup-content {
  padding: 40px 50px;
  position: relative;
  max-width: 500px;
  color: var(--color-dark);
  background-color: var(--color-light);
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
          transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  will-change: transform;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  background-color: var(--color-orange);
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.popup-close--green {
  background-color: var(--color-green);
}

.popup-close > span {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: var(--color-light);
}

.popup-close > span:first-child {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.popup-close > span:last-child {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

body._desktop .popup-close:hover {
  background-color: var(--color-green);
}

body._desktop .popup-close.popup-close--green:hover {
  background-color: var(--color-orange);
}

.popup-title {
  margin: 0px 0px 20px 0px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.popup-txt {
  margin: 0px 0px 20px 0px;
  line-height: 1.2;
  text-align: center;
}

.popup-form__input {
  padding: 0 25px;
  margin: 0px 0px 20px 0px;
  width: 100%;
  height: 60px;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  border: 2px solid #E0E0E0;
  border-radius: 100px;
  -webkit-transition: border 0.2s ease;
  transition: border 0.2s ease;
}

.popup-form__input::-webkit-input-placeholder {
  color: #BDBDBD;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.popup-form__input::-moz-placeholder {
  color: #BDBDBD;
  -moz-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.popup-form__input:-ms-input-placeholder {
  color: #BDBDBD;
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.popup-form__input::-ms-input-placeholder {
  color: #BDBDBD;
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.popup-form__input::placeholder {
  color: #BDBDBD;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.popup-form__input:focus {
  border: 2px solid var(--color-orange);
}

.popup-form__input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.popup-form__input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.popup-form__input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.popup-form__input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.popup-form__input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.popup-form__input.error {
  border: 2px solid red;
}

.popup-form__btn.btn {
  display: block;
  width: 100%;
}

.popup-thanks .popup-content {
  max-width: 465px;
}

.popup-thanks .popup-txt {
  margin: 0;
}

.popup-thanks__title {
  margin: 0px 0px 20px 0px;
  position: relative;
  color: var(--color-orange);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.popup-thanks__title:before {
  content: '';
  margin: 0px auto 15px;
  display: block;
  width: 90px;
  height: 90px;
  background: url("../images/icons/check.svg") center/42% 42% no-repeat;
  background-color: var(--color-orange);
  border-radius: 50%;
}
/***************************************************************************/
/* OWL CAROUSEL */
.owl-carousel-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.owl-carousel-nav > button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  width: 70px;
  height: 70px;
  background-color: var(--color-light);
  border-radius: 50%;
  border: 1px solid var(--color-dark);
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease, border 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease, border 0.2s ease;
}

.owl-carousel-nav > button.owl-prev {
  background: url("../images/icons/arr-l.svg") center/50% 50% no-repeat;
}

.owl-carousel-nav > button.owl-next {
  margin: 0px 0px 0px 25px;
  background: url("../images/icons/arr-r.svg") center/50% 50% no-repeat;
}

.owl-carousel-nav > button.disabled {
  opacity: 0.4;
  border: 1px solid var(--color-light);
  pointer-events: none;
}
/***************************************************************************/
/* HEADER */
.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: var(--color-light);
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
}

.header:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

@media (max-width: 991.98px) {
  .header._overlay:after {
    opacity: 1;
    visibility: visible;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  width: 250px;
}

.header-logo img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-menu__logo {
  display: none;
  width: 230px;
}

.header-menu__logo img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-menu__close {
  display: none;
  position: absolute;
  top: 14px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #F2F2F2;
  border-radius: 50%;
  text-decoration: none;
}

.header-menu__close > span {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: #BDBDBD;
}

.header-menu__close > span:first-child {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header-menu__close > span:last-child {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu__list > li:not(:last-child) {
  margin: 0px 55px 0px 0px;
}

.header-menu__list > li > a {
  color: var(--color-orange);
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .header-menu__list > li > a:hover {
  color: var(--color-green);
}

.header-menu__btn {
  display: none;
}

.burger {
  display: none;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  width: 35px;
  height: 22px;
  background-color: transparent;
  cursor: pointer;
}

.burger > span {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--color-orange);
}

.burger > span:first-child {
  top: 0;
}

.burger > span:last-child {
  top: auto;
  bottom: 0;
}

body._desktop .burger:hover > span {
  background-color: var(--color-green);
}

/***************************************************************************/
/* MAIN */
.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/***************************************************************************/
/* FOOTER */
.footer {
  padding: 70px 0 50px;
  border-top: 1px solid #E0E0E0;
}

.footer-top {
  margin: 0px 0px 65px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  width: 250px;
}

.footer-logo img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-menu {
  /*margin: 0 35px;*/
  margin: 0 0 0 30px;
}

.footer-menu__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-menu__list > li {
  margin: 10px 0px;
}

.footer-menu__list > li:not(:last-child) {
  margin-right: 35px;
}

.footer-menu__list > li > a {
  color: var(--color-orange);
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .footer-menu__list > li > a:hover {
  color: var(--color-green);
}

.footer-social__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  color: var(--color-dark);
  font-size: 18px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-social__link svg {
  margin: 0px 0px 0px 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

body._desktop .footer-social:hover {
  color: var(--color-green);
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
}

.footer-bottom > a {
  color: var(--color-dark);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .footer-bottom > a:hover {
  color: var(--color-green);
}

/***************************************************************************/
/***************************************************************************/
/* HOMEPAGE */
/* INTRO */
.intro {
  padding: 160px 0 105px;
  position: relative;
}

.intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro-inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.intro-content {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51%;
          flex: 0 0 51%;
  width: 51%;
  text-align: right;
}

.intro-title {
  margin: 0px 0px 40px 0px;
  font-size: 88px;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
}

.intro-title > span {
  color: var(--color-orange);
}

.intro-txt {
  margin: 0px 0px 50px 0px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.intro-img {
  padding: 0 0 37%;
  margin: 65px 0px 0px 0px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44%;
          flex: 0 0 44%;
  width: 44%;
  height: 0;
  z-index: 1;
}

.intro-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
}

/***************************************************************************/
/* ABOUT */
.about {
  padding: 125px 0 65px;
}

.about-header {
  margin: 0px 0px 55px 0px;
  text-align: center;
}

.about-title {
  position: relative;
  display: inline-block;
}

.about-title:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(125%, -65%);
          transform: translate(125%, -65%);
  width: 70px;
  height: 70px;
  background: url("../images/about/title.png") center/contain no-repeat;
}

.about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  width: 42%;
}

.about-content__title {
  margin: 0px 0px 30px 0px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.about-content__title > span {
  color: var(--color-orange);
}

.about-content__ul {
  margin: 30px 0;
}
.about-content__ul li {
  position: relative;
  margin-top: 15px;
  padding-left: 32px;
}
.about-content__ul li:first-child {
  margin-top: 0;
}
.about-content__check {
  position: absolute;
  left: 0;
  width: 20px;
  height: auto;
  color: #B0C97E;
}

.about-img {
  padding: 0 0 30%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  height: 0;
}

.about-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************************************************/
/* SLOGAN */
.slogan {
  margin: 50px 0;
}

/***************************************************************************/
/* QUESTIONS */
.questions {
  padding: 140px 0 160px;
}

.questions-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.questions-img {
  padding: 0 0 34%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
  width: 36%;
  height: 0;
}

.questions-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.questions-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  width: 49%;
}

.questions-content > p {
  width: 85%;
}

.questions-title {
  margin: 0px 0px 70px 0px;
  font-size: 36px;
  font-weight: 800;
}

.questions-title > span {
  position: relative;
  z-index: 5;
  display: inline-block;
}

.questions-title > span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-80px, -30px);
          transform: translate(-80px, -30px);
  width: calc(100% + 160px);
  height: calc(100% + 60px);
  z-index: -1;
  background: url("../images/title-bg.png") center/100% 100% no-repeat;
}

.questions-title > span:first-child {
  margin: 0px 0px 85px 0px;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

.questions-title > span:last-child {
  -webkit-transform: translateX(4%);
          transform: translateX(4%);
}

/***************************************************************************/
/* BOT */
.bot {
  padding: 40px 0;
}

.bot-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bot-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  width: 42%;
}

.bot-title {
  margin: 0px 0px 35px 0px;
  text-align: left;
}

.bot-btn {
  margin: 30px 0px 0px 0px;
}
.bot-btn img {
  width: 26px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.bot-img__mobile {
  display: none;
}

.bot-img__mobile,
.bot-img__desktop {
  padding: 0 0 54%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  width: 40%;
}

.bot-img__mobile:before,
.bot-img__desktop:before {
  content: '';
  padding: 0 0 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
  z-index: 1;
  background-color: #F1FFF7;
  border-radius: 50%;
}

.bot-img__mobile img,
.bot-img__desktop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}

/***************************************************************************/
/* HOW */
.how {
  padding: 130px 0 170px;
  position: relative;
  background-color: #ABC876;
}

.how:after, .how:before {
  content: '';
  padding: 0 0 3%;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1;
}

.how:after {
  top: -1px;
  background: url("../images/how/top.svg") top center/100% auto no-repeat;
}

.how:before {
  content: '';
  bottom: -1px;
  background: url("../images/how/bottom.svg") bottom center/100% no-repeat;
}

.how-title {
  margin: 0px 0px 85px 0px;
}

.how-title > span {
  color: var(--color-light);
}

.how-inner {
  margin: 0 -120px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.how-item {
  margin: 0 120px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3333% - 240px);
          flex: 0 0 calc(33.3333% - 240px);
  max-width: calc(33.3333% - 240px);
}

.how-item:nth-child(1):after {
  display: block;
  top: 0;
  -webkit-transform: translateX(75%);
          transform: translateX(75%);
  background: url("../images/how/arr1.svg") center/contain no-repeat;
}

.how-item:nth-child(2):after {
  display: block;
  bottom: 0;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  background: url("../images/how/arr2.svg") center/contain no-repeat;
}

.how-item:after {
  display: none;
  content: '';
  padding: 0 0 17%;
  position: absolute;
  right: 0;
  width: 44%;
  height: 0;
  z-index: 3;
}

.how-item__icon {
  margin: 0px 0px 20px 0px;
  width: 70px;
  height: 70px;
}

.how-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.how-item__title {
  margin: 0px 0px 15px 0px;
  color: var(--color-light);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.how-item__txt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

/***************************************************************************/
/* ADVANTAGES */
.advantages {
  padding: 165px 0 50px;
}

.advantages-header {
  margin: 0px 0px 120px 0px;
  text-align: center;
}

.advantages-title {
  position: relative;
  display: inline-block;
}

.advantages-title:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(125%, -65%);
          transform: translate(125%, -65%);
  width: 70px;
  height: 70px;
  background: url("../images/advantages/title.png") center/contain no-repeat;
}

.advantages-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantages-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 0 25px 20px;
  position: relative;
  text-align: center;
  background: var(--color-light);
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  border-radius: 20px;
}

.advantages-item__img {
  padding: 0 0 60%;
  margin: -55px auto 25px;
  position: relative;
  width: 60%;
  height: 0;
  border-radius: 50%;
  overflow: hidden;
}

.advantages-item__img._border {
  border: 1px solid var(--color-dark);
}

.advantages-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages-item__txt {
  font-weight: 600;
  line-height: 1.2;
}

/***************************************************************************/
/* FOOD */
.food {
  padding: 70px 0;
}

.food-title {
  margin: 0px 0px 65px 0px;
}

.food-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.food-inner .owl-dots {
  margin: 25px 0px 0px 0px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.food-inner .owl-dots .owl-dot {
  margin: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-green);
  border-radius: 50%;
  opacity: 0.3;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.food-inner .owl-dots .owl-dot.active {
  opacity: 1;
}

.food-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.food-item--big {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  -ms-grid-row-span: 2;
  grid-row: 2 span;
}

.food-item:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}

.food-item:hover .food-item__txt {
  opacity: 1;
  visibility: visible;
}

.food-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.food-item__txt {
  padding: 25px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--color-light);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), color-stop(82%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 82%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/***************************************************************************/
/* FAQ */
.faq {
  padding: 95px 0 170px;
}

.faq-header {
  margin: 0px 0px 80px 0px;
  text-align: center;
}

.faq-title {
  position: relative;
  display: inline-block;
}

.faq-title:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-140%, -65%);
          transform: translate(-140%, -65%);
  width: 70px;
  height: 70px;
  background: url("../images/faq/title.png") center/contain no-repeat;
}

.faq-inner {
  margin: 0px auto;
  max-width: 84%;
}

.faq-item {
  position: relative;
}

.faq-item:not(:last-child) {
  margin: 0px 0px 20px 0px;
}

.faq-item__title {
  padding: 15px 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--color-dark);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  background-color: var(--color-light);
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  border-radius: 0 100px 0 100px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.faq-item__title.is-active .faq-item__icon {
  background-color: #F2F2F2;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-item__title.is-active .faq-item__icon::before, .faq-item__title.is-active .faq-item__icon::after {
  background-color: var(--color-green);
}

body._desktop .faq-item__title:hover {
  color: var(--color-orange);
}

body._desktop .faq-item__title:hover .faq-item__icon {
  background-color: var(--color-orange);
}

body._desktop .faq-item__title:hover .faq-item__icon::before, body._desktop .faq-item__title:hover .faq-item__icon::after {
  background-color: var(--color-light);
}

.faq-item__icon {
  margin: 0px 0px 0px 25px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background-color: var(--color-green);
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.faq-item__icon::before, .faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 3px;
  background-color: var(--color-light);
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.faq-item__icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-item__content {
  display: none;
  padding: 30px 120px 10px 60px;
  font-weight: 400;
  line-height: 1.2;
}

/***************************************************************************/
/* FOUNDER */
.founder {
  padding: 90px 0 70px;
}

.founder.bg--gray {
  padding-top: 50px;
}

.founder-header {
  margin: 0 auto 40px;
  text-align: center;
}

.founder-title {
  position: relative;
  display: inline-block;
  font-size: 46px;
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  max-width: 1180px;
  margin: 0 150px;
}

.founder-title:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(105%, -65%);
          transform: translate(105%, -65%);
  width: 70px;
  height: 70px;
  background: url("../images/title.png") center/contain no-repeat;
}

.founder-title .text--italic {
  font-weight: 400;
}

.founder-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.founder-photo {
  padding: 0 0 37%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  width: 40%;
}

.founder-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.founder-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56%;
          flex: 0 0 56%;
  width: 56%;
}

.founder-content__top {
  margin: 0px 0px 20px 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.founder-name {
  margin: 0px 20px 0px 0px;
  color: var(--color-orange);
  font-size: 36px;
  font-weight: 700;
}

.founder-contact {
  color: var(--color-green);
  font-size: 24px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .founder-contact:hover {
  color: var(--color-dark);
}

.founder-occupation {
  margin: 0px 0px 95px 0px;
  font-size: 24px;
  line-height: 1.1;
}

.founder-txt {
  margin: 0px 0px 60px 0px;
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.founder-txt:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-25%, -60%);
          transform: translate(-25%, -60%);
  width: 116px;
  height: 98px;
  z-index: -1;
  background: url("../images/founder/quotes.svg") center/contain no-repeat;
}

.founder-comment {
  position: relative;
  padding: 33px 52px 29px;
  background: var(--color-light);
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.3);
  box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.3);
}

.founder-comment__arrow {
  position: absolute;
  left: -49px;
  bottom: 60px;
  width: 49px;
  height: 71px;
  background: url("../images/founder/triangle.png") center no-repeat;
  background-size: contain;
}

.founder-comment__text {
  color: var(--color-gray);
  font-size: 24px;
  font-family: Gilroy;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;;
}

.founder-caption__desktop {
  margin-top: 53px;
  line-height: 110%;
  text-align: right;
  color: var(--color-gray);
}

.founder-author {
  font-size: 36px;
  font-weight: 700;
  line-height: 110%;
}

.founder-post {
  font-size: 26px;
  line-height: 110%;
}
/***************************************************************************/
/***************************************************************************/
/* PAY - PAGE */
/* TARFIFF */
.tariff {
  /* padding: 155px 0 40px; */
  padding: 200px 0 40px;
}

.tariff--3items .tariff-col:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  width: 33%;
}

.tariff--3items .tariff-col:first-child .tariff-row {
  padding: 0 20px 0 30px;
}

.tariff--3items .tariff-col:last-child {
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
  width: 66%;
}

.tariff--3items .tariff-item {
  margin: 0 1%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31%;
          flex: 0 0 31%;
  width: 31%;
}

.tariff--3items .tariff-item:not(:last-child) {
  margin: 0 1%;
}

.tariff--3items .tariff-promo {
  width: 33%;
}

.tariff-title {
  margin: 0px 0px 55px 0px;
  text-align: left;
}

.tariff-item__tag {
  position: absolute;
  top: -50px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.tariff-item--green .tariff-item__tag {
  color: var(--color-green);
}

.tariff-item--orange .tariff-item__tag {
  color: var(--color-orange);
}

.tariff-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.tariff-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tariff-col {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
}

.tariff-col:first-child {
  z-index: 1;
  padding: 90px 0px 120px;
}

.tariff-col:first-child .tariff-row {
  padding: 0 20px 0 45px;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  background-color: #F2F2F2;
}

.tariff-col:first-child .tariff-row:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #F2F2F2;
}

.tariff-col:first-child .tariff-row:first-child {
  border-radius: 20px 0 0 0;
}

.tariff-col:first-child .tariff-row:first-child:after {
  border-radius: 0 20px 0 0;
}

.tariff-col:first-child .tariff-row:last-child {
  border-radius: 0 0 0 20px;
}

.tariff-col:first-child .tariff-row:last-child:after {
  border-radius: 0 0 20px 0;
}

.tariff-col:first-child .tariff-row:not(:last-child) {
  border-bottom: 2px solid var(--color-light);
}

.tariff-col:last-child {
  z-index: 2;
  padding: 0 20px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tariff-row {
  height: 70px;
  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;
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
}

.tariff-item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  width: 45%;
  background-color: var(--color-light);
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  /* overflow: hidden; */
}

.tariff-item:not(:last-child) {
  margin: 0px 40px 0px 0px;
}

.tariff-item--green .tariff-item__top {
  color: #D0E8A2;
  background-color: var(--color-green);
}

.tariff-item--green .tariff-row__check {
  color: var(--color-green);
}

.tariff-item--green .tariff-row__total {
  color: var(--color-green);
}

.tariff-item--orange .tariff-item__top {
  color: #FFE5C1;
  background-color: var(--color-orange);
}

.tariff__top-promo .tariff-item--orange .tariff-item__top {
  background: #FDCA85;
}

.tariff-item--orange .tariff-row__check {
  color: var(--color-orange);
}

.tariff-item--orange .tariff-row__total {
  color: var(--color-orange);
}

.tariff-item .tariff-row {
  font-size: 24px;
  border-bottom: 2px solid #F2F2F2;
}

.tariff-item .tariff-row:last-child {
  border-bottom: none;
}

.tariff-item__top {
  padding: 0 10px;
  height: 90px;
  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;
  font-family: 'Roboto';
  font-size: 64px;
  font-weight: 900;
  border-radius: 20px 20px 0 0;
}

.tariff-row__title {
  display: none;
  margin: 0px 20px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  font-size: 15px;
  text-align: left;
}

.tariff-row__check svg {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.tariff-row__price {
  color: #BDBDBD;
  white-space: nowrap;
}

.tariff-row__price > span {
  position: relative;
}

.tariff-row__price > span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 110%;
  height: 2px;
  z-index: 1;
  background-color: #BDBDBD;
}

.tariff-row__total {
  font-size: 36px;
  font-weight: 700;
  white-space: nowrap;
}

.tariff-item__bottom {
  padding: 0 20px;
  height: 120px;
  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;
}

.tariff-item__btn.btn {
  padding: 0 10px;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
}

.tariff-promo {
  position: absolute;
  bottom: 0px;
  z-index: 2;
  width: 50%;
  height: 120px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tariff-promo__wrapper {
  width: 100%;
}
.tariff-promo__fields {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tariff-promo__input {
  padding: 0 40px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51%;
          flex: 0 0 51%;
  width: 51%;
  height: 60px;
  z-index: 1;
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  background-color: var(--color-light);
  border-radius: 60px 0 0 60px;
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
}

.tariff-promo__input::-webkit-input-placeholder {
  color: #BDBDBD;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tariff-promo__input::-moz-placeholder {
  color: #BDBDBD;
  -moz-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tariff-promo__input:-ms-input-placeholder {
  color: #BDBDBD;
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tariff-promo__input::-ms-input-placeholder {
  color: #BDBDBD;
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tariff-promo__input::placeholder {
  color: #BDBDBD;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tariff-promo__input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.tariff-promo__input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.tariff-promo__input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.tariff-promo__input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.tariff-promo__input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.tariff-promo__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  width: 240px;
  height: 60px;
  color: var(--color-light);
  font-size: 20px;
  font-weight: 600;
  background-color: var(--color-green);
  border-radius: 0 60px 60px 0;
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

body._desktop .tariff-promo__btn:hover {
  background-color: var(--color-orange);
}

.tariff-promo__message {
  margin-top: 10px;
  margin-left: 22px;
  font-size: 16px;
  color: #b0c97e;
}
.tariff-promo__message strong {
  /*color: #fba733;*/
}

/* New styles for trariff table */
.tariff__top-promo .tariff-title {
  font-size: 52px;
  margin-bottom: 77px;
}
.tariff__top-promo .tariff-title .text-mobile-hidden {
  color: inherit;
}
.tariff__top-promo .tariff-promo {
  position: relative;
  align-items: flex-start;
  height: 100px;
}
.tariff__top-promo .tariff-promo__input {
  font-size: 28px;
  flex: 0 0 50%;
  height: 100%;
  width: 50%;
}
.tariff__top-promo .tariff-promo__btn {
  height: 100%;
  font-size: 28px;
}
.tariff__top-promo .tariff-inner {
  margin-top: 10px;
}
.tariff__top-promo .tariff-col:first-child {
  padding-top: 100px;
  padding-bottom: 92px;
}
.tariff__top-promo .tariff-item__top {
  height: 100px;
  box-shadow: 0px 4px 20px 0px rgba(113, 113, 113, 0.20);
}
.tariff__top-promo .tariff-row__discount {
  font-weight: 600;
  font-size: 30px;
}
.tariff-row__price-per-month {
  color: var(--color-gray);
  font-size: 26px;
  font-weight: 400;
}
.tariff-item__total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 7px;
}
.tariff-item__total .tariff-row__price {
  color: var(--color-gray-2);
  font-size: 28px;
  font-weight: 400;
  padding-bottom: 3px;
}
.tariff-item__total .tariff-row__price > span:after {
  background-color: var(--color-gray);
}
.tariff-item__total .tariff-row__total {
  line-height: normal;
}
.tariff__top-promo .tariff-col:first-child .tariff-row {
  font-size: 26px;
  padding-left: 40px;
}
.tariff__top-promo .tariff-col:first-child .tariff-row:last-child {
  height: 90px;
  font-size: 30px;
  font-weight: 600;
}
.tariff__top-promo .tariff-item__bottom {
  height: 92px;
}
.tariff__top-promo .tariff-item__btn.btn {
  font-size: 24px;
}
.tariff__top-promo .tariff-item__total {
  text-align: center;
}
/* Tariff table with image */

.tariff-col.tariff-col--single {
  flex: 0 0 21%;
  width: 21%;
  z-index: 2;
}
.tariff-col.tariff-col--image {
  padding: 0;
  flex: 0 0 23%;
  width: 23%;
  z-index: 2;
  position: relative;
}

.tariff-col--single .tariff-item {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}

.tariff-col--image img {
  margin-top: -42px;
  -o-object-fit: contain;
  object-fit: contain;
}
/* Tariff table for PROMO */
.tariff__promo {
  /* padding-top: 100px; */
  padding-top: 210px;
}
.tariff__promo .tariff-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 55px;
  width: 71%;
}
.tariff__promo .tariff-title span {
  color: var(--color-green);
}
.tariff__promo .tariff-col:first-child {
  padding-top: 100px;
  padding-bottom: 0;
  flex: 0 0 44%;
  width: 44%;
}
.tariff__promo .tariff-item__top {
  height: 100px;
}
.tariff__promo .tariff-col:first-child .tariff-row {
  font-size: 26px;
  padding-left: 106px;
}
.tariff__promo .tariff-col:first-child .tariff-row {
  padding-top: 7px;
  background-position: 31px center;
  background-size: 40px auto;
  background-repeat: no-repeat;
}
.tariff__promo .tariff-col:first-child .tariff-row:first-child {
  background-image: url("../images/promo/01.svg");
}
.tariff__promo .tariff-col:first-child .tariff-row:nth-child(2) {
  background-image: url("../images/promo/02.svg");
}
.tariff__promo .tariff-col:first-child .tariff-row:nth-child(3) {
  background-image: url("../images/promo/03.svg");
}
.tariff__promo .tariff-col:first-child .tariff-row:last-child {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 46px;
  height: 232px;
}
.tariff-row__total-title {
  font-size: 30px;
  font-weight: 600;
}
.tariff-row__note {
  display: block;
  color: var(--color-gray);
  font-size: 24px;
  font-weight: 500;
  padding-top: 27px;
}
.tariff__promo .tariff-item__total {
  padding-top: 37px;
}
.tariff__promo .tariff-item__total div {
  display: flex;
  align-items: center;
}
.tariff__promo .tariff-item__total .tariff-row__title {
  display: none;
}
.tariff__promo .tariff-item__total div.tariff-row__total-text {
  display: none;
  font-size: 18px;
  font-weight: 600;
}
.tariff__promo .tariff-item__total .tariff-item__note {
  display: none;
}
.tariff-row__percent {
  font-family: sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-top: 10px;
  padding: 8px;
  background-color: var(--color-orange-light-1);
  border-radius: 20px;
}
.tariff__promo .tariff-row__total {
  color: var(--color-green);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  font-size: 68px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.68px;
  padding: 0 33px 0 28px;
}
.tariff__promo .tariff-row__price {
  font-size: 24px;
  font-weight: 400;
  font-family: sans-serif;
  color: var(--color-gray);
  padding-top: 12px;
}
.tariff__promo .tariff-row__price > span:after {
  left: -15%;
  transform: rotate(13deg);
  width: 124%;
}
.tariff__promo .tariff-item__bottom {
  height: 153px;
  align-items: flex-start;
  padding-top: 24px;
}
.tariff__promo .tariff-item__btn.btn {
  font-size: 26px;
  font-weight: 800;
  height: 80px;
}
/***************************************************************************/
/* PROMO QUESTION */
.promo-question {
  padding-top: 70px;
  padding-bottom: 80px;
}
.promo-question__header {
  margin-bottom: 112px;
}
.promo-question__title {
  position: relative;
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 110%;
  margin: 0 90px;
}
.promo-question__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -25px);
  transform: translate(0, -25px);
  width: calc(100% + 40px);
  height: calc(100% + 52px);
  z-index: -1;
  background: url(../images/title-bg-big.png) center/100% 100% no-repeat;
}
.promo-question__row {
  display: flex;
  gap: 59px;
}
.promo-question__row:nth-child(2n) {
  flex-direction: row-reverse;
}
.promo-question__row + .promo-question__row {
  margin-top: 101px;
}
.promo-question__comment {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  background-color: var(--color-gray-light-2);
  padding: 4px 35px 28px 45px;
  margin-top: 4px;
  margin-left: 29px;
  border-radius: 54px;
  font-size: 28px;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
  align-self: flex-start;
}
.promo-question__comment .emoji {
  margin-left: 14px;
  transform: translateY(16px);
}
.promo-question__comment:after {
  content: "";
  position: absolute;
  height: 33px;
  width: 37px;
  bottom: -32px;
  left: 86px;
  background-color: var(--color-gray-light-2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.promo-question__text {
  font-size: 28px;
  line-height: 110%;
  margin-right: 50px;
}
.promo-question__row:nth-child(2n) .promo-question__comment:after {
  left: auto;
  right: 86px;
}
.promo-question__row:nth-child(2n) .promo-question__text {
  margin-right: 0;
  margin-left: 100px;
}
/***************************************************************************/
/* WHAT TO COOK */
.what-to-cook {
  padding: 170px 0 40px;
}
.what-to-cook__title {
  font-size: 52px;
  font-size: 36px;
  font-weight: 700;
  line-height: 110%;
  position: relative;
  padding: 0 130px;
  max-width: 62%;
}
.what-to-cook__title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
  width: calc(100%);
  height: calc(100% + 60px);
  z-index: -1;
  background: url("../images/title-bg-big.png") center/100% 100% no-repeat;
}
.what-to-cook__container {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
}

.what-to-cook__img {
  padding: 0 0 26%;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  width: 35%;
  height: 0;
}

.what-to-cook__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
}

.what-to-cook__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 34%;
  flex: 0 0 34%;
  width: 34%;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: -20px;
}
/***************************************************************************/
/* PRESENTATION */
.presentation {
  position: relative;
  background-color: var(--primary-color);
  margin: 56px 0 40px;
  padding: 60px 0 50px;
}

.presentation:after, .presentation:before {
  content: '';
  position: absolute;
  padding: 0 0 4%;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1;
}

.presentation:after {
  top: -4px;
  background: url("../images/top.svg") top center/100% auto no-repeat;
}

.presentation:before {
  content: '';
  bottom: -4px;
  background: url("../images/bottom.svg") bottom center/100% no-repeat;
}

.presentation__header {
  margin-bottom: 40px;
}
.presentation__title,
.presentation__subtitle {
  color: var(--color-light);
  text-align: center;
  font-weight: 800;
  line-height: 110%;
}

.presentation__title {
  font-size: 42px;
  max-width: 52%;
  margin: 0 auto;
}

.presentation__subtitle {
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
}
.presentation__container {
  margin: 0 100px;
}
.presentation__text {
  color: var(--color-light);
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
}

.presentation__list {
  display: grid;
  grid-template-columns: 1fr 53% 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas:
    "item1 image item3"
    "item2 image item4";
  justify-content: center;
}

.presentation__item.item-main {
  grid-area: image;
  display: flex;
}

.presentation__item.item-1 {
  grid-area: item1;
}

.presentation__item.item-2 {
  grid-area: item2;
}

.presentation__item.item-3 {
  grid-area: item3;
}

.presentation__item.item-4 {
  grid-area: item4;
}

.presentation__item.item-1,
.presentation__item.item-3 {
  margin-top: 25px;
}

.presentation__item.item-2,
.presentation__item.item-4 {
  margin-top: 25px;
}

.presentation__img {
  max-width: 100px;
  max-height: 100px;
  margin: 0 auto 20px;
}

.item-main__inner {
  padding: 0 0 74%;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  height: 0;
}

.item-main__inner img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  overflow: visible;
}
/***************************************************************************/
/* PROS OF BOT */
.pros-of-bot {
  margin-top: 75px;
}
.pros-of-bot__header {
  margin: 0 15% 70px;
}
.pros-of-bot__title {
  color: var(--color-dark);
  text-align: center;
  font-size: 38px;
  font-style: italic;
  font-weight: 400;
  line-height: 110%;
}
.pros-of-bot__title:before {
  content: '';
  margin: 0px auto 25px;
  display: block;
  width: 100px;
  height: 100px;
  background: url("../images/emoji/emoji.png") top center/100% auto no-repeat;
}
.pros-of-bot__content {
  display: flex;
  flex-direction: column;
}

.pros-of-bot__comment {
  position: relative;
  display: inline-block;
  background-color: var(--color-gray-light-2);
  margin-bottom: 40px;
  padding: 13px 28px 19px 45px;
  border-radius: 54px;
  font-size: 30px;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
  align-self: flex-start;
}
.pros-of-bot__comment.right {
  align-self: flex-end;
}
.pros-of-bot__comment:after {
  content: "";
  position: absolute;
  height: 33px;
  width: 37px;
  bottom: -32px;
  left: 86px;
  background-color: var(--color-gray-light-2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.pros-of-bot__comment.right:after {
  left: auto;
  right: 86px;
}

.pros-of-bot__comment .emoji {
  margin: 0 10px -9px;
}
.pros-of-bot__item {
  align-self: center;
  text-align: center;
  margin-bottom: 55px;
}
.pros-of-bot__item-header {
  font-size: 42px;
  font-weight: 700;
  line-height: 110%;
}
.pros-of-bot__item-header span {
  font-weight: 500;
}
.pros-of-bot__item-text {
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
  text-align: left;
  max-width: 1000px;
  margin:32px auto 0;
}
/***************************************************************************/
/* EMOJI */
.emoji {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: contain;
}
.emoji__unamused-face {
  background-image: url("../images/emoji/emoji1.png");
}
.emoji__stuck-out-tongue {
  background-image: url("../images/emoji/emoji3.png");
}
.emoji__anguished-face {
  background-image: url("../images/emoji/emoji6.png");
}
.emoji__rolling-eyes {
  background-image: url("../images/emoji/emoji4.png");
}
.emoji__hugging-face {
  background-image: url("../images/emoji/emoji2.png");
}
.emoji__thinking-face {
  background-image: url("../images/emoji/emoji5.png");
}
.emoji__fire {
  background-image: url("../images/emoji/emoji7.png");
}
.emoji__thumbs-up {
  background-image: url("../images/emoji/emoji8.png");
}
.emoji__grinning-face {
  background-image: url("../images/emoji/emoji9.png");
}
.emoji__pouting-face {
  background-image: url("../images/emoji/emoji10.png");
}
.emoji__winking-face {
  background-image: url("../images/emoji/emoji11.png");
}
/***************************************************************************/
/* TARIFF BUTTON */
.tariff-btn {
  margin: 40px 0;
  text-align: center;
}
.tariff-btn .btn {
  font-size: 36px;
  width: inherit;
  height: 101px;
  line-height: 1;
  padding: 0 76px;
  white-space: nowrap;
}
.tariff-btn.tariff-btn--with-img {
  margin-bottom: 110px;
}
.tariff-btn.tariff-btn--with-img .btn {
  padding: 3px 50px 0 45px;
}
.tariff-btn img {
  margin-right: 16px;
  vertical-align: middle;
}
/***************************************************************************/
/* REVIEWS */
.reviews {
  padding: 50px 0 80px;
}

.reviews-header {
  margin: 0px 0px 110px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reviews-title {
  /*margin: 0px 40px 0px 0px;*/
}

.reviews-slider__nav {
  margin-left: 40px;
  white-space: nowrap;
}

.reviews-slider__nav > button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  width: 70px;
  height: 70px;
  background-color: var(--color-light);
  border-radius: 50%;
  border: 1px solid var(--color-dark);
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease, border 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease, border 0.2s ease;
}

.reviews-slider__nav > button.owl-prev {
  background: url("../images/icons/arr-l.svg") center/50% 50% no-repeat;
}

.reviews-slider__nav > button.owl-next {
  margin: 0px 0px 0px 25px;
  background: url("../images/icons/arr-r.svg") center/50% 50% no-repeat;
}

.reviews-slider__nav > button.disabled {
  opacity: 0.4;
  border: 1px solid var(--color-light);
  pointer-events: none;
}

body._desktop .reviews-slider__nav > button:hover {
  background-color: var(--color-green);
}

.reviews-slider {
  margin: 0 -20px;
  width: 86%;
}

.reviews-slider .owl-stage-outer {
  overflow: visible;
}

.reviews-slider .owl-dots {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reviews-slider .owl-dots .owl-dot {
  margin: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-green);
  border-radius: 50%;
  opacity: 0.3;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.reviews-slider .owl-dots .owl-dot.active {
  opacity: 1;
}

.reviews-slide {
  padding: 0px 0px 35px 0px;
  background: var(--color-light);
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
          box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  border-radius: 20px;
}

.reviews-slide__top {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reviews-slide__info {
  padding: 0px 0px 0px 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews-slide__photo {
  position: relative;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  z-index: 3;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.reviews-slide__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-slide__name {
  padding: 0 50px;
  margin: 0px 0px 0px -30px;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.reviews-slide__name:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
  width: 100%;
  height: calc(100% + 25px);
  z-index: -1;
  background: url("../images/title-bg.png") center/100% 100% no-repeat;
}

.reviews-slide__date {
  padding: 7px 14px 7px 20px;
  white-space: nowrap;
  color: var(--color-light);
  font-size: 16px;
  font-weight: 600;
  background-color: var(--color-green);
  border-radius: 40px 0 0 40px;
}

.reviews-slide__txt {
  padding: 0 30px;
  margin: -25px 0px 0px 0px;
  font-size: 16px;
  line-height: 1.1;
}

.reviews-slide__txt > p:not(:last-child) {
  margin: 0px 0px 12px 0px;
}

.reviews-slider {
  /*padding-left: 20px;*/
}
.reviews-img-slide {
  /*width: 380px;*/
  width: 100%;
  padding: 10px;
  -webkit-box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  box-shadow: 0px 4px 20px rgba(113, 113, 113, 0.2);
  border-radius: 20px;
}
.reviews-img-slide:first-child {
  /*margin-left: 20px;*/
}
.reviews-img-slide img {
  width: 100%;
  height: auto;
}

/***************************************************************************/
/* FEEDBACK */
.feedback {
  margin-top: 110px;
  margin-bottom: 60px;
}
.feedback-title {
  font-size: 48px;
  margin-bottom: 37px;
}
.feedback-slider__nav {
  margin-right: 80px;
  margin-bottom: 32px;
}
.feedback-slider__nav.disabled {
  display: none;
}
.feedback-slide {
  display: flex;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 16px 0px rgba(113, 113, 113, 0.20);
  padding: 23px;
  /* height: 335px; */
  margin: 10px 14px 17px;
}
.feedback-slide__container {
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.feedback-slide__content {
  display: flex;
  flex: 1;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}
.feedback .owl-dots {
  display: flex;
  margin: 25px 0px 0px 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.feedback .owl-dots .owl-dot {
  margin: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23px;
          flex: 0 0 23px;
  width: 23px;
  height: 23px;
  background-color: var(--color-gray);
  border-radius: 50%;
  opacity: 0.3;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.feedback .owl-dots .owl-dot.active {
  opacity: 1;
  background-color: var(--color-green);
}
/* PROMO FEEDBACK */
.promo-feedback {
  margin-top: 93px;
}
/***************************************************************************/
/* BOT STEPS */
.bot-steps-inner {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(400px, max-content) 170px 1% 47%;
  grid-template-rows: 115px 100px 298px 1fr;
  grid-template-areas:
    "title title . phoneSlide"
    "text nav . phoneSlide"
    "textSlide textSlide . phoneSlide"
    "note note . phoneSlide";
}

.bot-steps-slider__nav.owl-carousel-nav {
  grid-area: nav;
  display: flex;
  justify-self: end;
  align-self: start;
}
.bot-steps-slider__nav.owl-carousel-nav > button {
  width: 50px;
  height: 50px;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
}

.bot-steps-title {
  grid-area: title;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 110%;
  align-self: end;
}
.bot-steps-text {
  grid-area: text;
  font-size: 22px;
  font-weight: 300;
  line-height: 110%;
  margin-top: 6px;
}
.bot-steps-slider__text {
  grid-area: textSlide;
  transform: translateX(-12px);
}
.bot-steps-slide__content {
  font-size: 25px;
  font-weight: 500;
  line-height: 110%;
  padding: 24px;
  margin: 10px 13px 17px 12px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(113, 113, 113, 0.20);
  min-height: 250px;
  display: flex;
  align-items: center;
}
.bot-steps-slider__image {
  grid-area: phoneSlide;
  transform: translateX(70px);
}
.bot-steps-slide__image {
  padding: 0 0 91%;
  position: relative;
  height: 0;
}
.bot-steps-slide__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: contain;
  object-fit: contain;
}
.bot-steps-note {
  grid-area: note;
  align-self: start;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.bot-steps-note__icon {
  width: 130px;
  margin-right: 30px;
}
.bot-steps-note__text {
  font-size: 22px;
  font-weight: 500;
  line-height: 110%;
}
/***************************************************************************/
.promo-bot-steps {
  padding-top: 150px;
  padding-bottom: 82px;
}
.promo-bot-steps .bot-steps-inner {
  grid-template-columns: minmax(415px, max-content) 170px 1% 47%;
  grid-template-rows: 126px 162px 326px;
      grid-template-areas:
          "title title . phoneSlide"
          "text nav . phoneSlide"
          "textSlide textSlide . phoneSlide";
}
.promo-bot-steps .bot-steps-title {
  margin: 0 114px;
  position: relative;
}
.promo-bot-steps .bot-steps-title:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-103px, -30px);
  transform: translate(-103px, -30px);
  width: calc(100% + 219px);
  height: calc(100% + 60px);
  z-index: -1;
  background: url(../images/title-bg-big.png) center/100% 100% no-repeat;
}
/* .promo-bot-steps .bot-steps-slider__image {
  transform: translateX(-24px);
} */
/* .promo-bot-steps .bot-steps-slide__image {
  padding: 0 0 167%;
} */
.promo-bot-steps .bot-steps-text,
.promo-bot-steps .bot-steps-slider__nav {
  align-self: end;
}
.promo-bot-steps .bot-steps-text {
  margin: 0 10px 6px 45px;
}
.promo-bot-steps .bot-steps-slider__text {
  align-self: end;
  margin-left: 40px;
  width: 93%;
}
.promo-bot-steps .bot-steps-slide__content {
  padding: 0 8px 0 21px;
}
/***************************************************************************/
/* PLANNER */
.planner {
  margin-top: 90px;
  padding: 0 0 110px;
}
.planner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.planner-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58%;
  flex: 0 0 58%;
  font-size: 22px;
}
.planner-title {
  margin: 0 0 35px;
  text-align: left;
  font-size: 38px;
  font-weight: 700;
  line-height: 110%;
}
.planner-content__arrow {
  position: relative;
}
.planner-content__arrow:after {
  content: '';
  position: absolute;
  height: 80px;
  width: 80px;
  bottom: -75px;
  right: -59px;
  /*transform: rotate(83.488deg);*/
  background: url(../images/tariff/arrow.png) center/contain no-repeat;
}
.planner-content p {
  line-height: 110%;
}
.planner-content__title {
  margin-top: 50px;
  margin-bottom: 26px;
  font-weight: 700;
}
.planner-content__subtitle {
  font-weight: 600;
  width: 76%;
  margin-bottom: 22px;
}
.planner-content__text {
  width: 80%;
}
.planner-btn {
  display: inline-block;
  margin-top: 50px;
}
.planner-btn .btn {
  font-size: 30px;
  width: inherit;
  height: 80px;
  padding: 0 52px;
  white-space: nowrap;
}
.planner-img__mobile,
.planner-img__desktop {
  padding: 0 0 45%;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38%;
  flex: 0 0 38%;
  width: 38%;
  align-self: flex-start;
}
.planner-img__mobile img,
.planner-img__desktop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 2;
}
.planner-img__mobile {
  display: none;
}
/***************************************************************************/
/* HEARTS */
.hearts__title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 110%;
  margin: 0 16%;
}
.hearts__content {
  display: flex;
  margin: 120px 40px 50px;
}
.hearts__item {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 30px;
}
.hearts__item:nth-child(2n) {
  flex-direction: column;
}
.hearts__item:nth-child(2n) .hearts__item-text {
  margin-top: 70px;
  margin-bottom: 0;
}
.hearts__item-icon {
  position: relative;
  align-self: center;
  padding: 0 0 80px;
  flex: 0 0 80px;
  width: 100%;
  height: 0;
}
.hearts__item-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.hearts__item-text {
  font-size: 26px;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 70px;
}
.hearts__item-text span {
  font-weight: 600;
}
/***************************************************************************/
/* BONUS */
.bonus {
  /* padding-top: 120px; */
  padding-top: 50px;
}
.bonus__header {
  margin-bottom: 70px;
}
.bonus__title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 110%;
}
.bonus__content {
  display: flex;
}
.bonus__item {
  display: flex;
  flex-direction: column;
}
.bonus__item:first-child {
  flex: 1 1 56%;
  margin-right: 50px;
}
.bonus__item:last-child {
  flex: 1 1 41%;
}
.bonus__item-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
.bonus__item:first-child .bonus__item-title{
  padding-right: 27%;
}
.bonus__item-image {
  margin-top: 50px;
}
.bonus__item-image.bonus__malls {
  margin-top: 100px;
  margin-right: 160px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
}
.bonus__book {
  padding: 0 0 75%;
  position: relative;
  -ms-flex: 0 0 78%;
      flex: 0 0 78%;
  width: 78%;
  height: 0;
}
.bonus__book img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
/***************************************************************************/
/* EXAMPLE */
.example {
  padding-top: 40px;
  padding-bottom: 85px;
}
.example-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.example-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  font-size: 28px;

}
.example-content p:not(:last-of-type) {
  margin-bottom: 50px;
}
.example-img__mobile,
.example-img__desktop {
  padding: 0 0 45%;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38%;
  flex: 0 0 38.5%;
}
.example-img__mobile img,
.example-img__desktop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: right;
  z-index: 2;
}
.example-img__mobile {
  display: none;
}
.example-arrow {
  position: relative;
  font-size: 32px;
  margin-right: 150px;
  font-style: italic;
  line-height: normal;
}
.example-arrow::after {
  content: '';
  position: absolute;
  height: 90px;
  width: 92px;
  bottom: -8px;
  left: -143px;
  transform: rotate(113deg);
  background: url(../images/tariff/arrow.png) center/contain no-repeat;
  z-index: 3;
}
.example-btn {
  display: inline-block;
  margin-top: 100px;
}
.example-btn .btn {
  font-size: 30px;
  width: inherit;
  height: 80px;
  padding: 0 37px;
  white-space: nowrap;
}
/***************************************************************************/
/***************************************************************************/
/* PROMO-TARIFF - PAGE */
/* ANNOUNCEMENT */
.announcement {
  position: fixed;
  left: 0;
  top: 77px;
  background-color: var(--color-orange-light-1);
  padding: 16px 62px 14px 0;
  width: 100%;
  z-index: 8;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-icon {
  margin-right: 23px;
  width: 60px;
  height: 60px;
}

.announcement-text {
  color: var(--color-light);
  font-size: 26px;
  font-weight: 600;
}
/***************************************************************************/
/* TARIFF WELCOME */
.tariff-welcome {
  display: none;
  margin-top: 210px;
}
.tariff-welcome__wrapper {
  background-color: var(--color-orange-light-2);
  border-radius: 20px;
  padding-left: 81px;
  overflow: hidden;
}
.tariff-welcome__title {
  font-size: 58px;
  font-weight: 700;
  line-height: 110%;
  padding: 88px 0 50px 44px;
  position: relative;
  z-index: 2;
}
.tariff-welcome__container {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.tariff-welcome__content {
  padding-bottom: 35px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64%;
  flex: 0 0 64%;
  width: 64%;
  z-index: 2;
}
.tariff-welcome__text {
  color: var(--color-dark);
  font-size: 36px;
  font-weight: 500;
  line-height: 110%;
  margin-left: 78px;
  margin-bottom: 230px;
  max-width: 620px;
}
.tariff-welcome__text--marked {
    position: relative;
    z-index: 3;
}
.tariff-welcome__text--marked:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-51px, -20px);
          transform: translate(-51px, -20px);
  width: calc(100% + 82px);
  height: calc(100% + 34px);
  z-index: -1;
  background: url("../images/title-bg-white.png") center/100% 100% no-repeat;
}
.tariff-welcome__img-container {
  position: relative;
  width: 133%;
  left: 0;
  bottom: 0;
  transform: translateX(-42%);
}
.tariff-welcome__img {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44%;
  flex: 0 0 44%;
  width: 44%;
  height: 0;
  align-self: flex-end;
}
.tariff-welcome__img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: initial;
}
/***************************************************************************/
/* LIKES */
.likes {
  display: inline-flex;
  align-items: flex-end;
}

.likes__icon {
  margin-top: 12px;
  width: 213px;
  height: 133px;
  padding: 30px 0 0 27px;
  background: url("../images/promo/likes-empty.png") no-repeat center center;
  background-size: cover;
  color: #FFFFFF;
  font-size: 34px;
  line-height: 100%;
}
.likes__icon .likes__value {
  width: 100%;
  text-align: center;
  transform: rotate(-3deg);
}

.likes__text {
  color: var(--color-dark);
  font-size: 30px;
  font-weight: 300;
  line-height: 110%;
  transform: translate(-42px, -6px);
  white-space: nowrap;
}
.likes__text .text-mobile-visible {
  display: none;
}
/***************************************************************************/
/* PROMO WELCOME */
.promo-welcome {
  display: none;
  margin-top: 210px;
}
.promo-welcome__wrapper {
  background-color: var(--color-orange-light-2);
  border-radius: 65px;
  overflow: hidden;
}
.promo-welcome__container {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.promo-welcome__content {
  padding-left: 135px;
  padding-right: 62px;
  flex: 0 0 69%;
}
.promo-welcome__text {
  font-size: 35px;
  font-weight: 600;
  margin-top: 67px;
}
.promo-welcome__title {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 110%;
  margin-top: 100px;
  z-index: 3;
}
.promo-welcome__title:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-86px, -35px);
          transform: translate(-86px, -35px);
  width: calc(100% + 133px);
  height: calc(100% + 81px);
  z-index: -1;
  background: url("../images/title-bg-white.png") center/100% 100% no-repeat;
}
.promo-welcome__likes {
  margin-top: 121px;
  margin-bottom: 35px;
  transform: translateX(-44px);
}
.promo-welcome__likes .likes__text {
  transform: translate(-48px, -6px);
}
.promo-welcome__img {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 31%;
      flex: 0 0 31%;
  width: 31%;
  align-self: self-end;
  padding: 0 0 40%;
  margin-left: 5px;
  height: 0;
  z-index: 1;
}
.promo-welcome__img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom left;
  object-position: bottom left;
}

/***************************************************************************/
/* WHY */
.why {
  padding: 80px 0 85px;
}

.why-header {
  margin-bottom: 90px;
}

.why-title {
  font-size: 52px;
}

.why-item__number {
  text-align: center;
  margin-bottom: 55px;
}

.why-item__number span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-orange-light-1);
  border-radius: 50%;
  color: var(--color-light);
  font-size: 60px;
  font-family: sans-serif;
  font-weight: 700;
  height: 100px;
  width: 100px;
}

.why-item__title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 110%;
  margin-bottom: 30px;
}

.why-item__txt {
  font-size: 26px;
  line-height: 110%;
  font-weight: 400;
}
/***************************************************************************/
/* PROMO BONUS */
.promo-bonus {
  padding-top: 40px;
  padding-bottom: 40px;
}
.promo-bonus__text {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  padding-left: 35px;
  width: 65%;
}
.promo-bonus__text:after {
  content: '';
  position: absolute;
  height: 92px;
  width: 68px;
  bottom: -85px;
  right: -45px;
  transform: rotate(300deg) scale(-1,1);
  background: url(../images/tariff/arrow.png) center/contain no-repeat;
}
.promo-bonus__wrapper {
  display: flex;
  padding: 20px 10px 43px;
  margin-top: 50px;
  border-radius: 20px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23d7e3be' stroke-width='20' stroke-dasharray='40%2c 40' stroke-dashoffset='20' stroke-linecap='square'/%3e%3c/svg%3e");
}
.promo-bonus__malls {
  display: grid;
  grid-template-columns: repeat(3, fit-content(250px));
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 25px 0;
  flex-basis: 65%;
}
.promo-bonus__book {
  position: relative;
  padding-left: 5%;
  min-height: 100%;
  flex-basis: 35%;
}
.promo-bonus__book img {
  position: absolute;
  bottom: 0;
  max-height: 330px;
}
/***************************************************************************/
/* SMART WEEK */
.smart-week {
  padding-top: 120px;
}
.smart-week__title {
  position: relative;
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  line-height: 110%;
  margin: 0 auto;
  padding-left: 148px;
  width: 90%;
}
.smart-week__title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -30px);
  transform: translate(0, -30px);
  width: calc(100% + 52px);
  height: calc(100% + 60px);
  z-index: -1;
  background: url(../images/title-bg-big.png) center/100% 100% no-repeat;
}
.smart-week__title:after {
  content: '';
  position: absolute;
  top: -46px;
  left: 93px;
  width: 193px;
  height: 196px;
  z-index: 1;
  background: url(../images/promo/04.png) 0 0 no-repeat;
}
.smart-week__container {
  text-align: center;
  color: var(--color-light);
  line-height: 110%;

  position: relative;
  background-color: var(--color-green);
  margin-top: -50px;
  margin-bottom: 40px;
  padding: 115px 0 100px;
  z-index: -3;
}

.smart-week__container::before,
.smart-week__container::after {
  content: '';
  padding: 0 0 3%;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1;
}
.smart-week__container::before {
  top: -1px;
  background: url("../images/how/top.svg") top center/100% auto no-repeat;
  z-index: -2;
}

.smart-week__container::after {
  content: '';
  bottom: -2px;
  background: url("../images/how/bottom.svg") bottom center/100% no-repeat;
}

.smart-week__text {
  font-size: 36px;
  font-weight: 600;
  margin: 70px auto 77px;
  max-width: 72%;
  text-align: left;
  line-height: 110%;
}

.smart-week__text span {
  font-weight: 700;
}

.smart-week__text--big {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 52px;
  font-weight: 800;
  line-height: 110%;
}
/***************************************************************************/
/* TERMS - PAGE */
.terms {
  padding: 155px 0 65px;
  max-width: 1120px;
  font-size: 18px;
  line-height: 1.2;
}

.terms h1 {
  margin: 0px 0px 60px 0px;
  color: var(--color-dark);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
}

.terms h2 {
  margin: 0px 0px 17px 0px;
  font-weight: 700;
  text-transform: uppercase;
}

.terms ol {
  list-style: none;
}

.terms ol:not(:last-child) {
  margin: 0px 0px 55px 0px;
}

.terms ol > li:not(:last-child) {
  margin: 0px 0px 17px 0px;
}

.terms a {
  color: var(--color-orange);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .terms a:hover {
  color: var(--color-green);
}

.block-desktop-hidden {
  display: none;
}

/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
/* RESPONSIVE */
@media (max-width: 1640px) {
  .section-title {
    font-size: 52px;
  }
  .section-title--small {
    font-size: 38px;
  }
  .btn {
    width: 290px;
    height: 55px;
    font-size: 22px;
  }
  /**************************************/
  .header-menu__list > li:not(:last-child) {
    margin: 0px 35px 0px 0px;
  }
  .header-menu__list > li > a {
    font-size: 18px;
  }
  /**************************************/
  .intro {
    padding: 160px 0 80px;
  }
  .intro-title {
    font-size: 72px;
  }
  .intro-txt {
    font-size: 24px;
  }
  .intro-img {
    margin: 30px 0px 0px 0px;
  }
  /**************************************/
  .about-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
  .about-content__title {
    font-size: 32px;
  }
  /**************************************/
  .questions-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    width: 55%;
  }
  .questions-content > p {
    width: 100%;
  }
  .questions-title {
    font-size: 32px;
  }
  .questions-title > span:first-child {
    -webkit-transform: translateX(-7%);
            transform: translateX(-7%);
  }
  /**************************************/
  .bot-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
  /**************************************/
  .how-inner {
    margin: 0 -50px;
  }
  .how-item {
    margin: 0 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333% - 100px);
            flex: 0 0 calc(33.3333% - 100px);
    max-width: calc(33.3333% - 100px);
  }
  .how-item:nth-child(1):after {
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
  .how-item:nth-child(2):after {
    bottom: -8%;
    -webkit-transform: translateX(52%);
            transform: translateX(52%);
  }
  .how-item:after {
    padding: 0 0 14%;
    width: 35%;
  }
  /**************************************/
  .faq-item__title {
    font-size: 22px;
  }
  /**************************************/
  .footer-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-menu {
    margin: 0 0 0 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 250px - 30px);
            flex: 0 0 calc(100% - 250px - 30px);
    width: calc(100% - 250px - 30px);
  }
  .footer-menu__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer-social {
    margin: 15px 0px 0px 0px;
    text-align: right;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  /**************************************/
  .tariff--3items .tariff-item__top {
    font-size: 50px;
  }
  .tariff--3items .tariff-item__bottom {
    padding: 0 10px;
  }
  .tariff--3items .tariff-promo__input {
    padding: 0 30px;
  }
  .tariff-item__top {
    font-size: 56px;
  }
  .tariff-row {
    font-size: 21px;
  }
  .tariff-item__btn.btn {
    font-size: 18px;
  }
  .tariff-promo__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
  }
  .tariff__top-promo {
    /* padding-top: 110px; */
    padding-top: 190px;
  }
  .tariff__top-promo.tariff_timerless,
  .tariff__promo.tariff_timerless
  {
    padding-top: 120px;
  }
  .tariff__top-promo .tariff-title {
    font-size: 42px;
    margin-bottom: 57px;
  }
  .tariff__top-promo .tariff-promo {
    position: relative;
    align-items: flex-start;
    height: 78px;
  }
  .tariff__top-promo .tariff-promo__input {
    font-size: 24px;
  }
  .tariff__top-promo .tariff-promo__btn {
    font-size: 22px;
  }
  .tariff-item__tag {
    font-size: 26px;
  }
  .tariff__top-promo .tariff-col:first-child {
    padding-top: 90px;
  }
  .tariff__top-promo .tariff-row {
    height: 59px;
  }
  .tariff__top-promo .tariff-item__top {
    height: 90px;
    font-size: 52px;
  }
  .tariff__top-promo .tariff-item__btn.btn {
    font-size: 20px;
    height: 50px;
  }
  .tariff-item__tag {
    top: -37px;
  }
  .tariff__top-promo .tariff-col:last-child {
    padding-left: 4px;
    padding-right: 30px;
  }
  .tariff__top-promo .tariff-item:not(:last-child) {
    margin-right: 33px;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row {
    font-size: 21px;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row:last-child {
    font-size: 25px;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__price {
    font-size: 24px;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__total {
    font-size: 30px;
  }
  .tariff__top-promo .tariff-item__bottom {
    height: 76px;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row:last-child {
    height: 76px;
  }
  .tariff__top-promo .tariff-col:first-child {
    padding-bottom: 76px;
  }
  /**************************************/
  .reviews-slider {
    width: 100%;
  }
  /**************************************/
  .announcement {
    padding-top: 13px;
    padding-bottom: 12px;
  }
  .announcement-icon {
    width: 46px;
    height: 46px;
  }
  .announcement-text {
    font-size: 20px;
  }
  /**************************************/
  .tariff-welcome {
    margin-top: 172px;
  }
  .tariff-welcome__wrapper {
    padding-left: 55px;
  }
  .tariff-welcome__content {
    padding-bottom: 30px;
  }
  .tariff-welcome__title {
    font-size: 46px;
    padding-top: 69px;
    padding-bottom: 40px;
  }
  .tariff-welcome__text {
    font-size: 28px;
    margin-bottom: 195px;
    max-width: 66%;
  }
  .tariff-welcome__likes {
    margin-left: 11px;
  }
  .tariff-welcome__img {
    flex: 0 0 46%;
    width: 46%;
  }
  /**************************************/
  .likes__icon {
    margin-top: 0;
    width: 173px;
    height: 108px;
    padding: 22px 0 0 24px;
  }
  .likes__icon .likes__value {
    font-size: 0.8em;
  }
  .likes__text {
    font-size: 24px;
    transform: translate(-78px, -6px);
  }
  /***************************************/
  .what-to-cook {
    padding-top: 100px;
  }
  .what-to-cook__header {
    margin-bottom: 15px;
  }
  .what-to-cook__title {
    font-size: 32px;
    max-width: 70%;
  }
  .what-to-cook__title::before {
    -webkit-transform: translate(0, -30px);
    transform: translate(26px, -19px);
    width: calc(100%);
    height: calc(100% + 41px);
  }
  .what-to-cook__content {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 0;
  }
  .what-to-cook__img img {
    top: 0;
  }
  /***************************************/
  .presentation {
    padding: 50px 0 40px;
  }
  .presentation__header {
    margin-bottom: 30px;
  }
  .presentation__title {
    font-size: 30px;
  }
  .presentation__subtitle {
    font-size: 24px;
    margin-top: 10px;
  }
  .presentation__text {
    font-size: 22px;
    max-width: 250px;
  }
  .presentation__img {
    max-width: 80px;
    max-height: 80px;
    margin-bottom: 15px;
  }
  .presentation__item.item-1,
  .presentation__item.item-3 {
    margin-top: 30px;
  }
  .item-main__inner {
    padding: 0 0 86%;
  }
  /***************************************/
  .pros-of-bot__title {
    font-size: 28px;
  }
  .pros-of-bot__header {
    margin-bottom: 55px;
  }
  .pros-of-bot__title:before {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  .pros-of-bot__comment {
    font-size: 24px;
    padding: 11px 22px 15px 37px;
    margin-bottom: 36px;
  }
  .pros-of-bot__comment::after {
    height: 28px;
    width: 26px;
    bottom: -26px;
    left: 71px;
  }
  .pros-of-bot__comment .emoji {
    margin-right: 7px;
    margin-left: 7px;
  }
  .pros-of-bot__item {
    margin-bottom: 40px;
  }
  .pros-of-bot__item-header {
    font-size: 30px;
  }
  .pros-of-bot__item-text {
    font-size: 22px;
    max-width: 690px;
    margin-top: 25px;
  }
  /***************************************/
  .founder.bg--gray {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .founder-header {
    margin-bottom: 48px;
  }
  .founder-title {
    max-width: 1000px;
    margin-left: 110px;
    margin-right: 110px;
    font-size: 34px;
  }
  .founder-title:after {
    width: 60px;
    -webkit-transform: translate(50%, -57%);
    transform: translate(50%, -57%);
  }
  .founder.bg--gray .founder-photo {
    -ms-flex: 0 0 44%;
    flex: 0 0 44%;
  }
  .founder.bg--gray .founder-content {
    -ms-flex: 0 0 56%;
    flex: 0 0 56%;
    padding-right: 7%;
  }
  .founder-comment {
    padding: 28px 40px 29px;
  }
  .founder-comment__arrow {
    bottom: 45px;
    width: 59px;
    height: 58px;
  }
  .founder-comment__text {
    font-size: 20px;
  }
  .founder-caption__desktop {
    margin-top: 30px;
  }
  .founder-author,
  .founder-post {
    font-size: 24px;
  }
  .founder-post {
    font-weight: 400;
    font-size: 18px;
    margin-top:5px;
  }
  /*****************************************/
  .tariff-btn {
    margin: 37px 0;
  }
  .tariff-btn .btn {
    font-size: 26px;
    height: 70px;
    padding: 0 40px;
  }
  /*****************************************/
  .feedback {
    margin-bottom: 40px;
  }
  .feedback-title {
    font-size: 36px;
    margin-bottom: 27px;
  }
  .feedback .owl-carousel-nav {
    margin-bottom: 20px;
  }
  .feedback .owl-carousel-nav > button {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }
  /*****************************************/
  .emoji {
    width: 35px;
    height: 35px;
  }
  /*****************************************/

  .bot-steps-inner {
    grid-template-rows: 100px 84px 240px 1fr;
    grid-template-columns: 1fr 170px 48%;
    grid-template-areas:
    "title title phoneSlide"
    "text nav phoneSlide"
    "textSlide textSlide phoneSlide"
    "note note phoneSlide";
  }
  .bot-steps-title {
    font-size: 36px;
  }
  .bot-steps-text {
    font-size: 18px;
  }
  .bot-steps-slide__content {
    font-size: 20px;
    min-height: 215px;
    padding: 16px;
  }
  .bot-steps-note__text {
    font-size: 18px;
  }
  .bot-steps-note__icon {
    width: 120px;
    margin-right: 15px;
  }
  /*****************************************/
  .planner {
    padding-bottom: 80px;
  }
  .planner-title {
    font-size: 32px;
    margin-bottom: 26px;
  }
  .planner-content {
    -ms-flex: 0 0 58%;
        flex: 0 0 58%;
    font-size: 18px;
  }
  .planner-content__title {
    margin-bottom: 18px;
  }
  .planner-content__subtitle {
    margin-bottom: 16px;
  }
  .planner-content__arrow:after {
    bottom: -60px;
    height: 71px;
    width: 72px;
  }
  .planner-img__desktop {
    -ms-flex: 0 0 36%;
    flex: 0 0 36%;
    width: 36%;
  }
  .planner-btn {
    margin-top: 45px;
  }
  .planner-btn .btn {
    font-size: 26px;
    height: 70px;
    padding: 0 40px;
  }
  /*****************************************/
  .hearts__title {
    font-size: 36px;
  }
  .hearts__content {
    margin: 100px 0 50px;
  }
  .hearts__item-text {
    font-size: 22px;
  }
  .hearts__item-icon {
    padding: 0 0 70px;
    flex: 0 0 70px;
  }
  /*****************************************/
  .bonus {
    /* padding-top: 80px; */
    padding-top: 30px;
  }
  .bonus__header {
    margin-bottom: 60px;
  }
  .bonus__title {
    font-size: 36px;
  }
  .bonus__item:first-child {
    flex: 1 1 51%;
    margin-right: 62px;
  }
  .bonus__item:last-child {
    flex: 1 1 38%;
  }
  .bonus__item-title {
    font-size: 24px;
  }
  .bonus__item:first-child .bonus__item-title {
    padding-right: 17%;
  }
  .bonus__item:last-child .bonus__item-title {
    padding-right: 15%;
  }
  .bonus__item-image {
    margin-top: 42px;
  }
  .bonus__item-image.bonus__malls {
    margin-top: 80px;
  }
  /*****************************************/
  .example-content {
    font-size: 30px;
    flex: 0 0 50%;
  }
  .example-content {
    font-size: 22px;
  }
  .example-content p:not(:last-of-type) {
    margin-bottom: 35px;
  }
  .example-arrow {
    font-size: 26px;
  }
  .example-arrow::after {
    width: 60px;
    height: 60px;
    left: -110px;
  }
  .example-btn {
    margin-top: 70px;
  }
  .example-btn .btn {
    font-size: 24px;
    height: 70px;
    padding: 0 40px;
  }
  /*****************************************/
  .promo-welcome__content {
    padding-left: 115px;
  }
  .promo-welcome__text {
    font-size: 28px;
    margin-top: 60px;
  }
  .promo-welcome__title {
    font-size: 40px;
    margin-top: 80px;
  }
  .promo-welcome__title:after {
    -webkit-transform: translate(-67px, -30px);
    transform: translate(-67px, -30px);
    width: calc(100% + 125px);
    height: calc(100% + 66px);
  }
  /*****************************************/
  .tariff__promo {
    /* padding-top: 75px; */
    padding-top: 190px;
  }
  .tariff__promo .tariff-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .tariff__promo .tariff-item__top {
    height: 90px;
    font-size: 52px;
  }
  .tariff__promo .tariff-col:first-child {
    padding-top: 90px;
  }
  .tariff__promo .tariff-col:first-child .tariff-row {
    height: 59px;
    font-size: 21px;
    background-size: 30px auto;
    padding-left: 90px;
  }
  .tariff__promo .tariff-col:first-child .tariff-row:last-child {
    height: 200px;
    padding-top: 40px;
  }
  .tariff__promo .tariff-item .tariff-row {
    height: 59px;
  }
  .tariff__promo .tariff-row__total-title {
    font-size: 24px;
  }
  .tariff__promo .tariff-row__note {
    font-size: 19px;
  }
  .tariff__promo .tariff-row__total {
    font-size: 56px;
    padding: 0 15px 0 14px;
  }
  .tariff__promo .tariff-row__percent {
    font-size: 21px;
  }
  .tariff__promo .tariff-row__price {
    font-size: 21px;
  }
  .tariff__promo .tariff-row__price > span:after {
    left: -12%;
    width: 116%;
  }
  .tariff__promo .tariff-item__bottom {
    height: 125px;
    padding: 20px 15px 0;
  }
  .tariff__promo .tariff-item__btn.btn {
    font-size: 20px;
    height: 65px;
  }
  .tariff-col--image img {
    margin-top: -16px;
  }
  /**************************************/
  .promo-question__title {
    font-size: 44px;
  }
  .promo-question__title::before {
    -webkit-transform: translate(-60px, -25px);
    transform: translate(-60px, -25px);
    width: calc(100% + 120px);
  }
  .promo-question__comment {
    font-size: 24px;
    padding: 4px 30px 20px 35px;
  }
  .promo-question__comment .emoji {
    margin-left: 6px;
    transform: translateY(10px);
  }
  .promo-question__comment:after {
    height: 28px;
    width: 26px;
    bottom: -26px;
  }

  .promo-question__text {
    font-size: 22px;
    line-height: normal;
  }
  /**************************************/
  .why {
    padding-top: 45px;
  }
  .why-title {
    font-size: 44px;
  }
  .why-header {
    margin-bottom: 70px;
  }
  .why-item__number {
    margin-bottom: 45px;
  }
  .why-item__number span {
    font-size: 50px;
    width: 80px;
    height: 80px;
  }
  .why-item__title {
    font-size: 22px;
  }
  .why-item__txt {
    font-size: 20px;
  }
  /**************************************/
  .promo-bot-steps {
    padding-top: 80px;
  }
  .promo-bot-steps .bot-steps-title {
    margin: 0 74px;
    font-weight: 800;
    font-size: 37px;
  }
  .promo-bot-steps .bot-steps-title:after {
    -webkit-transform: translate(-85px, -25px);
    transform: translate(-85px, -25px);
    width: calc(100% + 175px);
    height: calc(100% + 50px);
  }
  .promo-bot-steps .bot-steps-inner {
    grid-template-rows: 126px 112px 265px;
  }
  /**************************************/
  .promo-bonus__text {
    font-size: 25px;
  }
  .promo-bonus__text:after {
    height: 78px;
    width: 67px;
    bottom: -72px;
    right: -55px;
  }
  .promo-bonus__wrapper {
    padding: 13px 10px 32px;
    margin-top: 40px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23d7e3be' stroke-width='16' stroke-dasharray='40%2c 30' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  }
  .promo-bonus__malls {
    grid-template-columns: repeat(3, fit-content(170px));
  }
  .promo-bonus__book {
    padding-left: 6%;
  }
  .promo-bonus__book img {
    max-height: 300px;
  }
  /**************************************/
  .smart-week {
    padding-top: 90px;
  }
  .smart-week__title {
    font-size: 42px;
  }
  .smart-week__title:before {
    -webkit-transform: translate(0, -30px);
    transform: translate(21px, -23px);
    width: calc(100% + 25px);
    height: calc(100% + 46px);
  }
  .smart-week__title:after {
    top: -30px;
    width: 150px;
    height: 150px;
    background-size: 150px 150px;
  }
  .smart-week__container {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .smart-week__text--big {
    font-size: 42px;
  }
  .smart-week__text {
    font-size: 28px;
    margin: 60px auto 67px;
  }
  /**************************************/
  .tariff-btn.tariff-btn--with-img {
    margin-bottom: 90px;
  }
  .tariff-btn.tariff-btn--with-img .btn {
    height: 80px;
    padding: 3px 45px 0 40px;
  }
  .tariff-btn img {
    width: 60px;
  }
}

/***************************************************************************/
@media (max-width: 1400px) {
  body {
    font-size: 16px;
  }
  .section-title {
    font-size: 46px;
  }
  .section-title--small {
    font-size: 34px;
  }
  .btn {
    width: 260px;
    height: 50px;
    font-size: 18px;
  }
  .bot-btn img {
    width: 20px;
  }
  /**************************************/
  .popup-content {
    padding: 35px 30px;
    max-width: 390px;
  }
  .popup-title {
    margin: 0px 0px 15px 0px;
    font-size: 30px;
  }
  .popup-form__input {
    margin: 0px 0px 15px 0px;
    height: 55px;
    line-height: 55px;
  }
  .popup-thanks .popup-content {
    max-width: 390px;
  }
  .popup-thanks__title {
    font-size: 30px;
  }
  /**************************************/
  .header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
    width: 230px;
  }
  /**************************************/
  .announcement {
    top: 72px;
  }
  /**************************************/
  .intro {
    padding: 125px 0 60px;
  }
  .intro-title {
    margin: 0px 0px 30px 0px;
    font-size: 60px;
  }
  .intro-txt {
    margin: 0px 0px 35px 0px;
    font-size: 22px;
  }
  .intro-img {
    margin: 0;
  }
  /**************************************/
  .about-content__title {
    font-size: 28px;
  }
  /**************************************/
  .questions {
    padding: 115px 0 140px;
  }
  .questions-title {
    font-size: 28px;
  }
  /**************************************/
  .how {
    padding: 110px 0 140px;
  }
  .how-item__title {
    font-size: 24px;
  }
  .how-item__txt {
    font-size: 18px;
  }
  /**************************************/
  .advantages {
    padding: 140px 0 50px;
  }
  /**************************************/
  .food-title {
    margin: 0px 0px 50px 0px;
  }
  .food-inner {
    gap: 15px;
  }
  .food-item__txt {
    font-size: 16px;
  }
  /**************************************/
  .faq {
    padding: 95px 0 140px;
  }
  .faq-header {
    margin: 0px 0px 60px 0px;
  }
  .faq-item__title {
    padding: 10px 50px;
    font-size: 18px;
  }
  .faq-item__content {
    padding: 25px 100px 10px 50px;
  }
  /**************************************/
  .founder {
    padding: 70px 0 80px;
  }
  .founder-txt {
    font-size: 20px;
  }
  /**************************************/
  .footer-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
    width: 230px;
  }
  .footer-menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 230px - 30px);
            flex: 0 0 calc(100% - 230px - 30px);
    width: calc(100% - 230px - 30px);
  }
  .footer-menu__list > li:not(:last-child) {
    margin: 0px 30px 0px 0px;
  }
  .footer-menu__list > li > a {
    font-size: 16px;
  }
  /**************************************/
  .tariff--3items .tariff-col:first-child {
    padding: 90px 0 80px;
  }
  .tariff--3items .tariff-promo {
    margin: 30px 0 0;
    width: 100%;
    height: auto;
  }
  .tariff--3items .tariff-promo__fields {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tariff--3items .tariff-item__bottom {
    height: 80px;
  }
  .tariff-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    width: 45%;
  }
  .tariff-col:first-child .tariff-row:after {
    width: 122%;
  }
  .tariff-col:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    width: 55%;
  }
  .tariff-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    width: 48%;
  }
  .tariff-item:not(:last-child) {
    margin: 0px 20px 0px 0px;
  }
  .tariff-promo {
    width: 45%;
  }
  .tariff__top-promo .tariff-title {
    font-size: 34px;
    margin-bottom: 52px;
  }
  .tariff__top-promo .tariff-promo {
    height: 66px;
  }
  .tariff__top-promo .tariff-promo__input {
    font-size: 18px;
    padding: 0 28px;
    -ms-flex: 1 0 57%;
    flex: 1 0 57%;
    width: 57%;
  }
  .tariff__top-promo .tariff-promo__btn {
    -ms-flex: 0 0 190px;
    flex: 0 0 190px;
    width: 190px;
    font-size: 18px;
  }
  .tariff-item__tag {
    top: -33px;
    font-size: 23px;
  }
  .tariff__top-promo .tariff-col:first-child {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row {
    font-size: 18px;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row:last-child {
    font-size: 20px;
  }
  .tariff__top-promo .tariff-row {
    height: 52px;
  }
  .tariff__top-promo .tariff-col:last-child {
    padding-right: 40px;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
  }
  .tariff__top-promo .tariff-item__top {
    height: 62px;
    font-size: 40px;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__price {
    font-size: 20px;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__total {
    font-size: 26px;
  }
  .tariff__top-promo .tariff-item__btn.btn {
    font-size: 16px;
    height: 38px;
  }
  .tariff-col--image img {
    margin-top: -50px;
  }
  /**************************************/
  .tariff-welcome__content {
    padding-bottom: 18px;
  }
  .tariff-welcome__wrapper {
    padding-left: 50px;
  }
  .tariff-welcome__title {
    padding: 45px 45px 40px 5px;
    font-size: 42px;
  }
  .tariff-welcome__text {
    font-size: 26px;
    margin-left: 18px;
    margin-bottom: 180px;
    min-width: 69%;
  }
  .tariff-welcome__text--marked:after {
    width: calc(100% + 95px);
  }
  .tariff-welcome__img img {
    height: 415px;
  }
  .tariff-welcome__likes {
    margin-left: 0;
  }
  /**************************************/
  .likes__icon {
    margin-top: 0;
    width: 149px;
    height: 93px;
    padding: 16px 0 0 24px;
  }
  .likes__icon .likes__value {
    font-size: 0.7em;
  }
  .likes__text {
    font-size: 20px;
    -webkit-transform: translate(-95px, -6px);
    transform: translate(-95px, -6px);
  }
  /**************************************/
  .reviews-header {
    margin: 0px 0px 75px 0px;
  }
  /**************************************/
  .terms {
    padding: 130px 0 65px;
    font-size: 16px;
    line-height: 1.3;
  }
  .terms h1 {
    font-size: 48px;
  }
  /**************************************/
  .tariff {
    padding-top: 90px;
  }
  .tariff__top-promo {
    padding-top: 185px;
  }
  /*************************************/
  .what-to-cook {
    padding-top: 80px;
  }
  .what-to-cook__header {
    margin-bottom: 12px;
  }
  .what-to-cook__title {
    font-size: 28px;
    padding: 0 50px;
    max-width: 63%;
  }
  .what-to-cook__title::before {
    -webkit-transform: translate(-38px, -22px);
    transform: translate(-38px, -22px);
    width: calc(100% + 45px);
  }
  .what-to-cook__content {
    font-size: 16px;
  }
  /**************************************/
  .presentation {
    margin-top: 0;
    padding-bottom: 53px;
  }
  .presentation__header {
    margin-bottom: 40px;
  }
  .presentation__title {
    font-size: 28px;
    max-width: 48%;
    line-height: 110%;
  }
  .presentation__subtitle {
    font-size: 18px;
    margin-top: 20px;
  }
  .presentation__img {
    max-width: 65px;
    max-height: 65px;
  }
  .presentation__text {
    font-size: 17px;
  }
  /**************************************/
  .pros-of-bot {
    margin-top: 60px;
  }
  .pros-of-bot__header {
    margin-bottom: 45px;
  }
  .pros-of-bot__title {
    font-size: 26px;
  }
  .pros-of-bot__title:before {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .pros-of-bot__comment {
    font-size: 20px;
    padding: 8px 17px 14px 28px;
  }
  .pros-of-bot__comment::after {
    height: 21px;
    width: 24px;
    bottom: -20px;
    left: 71px;
  }
  .pros-of-bot__item-header {
    font-size: 28px;
  }
  .pros-of-bot__item {
    margin-bottom: 30px;
  }
  .pros-of-bot__item-text {
    font-size: 18px;
    margin-top: 20px;
    max-width: 650px;
  }
  .pros-of-bot__comment .emoji {
    margin-bottom: -7px;
  }
  /**************************************/
  .emoji {
    width: 30px;
    height: 30px;
  }
  /**************************************/
  .founder.bg--gray {
    padding-top: 41px;
    padding-bottom: 33px;
  }
  .founder-header {
    margin-bottom: 25px;
  }
  .founder-title {
    font-size: 24px;
    max-width: 700px;
  }
  .founder-title:after {
    width: 40px;
    -webkit-transform: translate(36%, -72%);
            transform: translate(36%, -72%);
  }
  .founder.bg--gray .founder-content {
    padding-right: 10%;
  }
  .founder.bg--gray .founder-photo {
    padding: 0 0 34%;
  }
  .founder-caption__desktop {
    margin-top: 30px;
  }
  .founder-comment {
    padding: 22px 35px 21px;
  }
  .founder-comment__text {
    font-size: 18px;
    line-height: 110%;
  }
  .founder-caption__desktop {
    margin-top: 28px;
  }
  .founder-author,
  .founder-post {
    font-size: 20px;
  }
  .founder-post {
    font-size: 17px;
  }
  /**************************************/
  .tariff-btn {
    margin: 26px 0;
  }
  .tariff-btn .btn {
    font-size: 25px;
    height: 67px;
    padding: 0 48px;
  }
  /**************************************/
  .feedback {
    margin-top: 65px;
  }
  .feedback-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .feedback-slider__nav {
    margin-right: 65px;
    margin-bottom: 16px;
  }
  /**************************************/
  .bot-steps-title {
    font-size: 26px;
    margin-bottom: 17px;
  }
  .bot-steps-text {
    font-size: 16px;
  }
  .bot-steps-inner {
    grid-template-rows: 88px 59px 220px 1fr;
  }
  .bot-steps-slide__content {
    font-size: 18px;
    min-height: 190px;
  }
  .bot-steps-note__icon {
    width: 100px;
  }
  .bot-steps-note {
    margin-top: 0;
  }
  .bot-steps-note__text {
    font-size: 16px;
  }
  /**************************************/
  .planner-title {
    font-size: 26px;
    margin-bottom: 22px;
  }
  .planner-content {
    font-size: 16px;
  }
  .planner-content__arrow::after {
    height: 64px;
    width: 63px;
    bottom: -53px;
  }
  .planner-content__title {
    margin-top: 40px;
  }
  .planner-btn {
    margin-top: 30px;
  }
  .planner-btn .btn {
    height: 60px;
    font-size: 20px;
    padding: 0 28px;
  }
  .planner-img__desktop {
    padding: 0 0 40%;
  }
  .planner-img__desktop img {
    object-position: initial;
  }
  /**************************************/
  .hearts__title {
    font-size: 32px;
  }
  .hearts__content {
    margin: 80px 20px 50px;
  }
  .hearts__item {
    margin: 0 20px;
  }
  .hearts__item-text {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .hearts__item:nth-child(2n) .hearts__item-text {
    margin-top: 50px;
  }
  .hearts__item-icon {
    padding: 0 0 50px;
    flex: 0 0 50px;
  }
  /***************************************/
  .bonus {
    /* padding-top: 50px; */
    padding-top: 20px;
  }
  .bonus__header {
    margin-bottom: 45px;
  }
  .bonus__title {
    font-size: 32px;
  }
  .bonus__item-title {
    font-size: 20px;
  }
  .bonus__item:first-child {
    margin-right: 42px;
  }
  .bonus__book {
    padding: 0 0 65%;
    -ms-flex: 0 0 74%;
    flex: 0 0 74%;
  }
  /*****************************************/
  .example-content p:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .example-arrow {
    font-size: 20px;
  }
  .example-arrow::after {
    width: 59px;
    left: -85px;
  }
  .example-content {
    font-size: 16px;
  }
  .example-btn {
    margin-top: 60px;
  }
  .example-btn .btn {
    height: 60px;
    font-size: 18px;
    padding: 0 28px;
  }
  /*****************************************/
  .promo-welcome__content {
    padding-left: 100px;
  }
  .promo-welcome__text {
    font-size: 24px;
    margin-top: 45px;
  }
  .promo-welcome__title {
    font-size: 34px;
    margin-top: 70px;
  }
  .promo-welcome__title:after {
    -webkit-transform: translate(-64px, -26px);
    transform: translate(-64px, -26px);
    width: calc(100% + 108px);
    height: calc(100% + 47px);
  }
  .promo-welcome__likes {
    margin-top: 100px;
  }
  /*****************************************/
  .tariff__promo {
    /* padding-top: 60px; */
    padding-top: 185px;
  }
  .tariff__promo .tariff-title {
    font-size: 30px;
    margin-bottom: 35px;
  }
  .tariff__promo .tariff-item__top {
    height: 62px;
    font-size: 40px;
  }
  .tariff__promo .tariff-col:first-child {
    padding-top: 62px;
  }
  .tariff__promo .tariff-col:first-child .tariff-row {
    height: 52px;
    font-size: 18px;
    background-size: 26px auto;
    background-position: 24px center;
    padding-left: 70px;
  }
  .tariff__promo .tariff-col:first-child .tariff-row:last-child {
    height: 155px;
    padding-top: 30px;
  }
  .tariff__promo .tariff-item .tariff-row {
    height: 52px;
  }
  .tariff__promo .tariff-row__total-title {
    font-size: 21px;
  }
  .tariff__promo .tariff-row__note {
    font-size: 16px;
    padding-top: 20px;
  }
  .tariff__promo .tariff-item__total {
    padding-top: 25px;
  }
  .tariff__promo .tariff-row__total {
    font-size: 44px;
  }
  .tariff__promo .tariff-row__percent {
    font-size: 18px;
    padding: 6px;
  }
  .tariff__promo .tariff-row__price {
    font-size: 18px;
  }
  .tariff__promo .tariff-item__bottom {
    height: 102px;
    padding-top: 18px;
  }
  .tariff__promo .tariff-item__btn.btn {
    font-size: 16px;
    height: 52px;
  }
  .tariff-col.tariff-col--single {
    flex-basis: 20%;
  }
  .tariff-col.tariff-col--image {
    margin-top: 0;
    flex-basis: 25%;
  }
  /**************************************/
  .promo-question__title {
    font-size: 36px;
  }
  .promo-question__title::before {
    -webkit-transform: translate(-45px, -20px);
    transform: translate(-45px, -20px);
    width: calc(100% + 90px);
    height: calc(100% + 40px);
  }
  .promo-question__comment {
    font-size: 20px;
    padding: 4px 25px 16px 30px;
  }
  .promo-question__comment:after {
    height: 21px;
    width: 24px;
    bottom: -20px;
    left: 71px;
  }
  .promo-question__row {
    gap: 35px;
  }
  .promo-question__comment .emoji {
    transform: translateY(8px);
  }
  .promo-question__text {
    font-size: 18px;
  }
  .promo-question__text {
    margin-right: 20px;
  }
  .promo-question__row:nth-child(2n) .promo-question__comment {
    margin-left: 0;
  }
  .promo-question__row:nth-child(2n) .promo-question__text {
    margin-left: 30px;
  }
  /**************************************/
  .why {
    padding-top: 15px;
  }
  .why-title {
    font-size: 36px;
  }
  .why-header {
    margin-bottom: 60px;
  }
  .why-item__number {
    margin-bottom: 35px;
  }
  .why-item__number span {
    font-size: 40px;
    width: 60px;
    height: 60px;
  }
  .why-item__title {
    font-size: 21px;
    margin-bottom: 23px;
  }
  .why-item__txt {
    font-size: 18px;
  }
  /**************************************/
  .promo-bot-steps {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .promo-bot-steps .bot-steps-title {
    font-size: 32px;
  }
  .promo-bot-steps .bot-steps-title:after {
    -webkit-transform: translate(-70px, -20px);
    transform: translate(-70px, -20px);
    width: calc(100% + 140px);
    height: calc(100% + 40px);
  }
  .promo-bot-steps .bot-steps-inner {
    grid-template-rows: 98px 102px 246px;
  }
  .promo-bot-steps .bot-steps-slide__content {
    padding: 16px;
  }
  .promo-bot-steps .bot-steps-slider__text {
    margin-left: 0;
    width: 100%;
  }
  /**************************************/
  .promo-bonus {
    padding-top: 30px;
  }
  .promo-bonus__text {
    font-size: 20px;
  }
  .promo-bonus__text:after {
    height: 64px;
    width: 60px;
    right: -40px;
  }
  .promo-bonus__wrapper {
    padding: 20px 10px 32px;
  }
  .promo-bonus__malls {
    grid-template-columns: repeat(3, fit-content(150px));
    gap: 20px 0;
  }
  .promo-bonus__book img {
    max-height: 250px;
  }
  /**************************************/
  .smart-week {
    padding-top: 65px;
  }
  .smart-week__title {
    font-size: 36px;
  }
  .smart-week__title:before {
    -webkit-transform: translate(11px, -18px);
    transform: translate(11px, -18px);
    width: calc(100% + 15px);
    height: calc(100% + 36px);
  }
  .smart-week__title:after {
    top: -26px;
    width: 130px;
    height: 130px;
    background-size: 130px;
  }
  .smart-week__container {
    padding-top: 90px;
    padding-bottom: 70px;
  }
  .smart-week__text--big {
    font-size: 36px;
  }
  .smart-week__text {
    font-size: 24px;
    margin: 50px auto 50px;
    max-width: 67%;
  }
  /**************************************/
  .tariff-btn.tariff-btn--with-img {
    margin-bottom: 75px;
  }
  .tariff-btn.tariff-btn--with-img .btn {
    height: 70px;
    padding: 3px 35px 0 30px;
  }
  .tariff-btn img {
    margin-right: 10px;
    width: 48px;
  }
}

/***************************************************************************/
@media (max-width: 1100px) {
  .section-title {
    font-size: 36px;
  }
  .section-title--small {
    font-size: 28px;
  }
  /**************************************/
  .header {
    padding: 14px 0;
  }
  .header-menu__list > li:not(:last-child) {
    margin: 0px 30px 0px 0px;
  }
  .header-menu__list > li > a {
    font-size: 16px;
  }
  /**************************************/
  .intro-title {
    font-size: 54px;
  }
  /**************************************/
  .about {
    padding: 95px 0 40px;
  }
  .about-header {
    margin: 0px 0px 40px 0px;
  }
  .about-title:after {
    width: 50px;
    height: 50px;
  }
  .about-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    width: 55%;
  }
  .about-content__title {
    margin: 0px 0px 18px 0px;
    font-size: 24px;
  }
  .about-content__title br {
    display: none;
  }
  .about-img {
    padding: 0px 0 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 43%;
            flex: 0 0 43%;
    width: 43%;
  }
  /**************************************/
  .slogan {
    margin: 25px auto;
    max-width: 550px;
  }
  /**************************************/
  .questions {
    padding: 85px 0 115px;
  }
  .questions-title {
    padding: 0 0 0 15%;
    margin: 0px 0px 55px 0px;
    font-size: 24px;
  }
  .questions-title > span:before {
    -webkit-transform: translate(-55px, -17px);
            transform: translate(-55px, -17px);
    width: calc(100% + 110px);
    height: calc(100% + 40px);
  }
  .questions-title > span:first-child {
    margin: 0px 0px 55px 0px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .questions-title > span:last-child {
    margin: 0 0 0 13%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /**************************************/
  .bot {
    padding: 40px 0 70px;
  }
  .bot-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56%;
            flex: 0 0 56%;
    width: 56%;
  }
  .bot-title {
    margin: 0px 0px 18px 0px;
  }
  .questions-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
  .bot-img__desktop {
    padding: 0 0 58%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
    width: 42%;
  }
  .bot-btn {
    margin: 10px 0px 0px 0px;
  }
  /**************************************/
  .how {
    padding: 95px 0;
  }
  .how-title {
    margin: 0px 0px 40px 0px;
  }
  .how-inner {
    margin: 0 -20px;
  }
  .how-item {
    margin: 0 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333% - 40px);
            flex: 0 0 calc(33.3333% - 40px);
    max-width: calc(33.3333% - 40px);
  }
  .how-item:nth-child(1):after, .how-item:nth-child(2):after {
    display: none;
  }
  .how-item__title {
    margin: 0px 0px 10px 0px;
    font-size: 20px;
  }
  .how-item__txt {
    font-size: 16px;
  }
  /**************************************/
  .advantages {
    padding: 120px 0 30px;
  }
  .advantages-header {
    margin: 0px 0px 95px 0px;
  }
  .advantages-title:after {
    width: 50px;
    height: 50px;
  }
  .advantages-inner {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 20px;
  }
  /**************************************/
  .food {
    padding: 50px 0;
  }
  .food-title {
    margin: 0px 0px 40px 0px;
  }
  .food-inner {
    padding: 0 20px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  /**************************************/
  .faq {
    padding: 85px 0 110px;
  }
  .faq-header {
    margin: 0px 0px 40px 0px;
  }
  .faq-title:before {
    width: 50px;
    height: 50px;
    -webkit-transform: translate(-120%, -70%);
            transform: translate(-120%, -70%);
  }
  .faq-inner {
    max-width: 100%;
  }
  .faq-item__title {
    font-size: 18px;
  }
  /**************************************/
  .founder {
    padding: 60px 0 50px;
  }
  .founder-title:after {
    width: 50px;
    height: 50px;
  }
  .founder-photo {
    padding: 0 0 48%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37%;
            flex: 0 0 37%;
    width: 37%;
  }
  .founder-content__top {
    margin: 0px 0px 15px 0px;
  }
  .founder-name {
    font-size: 24px;
  }
  .founder-contact {
    font-size: 18px;
  }
  .founder-occupation {
    margin: 0px 0px 80px 0px;
    font-size: 18px;
  }
  .founder-txt {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
  }
  /**************************************/
  .footer {
    padding: 30px 0 50px;
  }
  /**************************************/
  .tariff {
    padding: 115px 0 40px;
  }
  .tariff--3items .tariff-inner {
    display: block;
  }
  .tariff--3items .tariff-col:first-child {
    display: none;
  }
  .tariff--3items .tariff-col:last-child {
    margin: 0 -10px;
    width: calc(100% + 20px);
  }
  .tariff--3items .tariff-row {
    padding: 0 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tariff--3items .tariff-item {
    margin: 0 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333% - 20px);
            flex: 0 0 calc(33.3333% - 20px);
    width: calc(33.3333% - 20px);
  }
  .tariff--3items .tariff-item:not(:last-child) {
    margin: 0 10px;
  }
  .tariff--3items .tariff-item .tariff-row {
    font-size: 18px;
  }
  .tariff--3items .tariff-item__top {
    font-size: 48px;
  }
  .tariff--3items .tariff-row__title {
    display: block;
  }
  .tariff--3items .tariff-row__total {
    font-size: 24px;
  }
  .tariff-title {
    margin: 0px 0px 30px 0px;
  }
  .tariff-col:first-child {
    padding: 70px 0px 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .tariff-col:first-child .tariff-row {
    padding: 0 0 0 23px;
  }
  .tariff-col:first-child .tariff-row:after {
    right: 1px;
    width: 258%;
  }
  .tariff-col:last-child {
    padding: 0 15px 0 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
    width: 70%;
  }
  .tariff-row {
    font-size: 18px;
  }
  .tariff-item__top {
    height: 70px;
    font-size: 48px;
  }
  .tariff-item__bottom {
    height: 80px;
  }
  .tariff-promo {
    position: relative;
    top: 0;
    bottom: 0;
    margin: 30px 0;
    width: 100%;
    height: auto;
  }
  .tariff-promo__input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66%;
            flex: 0 0 66%;
    width: 66%;
  }
  .tariff-promo__btn {
    padding: 0 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
    width: 34%;
  }
  /**************************************/
  .reviews {
    padding: 80px 0 60px;
  }
  .reviews-slider {
    width: 71%;
  }
  .block-desktop-hidden {
    display: block;
  }
  /**************************************/
  .tariff-welcome__title {
    padding-top: 57px;
  }
  .tariff-welcome__text--marked:after {
      width: calc(100% + 70px);
  }
  .tariff-welcome__img-container {
    transform: translateX(-45%);
  }
  /**************************************/
  .announcement {
    padding: 13px 0 11px;
  }
  .announcement-icon {
    flex-shrink: 0;
    margin-right: 10px;
    width: 40px;
    height: 40px;
  }
  .announcement-text {
    font-size: 22px;
  }
  /**************************************/
  .tariff-welcome {
    margin-top: 192px;
  }
  /**************************************/
  .tariff__top-promo {
    /* padding-top: 60px; */
    padding-top: 185px;
  }
  .tariff__top-promo .tariff-promo {
    margin-top: 6px;
    margin-bottom: 60px;
    max-width: 500px;
    width: 100%;
  }
  .tariff__top-promo .tariff-promo__input {
    flex: 1;
    width: inherit;
  }
  .tariff-item__tag {
    top: -40px;
  }

  .tariff__top-promo .tariff-col:first-child {
    flex: 0 0 30%;
    width: 30%;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row:after {
    width: 235%;
  }
  .tariff__top-promo .tariff-col:last-child {
    flex: 0 0 55%;
  }
  .tariff__top-promo .tariff-item__top {
    height: 70px;
    font-size: 48px;
  }
  .tariff__top-promo .tariff-col:first-child {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row {
    font-size: 16px;
    padding-left: 25px;
    padding-right: 10px;
  }
  .tariff__top-promo .tariff-row__discount,
  .tariff__top-promo .tariff-row__price-per-month,
  .tariff__top-promo .tariff-item__total .tariff-row__price {
    font-size: 24px;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row:last-child {
    font-size: 22px;
  }
  /**************************************/
  .what-to-cook {
    padding-top: 50px;
  }
  .what-to-cook__title {
    max-width: 70%;
  }
  .what-to-cook__title::before {
    transform: translate(-12px, -22px);
    width: calc(100% + 31px);
  }
  .what-to-cook__container {
    flex-direction: row-reverse;
  }
  .what-to-cook__content {
    padding-left: 0;
    -ms-flex: 0 0 37%;
    flex: 0 0 37%;
  }
  .what-to-cook__img {
    padding: 0 0 22%;
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
  }
  /**************************************/
  .presentation__title {
    font-size: 28px;
  }
  .presentation__subtitle {
    font-size: 23px;
    margin-top: 15px;
  }
  .item-main__inner {
    padding: 0 0 120%;
  }
  .presentation__text {
    font-size: 20px;
  }
  /**************************************/
  .pros-of-bot {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .pros-of-bot__title {
    font-size: 28px;
  }
  .pros-of-bot__title:before {
    width: 60px;
    height: 60px;
  }
  .pros-of-bot__comment {
    font-size: 24px;
    padding: 10px 17px 16px 28px;
  }
  .pros-of-bot__item-header {
    font-size: 30px;
  }
  .pros-of-bot__item-text {
    font-size: 22px;
    margin-top: 23px;
  }
  .pros-of-bot__comment .emoji {
    margin-left: 2px;
  }
  /**************************************/
  .founder.bg--gray {
    padding-top: 50px;
  }
  .founder-title {
    font-size: 28px;
    max-width: inherit;
  }
  .founder-title:after {
    width: 40px;
    height: 40px;
    -webkit-transform: translate(-34%, -96%);
    transform: translate(-34%, -96%);
  }
  .founder-comment__arrow {
    bottom: 45px;
    width: 50px;
    height: 52px;
    left: -41px;
  }
  /**************************************/
  .tariff-btn {
    margin: 37px 0;
  }
  .tariff-btn .btn {
    font-size: 30px;
    height: 75px;
  }
  /**************************************/
  .feedback {
    margin-bottom: 60px;
  }
  .feedback-title {
   font-size: 32px;
  }
  .feedback-slide {
    padding: 20px;
  }
  /***************************************/
  .bot-steps-inner {
    position: relative;
    min-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .bot-steps-title {
    font-size: 32px;
    order: 1;
    text-align: center;
    margin: 0 160px 40px;
  }
  .bot-steps-text {
    order: 2;
    margin: 0 20px;
    font-size: 26px;
  }
  .bot-steps-slider__nav {
    order: 4;
    justify-content: space-between;
    transform: translateY(-30vw);
    margin-top: -80px;
    width: 100%;
    z-index: 2;
  }
  .bot-steps-slider__nav.owl-carousel-nav > button {
    width: 80px;
    height: 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }
  .bot-steps-slider__image {
    order: 3;
    transform: translateX(0);
    margin: 40px auto;
    width: 60%;
  }
  .bot-steps-slider__text {
    transform: translateX(0);
    order: 5;
  }
  .bot-steps-note {
    order: 6;
  }
  .bot-steps-slide__content {
    background: none;
    box-shadow: none;
    min-height: inherit;
    margin: 10px 0 40px;
    font-size: 26px;
  }
  .bot-steps-note {
    flex-direction: column;
    align-content: center;
    margin-top: 0;
    width: 100%;
  }
  .bot-steps-note__icon {
    width: 150px;
    margin-right: 0;
  }
  .bot-steps-note__text {
    font-size: 26px;
    margin-top: 10px;
  }
  /****************************************/
  .planner {
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .planner-content {
    font-size: 26px;
  }
  .planner-inner {
    flex-direction: column;
  }
  .planner-title {
    font-size: 30px;
    text-align: center;
    margin: 0 100px 30px;
    line-height: 110%;
  }
  .planner-content__arrow {
    font-size: 26px;
  }
  .planner-content__arrow::after {
    transform: rotate(122deg) scale(1, -1);
    right: 34%;
    bottom: -57px;
    height: 73px;
    width: 48px;
    z-index: 3;
  }
  .planner-content__title {
    font-size: 30px;
    margin-bottom: 34px;
  }
  .planner-content__subtitle {
    margin-bottom: 32px;
  }
  .planner-img__mobile {
    display: block;
    padding-bottom: 56%;
    margin: 30px auto 0;
  }
  .planner-img__desktop {
    display: none;
  }
  .planner-img__mobile img {
    object-position: center;
  }
  .planner-btn {
    display: flex;
    justify-content: center;
    margin-top: 56px;
  }
  .planner-btn .btn {
    font-size: 30px;
    height: 75px;
  }
  /****************************************/
  .hearts__title {
    font-size: 30px;
  }
  .hearts__content {
    flex-direction: column;
    margin: 20px 0 0;
  }
  .hearts__item {
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .hearts__item:nth-child(2n) {
    flex-direction: row-reverse;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .hearts__item-icon {
    flex-basis: 30%;
  }
  .hearts__item-text {
    font-size: 24px;
    flex-basis: 70%;
    margin-bottom: 0;
  }
  .hearts__item:nth-child(2n) .hearts__item-text {
    margin-top: 0;
  }
  .hearts__item:nth-child(2n) .hearts__item-icon {
    flex-basis: 22%;
  }
  .hearts__item:nth-child(2n) .hearts__item-text {
    flex-basis: 78%;
  }
  /****************************************/
  .bonus {
    /* padding-top: 65px; */
    padding-top: 15px;
  }
  .bonus__header {
    margin-bottom: 60px;
  }
  .bonus__title {
    font-size: 36px;
    margin: 0 50px;
  }
  .bonus__content {
    flex-direction: column;
  }
  .bonus__item:first-child {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .bonus__item-title {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
  }
  .bonus__item:first-child .bonus__item-title {
    padding-right: 0;
  }
  .bonus__item-image.bonus__malls {
    margin-top: 40px;
    margin-right: 0;
  }
  .bonus__malls picture {
    margin-bottom: 14px;
  }
  .bonus__item:last-child .bonus__item-title {
    padding-right: 0;
  }
  .bonus__book {
    margin-top: 51px;
    transform: rotate(-4deg);
    padding: 0 0 33%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
  }
  /****************************************/
  .example {
    padding-top: 90px;
    padding-bottom: 78px;
  }
  .example-inner {
    flex-direction: column;
  }
  .example-content {
    text-align: center;
    flex: 1;
    padding-right: 0;
    font-size: 30px;
  }
  .example-arrow {
    font-size: 30px;
    margin-right: 0;
  }
  .example-arrow:after {
    transform: scale(1, -1) rotate(200deg);
    right: 43px;
    left: auto;
    bottom: -222px;
    width: 95px;
    height: 95px;
  }
  .example-img__mobile {
    display: block;
    margin: 50px 0;
    padding-bottom: 80%;
    width: 100%;
  }
  .example-img__desktop {
    display: none;
  }
  .example-img__mobile img {
    object-position: center;
  }
  .example-btn {
    margin-top: 45px;
  }
  .example-btn .btn {
    font-size: 28px;
    height: 75px;
  }
  /****************************************/
  .promo-welcome__text {
    font-size: 26px;
  }
  .promo-welcome__likes .likes__text {
    transform: translate(-48px, -6px);
  }
  /****************************************/
  .tariff__promo {
    /* padding-top: 95px; */
    padding-top: 185px;
  }
  .tariff-col.tariff-col--image {
    flex-basis: 26%;
  }
  .tariff__promo .tariff-col:first-child .tariff-row:after {
    width: 128%;
  }
  .tariff__promo .tariff-row__total {
    font-size: 42px;
  }
  .tariff-col--image img {
    margin-top: -50px;
  }
  /****************************************/
  .promo-question {
    padding-top: 55px;
    padding-bottom: 65px;
  }
  .promo-question__header {
    margin-bottom: 95px;
  }
  .promo-question__row + .promo-question__row {
    margin-top: 50px;
  }
  /****************************************/
  .why-header {
    margin-bottom: 53px;
  }
  /****************************************/
  .promo-bot-steps {
    padding-top: 25px;
    padding-bottom: 0;
  }
  .promo-bot-steps .bot-steps-title,
  .promo-bot-steps .bot-steps-text,
  .promo-bot-steps .bot-steps-slider__nav {
    align-self: center
  }
  .promo-bot-steps .bot-steps-title {
    margin-bottom: 40px;
  }
  /****************************************/
  .promo-bonus__text {
    font-size: 21px;
  }
  /****************************************/
  .smart-week__title:after {
    left: 80px;
  }
  /****************************************/
  .tariff-btn.tariff-btn--with-img .btn {
    font-size: 28px;
  }
}

/***************************************************************************/
@media (max-width: 991.98px) {
  .header-menu {
    padding: 15px 30px 50px;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
    width: 400px;
    height: 100%;
    overflow: auto;
    z-index: 11;
    background-color: var(--color-light);
    will-change: transform;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  }
  .header-menu.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header-menu__logo {
    margin: 0px 0px 40px 0px;
    display: block;
  }
  .header-menu__close {
    display: block;
  }
  .header-menu__list {
    margin: 0px 0px 55px 0px;
    display: block;
  }
  .header-menu__list > li:not(:last-child) {
    margin: 0px 0px 25px 0px;
  }
  .header-menu__list > li > a {
    font-size: 20px;
  }
  .header-menu__btn {
    display: block;
  }
  .burger {
    display: block;
  }
  /**************************************/
  .flex-column {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
  /**************************************/
  .intro-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 420px;
            flex: 0 0 420px;
    width: 420px;
  }
  .intro-title {
    margin: 0px 0px 25px 0px;
    font-size: 48px;
  }
  .intro-img {
    padding: 0 0 49%;
    margin: 100px 0px 0px 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
    width: 58%;
  }
  /**************************************/
  .founder-title {
    margin: 0 70px;
  }
  .founder-title .text--nowrap {
    white-space: inherit;
  }
  /**************************************/
  .why {
    padding: 50px 0 20px;
  }
  .why-header {
    margin-bottom: 50px;
  }
  .why-item {
    margin-bottom: 50px;
  }
  /**************************************/
  .footer {
    padding: 30px 0;
  }
  .footer-top {
    margin: 0px 0px 35px 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .footer-menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .footer-menu__list {
    margin: 10px 0px 0px 0px;
    display: block;
  }
  .footer-menu__list > li {
    margin: 0;
  }
  .footer-menu__list > li:not(:last-child) {
    margin: 0px 0px 13px 0px;
  }
  .footer-social {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    text-align: center;
  }
  .footer-bottom {
    font-size: 14px;
    align-items: flex-start;
  }
  /**************************************/
  .terms {
    padding: 120px 0 55px;
  }
  .terms h1 {
    margin: 0px 0px 30px 0px;
    font-size: 36px;
  }
  .terms ol:not(:last-child) {
    margin: 0px 0px 50px 0px;
  }
  .terms ol > li:not(:last-child) {
    margin: 0px 0px 14px 0px;
  }
  /***************************************/
  .tariff-welcome {
    margin-top: 180px;
  }
  .tariff-welcome__wrapper {
    padding-left: 43px;
  }
  .tariff-welcome__content {
    flex: 0 0 59%;
    width: 59%;
  }
  .tariff-welcome__img {
    flex: 0 0 61%;
    width: 61%;
  }
  .tariff-welcome__title {
    font-size: 32px;
    padding: 57px 20px 39px 0;
}
  .tariff-welcome__text {
    font-size: 22px;
    max-width: 76%;
  }
  .tariff-welcome__text--marked:after {
    -webkit-transform: translate(-41px, -11px);
            transform: translate(-41px, -11px);
    width: calc(100% + 70px);
    height: calc(100% + 21px);
  }
  .tariff-welcome__img-container {
    transform: translateX(-40%);
  }
  .tariff-welcome__img img {
    height: 420px;
  }
  .tariff-welcome__likes {
    margin-left: -24px;
  }
  /***************************************/
  .likes__icon img {
    width: 72%;
  }
  .likes__text {
    font-size: 18px;
  }
  /***************************************/
  .tariff__top-promo {
    /* padding-top: 52px; */
    padding-top: 185px;
  }
  .tariff__top-promo .tariff-title {
    font-size: 28px;
    margin-bottom: 38px;
  }
  .tariff__top-promo .tariff-title span.text-mobile-hidden {
    color: inherit;
  }
  .tariff__top-promo .tariff-promo {
    height: 90px;
    max-width: 730px;
    margin-bottom: 80px;
  }
  .tariff__top-promo .tariff-promo__input {
    font-size: 26px;
    padding: 0 47px;
  }
  .tariff__top-promo .tariff-promo__btn {
    font-size: 28px;
    flex: 0 0 250px;
    width: 250px;
  }
  .tariff__top-promo .tariff-col:first-child {
    flex: 0 0 32%;
    width: 35%;
  }
  .tariff__top-promo .tariff-item:not(:last-child) {
    margin-right: 20px;
  }
  .tariff__top-promo .tariff-col:last-child {
    padding-right: 23px;
    flex: 0 0 68%;
    width: 65%;
  }
  .tariff__top-promo .tariff-col:first-child .tariff-row:after {
    width: 215%;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__total {
    font-size: 34px;
  }
  .tariff-item__tag {
    font-size: 24px;
    white-space: nowrap;
  }
  .tariff__top-promo .tariff-item__btn.btn {
    font-size: 18px;
    height: 50px;
  }
  /***********************************/
  .what-to-cook__title {
    font-size: 32px;
    max-width: 78%;
  }
  .what-to-cook__title:before {
    transform: translate(-15px, -17px);
    height: calc(100% + 30px);
  }
  .what-to-cook__content {
    font-size: 22px;
    flex: 0 0 58%;
  }
  .what-to-cook__img {
    padding-bottom: 26%;
    flex: 0 0 29%;
  }
  /**************************************/
  .presentation {
    margin-top: 15px;
    padding-bottom: 100px;
  }
  .presentation__header {
    margin-top: 8px;
    margin-bottom: 22px;
  }
  .presentation__container {
    margin: 0 50px;
  }
  .presentation__list {
    grid-template-columns: 1fr 50% 1fr;
  }
  .presentation__title {
    font-size: 32px;
  }
  .presentation__subtitle {
    font-size: 26px;
  }
  .presentation__img {
    max-width: 80px;
    max-height: 80px;
    margin-bottom: 10px;
  }
  .presentation .item-main__inner {
    padding-bottom: 152%;
  }
  .presentation__item.item-1, .presentation__item.item-3 {
    margin-top: 81px;
  }
  .presentation__item.item-2, .presentation__item.item-4 {
    margin-top: 52px;
  }
  /**************************************/
  .pros-of-bot__title {
    font-size: 30px;
  }
  .pros-of-bot__title:before {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }
  .pros-of-bot__header {
    margin: 0 0 44px;
  }
  .pros-of-bot__comment {
    font-size: 26px;
    padding: 10px 20px 16px 37px;
    margin-bottom: 55px;
  }
  .pros-of-bot__comment:after {
    height: 24px;
    width: 28px;
    bottom: -23px;
  }
  .pros-of-bot__item-text {
    margin-top: 31px;
  }
  .pros-of-bot__item {
    margin-bottom: 40px;
  }
  /*****************************************/
  .emoji {
    width: 37px;
    height: 37px;
  }
  /*****************************************/
  .founder-header {
    margin-bottom: 35px;
  }
  .founder-title {
    margin: 0 10px;
  }
  .founder-title::after {
    -webkit-transform: translate(0, -97%);
            transform: translate(0, -97%);
    width: 40px;
    height: 40px;
  }
  .founder.bg--gray .founder-photo {
    -ms-flex: 0 0 36%;
        flex: 0 0 36%;
    width: 36%;
  }
  .founder-comment {
    padding: 28px 38px 21px;
  }
  .founder-comment__text {
    font-size: 18px;
  }
  .founder-author,
  .founder-post {
    font-size: 20px;
  }
  .founder-post {
    white-space: nowrap;
  }
  .founder-caption__desktop {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
  }
  .founder-author::after {
    content: ',';
    margin-right: 5px;
  }
  .founder.bg--gray .founder-content {
    -ms-flex: 0 0 60%;
        flex: 0 0 60%;
    padding-right: 2%;
    width: 60%;
  }
  /**************************************/
  .tariff-btn {
    margin: 30px 0;
  }
  .tariff-btn .btn {
    font-size: 35px;
    height: 90px;
    padding: 27px 46px;
  }
  /**************************************/
  .bot-steps-title {
    margin: 0 40px 44px;
  }
  .bot-steps-text {
    margin: 0;
  }
  .bot-steps-slider__nav {
    margin-top: -80px;
    transform: translateY(-34vw);
  }
  .bot-steps-slider__image {
    width: 70%;
  }
  .bot-steps-slide__image {
    padding: 0 0 97%;
  }

  /**************************************/
  .owl-carousel-nav > button {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
  /**************************************/
  .planner-content {
    font-size: 30px;
    margin: 0;
  }
  .planner-content__title {
    margin-bottom: 34px;
  }
  .planner-content__subtitle {
    margin-bottom: 30px;
  }
  .planner-content__title {
    margin-top: 30px;
  }
  .planner-content__subtitle {
    font-size: 28px;
    width: 100%;
  }
  .planner-content__text {
    font-size: 26px;
    width: 100%;
  }
  .planner-img__mobile {
    padding-bottom: 61%;
  }
  .planner-btn .btn {
    height: 90px;
    font-size: 36px;
  }
  /**************************************/
  .hearts__item-icon {
    padding: 0 0 70px;
  }
  /**************************************/
  .bonus__title {
    font-size: 36px;
  }
  .bonus__header {
    margin-bottom: 60px;
  }
  .bonus__item-title {
    font-size: 26px;
  }
  /**************************************/
  .example {
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .example-arrow {
    font-size: 30px;
    font-weight: 400;
  }
  .example-content p:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .example-btn .btn {
    font-size: 32px;
    height: 90px;
  }
  /**************************************/
  .promo-welcome {
    margin-top: 180px;
  }
  .promo-welcome__content {
    padding-left: 85px;
    padding-right: 35px;
  }
  .promo-welcome__title {
    font-size: 32px;
  }
  .promo-welcome__likes {
    margin-bottom: 20px;
  }
  /**************************************/
  .tariff__promo {
    /* padding-top: 70px; */
    padding-top: 185px;
  }
  .tariff__promo .tariff-col:first-child {
    flex: 0 0 38%;
    width: 38%;
  }
  .tariff__promo .tariff-col:first-child .tariff-row:after {
    width: 164%;
  }
  .tariff-col.tariff-col--single {
    flex-basis: 26%;
  }
  .tariff-col.tariff-col--image {
    flex-basis: 34%;
  }
  .tariff__promo .tariff-col:first-child .tariff-row:last-child {
    height: 140px;
    padding-top: 30px;
  }
  .tariff-col--image img {
    margin-top: -40px;
    max-height: 484px;
  }
  /**************************************/
  .tariff__promo .tariff-title {
    margin-bottom: 15px;
  }
  /**************************************/
  .promo-bonus__malls {
    grid-template-columns: repeat(3, fit-content(130px));
  }
  /**************************************/
  .smart-week__title {
    padding-left: 155px;
    width: 100%;
  }
  .smart-week__title:before {
    -webkit-transform: translate(0, -14px);
    transform: translate(0x, -14px);
    width: calc(100% + 34px);
    height: calc(100% + 26px);
  }
  .smart-week__title:after {
    background-size: 100px;
    top: -17px;
    left: 7%;
    width: 100px;
    height: 100px;
  }
  .smart-week__text--big {
    width: 90%;
    margin: 0 auto;
  }
  /**************************************/
  .tariff-btn.tariff-btn--with-img .btn {
    height: 90px;
  }
  .tariff-btn img {
    width: 60px;
  }
}

/***************************************************************************/
@media (max-width: 767.98px) {
  .popup-content {
    padding: 30px 10px;
    max-width: 320px;
  }
  .popup-close {
    top: -20px;
    right: -15px;
  }
  .popup-title {
    margin: 0px 0px 15px 0px;
    font-size: 22px;
  }
  .popup-form__input {
    margin: 0px 0px 10px 0px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
  }
  .popup-thanks .popup-content {
    max-width: 320px;
  }
  .popup-thanks__title {
    font-size: 22px;
  }
  .popup-thanks__title:before {
    width: 69px;
    height: 69px;
  }
  /**************************************/
  .flex-column {
    flex-basis: 100%;
    max-width: 100%;
  }
  /**************************************/
  .intro-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 365px;
            flex: 0 0 365px;
    width: 365px;
  }
  .intro-title {
    font-size: 42px;
  }
  .intro-txt {
    font-size: 18px;
  }
  /**************************************/
  .questions-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
    width: 58%;
  }
  /**************************************/
  .how {
    padding: 95px 0 45px;
  }
  .how-item {
    margin: 0 20px 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 40px);
            flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
    text-align: center;
  }
  .how-item__icon {
    margin: 0px auto 15px;
  }
  /**************************************/
  .food-item__txt {
    padding: 15px 10px;
    font-size: 14px;
  }
  /**************************************/
  .faq-item__title {
    padding: 10px 40px;
    -webkit-box-shadow: 0px 4px 10px rgba(113, 113, 113, 0.2);
            box-shadow: 0px 4px 10px rgba(113, 113, 113, 0.2);
  }
  .faq-item__icon {
    margin: 0px 0px 0px 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    width: 35px;
    height: 35px;
  }
  .faq-item__content {
    padding: 20px 100px 10px 40px;
  }
  /**************************************/
  .founder-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 57%;
            flex: 0 0 57%;
    width: 57%;
  }
  .founder-occupation {
    margin: 0px 0px 55px 0px;
  }
  .founder-txt:before {
    width: 56px;
    height: 46px;
  }
  /**************************************/
  .footer-top {
    display: block;
    /*text-align: center;*/
  }
  .footer-logo {
    /*margin: 0px auto 30px;*/
    margin-bottom: 30px;
  }
  .footer-menu {
    margin: 0 0 30px;
  }
  .footer-menu__list > li:not(:last-child) {
    margin: 0px 0px 15px 0px;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-bottom > p {
    margin: 0px 0px 20px 0px;
  }
  .footer-bottom > a:not(:last-child) {
    margin: 0px 0px 20px 0px;
  }
  /**************************************/
  .tariff {
    padding: 115px 0 40px;
  }
  .tariff--3items .tariff-col:last-child {
    margin: 0 -10px;
    width: calc(100% + 20px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tariff--3items .tariff-item {
    margin: 0 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .tariff--3items .tariff-item:not(:last-child) {
    margin: 0px 10px 30px;
  }
  .tariff-inner {
    display: block;
  }
  .tariff-col:first-child {
    display: none;
  }
  .tariff-col:last-child {
    padding: 0;
    margin: 0 -10px;
    width: calc(100% + 20px);
  }
  .tariff-row {
    padding: 0 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tariff-row__title {
    display: block;
  }
  .tariff-item {
    margin: 0 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .tariff-item:not(:last-child) {
    margin: 0 10px;
  }
  .tariff-item .tariff-row {
    font-size: 18px;
  }
  .tariff-row__total {
    font-size: 24px;
  }
  .tariff-promo__input {
    height: 50px;
    line-height: 50px;
    font-size: 15px;
  }
  .tariff-promo__btn {
    height: 50px;
    font-size: 18px;
  }
  /**************************************/
  .tariff-welcome__wrapper {
    padding-left: 0;
  }
  .tariff-welcome__title {
    font-size: 24px;
    padding: 35px 20px 30px 30px;
  }
  .tariff-welcome__content {
    padding-right: 40px;
    padding-left: 40px;
  }
  .tariff-welcome__text {
    font-size: 16px;
    margin-bottom: 140px;
    max-width: none;
  }
  .tariff-welcome__likes {
    margin-left: -5px;
  }
  .tariff-welcome__img-container {
    transform: translateX(-36%);
  }
  .tariff-welcome__img {
    flex: 0 0 51%;
  }
  .tariff-welcome__img img {
    height: 314px;
  }
  /**************************************/
  .likes__text {
    flex: 0;
    /*transform: translate(-23px, 0);*/
  }
  /**************************************/
  .reviews {
    padding: 50px 0 60px;
  }
  .reviews-slider {
    width: 90%;
  }
  .reviews-title {
    text-align: left;
  }
  .reviews-slider__nav > button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }
  .reviews-slider__nav > button.owl-next {
    margin: 0px 0px 0px 15px;
  }
  .reviews-slide__top {
    margin: 0px 0px 10px 0px;
    display: block;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .reviews-slide__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 80px;
    height: 80px;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .reviews-slide__name {
    padding: 0 40px;
    margin: 0px 0px 0px -25px;
    font-size: 18px;
  }
  .reviews-slide__name:before {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    height: calc(100% + 16px);
  }
  .reviews-slide__date {
    padding: 0 14px 0 0;
    margin: -10px 0px 0px 0px;
    text-align: right;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 400;
    background-color: transparent;
  }
  .reviews-slide__txt {
    padding: 0 25px;
    margin: 0;
  }
  /**************************************/
  .tariff__top-promo {
    /* padding-top: 52px; */
    padding-top: 185px;
  }
  .tariff__top-promo .tariff-col:last-child {
    width: 100%;
    padding-right: 0;
    margin: 0;
  }
  .tariff__top-promo .tariff-item__total {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px 0;
  }
  .tariff__top-promo .tariff-item:not(:last-child) {
    margin-right: 20px;
  }
  .tariff__top-promo .tariff-row__title {
    margin-right: 0;
    flex: 0 0 73%;
    width: 73%;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__title {
    flex: 0 0 60%;
  }
  .tariff__top-promo .tariff-item__total {
    text-align: right;
  }
  /**************************************/
  .what-to-cook__title {
    max-width: inherit;
  }
  .what-to-cook__header {
    margin-bottom: 55px;
  }
  /**************************************/
  .presentation {
    padding-bottom: 50px;
  }
  .presentation__header {
    margin-top: 25px;
    margin-bottom: 17px;
  }
  .presentation__title {
    max-width: 82%;
  }
  .presentation__img {
    max-width: 60px;
    max-height: 60px;
  }
  .presentation__text {
    font-size: 16px;
  }
  .presentation__item.item-1,
  .presentation__item.item-3 {
    margin-top: 35px;
  }
  .presentation__item.item-2,
  .presentation__item.item-4 {
    margin-top: 40px;
  }
  /**************************************/
  .pros-of-bot {
    margin-top: 40px;
  }
  .pros-of-bot__title {
    font-size: 24px;
  }
  .pros-of-bot__title:before {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .pros-of-bot__header {
    margin-bottom: 30px;
  }
  .pros-of-bot__comment {
    font-size: 20px;
    padding: 10px 8px 12px 26px;
    margin-bottom: 27px;
  }
  .pros-of-bot__comment:after {
    height: 20px;
    width: 24px;
    bottom: -18px;
  }
  .pros-of-bot__item-header {
    font-size: 26px;
    text-align: left;
  }
  .pros-of-bot__item-text {
    font-size: 18px;
    margin-top: 16px;
  }
  .pros-of-bot__item {
    margin-bottom: 30px;
  }
  /*****************************************/
  .emoji {
    width: 28px;
    height: 28px;
  }
  /*****************************************/
  .founder.bg--gray {
    padding-top: 39px;
  }
  .founder-title {
    font-size: 24px;
  }
  .founder-title::after {
    width: 30px;
    height: 30px;
  }
  .founder.bg--gray .founder-content {
    padding-right: 0;
  }
  .founder-caption__desktop {
    margin-top: 23px;
  }
  /**************************************/
  .tariff-btn .btn {
    font-size: 30px;
    height: 75px;
  }
  /**************************************/
  .feedback {
    margin-top: 80px;
  }
  .feedback-title {
    margin-bottom: 24px;
  }
  .feedback-slide {
    padding: 14px;
  }
  /**************************************/
  .bot-steps-slider__nav {
    transform: translateY(-38vw);
    margin-top: -60px;
  }
  .bot-steps-slider__nav.owl-carousel-nav > button {
    width: 60px;
    height: 60px;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
  }
  /**************************************/
  .planner-content__arrow::after {
    right: 8%;
    bottom: -85px;
  }
  .planner-img__mobile {
    padding-bottom: 69%;
  }
  .planner-btn .btn {
    font-size: 30px;
    height: 75px;
  }
  /**************************************/
  .bonus__book {
    padding: 0 0 40%;
  }
  /**************************************/
  .example {
    padding-top: 50px;
  }
  .example-arrow {
    font-size: 26px;
  }
  .example-content {
    font-size: 24px;
  }
  .example-btn .btn {
    font-size: 28px;
    height: 75px;
  }
  /**************************************/
  .promo-welcome {
    margin-top: 175px;
  }
  .promo-welcome__wrapper {
    border-radius: 20px;
  }
  .promo-welcome__content {
    padding-left: 40px;
    padding-right: 0;
    flex: 0 0 58%;
  }
  .promo-welcome__text {
    font-size: 20px;
    font-weight: 500;
    margin-top: 35px;
    white-space: nowrap;
  }
  .promo-welcome__title {
    font-size: 24px;
    margin-top: 36px;
  }
  .promo-welcome__title:after {
    -webkit-transform: translate(27px, -11px);
    transform: translate(-35px, -11px);
    width: calc(100% + 60px);
    height: calc(100% + 21px);
  }
  .promo-welcome__likes {
    margin-top: 115px;
    margin-left: -5px;
    transform: translateX(0);
  }
  .promo-welcome__img {
    flex: 0 0 36%;
    padding: 0 0 46%;
    transform: translateX(-12px);
  }
  .promo-welcome__img img {
    height: 320px;
  }
  /**************************************/
  .tariff__promo {
    /* padding-top: 60px; */
    padding-top: 185px;
  }
  .tariff__promo .tariff-title {
    margin-bottom: 20px;
    width: 100%;
  }
  .tariff__promo .tariff-inner {
    display: flex;
    flex-wrap: wrap;
  }
  .tariff__promo .tariff-col:first-child {
    display: block;
  }
  .tariff__promo .tariff-col:first-child .tariff-row:after {
    width: 71%;
  }
  .tariff-col.tariff-col--single {
    flex-basis: 40%;
    margin: 0;
    padding-right: 40px;
  }
  .tariff-col.tariff-col--image {
    flex-basis: 100%;
  }
  .tariff__promo .tariff-col:first-child {
    padding-top: 70px;
    flex: 0 0 59%;
  }
  .tariff__promo .tariff-item__top {
    height: 70px;
    font-size: 48px;
  }
  .tariff__promo .tariff-row__title {
    display: none;
  }
  .tariff__promo .tariff-row {
    justify-content: center;
  }
  .tariff__promo .tariff-row__total {
    padding: 0 10px;
  }
  .tariff__promo .tariff-item__total {
    padding-top: 16px;
  }
  .tariff__promo .tariff-item__btn.btn {
    font-size: 18px;
    font-weight: 600;
    height: 50px;
  }
  .tariff__promo .tariff-col:first-child .tariff-row:last-child {
    height: 130px;
  }
  .tariff__promo .tariff-item__bottom {
    height: 95px;
  }
  .tariff-col--image img {
    margin-top: 90px;
  }
  /**************************************/
  .promo-question {
    padding-bottom: 30px;
  }
  .promo-question__title {
    font-size: 32px;
    margin: 0 30px;
  }
  .promo-question__title::before {
    -webkit-transform: translate(-40px, -17px);
    transform: translate(-40px, -17px);
    width: calc(100% + 80px);
    height: calc(100% + 30px);
  }
  .promo-question__header {
    margin-bottom: 55px;
  }
  .promo-question__row,
  .promo-question__row:nth-child(2n) {
    flex-direction: column;
    gap: 55px;
  }
  .promo-question__comment {
    font-size: 24px;
    margin: 0;
  }
  .promo-question__text {
    font-size: 22px;
  }
  .promo-question__row .promo-question__text {
    margin-right: 0;
    width: 80%;
    align-self: flex-end;
  }
  .promo-question__row:nth-child(2n) .promo-question__comment {
    align-self: flex-end;
  }
  .promo-question__row:nth-child(2n) .promo-question__text {
    margin-left: 0;
    width: 90%;
    align-self: flex-start;
  }
  .promo-question__row + .promo-question__row {
    margin-top: 70px;
  }
  .promo-question__comment:after {
    left: auto;
    right: 86px;
  }
  .promo-question__row:nth-child(2n) .promo-question__comment:after {
    left: 71px;
    right: auto;
  }
  /**************************************/
  .why-title {
    font-size: 32px;
  }
  .why-header {
    margin-bottom: 45px;
  }
  .why-item__number span {
    width: 75px;
    height: 75px;
  }
  .why-item__title {
    font-size: 26px;
    width: 70%;
    margin: 0 auto;
  }
  .why-item__txt {
    font-size: 22px;
    margin: 20px auto 0;
    width: 80%;
  }
  /**************************************/
  .promo-bot-steps {
    padding-bottom: 35px;
  }
  .promo-bot-steps .bot-steps-title {
    text-align: center;
    margin-bottom: 70px;
  }
  .promo-bot-steps .bot-steps-title:after {
    -webkit-transform: translate(-20px, -30px);
    transform: translate(-20px, -30px);
    width: calc(100% + 40px);
    height: calc(100% + 55px);
  }
  /**************************************/
  .promo-bonus {
    padding-top: 10px;
  }
  .promo-bonus__text {
    font-size: 28px;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
  }
  .promo-bonus__text:after {
    height: 82px;
    width: 81px;
    right: -17px;
    bottom: -88px;
  }
  .promo-bonus__wrapper {
    flex-direction: column;
  }
  .promo-bonus__malls {
    grid-template-columns: repeat(3, auto);
    margin: 20px 30px;
  }
  .promo-bonus__book {
    padding-left: 0;
    margin-top: 60px;
    margin-bottom: 30px;
    align-self: center;
    width: 45%;
  }
  .promo-bonus__book img {
    position: relative;
    max-height: 430px;
  }
  /**************************************/
  .smart-week__title {
    font-size: 32px;
    margin: 0 auto;
    padding-left: 0;
    width: 80%;
  }
  .smart-week__title:before {
    -webkit-transform: translate(-50px, -14px);
    transform: translate(-50px, -14px);
    width: calc(100% + 100px);
  }
  .smart-week__title:after {
    background-size: 100px;
    top: auto;
    left: auto;
    right: -65px;
    bottom: -43px;
    background-size: 80px;
    width: 80px;
    height: 80px;
    transform: rotate(24deg);
  }
  .smart-week__container {
    padding-top: 125px;
  }
  .smart-week__text--big {
    font-size: 30px;
  }
  .smart-week__text {
    font-size: 24px;
    font-weight: 400;
    margin: 50px auto 50px;
    max-width: 90%;
  }
  /**************************************/
  .tariff-btn.tariff-btn--with-img .btn {
    font-size: 25px;
    height: 80px;
  }
  .tariff-btn img {
    width: 50px;
  }
}

/***************************************************************************/
@media (max-width: 576px) {
  body {
    font-size: 15px;
  }
  .section-title {
    text-align: center;
  }
  .section-title--small {
    font-size: 18px;
  }
  /**************************************/
  .header {
    padding: 12px 0;
  }
  .header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    width: 150px;
  }
  .header-menu {
    padding: 15px 20px 50px;
    width: 100%;
  }
  .header-menu__logo {
    margin: 0px 0px 27px 0px;
    width: 150px;
  }
  .header-menu__close {
    top: 11px;
    width: 40px;
    height: 40px;
  }
  .header-menu__close > span {
    top: 19px;
  }
  .header-menu__list {
    margin: 0px 0px 45px 0px;
    text-align: center;
  }
  .header-menu__list > li > a {
    font-size: 16px;
  }
  .header-menu__btn {
    margin: 0px auto;
  }
  /**************************************/
  .intro {
    padding: 85px 0 15px;
  }
  .intro-bg img {
    -o-object-position: bottom center;
       object-position: bottom center;
  }
  .intro-inner {
    display: block;
  }
  .intro-content {
    margin: 0px 0px 30px 0px;
    width: 100%;
    text-align: center;
  }
  .intro-title {
    margin: 0px 0px 13px 0px;
    font-size: 32px;
    text-align: center;
  }
  .intro-txt {
    margin: 0px 0px 25px 0px;
  }
  .intro-img {
    padding: 0 0 60%;
    margin: 0 -20% 0 auto;
    width: 72%;
  }
  /**************************************/
  .about {
    padding: 40px 0 25px;
  }
  .about-header {
    margin: 0px 0px 28px 0px;
  }
  .about-title:after {
    width: 25px;
    height: 25px;
  }
  .about-inner {
    display: block;
  }
  .about-content {
    margin: 0px 0px 20px 0px;
    width: 100%;
  }
  .about-content__title {
    margin: 0px 0px 15px 0px;
    font-size: 18px;
    text-align: center;
  }
  .about-content__ul li {
    padding-left: 28px;
  }
  .about-content__check {
    width: 17px;
  }
  .about-img {
    padding: 0px 0 70%;
    width: 100%;
  }
  /**************************************/
  .slogan {
    margin: 15px auto;
  }
  /**************************************/
  .questions {
    padding: 15px 0 50px;
  }
  .questions-title {
    padding: 0 0 0 10%;
    margin: 0px 0px 35px 0px;
    font-size: 16px;
    line-height: 1.3;
  }
  .questions-title > span:before {
    -webkit-transform: translate(-35px, -11px);
            transform: translate(-35px, -11px);
    width: calc(100% + 60px);
    height: calc(100% + 24px);
  }
  .questions-title > span:first-child {
    margin: 0px 0px 30px 0px;
  }
  .questions-title > span:last-child {
    margin: 0px 0px 0px 65px;
  }
  .questions-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .questions-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0 0 65%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .questions-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0px 0px 20px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  /**************************************/
  .bot {
    padding: 30px 0 45px;
  }
  .bot-inner {
    display: block;
  }
  .bot-content {
    width: 100%;
  }
  .bot-img__desktop {
    display: none;
  }
  .bot-img__mobile {
    display: block;
    padding: 0 0 110%;
    width: 100%;
  }
  .bot-btn {
    margin: 25px auto 0px;
    display: block;
  }
  /**************************************/
  .how {
    padding: 45px 0 45px;
  }
  .how-title {
    margin: 0px 0px 30px 0px;
  }
  .how-inner {
    margin: 0;
    display: block;
  }
  .how-item {
    margin: 0;
    width: 100%;
    max-width: unset;
  }
  .how-item:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }
  .how-item__icon {
    margin: 0px auto 8px;
    width: 45px;
    height: 45px;
  }
  .how-item__title {
    margin: 0px 0px 10px 0px;
    font-size: 18px;
  }
  .how-item__txt {
    font-size: 15px;
  }
  /**************************************/
  .advantages {
    padding: 45px 0 20px;
  }
  .advantages-header {
    margin: 0px 0px 58px 0px;
  }
  .advantages-title:after {
    width: 25px;
    height: 25px;
  }
  .advantages-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 20px;
  }
  .advantages-item__img {
    padding: 0 0 40%;
    margin: -30px auto 17px;
    width: 40%;
  }
  /**************************************/
  .food {
    padding: 40px 0 30px;
  }
  .food-title {
    margin: 0px 0px 20px 0px;
  }
  .food-inner .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /**************************************/
  .faq {
    padding: 40px 0 50px;
  }
  .faq-header {
    margin: 0px 0px 23px 0px;
  }
  .faq-title:before {
    position: relative;
    margin: 0px 0px 0px -25px;
    width: 25px;
    height: 25px;
    -webkit-transform: translate(0, -38%);
            transform: translate(0, -38%);
  }
  .faq-item:not(:last-child) {
    margin: 0px 0px 10px 0px;
  }
  .faq-item__title {
    padding: 12px 30px 12px 35px;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 0 60px 0 60px;
  }
  .faq-item__content {
    padding: 15px 30px 10px 35px;
  }
  /**************************************/
  .founder {
    padding: 30px 0 40px;
  }
  .founder-inner {
    display: block;
  }
  .founder-photo {
    padding: 0;
    margin: 0px 0px 37px 0px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .founder-img {
    margin: 0px 20px 0px 0px;
    padding: 0 0 43%;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
    width: 34%;
  }
  .founder-content__top {
    margin: 0px 0px 8px 0px;
    display: block;
  }
  .founder-content__top > span {
    display: block;
  }
  .founder-name {
    margin: 0px 0px 5px 0px;
    font-size: 18px;
  }
  .founder-contact {
    font-size: 15px;
  }
  .founder-occupation {
    margin: 0;
    font-size: 15px;
  }
  .founder-content {
    margin: 0px auto;
    width: 90%;
  }
  .founder-txt {
    margin: 0px 0px 20px;
    font-size: 15px;
  }
  /**************************************/
  .footer {
    padding: 25px 0;
  }
  .footer-top {
    margin: 0px 0px 30px 0px;
  }
  .footer-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    width: 150px;
  }
  .footer-menu {
    margin: 0 0 25px;
  }
  .footer-social__link {
    font-size: 13px;
  }
  /**************************************/
  .tariff {
    padding: 85px 0 20px;
  }
  .tariff--3items .tariff-col:last-child {
    margin: 0;
    width: 100%;
    display: block;
  }
  .tariff--3items .tariff-item {
    margin: 0;
    width: 100%;
  }
  .tariff--3items .tariff-item:not(:last-child) {
    margin: 0px 0px 20px;
  }
  .tariff--3items .tariff-item__bottom {
    padding: 5px 25px 20px;
  }
  .tariff-title {
    margin: 0px 0px 20px 0px;
    text-align: left;
  }
  .tariff-col:last-child {
    margin: 0;
    display: block;
    width: 100%;
  }
  .tariff-row {
    height: 62px;
  }
  .tariff-item {
    margin: 0;
    width: 100%;
  }
  .tariff-item:not(:last-child) {
    margin: 0px 0px 20px 0px;
  }
  .tariff-item__bottom {
    padding: 5px 25px 20px;
    height: auto;
  }
  .tariff-promo__input {
    padding: 0 24px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56%;
            flex: 0 0 56%;
    width: 56%;
  }
  .tariff-promo__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
    width: 44%;
    font-size: 16px;
    line-height: 0.8;
  }
  /**************************************/
  .announcement {
    top: 58px;
  }
  .announcement-icon {
    margin-right: 8px;
  }
  .announcement-text {
    font-size: 15px;
    line-height: normal;
  }
  /**************************************/
  .likes {
    flex-direction: column;
    align-items: flex-start;
  }
  .likes__text {
    white-space: inherit;
    max-width: 160px;
    transform: translate(0, -5px);
  }
  /**************************************/
  .reviews {
    padding: 30px 0 32px;
  }
  .reviews-header {
    margin: 0px 0px 15px 0px;
  }
  .reviews-slider {
    width: calc(100% + 40px);
  }
  .reviews-slider .owl-stage-outer {
    padding: 25px 0 20px;
    overflow: hidden;
  }
  .reviews-slider .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .reviews-slider__nav {
    display: none;
  }
  .reviews-slide__top {
    margin: 0px 0px 5px 0px;
  }
  .reviews-slide__name {
    padding: 0 38px;
    margin: 0px 0px 0px -15px;
    font-size: 16px;
  }
  .reviews-slide__txt {
    font-size: 15px;
  }
  /**************************************/
  .terms {
    padding: 90px 0 40px;
    font-size: 15px;
  }
  .terms h1 {
    margin: 0px 0px 18px 0px;
    font-size: 22px;
  }
  /**************************************/
  .tariff-welcome {
    margin-top: 150px;
  }
  .tariff-welcome__title {
    padding: 17px 15px 17px 20px;
    font-size: 30px;
  }
  .tariff-welcome__content {
    padding-right: 0;
  }
  .tariff-welcome__text {
    color: var(--color-gray);
    font-size: 15px;
    margin: 0 0 100px 5px;
    min-width: 100%;
  }
  .tariff-welcome__text--marked:after {
    -webkit-transform: translate(-24px, -11px);
    transform: translate(-24px, -11px);
    width: calc(100% + 46px);
    height: calc(100% + 21px);
  }
  .tariff-welcome__likes {
    margin-left: 0;
  }

  .likes__text {
    font-size: 13px;
    max-width: 117px;
  }
  .tariff-welcome__img img {
    max-height: 278px;
    right: auto;
    object-position: bottom;
  }
  /*****************************************/
  .tariff__top-promo {
    /* padding-top: 32px; */
    padding-top: 155px;
  }
  .tariff__top-promo.tariff_timerless,
  .tariff__promo.tariff_timerless
  {
    padding-top: 85px;
  }
  .tariff__top-promo .tariff-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .tariff__top-promo .tariff-title .text-mobile-hidden {
    display: none;
  }
  .tariff__top-promo .tariff-promo {
    height: 50px;
    margin-top: 0;
    margin-bottom: 27px;
  }
  .tariff__top-promo .tariff-promo__input {
    font-size: 16px;
    flex: 0 0 56%;
    width: 56%;
    padding: 0 17px;
  }
  .tariff__top-promo .tariff-promo__btn {
    font-size: 18px;
    flex: 1 1 64%;
    width: 64%;
  }
  .tariff__top-promo .tariff-promo__btn .text-mobile-hidden {
    display: none;
  }
  .tariff__top-promo .tariff-inner {
    margin-top: 34px;
  }
  .tariff__top-promo .tariff-row {
    height: 62px;
  }
  .tariff__top-promo .tariff-col:last-child {
    width: 100%;
  }
  .tariff-item__tag {
    font-size: 18px;
    text-align: right;
    top: -30px;
  }
  .tariff__top-promo .tariff-item__top {
    height: 70px;
  }
  .tariff-item__top {
    font-size: 48px;
    letter-spacing: -.5px;
  }
  .tariff__top-promo .tariff-row__title {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    width: 70%;
    font-size: 15px;
  }
  .tariff__top-promo .tariff-row__price-per-month,
  .tariff__top-promo .tariff-row__discount {
    font-size: 20px;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__title {
    font-size: 20px;
    font-weight: 600;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__price {
    font-size: 20px;
    font-weight: 400;
  }
  .tariff__top-promo .tariff-item__total .tariff-row__total {
    font-size: 22px;
    /*font-weight: 500;*/
  }
  .tariff__top-promo .tariff-item:not(:last-child) {
    margin-bottom: 56px;
  }
  .tariff__top-promo .tariff-row__price > span:after {
    height: 1px;
  }
  .tariff__top-promo .tariff-item__bottom {
    height: inherit;
    padding-top: 15px;
  }
  .tariff__top-promo .tariff-item__btn.btn {
    font-size: 20px;
    font-weight: 700;
  }
  /*****************************************/
  .what-to-cook {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .what-to-cook__header {
    margin-bottom: 25px;
  }
  .what-to-cook__title {
    font-size: 24px;
    padding: 0 14px;
    text-align: center;
  }
  .what-to-cook__title::before {
    transform: translate(-6px, -17px);
    width: calc(100% + 12px);
  }
  .what-to-cook__container {
    flex-direction: column-reverse;
  }
  .what-to-cook__img {
    padding-bottom: 45%;
    flex: 0 0 45%;
    width: 100%;
  }
  .what-to-cook__content {
    margin-top: 8px;
    font-size: 16px;
    flex: 1;
    width: 100%;
  }
  /*****************************************/
  .presentation {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  .presentation__container {
    margin: 0;
  }
  .presentation__header {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .presentation__title {
    font-size: 24px;
    max-width: inherit;
  }
  .presentation__subtitle {
    font-size: 18px;
    margin-top: 20px;
  }
  .presentation__item.item-main {
    justify-content: center;
  }
  .presentation .item-main__inner {
    padding-bottom: 100%;
    max-height: 450px;
    width: 65%;
    flex: 0 0 65%;
  }
  .presentation .item-main__inner img {
    width: 100%;

    -o-object-fit: contain;
    object-fit: contain;
  }
  .presentation__list {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 1fr 1fr;
    grid-template-areas:
      "image image"
      "item1 item4"
      "item3 item2";
    column-gap: 20px;
  }
  .presentation__img {
    max-width: 50px;
    max-height: 50px;
  }
  .presentation__item.item-main {
    margin-bottom: 30px;
  }
  .presentation__item.item-1,
  .presentation__item.item-2,
  .presentation__item.item-3,
  .presentation__item.item-4 {
    margin-top: 10px;
  }
  .presentation__text {
    font-size: 15px;
  }
  /*****************************************/
  .pros-of-bot {
    margin-top: 20px;
  }
  .pros-of-bot__header {
    margin: 0 0 24px;
  }
  .pros-of-bot__title {
    font-size: 20px;
    text-align: left;
  }
  .pros-of-bot__title:before {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }
  .pros-of-bot__comment {
    font-size: 15px;
    padding: 8px 5px 9px 17px;
  }
  .pros-of-bot__comment:after {
    height: 16px;
    width: 16px;
    bottom: -15px;
  }
  .pros-of-bot__comment .emoji {
    margin-bottom: -4px;
  }
  .emoji {
    width: 21px;
    height: 21px;
  }
  .pros-of-bot__item {
    margin-bottom: 23px;
  }
  .pros-of-bot__item-header {
    font-size: 20px;
  }
  .pros-of-bot__item-text {
    font-size: 15px;
    margin-top: 12px;
  }
  /*****************************************/
  .founder.bg--gray {
    padding-top: 40px;
    padding-bottom: 5px;
  }
  .founder-header {
    margin-bottom: 23px;
  }
  .founder-title {
    font-size: 20px;
    text-align: left;
    margin: 0;
  }
  .founder-title::after {
    transform: translate(0, -97%);
  }
  .founder.bg--gray .founder-inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .founder-comment {
    padding: 20px 24px;
  }
  .founder-comment__text {
    font-size: 15px;
    line-height: 110%;
  }
  .founder-comment__arrow {
    display: none;
  }
  .founder-caption__mobile {
    color: var(--color-gray);
    margin-top: 15px;
  }
  .founder.bg--gray .founder-content {
    width: 100%;
  }
  .founder.bg--gray .founder-photo {
    width: 100%;
    margin-top: -15px;
    margin-bottom: 20px;
    z-index: 1;
    padding-bottom: 0;;
  }
  .founder.bg--gray .founder-img {
    padding-bottom: 36%;
    flex: 0 0 28%;
    width: 28%;
  }
  .founder-caption__desktop {
    margin-top: 0;
  }
  .founder-author {
    font-size: 18px;
  }
  .founder-post {
    font-size: 15px;
  }
  /**************************************/
  .tariff-btn {
    margin: 24px 0;
  }
  .tariff-btn .btn {
    font-size: 18px;
    height: 50px;
    padding: 16px 40px;
  }
  /**************************************/
  .feedback {
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .feedback-title {
    font-size: 26px;
    text-align: left;
    margin-bottom: 15px;
  }
  .feedback-slide {
    height: inherit;
    padding: 14px;
  }
  .feedback-slide__emoji {
    display: none;
  }
  .feedback .owl-dots {
    margin-top: 7px;
  }
  .feedback .owl-dots .owl-dot {
    margin: 4px;
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
  }
  /**************************************/
  .bot-steps-title {
    font-size: 22px;
    margin: 0 0 27px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }
  .bot-steps-text {
    font-size: 15px;
    margin-right: 0;
    margin-left: 0;
  }
  .bot-steps-slider__nav {
    margin-top: -40px;
    transform: translateY(-300px);
  }
  .bot-steps-slider__nav.owl-carousel-nav > button {
    width: 40px;
    height: 40px;
    -ms-flex: 0 0 40px;
        flex: 0 0 40px;
  }
  .bot-steps-slide__content {
    margin: 0;
    padding: 0;
    font-size: 15px;
  }
  .bot-steps-note__icon {
    width: 90px;
  }
  .bot-steps-note {
    margin-top: 10px;
  }
  .bot-steps-note__text {
    font-size: 14px;
  }
  .bot-steps-slider__image {
    margin: 40px 50px 10px;
    width: calc(100% - 100px);
    transform: translateX(0);
    background-color: #FFF;
  }
  .bot-steps-slide__image {
    padding-bottom: 530px;

  }
  /***************************************/
  .planner {
    padding: 53px 0 40px;
  }
  .planner-title {
    font-size: 22px;
    margin: 0 0 16px;
    text-align: left;
  }
  .planner-content__arrow {
    font-size: 16px;
  }
  .planner-content__arrow::after {
    right: 0;
    bottom: -87px;
    height: 89px;
    width: 55px;
  }
  .planner-content__title {
    font-size: 20px;
    margin: 26px 0 16px;
  }
  .planner-content__subtitle {
    margin-bottom: 10px;
  }
  .planner-content__subtitle,
  .planner-content__text {
    font-size: 15px;
  }
  .planner-img__mobile {
    margin-top: 20px;
    padding-bottom: 110%;
    width: 75%;
  }
  .planner-btn {
    margin-top: 20px;
}
  .planner-btn .btn {
    height: 50px;
    font-size: 18px;
    padding: 0 30px;
  }
  /****************************************/
  .hearts {
    padding-top: 10px;
  }
  .hearts__title {
    font-size: 20px;
    text-align: left;
    margin: 0;
  }
  .hearts__content {
    margin-top: 0;
  }
  .hearts__item,
  .hearts__item:nth-child(2n) {
    flex-direction: column;
    margin: 0 0 16px;
  }
  .hearts__item-text {
    flex-basis: 100%;
    font-size: 15px;
  }
  .hearts__item:not(:first-child) .hearts__item-icon {
    display: none;
  }
  .hearts__item-icon {
    padding-bottom: 60px;
    width: 40px;
    height: 40px;
  }
  /**************************************/
  .bonus {
    /* padding-top: 33px; */
    padding-top: 10px;
  }
  .bonus__header {
    margin-bottom: 30px;
  }
  .bonus__title {
    font-size: 22px;
    text-align: left;
    margin: 0;
  }
  .bonus__item-title {
    font-size: 20px;
    text-align: left;
  }
  .bonus__item-image.bonus__malls {
    margin-top: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .bonus__item-image {
    margin-top: 30px;
  }
  .bonus__book {
    padding: 0 0 90%;
  }
  /**************************************/
  .example {
    padding-top: 55px;
    padding-bottom: 50px;
  }
  .example-content {
    font-size: 19px;
  }
  .example-arrow {
    font-size: 20px;
    font-weight: 400;
  }
  .example-arrow:after {
    width: 60px;
    height: 66px;
    right: -13px;
    bottom: -72px;
    transform: scale(1, -1) rotate(215deg);
  }
  .example-img__mobile {
    margin-top: 30px;
    padding-bottom: 120%;
  }
  .example-btn {
    margin-top: 30px;
  }
  .example-btn .btn {
    height: 50px;
    font-size: 18px;
    padding: 0 17px;
  }
  /**************************************/
  .promo-welcome__content {
    padding-left: 30px;
  }
  .promo-welcome__title:after {
    -webkit-transform: translate(-25px, -11px);
    transform: translate(-25px, -11px);
    width: calc(100% + 50px);
  }
  .promo-welcome__img {
    z-index: 5;
    transform: translateX(-49px);
  }
  .promo-welcome__likes .likes__text {
    transform: translate(0, 0);
  }
  /**************************************/
  .tariff__promo {
    /* padding-top: 60px; */
    padding-top: 155px;
  }
  .tariff__promo .tariff-col:first-child .tariff-row {
    background-position: 20px center;
    padding-right: 5px;
    padding-left: 60px;
  }
  .tariff__promo .tariff-item__top {
    font-size: 36px;
  }
  .tariff-col.tariff-col--single {
    flex-basis: 41%;
    padding-right: 10px;
  }
  .tariff__promo .tariff-row__total {
    font-size: 40px;
    padding: 0 7px 0 3px;
  }
  .tariff__promo .tariff-row__price > span:after {
    left: -9%;
    width: 106%;
  }
  .tariff-col.tariff-col--image {
    text-align: center;
  }
  .tariff-col--image img {
    margin-top: 65px;
  }
  /**************************************/
  .promo-question__comment {
    padding: 11px 25px 14px;
  }
  .promo-question__comment .emoji {
    transform: translateY(3px);
  }
  .promo-bonus__text:after {
    height: 73px;
    bottom: -78px;
  }
  .promo-bonus__book {
    margin-bottom: 10px;
  }
  .smart-week__title:after {
    right: -48px;
  }
}

/***************************************************************************/
@media (max-width: 480px) {
  .tariff-welcome {
    display: block;
    margin-top: 140px;
  }
  .tariff-welcome.tariff_timerless,
  .promo-welcome.tariff_timerless
  {
    margin-top: 100px;
  }
  .tariff-welcome__title {
    padding: 20px 25px 17px 25px;
  }
  .tariff-welcome__container {
    flex-direction: column;
    width: 100%;
  }
  .tariff-welcome__content {
    flex: 1;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
  .tariff-welcome__text--marked:after {
    -webkit-transform: translate(-27px, -9px);
            transform: translate(-27px, -9px);
    width: calc(100% + 50px);
    height: calc(100% + 21px);
  }
  .tariff-welcome__text {
    margin-bottom: 20px;
  }
  .tariff-welcome__likes {
    margin-bottom: 120px;
  }
  .tariff-welcome__img {
    flex: 1;
    width: 100%;
  }
  .tariff-welcome__img-container {
    margin-top: 10px;
    transform: none;
    width: 100%;
  }
  .tariff-welcome__img img {
    left: 0;
    object-position: left bottom;
  }
  .likes__icon {
    margin-top: 0;
    width: 100px;
    height: 62px;
    padding: 5px 0 0 17px;
  }
  .likes__icon .likes__value {
    font-size: 0.4em;
    font-family: sans-serif;
    letter-spacing: .5px;
  }
  .likes__text {
    max-width: 106px;
  }
  .likes__text .text-mobile-hidden {
    display: none;
  }
  /****************************************/
  .tariff__top-promo,
  .tariff__top-promo.tariff_timerless,
  .tariff__promo.tariff_timerless
  {
    padding-top: 32px;
  }
  /****************************************/
  .promo-welcome {
    display: block;
    margin-top: 150px;
  }
  .promo-welcome__container {
    flex-direction: column;
    width: 100%;
  }
  .promo-welcome__content {
    padding-right: 30px;
  }
  .promo-welcome__title:after {
    background: none;
  }
  .promo-welcome__title__mobile {
    position: relative;
  }
  .promo-welcome__title__mobile:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-10px, -2px);
    transform: translate(-10px, -2px);
    width: calc(100% + 23px);
    height: calc(100% + 4px);
    z-index: -1;
    background: url(../images/title-bg-white.png) center/100% 100% no-repeat;
  }
  .promo-welcome__likes {
    margin-top: 30px;
    margin-bottom: 150px;
  }
  .promo-welcome__img {
    flex: 1;
    width: 100%;
    margin-top: 10px;
    padding: 0;
    transform: none;
    width: 100%;
  }
  .promo-welcome__img img {
    height: 300px;
    object-position: 90% bottom;
  }
  .likes__text .text-mobile-visible {
    display: block;
  }
  /****************************************/
  .tariff__promo {
    padding-top: 40px;
  }
  .tariff__promo .tariff-title {
    font-size: 20px;
  }
  .tariff__promo .tariff-col:first-child {
    display: none;
  }
  .tariff-col.tariff-col--single {
    flex-basis: 100%;
    padding-right: 0;
  }
  .tariff__promo .tariff-item__top {
    font-size: 48px;
  }
  .tariff__promo .tariff-row {
    padding: 0 20px 0 13px;
    justify-content: space-between;
  }
  .tariff__promo .tariff-row__title {
    display: block;
  }
  .tariff__promo .tariff-item .tariff-row {
    height: 62px;
  }
  .tariff__promo .tariff-col--single .tariff-row .tariff-row__title {
    padding-top: 6px;
    padding-bottom: 2px;
    margin-right: 3px;
    background-size: 32px auto;
    background-position: 0 center;
    padding-left: 45px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-basis: 80%;
    min-height: 100%;
    width: 100%;
  }
  .tariff__promo .tariff-col--single .tariff-row:first-child .tariff-row__title {
    background-image: url("../images/promo/01.svg");
  }
  .tariff__promo .tariff-col--single .tariff-row:nth-child(2) .tariff-row__title {
    background-image: url("../images/promo/02.svg");
  }
  .tariff__promo .tariff-col--single .tariff-row:nth-child(3) .tariff-row__title {
    background-image: url("../images/promo/03.svg");
  }

  .tariff-item__total > div:nth-child(2) {
    line-height: 49px;
  }
  .tariff__promo .tariff-item__total {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tariff__promo .tariff-item__total div {
    justify-content: space-around;
    width: 100%;
  }
  .tariff__promo .tariff-item__total div.tariff-row__total-text {
    display: inline;
    margin-top: 0;
    margin-right: 5px;
  }
  .tariff__promo .tariff-row__total {
    order: 4;
    padding: 0;
    line-height: 49px;
    position: relative;
    top: 1px;
  }
  .tariff__promo .tariff-row__percent {
    margin-right: 5px;
    margin-top: 0;
    line-height: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .tariff__promo .tariff-row__price {
    padding-top: 0;
    padding-bottom: 0;
  }

  .tariff__promo .tariff-item__total .tariff-row__title {
    display: none;
  }

  .tariff__promo .tariff-item__total .tariff-item__note {
    display: block;
    color: var(--color-gray);
    justify-content: flex-start;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  /****************************************/
  .promo-question__title {
    font-size: 22px;
  }
  .promo-question__row,
  .promo-question__row:nth-child(2n) {
    gap: 32px;
  }
  .promo-question__comment {
    font-size: 15px;
    padding: 8px 17px 13px 17px;
  }
  .promo-question__row:nth-child(2n) .promo-question__comment {
    align-self: flex-start;
  }
  .promo-question__row .promo-question__text {
    font-size: 15px;
    width: 100%;
    align-self: flex-start;
  }
  .promo-question__row:nth-child(2n) .promo-question__text {
    width: 100%;
  }
  .promo-question__row + .promo-question__row {
    margin-top: 30px;
  }
  /****************************************/
  .why {
    padding: 24px 0;
  }
  .why-title {
    font-size: 24px;
  }
  .why-header {
    margin-bottom: 30px;
  }
  .why-item {
    margin-bottom: 35px;
  }
  .why-item__number {
    margin-bottom: 20px;
  }
  .why-item__number span {
    width: 60px;
    height: 60px;
  }
  .why-item__title {
    font-size: 18px;
    line-height: normal;
    width: 90%;
  }
  .why-item__txt {
    font-size: 15px;
    width: 90%;
  }
  /****************************************/
  .promo-bot-steps .bot-steps-title {
    font-size: 22px;
    margin: 0 20px 46px;
  }
  .promo-bot-steps .bot-steps-title:after {
    -webkit-transform: translate(-7px, -12px);
    transform: translate(-7px, -12px);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
  .promo-bot-steps .bot-steps-text {
    margin-left: 0;
    margin-right: 0;
  }
  .promo-bot-steps .bot-steps-slider__image {
    margin-top: 0;
  }
  .promo-bot-steps .bot-steps-slide__content {
    padding: 0;
  }
  .promo-bot-steps .bot-steps-slider__text {
    width: 100%;
  }
  .promo-bonus__text {
    font-size: 18px;
  }
  .promo-bonus__text:after {
    width: 60px;
    height: 60px;
    right: 13px;
    bottom: -72px;
  }
  .promo-bonus__malls {
    margin: 10px;
  }
  .promo-bonus__book {
    margin-top: 20px;
    width: auto;
  }
  .promo-bonus__book img {
    max-height: 200px;
  }
  /****************************************/
  .smart-week {
    padding-top: 20px;
  }
  .smart-week__title {
    font-size: 22px;
  }
  .smart-week__title:after {
    background-size: 60px;
    width: 60px;
    height: 60px;
    right: -24px;
    bottom: -34px;
  }
  .smart-week__container {
    padding-top: 105px;
  }
  .smart-week__text--big {
    font-size: 22px;
    width: 70%;
    margin: 0 auto;
  }
  .smart-week__text {
    font-size: 16px;
    margin: 20px auto;
    width: 100%;
  }
  /****************************************/
  .tariff-btn.tariff-btn--with-img .btn {
    font-size: 18px;
    height: 50px;
    padding: 0 25px;
  }
  .tariff-btn img {
    width: 35px;
  }
  .tariff-btn.tariff-btn--with-img {
    margin-bottom: 60px;
  }
}

/***************************************************************************/
@media (max-width: 416px) {
  .tariff-welcome__content {
    padding-right: 20px;
    padding-left: 20px;
  }
  .tariff-welcome__title {
    padding: 17px 15px 17px 20px;
  }
  .tariff-welcome__text--marked:after {
    -webkit-transform: translate(-22px, -9px);
            transform: translate(-22px, -9px);
    width: calc(100% + 38px);
    height: calc(100% + 21px);
  }
  .tariff-welcome__img-container {
    margin-top: 0;
  }
  /****************************************/
  .what-to-cook__content {
    font-size: 15px;
  }
  /****************************************/
  .bot-steps-slide__content,
  .bot-steps-note__text {
    font-size: 15px;
  }
  .bot-steps-slide__image {
    padding-bottom: 460px;
  }
  .bot-steps-slider__nav {
    margin-top: -30px;
    transform: translateY(-275px);
  }
  .bot-steps-slider__nav > button {
    width: 30px;
    height: 30px;
    -ms-flex: 0 0 30px;
        flex: 0 0 30px;
  }
  /****************************************/
  .planner {
    padding-top: 33px;
  }
  .planner-img__mobile {
    padding-bottom: 130%;
  }
  .planner-content__subtitle,
  .planner-content__text {
    font-size: 15px;
  }
  /****************************************/
  .hearts__item-text {
    font-size: 15px;
  }
  /****************************************/
  .promo-bonus__malls {
    grid-template-columns: repeat(2, auto);
  }
}

.webp .about-title:after { background: url(../images/about/title.webp) center/contain no-repeat; }
.webp .questions-title > span:before { background: url(../images/title-bg.webp) center/100% 100% no-repeat; }
.webp .advantages-title:after { background: url(../images/advantages/title.webp) center/contain no-repeat; }
.webp .faq-title:before { background: url(../images/faq/title.webp) center/contain no-repeat; }
.webp .reviews-slide__name:before { background: url(../images/title-bg.webp) center/100% 100% no-repeat; }
.webp .welcome-title:after { background: url(../images/title-bg-white.webp) center/100% 100% no-repeat; }
.webp .founder-title:after { background: url(../images/about/title.webp) center/contain no-repeat; }
.webp .what-to-cook__title:before { background: url(../images/title-bg-big.webp) center/100% 100% no-repeat; }
.webp .promo-question__title::before { background: url(../images/title-bg-big.webp) center/100% 100% no-repeat; }
.webp .promo-bot-steps .bot-steps-title:after { background: url(../images/title-bg-big.webp) center/100% 100% no-repeat; }
.webp .planner-content__arrow:after { background: url(../images/tariff/arrow.png) center/100% 100% no-repeat; }
.webp .promo-bonus__text:after { background: url(../images/tariff/arrow.png) center/100% 100% no-repeat; }
