@charset "UTF-8";
/*body*/
:root {
  --4life-main-blue: #011426;
  --4life-pure-white: #fff;
  --4life-red: #d60060;
  --4life-white-blue: #edf1f6;
  --4life-second-blue: #04417d;
  --4life-grey: #c9cacb;
  --4life-lightblue: #7cb8f3;
  --4life-dark-grey: #989899;
  --font-family: "Nunito", sans-serif;
  --second-family: "Viaoda Libre", sans-serif;
  --third-family: "Roboto", sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  min-width: 380px;
}

a, input, button {
  text-decoration: none;
  outline: none;
  border: none;
}

a {
  color: var(--4life-main-blue);
  transition: 0.5s;
}
a span.solid {
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
a:hover span.solid {
  border-bottom: 1px solid var(--4life-main-blue);
}

/*a span.solid {
  border-bottom:solid 1px;
}*/
ul, ol {
  margin: 0px;
  padding: 0px;
}
ul li, ol li {
  list-style: none;
}

p {
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}

h1, h2, h3, h4, h5 {
  margin: 0px;
  padding: 0px;
}

h1, .h1_title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 111%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  white-space: normal;
}
@media (min-width: 681px) {
  h1, .h1_title {
    font-size: 50px;
  }
}
@media (min-width: 993px) {
  h1, .h1_title {
    font-size: 70px;
  }
}
@media (min-width: 1365px) {
  h1, .h1_title {
    font-size: 90px;
  }
}

.h2_title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 147%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
}
@media (min-width: 681px) {
  .h2_title {
    font-size: 50px;
    line-height: 148%;
  }
}
@media (min-width: 992px) {
  .h2_title {
    font-size: 70px;
    line-height: 134%;
  }
}
@media (min-width: 1365px) {
  .h2_title {
    font-size: 90px;
    line-height: 138%;
  }
}

.h3_title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 127%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
}
@media (min-width: 1365px) {
  .h3_title {
    font-size: 60px;
  }
}

.h4_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-transform: uppercase;
  color: var(--4life-white-blue);
}

.h5_title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-white-blue);
}

.btn {
  display: inline-block;
  border-radius: 100px;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  background: transparent;
  transition: 0.5s;
  border: 1px solid var(--4life-main-blue);
  font-family: var(--font-family);
}
.btn.center {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}
.btn.no-border {
  border-color: var(--4life-white-blue);
}
.btn.white {
  background: var(--4life-pure-white);
}
.btn.blue {
  background: var(--4life-lightblue);
  border: 1px solid var(--4life-lightblue);
}
.btn:hover {
  background: var(--4life-main-blue);
  border: 1px solid var(--4life-main-blue);
  color: var(--4life-white-blue);
}
.btn.darkblue {
  background: var(--4life-main-blue);
  border: 1px solid var(--4life-main-blue);
  color: var(--4life-white-blue);
}
.btn.darkblue:hover {
  background: var(--4life-lightblue);
  border: 1px solid var(--4life-lightblue);
  color: var(--4life-white-blue);
}
.btn.one-click {
  border: 1px solid var(--4life-second-blue);
  color: var(--4life-second-blue);
}
.btn.one-click:hover {
  background: var(--4life-second-blue);
  color: var(--4life-white-blue);
}
.btn.red {
  background: var(--4life-red);
  border: 1px solid var(--4life-red);
  color: var(--4life-pure-white);
}
.btn.red:hover {
  background: transparent;
  color: var(--4life-red);
}

.hidden {
  display: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 92%;
  margin: 0px auto;
}
@media (min-width: 681px) {
  .container {
    max-width: 94%;
  }
}
@media (min-width: 1580px) {
  .container {
    max-width: 1520px;
  }
}

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

.content {
  flex: 1;
}

.input,
.textarea {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--4life-dark-grey);
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  padding: 18px 20px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 20px;
}

.textarea {
  height: 100px;
}

.checkbox-container {
  margin: 0 0 40px;
  display: block;
}
.checkbox-container input {
  display: none;
}
.checkbox-container .checkbox-body {
  cursor: pointer;
}
.checkbox-container .checkbox-body:after {
  content: "";
  clear: both;
  display: block;
  width: 100%;
}
.checkbox-container .checkbox-rect {
  border: 1px solid var(--4life-main-blue);
  border-radius: 6px;
  background: transparent;
  width: 20px;
  height: 20px;
  display: block;
  float: left;
  top: 3px;
  position: relative;
}
.checkbox-container .checkbox-rect:before {
  content: "";
  position: absolute;
  background: url("../imgs/check.svg") 0 0 no-repeat;
  width: 24px;
  height: 24px;
  left: 0;
  top: -2px;
  opacity: 0;
}
.checkbox-container .checkbox-text {
  margin-left: 30px;
  color: #2D2D2D;
  font-size: 13px;
  font-weight: 500;
  display: block;
  position: relative;
  top: 4px;
}
.checkbox-container .checkbox-text a {
  color: var(--4life-main-blue);
}
.checkbox-container .checkbox-text a span.solid {
  border-bottom: solid 1px;
}
.checkbox-container .checkbox-text a:hover span.solid {
  border-bottom: 1px solid transparent;
}
.checkbox-container.white .checkbox-rect {
  border: 1px solid var(--4life-white-blue);
}
.checkbox-container.white .checkbox-rect:before {
  background: url("../imgs/check-white.svg") 0 0 no-repeat;
  top: 2px;
  left: 2px;
}
.checkbox-container.white .checkbox-text {
  color: #fff;
}
.checkbox-container.white .checkbox-text a {
  color: #fff;
}

.checkbox-container input:checked + .checkbox-body .checkbox-rect {
  background: transparent;
}

.checkbox-container input:checked + .checkbox-body .checkbox-rect::before {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; /* Или можно использовать font-size: 0; opacity: 0; */
}

/* Скрытие стрелок для Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Универсальный современный подход (поддерживается постепенно) */
input[type=number] {
  appearance: textfield;
}

.sectionColls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sectionColls .coll-2 {
  width: 100%;
  max-width: 100%;
  margin: 0 0 30px;
}
.sectionColls .coll-2:last-child {
  margin: 0px;
}
@media (min-width: 769px) {
  .sectionColls .coll-2 {
    max-width: 49%;
    margin: 0px;
  }
}

.sectionTitle {
  padding-top: 120px;
  margin: 0 0 30px;
}
@media (min-width: 581px) {
  .sectionTitle {
    margin: 0 0 50px;
  }
}
@media (min-width: 681px) {
  .sectionTitle {
    padding-top: 240px;
  }
}
.sectionTitle img {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.sectionTitle h1 {
  margin: 0;
}
@media (min-width: 581px) {
  .sectionTitle h1 {
    margin: 0 0 50px;
  }
}
.sectionTitle.left {
  margin: 0 0 30px;
}
.sectionTitle.left h1 {
  text-align: left;
  margin: 0 0 10px;
}
.sectionTitle.left span {
  text-align: left;
}

.consentText {
  display: flex;
  justify-content: center;
}
.consentText .inp-bl input {
  position: absolute;
  left: -99999px;
}
.consentText .inp-bl input:checked + label:after {
  opacity: 1;
}
.consentText .personal {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  display: flex;
  position: relative;
  margin: 0 0 50px;
}
.consentText .personal:before {
  border: 1px solid var(--4life-main-blue);
  border-radius: 6px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  content: "";
  margin: 0 10px 0 0;
}
.consentText .personal:after {
  width: 15px;
  height: 15px;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  background: var(--4life-lightblue);
  border-radius: 6px;
  opacity: 0;
}

/*header*/
.topBanner {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--4life-white-blue);
  padding: 10px 0;
  background: var(--4life-main-blue);
}

.topContact {
  background: var(--4life-pure-white);
  padding: 12px 20px;
  flex-wrap: wrap;
}
.topContact div {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 32px 0 0;
}
.topContact div a {
  color: var(--4life-main-blue);
}
.topContact div:before {
  content: "";
  position: absolute;
  right: -16px;
  top: 0px;
  width: 1px;
  height: 100%;
  background: var(--4life-grey);
}
.topContact div:first-child {
  margin-bottom: 5px;
  width: 100%;
}
@media (min-width: 656px) {
  .topContact div:first-child {
    width: auto;
  }
}
@media (min-width: 992px) {
  .topContact div:first-child {
    margin-bottom: 0px;
  }
}
.topContact div:first-child:before {
  display: none;
}
@media (min-width: 992px) {
  .topContact div:first-child:before {
    display: block;
  }
}
.topContact div:last-child {
  margin-right: 0px;
}
.topContact div:last-child:before {
  display: none;
}
.topContact div.topSoc a {
  margin-right: 16px;
  width: 16px;
  height: 16px;
  display: block;
}
.topContact div.topSoc a:last-child {
  margin: 0px;
}
.topContact div.topSoc a img {
  max-width: 100%;
}

.header-placeholder {
  display: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 5;
}
header.fixed {
  top: 0px;
  background: #fff;
}
header.fixed .logo {
  width: 50px !important;
  height: 50px !important;
}
header .headerWrap {
  justify-content: space-between;
  padding: 15px 0;
}
header .headerWrap .logo {
  width: 50px;
  height: 50px;
  transition: 0.5s;
}
@media (min-width: 681px) {
  header .headerWrap .logo {
    width: 98px;
    height: 88px;
  }
}
header .headerWrap .logo img {
  max-width: 100%;
}
header .headerWrap .headerLinks {
  background: var(--4life-pure-white);
  border-radius: 100px;
  width: 125px;
  padding: 13px 15px 15px;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (min-width: 581px) {
  header .headerWrap .headerLinks {
    width: 184px;
    padding: 13px 28px 15px;
  }
}
header .headerWrap .headerLinks .headerLinks--link {
  width: 16px;
  height: 16px;
  display: block;
  cursor: pointer;
}
@media (min-width: 681px) {
  header .headerWrap .headerLinks .headerLinks--link {
    width: 20px;
    height: 20px;
  }
}
header .headerWrap .headerLinks .headerLinks--link.cartBtn {
  position: relative;
}
header .headerWrap .headerLinks .headerLinks--link.cartBtn .ms2_total_count {
  width: 20px;
  height: 20px;
  background: var(--4life-red);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 18px;
  top: -3px;
  font-family: var(--font3);
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: var(--4life-pure-white);
}

nav.navigation a {
  border-radius: 100px;
  padding: 15px;
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  transition: 0.5s;
  background: var(--4life-main-blue);
  color: var(--4life-white-blue);
  border: 1px solid var(--4life-main-blue);
  text-shadow: 0.3px 0 0 var(--4life-white-blue), -0.3px 0 0 var(--4life-white-blue);
}
nav.navigation a:after {
  content: attr(data-text);
  visibility: hidden;
  height: 0;
  display: block;
  white-space: nowrap;
}
nav.navigation a.shop:hover {
  color: var(--4life-white-blue);
  background: var(--4life-lightblue);
  border: 1px solid var(--4life-lightblue);
}
nav.navigation a:hover {
  background: transparent;
  color: var(--4life-main-blue);
}
nav.navigation > a {
  margin-right: 10px;
  font-size: 11px;
  padding: 17px 8px;
}
@media (min-width: 520px) {
  nav.navigation > a {
    margin-right: 30px;
    font-size: 14px;
    padding: 15px;
  }
}
@media (min-width: 993px) {
  nav.navigation > a {
    margin-right: 10px;
  }
}
nav.navigation ul {
  display: none;
}
nav.navigation ul li {
  margin: 0px 10px 0 0;
}
nav.navigation ul li:last-child {
  margin: 0px;
}
nav.navigation ul li a {
  color: var(--4life-main-blue);
  background: transparent;
  border: 1px solid transparent;
}
nav.navigation ul li:hover a {
  border-color: var(--4life-main-blue);
  text-shadow: 0.3px 0 0 var(--4life-white-blue), -0.3px 0 0 var(--4life-white-blue);
}
nav.navigation ul li ul {
  display: none;
  position: absolute;
  padding: 20px 15px 15px;
  box-sizing: border-box;
}
nav.navigation ul li ul:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 5px;
  width: 100%;
  height: 90%;
  border-radius: 20px;
  background: var(--4life-pure-white);
  border: 1px solid var(--4life-main-blue);
  z-index: 1;
}
nav.navigation ul li ul li {
  margin: 0 0 10px;
  position: relative;
  z-index: 2;
}
nav.navigation ul li ul li:last-child {
  margin: 0px;
}
nav.navigation ul li ul li a {
  color: var(--4life-main-blue);
  background: transparent;
  border: none;
  padding: 0px;
}
nav.navigation ul li ul li a:after {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  transition: 0.5s;
  content: "";
  visibility: visible;
}
nav.navigation ul li ul li a:hover {
  border: none;
}
nav.navigation ul li ul li a:hover:after {
  background: var(--4life-main-blue);
}
nav.navigation ul li:hover ul {
  display: block;
}
@media (min-width: 993px) {
  nav.navigation ul {
    display: flex;
  }
}
nav.navigation .mobilBtn {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
nav.navigation .mobilBtn svg {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 520px) {
  nav.navigation .mobilBtn {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 993px) {
  nav.navigation .mobilBtn {
    display: none;
  }
}

/*footer*/
footer {
  padding: 108px 0 92px;
  background: var(--4life-main-blue);
  box-sizing: border-box;
}
footer .footerWrap {
  display: block;
  margin: 0 0 80px;
}
@media (min-width: 993px) {
  footer .footerWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
footer .footerWrap .footerWrap--left {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  footer .footerWrap .footerWrap--left {
    max-width: 66%;
  }
}
@media (min-width: 1367px) {
  footer .footerWrap .footerWrap--left {
    max-width: 60%;
  }
}
footer .footerWrap .footerWrap--left .footerCompany {
  margin: 0 0 120px;
  justify-content: flex-start;
}
footer .footerWrap .footerWrap--left .footerCompany .footerCompany--logo {
  width: 100%;
  max-width: 100px;
  margin: 0 25px 0 0;
}
@media (min-width: 681px) {
  footer .footerWrap .footerWrap--left .footerCompany .footerCompany--logo {
    max-width: 178px;
    margin: 0 80px 0 0;
  }
}
@media (min-width: 993px) {
  footer .footerWrap .footerWrap--left .footerCompany .footerCompany--logo {
    max-width: 220px;
  }
}
footer .footerWrap .footerWrap--left .footerCompany .footerCompany--logo img {
  max-width: 100%;
}
footer .footerWrap .footerWrap--left .footerCompany .footerCompany--text {
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-white-blue);
}
footer .footerWrap .footerWrap--left .footerCompany .footerCompany--text b {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}
footer .footerWrap .footerWrap--left .footerContent {
  display: block;
}
@media (min-width: 681px) {
  footer .footerWrap .footerWrap--left .footerContent {
    justify-content: space-between;
    display: flex;
    align-items: flex-start;
  }
}
footer .footerWrap .footerWrap--left .footerContent .footerContentInfo {
  margin: 0 0 60px;
}
@media (min-width: 681px) {
  footer .footerWrap .footerWrap--left .footerContent .footerContentInfo {
    margin: 0 0 40px;
  }
}
footer .footerWrap .footerWrap--left .footerContent .footerContentInfo .footerContentInfo--elem {
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-white-blue);
  margin: 0 0 30px;
}
footer .footerWrap .footerWrap--left .footerContent .footerContentInfo .footerContentInfo--elem b {
  font-size: 18px;
  line-height: 133%;
  display: block;
}
@media (min-width: 1367px) {
  footer .footerWrap .footerWrap--left .footerContent .footerContentInfo .footerContentInfo--elem b {
    font-size: 24px;
  }
}
footer .footerWrap .footerWrap--left .footerContent .footerContentInfo .footerContentInfo--elem b a {
  color: var(--4life-white-blue);
}
footer .footerWrap .footerWrap--left .footerContent .footerContentInfo p {
  color: var(--4life-white-blue);
}
footer .footerWrap .footerWrap--left .footerContent .footerSoc {
  justify-content: flex-start;
  margin: 0 0 20px;
}
footer .footerWrap .footerWrap--left .footerContent .footerSoc a {
  margin: 0 30px 0 0;
  width: 24px;
  height: 24px;
}
footer .footerWrap .footerWrap--left .footerContent .footerSoc a img {
  width: 100%;
  max-width: 100%;
  transform: scale(1);
  transition: 0.8s;
}
footer .footerWrap .footerWrap--left .footerContent .footerSoc a:hover svg, footer .footerWrap .footerWrap--left .footerContent .footerSoc a:hover img {
  transform: scale(0.8);
}
footer .footerWrap .footerWrap--left .footerContent .footerContent--nav {
  margin: 0 0 60px;
}
@media (min-width: 681px) {
  footer .footerWrap .footerWrap--left .footerContent .footerContent--nav {
    margin: 0px;
  }
}
footer .footerWrap .footerWrap--left .footerContent .footerContent--nav .h5_title {
  margin: 0 0 20px;
  padding-left: 10px;
}
footer .footerWrap .footerWrap--left .footerContent .footerContent--nav ul li a {
  border-radius: 100px;
  padding: 4px 10px;
  display: inline-block;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  color: var(--4life-white-blue);
  border: 1px solid transparent;
  transition: 0.5s;
}
footer .footerWrap .footerWrap--left .footerContent .footerContent--nav ul li a:hover {
  border-color: var(--4life-white-blue);
}
footer .footerWrap .footerWrap--right {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  footer .footerWrap .footerWrap--right {
    max-width: 30%;
    min-width: 360px;
  }
}
@media (min-width: 1199px) {
  footer .footerWrap .footerWrap--right {
    min-width: 400px;
  }
}
@media (min-width: 1367px) {
  footer .footerWrap .footerWrap--right {
    min-width: 480px;
  }
}
footer .footerWrap .footerWrap--right .footerForm {
  background: var(--4life-pure-white);
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  padding: 50px 20px;
  box-sizing: border-box;
}
@media (min-width: 581px) {
  footer .footerWrap .footerWrap--right .footerForm {
    padding: 50px 30px;
  }
}
footer .footerWrap .footerWrap--right .footerForm .h3_title {
  margin: 0 0 15px;
  text-align: center;
}
footer .footerWrap .footerWrap--right .footerForm p {
  margin: 0 0 50px;
  text-align: center;
}
footer .footerWrap .footerWrap--right .footerForm button {
  margin: 0px auto;
  max-width: 210px;
  display: block;
  border-color: transparent;
  cursor: pointer;
  white-space: nowrap;
}
footer .footerWrap .footerWrap--right .footerForm button:hover {
  border-color: var(--4life-main-blue);
}
footer .footerCopir {
  display: block;
}
@media (min-width: 681px) {
  footer .footerCopir {
    justify-content: space-between;
    display: flex;
  }
}
footer .footerCopir .footerLink {
  border-radius: 100px;
  padding: 4px 10px;
  display: inline-block;
  text-align: center;
  color: var(--4life-white-blue);
  border: 1px solid transparent;
  transition: 0.5s;
  font-weight: bold;
}
footer .footerCopir .footerLink:hover {
  border-color: var(--4life-white-blue);
}
footer .footerCopir .leftColl {
  display: block;
  margin: 0 0 30px;
}
@media (min-width: 681px) {
  footer .footerCopir .leftColl {
    display: flex;
    margin: 0px;
  }
}
footer .footerCopir .leftColl div {
  text-align: center;
}
@media (min-width: 681px) {
  footer .footerCopir .leftColl div {
    text-align: left;
  }
}
footer .footerCopir .leftColl div a {
  text-transform: uppercase;
  margin: 0 5px 0 0;
}
footer .footerCopir .rightColl p {
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--4life-white-blue);
  margin: 0px;
}

/*main*/
.sectionMainBlock {
  width: 100%;
  min-height: 630px;
  background: url("../imgs/image-mesh-gradient.png") center center no-repeat;
  background-size: cover;
  padding: 190px 0 150px;
  box-sizing: border-box;
  margin: 0;
}
@media (min-width: 681px) {
  .sectionMainBlock {
    padding: 180px 0 370px;
    margin: 0 0 40px;
  }
}
@media (min-width: 993px) {
  .sectionMainBlock {
    padding: 200px 0 150px;
    background: url("../imgs/image-mesh-gradient.png") center center no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1365px) {
  .sectionMainBlock {
    padding: 200px 0 150px;
    background: url("../imgs/image-mesh-gradient.png") center center no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1700px) {
  .sectionMainBlock {
    padding: 200px 0 250px;
    background: url("../imgs/image-mesh-gradient.png") center center no-repeat;
    background-size: cover;
  }
}
.sectionMainBlock .sectionMainBlock--content {
  width: 100%;
  max-width: 90%;
  margin: 0px auto;
  position: relative;
  z-index: 5;
}
@media (min-width: 681px) {
  .sectionMainBlock .sectionMainBlock--content {
    max-width: 80%;
  }
}
@media (min-width: 769px) {
  .sectionMainBlock .sectionMainBlock--content {
    max-width: 65%;
  }
}
.sectionMainBlock .sectionMainBlock--content h1 {
  position: relative;
  z-index: 1;
  font-size: 30px;
}
@media (min-width: 681px) {
  .sectionMainBlock .sectionMainBlock--content h1 {
    font-size: 50px;
  }
}
@media (min-width: 1365px) {
  .sectionMainBlock .sectionMainBlock--content h1 {
    font-size: 70px;
  }
}
@media (min-width: 1700px) {
  .sectionMainBlock .sectionMainBlock--content h1 {
    font-size: 90px;
  }
}
.sectionMainBlock .sectionMainBlock--content p {
  font-weight: 500;
  display: block;
  max-width: 620px;
  text-align: center;
  margin: 0px auto 30px;
}
@media (min-width: 1365px) {
  .sectionMainBlock .sectionMainBlock--content p {
    max-width: 740px;
  }
}
.sectionMainBlock .sectionMainBlock--content .sectionMainBlock--subtitle {
  font-size: 12px;
  line-height: 115%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-pure-white);
  background: var(--4life-second-blue);
  transform: rotate(-2deg);
  border-radius: 200px;
  padding: 12px 20px;
  box-sizing: border-box;
  max-width: 270px;
  margin: -5px auto 25px;
  position: relative;
  z-index: 2;
}
@media (min-width: 581px) {
  .sectionMainBlock .sectionMainBlock--content .sectionMainBlock--subtitle {
    font-size: 14px;
    margin: -10px auto 25px;
    max-width: 480px;
    padding: 18px 30px;
  }
}
@media (min-width: 681px) {
  .sectionMainBlock .sectionMainBlock--content .sectionMainBlock--subtitle {
    font-size: 20px;
  }
}
@media (min-width: 1365px) {
  .sectionMainBlock .sectionMainBlock--content .sectionMainBlock--subtitle {
    font-size: 30px;
    max-width: 644px;
    padding: 23px;
    margin: -15px auto 25px;
  }
}
@media (min-width: 1700px) {
  .sectionMainBlock .sectionMainBlock--content .sectionMainBlock--subtitle {
    font-size: 40px;
    max-width: 850px;
    padding: 30px;
    margin: -15px auto 25px;
  }
}
.sectionMainBlock .sectionMainBlock--content .sectionMainBlock--btn {
  display: block;
}
@media (min-width: 581px) {
  .sectionMainBlock .sectionMainBlock--content .sectionMainBlock--btn {
    display: flex;
  }
}
.sectionMainBlock .sectionMainBlock--content .sectionMainBlock--btn a {
  margin: 0px auto 10px;
  display: block;
}
.sectionMainBlock .sectionMainBlock--content .sectionMainBlock--btn a:first-child {
  max-width: 313px;
}
.sectionMainBlock .sectionMainBlock--content .sectionMainBlock--btn a:last-child {
  max-width: 184px;
}
@media (min-width: 581px) {
  .sectionMainBlock .sectionMainBlock--content .sectionMainBlock--btn a {
    margin: 0px 10px;
    display: inline-block;
  }
}

.parallax-container {
  position: relative;
  overflow: hidden;
}

.foreground-layer {
  position: relative;
  z-index: 2;
}

.foreground-element {
  opacity: 0;
  transform: translateX(-100px); /* слева */
  transition: all 1s ease;
}

.parallax-item {
  position: absolute;
  width: 100px;
  height: 100px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-150px);
  transition: all 1s ease;
}
.parallax-item:nth-of-type(1) {
  width: 160px;
  height: 160px;
  top: -40%;
  left: -10%;
  z-index: 2;
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(1) {
    left: -5%;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(1) {
    left: -2%;
  }
}
@media (min-width: 767px) {
  .parallax-item:nth-of-type(1) {
    left: -2%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(1) {
    width: 254px;
    height: 254px;
    top: -30%;
    left: 2%;
  }
}
.parallax-item:nth-of-type(2) {
  width: 180px;
  height: 180px;
  right: -15%;
  top: -45%;
  z-index: 2;
  transform: translateX(150px);
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(2) {
    right: -8%;
    top: -45%;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(2) {
    right: -7%;
    top: -45%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(2) {
    right: -7%;
    top: -20%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(2) {
    width: 180px;
    height: 180px;
    right: -5%;
    top: -60%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(2) {
    right: -5%;
    top: -50%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(2) {
    width: 270px;
    height: 270px;
    right: 0%;
    top: -40%;
  }
}
.parallax-item:nth-of-type(3) {
  width: 344px;
  height: 344px;
  left: -55%;
  top: 10%;
  z-index: 2;
}
@media (min-width: 421px) {
  .parallax-item:nth-of-type(3) {
    left: -50%;
    top: 10%;
  }
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(3) {
    left: -35%;
    top: 10%;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(3) {
    left: 0;
    top: 40%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(3) {
    left: 0;
    top: 40%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(3) {
    top: -15%;
    width: 378px;
    height: 378px;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(3) {
    top: -10%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(3) {
    left: 5%;
    top: 10%;
    width: 515px;
    height: 515px;
  }
}
.parallax-item:nth-of-type(4) {
  width: 310px;
  height: 310px;
  right: -55%;
  top: 10%;
  z-index: 2;
  transform: translateX(150px);
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(4) {
    right: -35%;
    top: 10%;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(4) {
    right: -25%;
    top: 10%;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(4) {
    right: -5%;
    top: 50%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(4) {
    right: 0%;
    top: 50%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(4) {
    right: 0%;
    top: -10%;
    width: 341px;
    height: 341px;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(4) {
    top: 0%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(4) {
    right: 3%;
    top: 5%;
    width: 465px;
    height: 465px;
  }
}
.parallax-item:nth-of-type(5) {
  width: 185px;
  height: 185px;
  left: 0;
  top: 90%;
  z-index: 2;
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(5) {
    left: 5%;
    top: 75%;
    width: 258px;
    height: 258px;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(5) {
    left: 0%;
    top: 140%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(5) {
    left: 20%;
    top: 130%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(5) {
    left: 15%;
    top: 65%;
    width: 281px;
    height: 281px;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(5) {
    top: 65%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(5) {
    left: 25%;
    top: 66%;
    width: 383px;
    height: 383px;
  }
}
.parallax-item:nth-of-type(6) {
  width: 155px;
  height: 155px;
  left: 55%;
  top: 95%;
  z-index: 2;
  transform: translateX(150px);
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(6) {
    left: 55%;
    top: 80%;
    width: 227px;
    height: 227px;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(6) {
    left: 65%;
    top: 155%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(6) {
    left: 60%;
    top: 145%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(6) {
    left: 60%;
    top: 60%;
    width: 303px;
    height: 303px;
  }
}
@media (min-width: 1365px) {
  .parallax-item:nth-of-type(6) {
    left: 60%;
    top: 60%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(6) {
    left: 63%;
    top: 88%;
    width: 303px;
    height: 303px;
  }
}
.parallax-item:nth-of-type(7) {
  width: 88px;
  height: 88px;
  left: 4%;
  top: -25%;
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(7) {
    left: 1%;
    top: -30%;
    width: 135px;
    height: 135px;
  }
}
@media (min-width: 767px) {
  .parallax-item:nth-of-type(7) {
    left: 1%;
    top: -35%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(7) {
    left: 1%;
    top: -35%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(7) {
    left: 1%;
    top: -35%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(7) {
    width: 182px;
    height: 182px;
    left: 6%;
    top: -10%;
  }
}
.parallax-item:nth-of-type(8) {
  width: 105px;
  height: 105px;
  right: 1%;
  top: -25%;
  z-index: 1;
  transform: translateX(150px);
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(8) {
    right: 1%;
    top: -25%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(8) {
    right: 1%;
    top: 0%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(8) {
    right: 1%;
    top: -40%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(8) {
    right: 1%;
    top: -30%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(8) {
    width: 141px;
    height: 141px;
    right: 5%;
    top: -15%;
  }
}
.parallax-item:nth-of-type(9) {
  width: 94px;
  height: 94px;
  left: 2%;
  top: 110%;
  z-index: 1;
  transform: translateY(150px);
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(9) {
    left: 15%;
    top: 160%;
    width: 149px;
    height: 149px;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(9) {
    left: 15%;
    top: 160%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(9) {
    left: 10%;
    top: 100%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(9) {
    left: 10%;
    top: 100%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(9) {
    width: 200px;
    height: 200px;
    left: 23%;
    top: 100%;
  }
}
.parallax-item:nth-of-type(10) {
  width: 112px;
  height: 112px;
  right: -15%;
  top: 65%;
  z-index: 1;
  transform: translateY(150px);
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(10) {
    right: -8%;
    top: 65%;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(10) {
    right: 8%;
    top: 105%;
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 650px) {
  .parallax-item:nth-of-type(10) {
    right: 8%;
    top: 105%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(10) {
    right: 8%;
    top: 105%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(10) {
    right: 5%;
    top: 55%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(10) {
    right: 5%;
    top: 55%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(10) {
    right: 8%;
    top: 60%;
    width: 244px;
    height: 244px;
  }
}
.parallax-item:nth-of-type(11) {
  width: 68px;
  height: 68px;
  left: 40%;
  top: 100%;
  z-index: 1;
  transform: translateY(150px);
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(11) {
    width: 78px;
    height: 78px;
    left: 30%;
    top: 100%;
  }
}
@media (min-width: 650px) {
  .parallax-item:nth-of-type(11) {
    left: 30%;
    top: 100%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(11) {
    left: 30%;
    top: 100%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(11) {
    left: 17%;
    top: 75%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(11) {
    left: 17%;
    top: 75%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(11) {
    width: 99px;
    height: 99px;
    left: 17%;
    top: 75%;
  }
}
.parallax-item:nth-of-type(12) {
  width: 72px;
  height: 72px;
  right: -8%;
  top: 45%;
  z-index: 1;
  transform: translateY(150px);
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(12) {
    right: 31%;
    top: 105%;
    width: 92px;
    height: 92px;
  }
}
@media (min-width: 650px) {
  .parallax-item:nth-of-type(12) {
    right: 31%;
    top: 105%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(12) {
    right: 31%;
    top: 105%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(12) {
    right: 21%;
    top: 65%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(12) {
    top: 75%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(12) {
    width: 126px;
    height: 122px;
    right: 25%;
    top: 75%;
  }
}
.parallax-item:nth-of-type(13) {
  width: 84px;
  height: 84px;
  left: 40%;
  top: 160%;
  z-index: 1;
  transform: translateY(150px);
}
@media (min-width: 650px) {
  .parallax-item:nth-of-type(13) {
    left: 40%;
    top: 160%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(13) {
    left: 40%;
    top: 160%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(13) {
    left: 40%;
    top: 110%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(13) {
    left: 40%;
    top: 110%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(13) {
    width: 113px;
    height: 113px;
    left: 40%;
    top: 130%;
  }
}
.parallax-item:nth-of-type(14) {
  width: 145px;
  height: 140px;
  left: -5%;
  top: 75%;
  z-index: 1;
  transform: translateX(-150px);
}
@media (min-width: 421px) {
  .parallax-item:nth-of-type(14) {
    left: 0%;
    top: 65%;
  }
}
@media (min-width: 481px) {
  .parallax-item:nth-of-type(14) {
    left: 0%;
    top: 45%;
  }
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(14) {
    left: 0%;
    top: 45%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(14) {
    left: 0%;
    top: 45%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(14) {
    left: 0%;
    top: 15%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(14) {
    width: 145px;
    height: 140px;
    left: 0%;
    top: 15%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(14) {
    width: 145px;
    height: 140px;
    left: 5%;
    top: 50%;
  }
}
.parallax-item:nth-of-type(15) {
  width: 177px;
  height: 177px;
  left: 50%;
  top: 105%;
  z-index: 1;
  transform: translateY(150px);
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(15) {
    left: 50%;
    top: 162%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(15) {
    left: 50%;
    top: 162%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(15) {
    left: 55%;
    top: 92%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(15) {
    left: 60%;
    top: 100%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(15) {
    left: 60%;
    top: 120%;
  }
}
.parallax-item:nth-of-type(16) {
  width: 164px;
  height: 164px;
  left: 100%;
  top: 40%;
  z-index: 3;
  transform: translateY(150px);
}
@media (min-width: 581px) {
  .parallax-item:nth-of-type(16) {
    left: 80%;
    top: 30%;
  }
}
@media (min-width: 769px) {
  .parallax-item:nth-of-type(16) {
    left: 80%;
    top: 30%;
  }
}
@media (min-width: 993px) {
  .parallax-item:nth-of-type(16) {
    left: 90%;
    top: 10%;
  }
}
@media (min-width: 1367px) {
  .parallax-item:nth-of-type(16) {
    left: 90%;
    top: 30%;
  }
}
@media (min-width: 1700px) {
  .parallax-item:nth-of-type(16) {
    width: 164px;
    height: 164px;
    left: 90%;
    top: 50%;
  }
}

.parallax-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listTags {
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 30px;
  align-items: flex-start;
}
.listTags .listTags--elem {
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 5px 10px 0;
}
.listTags .listTags--elem:last-child {
  margin: 0px;
}

.bannerTelegram {
  background: #f58e8f;
  border-radius: 0px;
  padding: 30px 5%;
  display: block;
  margin: 0 auto 80px;
  width: 100%;
  max-width: 100%;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-sizing: border-box;
  text-align: left;
}
@media (min-width: 681px) {
  .bannerTelegram {
    max-width: 96%;
    border-radius: 142px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .bannerTelegram {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 15px 5%;
  }
}
@media (min-width: 1580px) {
  .bannerTelegram {
    max-width: 1520px;
  }
}
.bannerTelegram .bannerTelegram--text {
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .bannerTelegram .bannerTelegram--text {
    margin-bottom: 0px;
  }
}
.bannerTelegram .bannerTelegram--text .h4_title {
  font-weight: 400;
  color: var(--4life-main-blue);
  text-transform: none;
}
.bannerTelegram .bannerTelegram--text p {
  font-size: 18px;
  line-height: 167%;
  margin: 0px;
}
.bannerTelegram .bannerTelegram--btn {
  justify-content: flex-start;
}
.bannerTelegram .bannerTelegram--btn img {
  margin: 0 40px 0 0;
}
@media (min-width: 681px) {
  .bannerTelegram .bannerTelegram--btn {
    justify-content: center;
  }
}
.bannerTelegram.bottom {
  max-width: 100%;
  border-radius: 0px;
  margin: 0px;
  padding: 65px 0px;
}
.bannerTelegram.bottom .container {
  display: block;
}
@media (min-width: 769px) {
  .bannerTelegram.bottom .container {
    display: flex;
    justify-content: space-between;
  }
}

.mainTitle {
  margin: 0 0 50px;
}

.sectionMainCat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto 80px;
  max-width: 100%;
}
@media (min-width: 681px) {
  .sectionMainCat {
    max-width: 80%;
    margin: 0 auto 120px;
  }
}
@media (min-width: 769px) {
  .sectionMainCat {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 0 0 120px;
  }
}
.sectionMainCat .sectionMainCat--elem {
  text-align: center;
}
.sectionMainCat .sectionMainCat--elem .sectionMainCat--imgs {
  margin: 0 0 30px;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}
.sectionMainCat .sectionMainCat--elem .sectionMainCat--imgs img {
  width: 100%;
  max-width: 100%;
  transition: 0.5s;
}
.sectionMainCat .sectionMainCat--elem span {
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  transition: 0.5s;
  color: var(--4life-main-blue);
  border-bottom: 1px solid transparent;
  display: block;
}
@media (min-width: 993px) {
  .sectionMainCat .sectionMainCat--elem span {
    font-size: 18px;
  }
}
@media (min-width: 1199px) {
  .sectionMainCat .sectionMainCat--elem span {
    font-size: 24px;
  }
}
.sectionMainCat .sectionMainCat--elem:hover .sectionMainCat--imgs img {
  transform: scale(1.1);
}
.sectionMainCat .sectionMainCat--elem:hover span {
  text-decoration: underline;
}

.sectionMainCatalog {
  padding: 80px 0;
}
@media (min-width: 681px) {
  .sectionMainCatalog {
    padding: 120px 0;
  }
}
.sectionMainCatalog .h2_title {
  margin: 0 0 50px;
}

.mainCatalogWrap {
  display: block;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 80%;
}
@media (min-width: 581px) {
  .mainCatalogWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .mainCatalogWrap {
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 40px;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1365px) {
  .mainCatalogWrap {
    gap: 40px;
  }
}

.catalogElem {
  background: #afd6fc;
  border-radius: 20px;
  padding: 20px 20px 40px;
  box-sizing: border-box;
  max-width: 250px;
  margin: 0 auto 20px;
}
@media (min-width: 581px) {
  .catalogElem {
    margin: 0px;
    max-width: 100%;
  }
}
@media (min-width: 1365px) {
  .catalogElem {
    padding: 20px 30px 40px;
  }
}
.catalogElem:nth-child(2) {
  background: #8fd5f4;
}
.catalogElem:nth-child(3) {
  background: #ffd0ed;
}
.catalogElem:nth-child(4) {
  background: #c2e7bd;
}
.catalogElem:nth-child(5) {
  background: #d8e9ca;
}
.catalogElem:nth-child(6) {
  background: #c7e3ff;
}
.catalogElem:nth-child(7) {
  background: #cceaee;
}
.catalogElem:nth-child(8) {
  background: #fddfcb;
}
.catalogElem .brend {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  min-height: 36px;
}
@media (min-width: 1366px) {
  .catalogElem .brend {
    min-height: 0px;
  }
}
.catalogElem img {
  margin: 0 0 10px;
  width: 100%;
  max-width: 100%;
}

.productElem--info {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.productElem--info a.title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--4life-main-blue);
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.3;
  min-height: 2.6em;
}
.productElem--info a.title:hover {
  text-decoration: underline;
}
.productElem--info .priceWrap {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
.productElem--info .priceWrap .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--4life-main-blue);
  margin: 0 20px 0 0;
  padding-top: 3px;
}
.productElem--info .priceWrap .oldPrice {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: line-through;
  color: var(--4life-main-blue);
  margin: 0 20px 0 0;
}
.productElem--info form {
  justify-content: flex-start;
}
.productElem--info form button, .productElem--info form a {
  font-size: 11px;
}
@media (min-width: 993px) {
  .productElem--info form button, .productElem--info form a {
    font-size: 12px;
  }
}
@media (min-width: 1366px) {
  .productElem--info form button, .productElem--info form a {
    font-size: 14px;
  }
}
.productElem--info form a {
  padding: 15px 0;
  display: block;
  width: 100%;
  line-height: 143%;
  max-width: 118px;
}
@media (min-width: 769px) {
  .productElem--info form a {
    max-width: 158px;
  }
}
.productElem--info form button {
  background: var(--4life-main-blue);
  margin: 0 10px 0 0;
  color: var(--4life-white-blue);
  cursor: pointer;
  padding: 18px 0 17px;
  display: block;
  width: 100%;
  line-height: 1;
  max-width: 85px;
}
@media (min-width: 769px) {
  .productElem--info form button {
    max-width: 115px;
    margin: 0 20px 0 0;
  }
}
.productElem--info form button:hover {
  background: transparent;
  color: var(--4life-main-blue);
}

.swiper-button-next, .swiper-button-prev {
  z-index: 1;
}

/*subscribe*/
.sectionSubscription {
  background: var(--4life-second-blue);
  padding: 100px 0;
}
.sectionSubscription .container {
  max-width: 90%;
}
@media (min-width: 681px) {
  .sectionSubscription .container {
    max-width: 83%;
  }
}
@media (min-width: 993px) {
  .sectionSubscription .container {
    max-width: 94%;
  }
}
@media (min-width: 1580px) {
  .sectionSubscription .container {
    max-width: 1520px;
  }
}
.sectionSubscription .sectionSubscription--wrap {
  display: block;
  width: 100%;
  margin: 0px auto;
}
@media (min-width: 993px) {
  .sectionSubscription .sectionSubscription--wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll {
  width: 100%;
  margin: 0 0 50px;
}
@media (min-width: 681px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll {
    margin: 0px;
  }
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:first-child {
  max-width: 100%;
}
@media (min-width: 993px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:first-child {
    max-width: 50%;
  }
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:first-child p {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: var(--4life-white-blue);
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child {
  max-width: 100%;
  margin: 0px;
}
@media (min-width: 681px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child {
    max-width: 100%;
  }
}
@media (min-width: 993px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child {
    max-width: 47%;
  }
}
@media (min-width: 1366px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child {
    max-width: 44%;
  }
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex {
  display: block;
  margin: 0 0 20px;
}
@media (min-width: 681px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex {
    justify-content: space-between;
    display: flex;
  }
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex input {
  width: 100%;
  max-width: 100%;
  line-height: 150%;
  color: var(--4life-white-blue);
  padding: 18px 20px;
  border: 1px solid var(--4life-white-blue);
  background: transparent;
  border-radius: 100px;
  box-sizing: border-box;
  margin: 0 0 20px;
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex input::placeholder {
  color: var(--4life-white-blue);
}
@media (min-width: 681px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex input {
    margin: 0px;
  }
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex input.error {
  border: 1px solid #f58e8f;
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex button {
  width: 100%;
  max-width: 175px;
  border-radius: 100px;
  padding: 18px 0;
  background: var(--4life-white-blue);
  display: block;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 auto;
  line-height: 125%;
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex button:hover {
  background: var(--4life-main-blue);
}
@media (min-width: 681px) {
  .sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .flex button {
    margin: 0 0 0 20px;
  }
}
.sectionSubscription .sectionSubscription--wrap .sectionSubscription--coll:last-child form .checkbox-container {
  margin: 0px;
}

/*partner*/
.sectionPartner {
  background: url("../imgs/partners3-m.jpg") right top no-repeat;
  background-size: cover;
  padding: 328px 0 0;
}
@media (min-width: 681px) {
  .sectionPartner {
    padding: 235px 0;
    background: url("../imgs/partners2-m.jpg") right center no-repeat;
    background-size: cover;
  }
}
@media (min-width: 993px) {
  .sectionPartner {
    padding: 140px 0;
    background: url("../imgs/partners2.jpg") center center no-repeat;
    background-size: cover;
  }
}
@media (max-width: 680px) {
  .sectionPartner .container {
    max-width: 100%;
  }
}
.sectionPartner .sectionPartner--elem {
  background: var(--4life-second-blue);
  width: 100%;
  max-width: 100%;
  padding: 40px 20px;
  margin: 0px;
  box-sizing: border-box;
}
@media (min-width: 681px) {
  .sectionPartner .sectionPartner--elem {
    max-width: 470px;
    border-radius: 200px;
    padding: 40px 65px;
    margin: 0 0 40px;
  }
}
@media (min-width: 993px) {
  .sectionPartner .sectionPartner--elem {
    max-width: 510px;
    padding: 40px 90px;
  }
}
@media (min-width: 1366px) {
  .sectionPartner .sectionPartner--elem {
    max-width: 610px;
    padding: 60px 130px;
  }
}
.sectionPartner .sectionPartner--elem .h4_title {
  color: #fff;
  margin: 0 0 20px;
  font-size: 20px;
}
@media (min-width: 993px) {
  .sectionPartner .sectionPartner--elem .h4_title {
    font-size: 24px;
  }
}
.sectionPartner .sectionPartner--elem p {
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 993px) {
  .sectionPartner .sectionPartner--elem p {
    margin-bottom: 30px;
  }
}
.sectionPartner .sectionPartner--elem:last-child {
  margin: 0px;
  background: var(--4life-lightblue);
}
.sectionPartner .sectionPartner--elem:last-child .h4_title, .sectionPartner .sectionPartner--elem:last-child p {
  color: var(--4life-main-blue);
}

/*question*/
.sectionQuestion {
  background: #dee6f0;
  padding: 120px 0;
}
.sectionQuestion .container {
  max-width: 90%;
}
@media (min-width: 681px) {
  .sectionQuestion .container {
    max-width: 83%;
  }
}
@media (min-width: 993px) {
  .sectionQuestion .container {
    max-width: 96%;
  }
}
@media (min-width: 1580px) {
  .sectionQuestion .container {
    max-width: 1520px;
  }
}
.sectionQuestion .h2_title {
  text-align: left;
  margin-bottom: 50px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 681px) {
  .sectionQuestion .h2_title {
    max-width: 60%;
  }
}
@media (min-width: 993px) {
  .sectionQuestion .h2_title {
    margin: 0;
    max-width: 100%;
  }
}
.sectionQuestion .sectionQuestion--wrap {
  display: block;
}
@media (min-width: 993px) {
  .sectionQuestion .sectionQuestion--wrap {
    align-items: flex-start;
    display: flex;
  }
}
.sectionQuestion .sectionQuestion--wrap .sectionQuestion--coll {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  .sectionQuestion .sectionQuestion--wrap .sectionQuestion--coll {
    max-width: 49%;
  }
}
.sectionQuestion .accordion-item .accordion-header {
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
}
.sectionQuestion .accordion-item .accordion-header span {
  display: block;
  margin: 0 100px 0 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 178%;
  color: var(--4life-main-blue);
}
.sectionQuestion .accordion-item .accordion-header svg {
  min-width: 24px;
}
.sectionQuestion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0;
  margin: 0 0 30px;
}
.sectionQuestion .accordion-item .accordion-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 178%;
  color: var(--4life-main-blue);
}
.sectionQuestion .accordion-item.show .accordion-content {
  max-height: 1000px;
  padding: 10px;
}
.sectionQuestion .accordion-item.show .accordion-header svg path:first-child {
  display: none;
}

/*sertificat*/
.sectionSertificat {
  padding: 80px 0 0;
}
@media (min-width: 681px) {
  .sectionSertificat {
    padding: 120px 0 0;
  }
}
.sectionSertificat .container {
  max-width: 90%;
}
@media (min-width: 681px) {
  .sectionSertificat .container {
    max-width: 83%;
  }
}
@media (min-width: 993px) {
  .sectionSertificat .container {
    max-width: 96%;
  }
}
@media (min-width: 1580px) {
  .sectionSertificat .container {
    max-width: 1520px;
  }
}
.sectionSertificat .h2_title {
  margin: 0 0 50px;
}
.sectionSertificat .sertificatSliderWrap {
  width: 100%;
  max-width: 82%;
  margin: 0px auto;
  position: relative;
}
@media (min-width: 993px) {
  .sectionSertificat .sertificatSliderWrap {
    max-width: 90%;
  }
}
@media (min-width: 1560px) {
  .sectionSertificat .sertificatSliderWrap {
    max-width: 1260px;
  }
}
.sectionSertificat .sertificatSliderWrap .swiper-button-prev,
.sectionSertificat .sertificatSliderWrap .swiper-button-next {
  background: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
@media (min-width: 581px) {
  .sectionSertificat .sertificatSliderWrap .swiper-button-prev,
.sectionSertificat .sertificatSliderWrap .swiper-button-next {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
}
@media (min-width: 744px) {
  .sectionSertificat .sertificatSliderWrap .swiper-button-prev,
.sectionSertificat .sertificatSliderWrap .swiper-button-next {
    width: 64px;
    height: 64px;
    margin-top: -32px;
  }
}
.sectionSertificat .sertificatSliderWrap .swiper-button-prev svg,
.sectionSertificat .sertificatSliderWrap .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.sectionSertificat .sertificatSliderWrap .swiper-button-prev:after,
.sectionSertificat .sertificatSliderWrap .swiper-button-next:after {
  display: none;
}
.sectionSertificat .sertificatSliderWrap .swiper-button-prev {
  left: -15%;
}
.sectionSertificat .sertificatSliderWrap .swiper-button-prev svg {
  transform: rotate(180deg);
}
@media (min-width: 993px) {
  .sectionSertificat .sertificatSliderWrap .swiper-button-prev {
    left: -7%;
  }
}
.sectionSertificat .sertificatSliderWrap .swiper-button-next {
  right: -15%;
}
@media (min-width: 993px) {
  .sectionSertificat .sertificatSliderWrap .swiper-button-next {
    right: -7%;
  }
}
.sectionSertificat .sertificatSliderWrap .sertificatSlider .swiper-slide a {
  display: block;
}
.sectionSertificat .sertificatSliderWrap .sertificatSlider .swiper-slide a img {
  max-width: 100%;
}

/*client-info*/
.clientInfo {
  margin: 80px 0;
}
@media (min-width: 993px) {
  .clientInfo {
    margin: 120px 0;
  }
}
.clientInfo .container {
  max-width: 90%;
}
@media (min-width: 681px) {
  .clientInfo .container {
    max-width: 83%;
  }
}
@media (min-width: 993px) {
  .clientInfo .container {
    max-width: 96%;
  }
}
@media (min-width: 1580px) {
  .clientInfo .container {
    max-width: 1520px;
  }
}
.clientInfo .clientInfoWrap {
  display: block;
}
@media (min-width: 993px) {
  .clientInfo .clientInfoWrap {
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
}
.clientInfo .clientInfoWrap .clientInfo--elem {
  border: 1px solid var(--4life-main-blue);
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 0 40px;
}
.clientInfo .clientInfoWrap .clientInfo--elem:last-child {
  margin: 0px;
}
.clientInfo .clientInfoWrap .clientInfo--elem:last-child .clientInfo--logo {
  flex-wrap: nowrap;
}
@media (min-width: 681px) {
  .clientInfo .clientInfoWrap .clientInfo--elem {
    padding: 50px 45px;
  }
}
@media (min-width: 993px) {
  .clientInfo .clientInfoWrap .clientInfo--elem {
    max-width: 49%;
    margin: 0px;
  }
}
.clientInfo .clientInfoWrap .clientInfo--elem .title {
  font-size: 22px;
  line-height: 155%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}
.clientInfo .clientInfoWrap .clientInfo--elem .title b {
  display: block;
  font-weight: 700;
}
.clientInfo .clientInfoWrap .clientInfo--elem .clientInfo--logo {
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 681px) {
  .clientInfo .clientInfoWrap .clientInfo--elem .clientInfo--logo {
    flex-wrap: nowrap;
  }
}
.clientInfo .clientInfoWrap .clientInfo--elem .clientInfo--logo img {
  margin: 0 15px 10px 0;
  max-width: 23%;
}
.clientInfo .clientInfoWrap .clientInfo--elem .clientInfo--logo img:last-child {
  margin: 0 0 10px;
}

/*important*/
.sectionProductSlider {
  margin: 0 0 80px;
}
@media (min-width: 992px) {
  .sectionProductSlider {
    margin: 0 0 120px;
  }
}
.sectionProductSlider .container .h3_title {
  margin: 0 0 50px;
}
.sectionProductSlider .container .btn {
  margin: 0 auto 50px;
  display: block;
  max-width: 245px;
  box-sizing: border-box;
  padding-left: 0px;
  padding-right: 0px;
}
.sectionProductSlider .productSlider {
  position: relative;
}
.sectionProductSlider .productSlider .navigation {
  width: 100%;
}
.sectionProductSlider .productSlider .navigation .swiper-button-prev,
.sectionProductSlider .productSlider .navigation .swiper-button-next {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  position: absolute;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-prev,
.sectionProductSlider .productSlider .navigation .swiper-button-next {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
}
@media (min-width: 992px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-prev,
.sectionProductSlider .productSlider .navigation .swiper-button-next {
    width: 64px;
    height: 64px;
    margin-top: -32px;
  }
}
.sectionProductSlider .productSlider .navigation .swiper-button-prev:after,
.sectionProductSlider .productSlider .navigation .swiper-button-next:after {
  display: none;
}
.sectionProductSlider .productSlider .navigation .swiper-button-prev svg,
.sectionProductSlider .productSlider .navigation .swiper-button-next svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  fill: var(--4life-grey);
}
.sectionProductSlider .productSlider .navigation .swiper-button-prev {
  left: 10px;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-prev {
    left: 20px;
  }
}
@media (min-width: 992px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-prev {
    left: 6%;
  }
}
@media (min-width: 1080px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-prev {
    left: 10%;
  }
}
@media (min-width: 1560px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-prev {
    left: 12%;
  }
}
@media (min-width: 1920px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-prev {
    left: 20%;
  }
}
.sectionProductSlider .productSlider .navigation .swiper-button-next {
  right: 10px;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-next {
    right: 20px;
  }
}
@media (min-width: 992px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-next {
    right: 6%;
  }
}
@media (min-width: 1080px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-next {
    right: 10%;
  }
}
@media (min-width: 1560px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-next {
    right: 12%;
  }
}
@media (min-width: 1920px) {
  .sectionProductSlider .productSlider .navigation .swiper-button-next {
    right: 20%;
  }
}
.sectionProductSlider .productSlider .productSlider--elem {
  position: relative;
  display: block;
  padding-bottom: 30px;
  text-align: center;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .productSlider--elem {
    display: flex;
    padding-bottom: 0px;
    text-align: left;
  }
}
.sectionProductSlider .productSlider .productSlider--elem .price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--4life-main-blue);
  padding-top: 3px;
}
.sectionProductSlider .productSlider .productSlider--elem .oldPrice {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: line-through;
  color: var(--4life-main-blue);
  margin: 0 30px 0 0;
}
.sectionProductSlider .productSlider .productSlider--elem .slideBG {
  content: "";
  width: 80%;
  height: 85%;
  top: 15%;
  left: 10%;
  background: #c7e3ff;
  border-radius: 20px;
  z-index: 1;
  position: absolute;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .productSlider--elem .slideBG {
    height: 70%;
  }
}
@media (min-width: 993px) {
  .sectionProductSlider .productSlider .productSlider--elem .slideBG {
    width: 100%;
    left: 0px;
  }
}
@media (min-width: 1199px) {
  .sectionProductSlider .productSlider .productSlider--elem .slideBG {
    height: 60%;
    top: 20%;
  }
}
.sectionProductSlider .productSlider .productSlider--elem:nth-child(1) .slideBG {
  background: #d7e5b5;
}
.sectionProductSlider .productSlider .productSlider--elem:nth-child(3) .slideBG {
  background: #ffd3d0;
}
.sectionProductSlider .productSlider .productSlider--elem img {
  position: relative;
  width: 100%;
  max-width: 340px;
  z-index: 2;
  transition: 0.5s;
  margin-left: -60px;
  margin-right: -30px;
}
@media (min-width: 744px) {
  .sectionProductSlider .productSlider .productSlider--elem img {
    margin-right: -20px;
    margin-left: -40px;
  }
}
@media (min-width: 993px) {
  .sectionProductSlider .productSlider .productSlider--elem img {
    max-width: 380px;
  }
}
@media (min-width: 1199px) {
  .sectionProductSlider .productSlider .productSlider--elem img {
    max-width: 470px;
  }
}
.sectionProductSlider .productSlider .productSlider--elem:hover img {
  transform: rotate(-20deg);
}
.sectionProductSlider .productSlider .productSlider--elem .productElem--info {
  width: 60%;
  padding: 0px;
  margin: 0px auto;
  text-align: left;
}
@media (min-width: 581px) {
  .sectionProductSlider .productSlider .productSlider--elem .productElem--info {
    width: 70%;
  }
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .productSlider--elem .productElem--info {
    width: 40%;
    padding-right: 30px;
  }
}
@media (min-width: 744px) {
  .sectionProductSlider .productSlider .productSlider--elem .productElem--info {
    padding-right: 0px;
    margin: 0px;
  }
}
@media (min-width: 1366px) {
  .sectionProductSlider .productSlider .productSlider--elem .productElem--info {
    width: 100%;
  }
}
.sectionProductSlider .productSlider .productSlider--elem .productElem--info form {
  justify-content: flex-start;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .productSlider--elem .productElem--info form {
    justify-content: flex-start;
  }
}
.sectionProductSlider .productSlider .productSlider--elem .productElem--info form button {
  max-width: 100px;
  padding: 20px 0 18px;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .productSlider--elem .productElem--info form button {
    padding: 18px 0 17px;
  }
}
.sectionProductSlider .productSlider .productSlider--elem .productElem--info form a {
  padding: 17px 0;
}
@media (min-width: 681px) {
  .sectionProductSlider .productSlider .productSlider--elem .productElem--info form a {
    padding: 15px 0;
  }
}

/*important*/
.sectionImportant {
  background: url("../imgs/important-bg-mobil.png") 0 0 no-repeat;
  background-size: cover;
  padding: 65px 0 40px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .sectionImportant {
    background: url("../imgs/important-bg.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}
.sectionImportant .sectionImportant--wrap {
  position: relative;
  justify-content: space-between;
}
.sectionImportant .sectionImportant--wrap img {
  position: relative;
  margin: 290px auto 0;
  max-width: 100%;
}
@media (min-width: 681px) {
  .sectionImportant .sectionImportant--wrap img {
    margin: 240px auto 0;
  }
}
@media (min-width: 769px) {
  .sectionImportant .sectionImportant--wrap img {
    max-width: 795px;
    margin: 20px auto 0;
  }
}
@media (min-width: 993px) {
  .sectionImportant .sectionImportant--wrap img {
    margin: 100px auto 0;
  }
}
@media (min-width: 1366px) {
  .sectionImportant .sectionImportant--wrap img {
    max-width: 1075px;
    margin: 0px auto;
  }
}
.sectionImportant .sectionImportant--wrap .sectionImportant--leftColl {
  width: 100%;
  max-width: 250px;
  z-index: 2;
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: left;
}
@media (min-width: 769px) {
  .sectionImportant .sectionImportant--wrap .sectionImportant--leftColl {
    max-width: 250px;
  }
}
@media (min-width: 992px) {
  .sectionImportant .sectionImportant--wrap .sectionImportant--leftColl {
    max-width: 290px;
  }
}
@media (min-width: 1199px) {
  .sectionImportant .sectionImportant--wrap .sectionImportant--leftColl {
    max-width: 350px;
  }
}
.sectionImportant .sectionImportant--wrap .sectionImportant--leftColl .h2_title {
  text-align: left;
  margin: 0 0 30px;
}
.sectionImportant .sectionImportant--wrap .sectionImportant--leftColl p {
  margin: 0 0 20px;
}
.sectionImportant .sectionImportant--wrap .sectionImportant--leftColl p a {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
}
.sectionImportant .sectionImportant--wrap .sectionImportant--rightColl {
  width: 100%;
  z-index: 2;
  position: absolute;
  right: 0px;
  top: 60px;
  text-align: right;
  display: none;
}
@media (min-width: 681px) {
  .sectionImportant .sectionImportant--wrap .sectionImportant--rightColl {
    display: block;
    max-width: 250px;
  }
}
@media (min-width: 769px) {
  .sectionImportant .sectionImportant--wrap .sectionImportant--rightColl {
    max-width: 290px;
  }
}
@media (min-width: 993px) {
  .sectionImportant .sectionImportant--wrap .sectionImportant--rightColl {
    max-width: 350px;
  }
}
.sectionImportant .sectionImportant--info {
  background: var(--4life-pure-white);
  border-radius: 0px;
  padding: 30px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 681px) {
  .sectionImportant .sectionImportant--info {
    padding: 30px 60px;
  }
}
@media (min-width: 993px) {
  .sectionImportant .sectionImportant--info {
    max-width: 96%;
    margin: 0px auto;
    border-radius: 200px;
  }
}
@media (min-width: 1650px) {
  .sectionImportant .sectionImportant--info {
    max-width: 1520px;
    margin: 0px auto;
  }
}
.sectionImportant .sectionImportant--info > div {
  width: 100%;
  max-width: 30%;
}
.sectionImportant .sectionImportant--info > div .title {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 15px;
}
@media (min-width: 769px) {
  .sectionImportant .sectionImportant--info > div .title {
    font-size: 16px;
  }
}
.sectionImportant .sectionImportant--info > div p {
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0px;
  font-size: 12px;
}
@media (min-width: 769px) {
  .sectionImportant .sectionImportant--info > div p {
    font-size: 16px;
  }
}

/*mobil*/
.sectionMagazinGrid {
  display: block;
  padding: 80px 0 0;
  grid-template-columns: 20% 75%;
}
@media (min-width: 993px) {
  .sectionMagazinGrid {
    padding: 240px 0 0;
    grid-template-columns: 20% 75%;
    display: grid;
    gap: 50px;
  }
}
@media (min-width: 1560px) {
  .sectionMagazinGrid {
    grid-template-columns: 320px auto;
    gap: 70px;
  }
}
.sectionMagazinGrid.full {
  display: block;
}

.sectionMagazinGrid--navigation {
  padding: 30px 0 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  .sectionMagazinGrid--navigation {
    max-width: 280px;
  }
}
.sectionMagazinGrid--navigation .filterBtn {
  display: block;
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  padding: 22px 24px;
  width: 131px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0px auto 50px;
}
@media (min-width: 993px) {
  .sectionMagazinGrid--navigation .filterBtn {
    display: none;
  }
}
.sectionMagazinGrid--navigation .filterWrapper {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  max-width: 452px;
  background: #fff;
  z-index: 10;
  height: 100%;
  padding: 150px 90px 150px 20px;
  box-sizing: border-box;
  transition: right 0.5s ease;
  overflow-y: auto;
}
.sectionMagazinGrid--navigation .filterWrapper.open {
  right: 0;
  z-index: 25;
}
@media (min-width: 481px) {
  .sectionMagazinGrid--navigation .filterWrapper {
    padding: 150px 90px;
  }
}
@media (min-width: 993px) {
  .sectionMagazinGrid--navigation .filterWrapper {
    position: relative;
    right: 0px;
    padding: 0px;
    position: sticky;
    top: 100px;
    height: auto;
  }
}
.sectionMagazinGrid--navigation .filterWrapper .filterWrapper--head {
  display: block;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}
@media (min-width: 993px) {
  .sectionMagazinGrid--navigation .filterWrapper .filterWrapper--head {
    display: none;
  }
}
.sectionMagazinGrid--navigation .filterWrapper .filterWrapper--head .btnFilterClose {
  position: absolute;
  right: 20px;
  top: 20px;
}
.sectionMagazinGrid--navigation .filter {
  margin: 0 0 10px;
}
.sectionMagazinGrid--navigation .filter.filter-show .filter-title svg {
  transform: rotate(180deg);
}
.sectionMagazinGrid--navigation .filter .filter-title {
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-dark-grey);
  position: relative;
}
.sectionMagazinGrid--navigation .filter .filter-title svg {
  position: absolute;
  right: 0px;
}
.sectionMagazinGrid--navigation .filter .filter-body {
  padding: 20px 20px 20px 0;
  max-height: 300px;
  overflow: auto;
}
.sectionMagazinGrid--navigation .filter .filter-body ul li {
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 10px;
}
.sectionMagazinGrid--navigation .filter .filter-body ul li a {
  color: var(--4life-main-blue);
}
.sectionMagazinGrid--navigation .filter .filter-body ul li a:hover {
  text-decoration: underline;
}

.sectionMagazinGrid--list .h2_title {
  text-align: left;
  margin: 0 0 50px;
}
.sectionMagazinGrid--list .mainCatalogWrap {
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 120px;
  width: 100%;
  max-width: 100%;
  gap: 20px;
}
@media (min-width: 1281px) {
  .sectionMagazinGrid--list .mainCatalogWrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1560px) {
  .sectionMagazinGrid--list .mainCatalogWrap {
    gap: 40px;
  }
}
.sectionMagazinGrid--list .mainCatalogWrap .catalogElem {
  padding: 20px 20px 40px;
}
@media (min-width: 1560px) {
  .sectionMagazinGrid--list .mainCatalogWrap .catalogElem {
    padding: 20px 30px 40px;
  }
}

/*product*/
.sectionProduct {
  background: #ffd3d0;
  margin: 90px 0;
}
.sectionProduct .sectionProductInfo {
  padding: 50px 0 0;
  display: block;
}
@media (min-width: 993px) {
  .sectionProduct .sectionProductInfo {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--imgs {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 30px;
}
@media (min-width: 993px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--imgs {
    max-width: 49%;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--imgs img {
  width: 100%;
  max-width: 100%;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--text {
    max-width: 49%;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper {
  border-radius: 20px 20px 0 0;
  padding: 50px 20px 20px;
  box-sizing: border-box;
  height: 100%;
  background: #fff;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 581px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper {
    padding: 50px;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper h1 {
  font-size: 40px;
  text-align: left;
  margin: 0 0 30px;
}
@media (min-width: 1366px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper h1 {
    font-size: 60px;
    margin: 0 0 20px;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productOptions {
  justify-content: flex-start;
  margin: 0 0 50px;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productOptions .productOptions--capsul {
  border-radius: 100px;
  padding: 5px 7px;
  background: var(--4life-lightblue);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 5px 0 0;
  box-sizing: border-box;
}
@media (min-width: 581px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productOptions .productOptions--capsul {
    padding: 5px 19px;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productOptions .productOptions--made-in {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--4life-main-blue);
  padding: 5px 7px;
  box-sizing: border-box;
}
@media (min-width: 581px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productOptions .productOptions--made-in {
    padding: 5px 19px;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .match-price {
  margin: 0 0 30px;
  justify-content: flex-start;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .match-price .item-cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 133%;
  color: var(--4life-main-blue);
  margin: 0 30px 0 0;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy {
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
  margin: 0 0 50px;
}
@media (min-width: 581px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy {
    display: flex;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuyCount {
  align-items: stretch;
  margin: 0 0 12px;
  padding: 20px;
  box-sizing: border-box;
}
@media (min-width: 581px) {
  .sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuyCount {
    margin: 0 30px 0 0;
  }
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuyCount .minus, .sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuyCount .plus {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuyCount input {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  color: var(--4life-main-blue);
  width: 40px;
  text-align: center;
  padding: 0px;
  line-height: 1;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuy--btn {
  width: 100%;
  flex-wrap: wrap;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuy--btn .btn {
  width: 100%;
  max-width: 100%;
  margin: 0 0 10px;
  cursor: pointer;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productBuy .productBuy--btn .oneClick {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0px auto;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productDelivery {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  text-align: left;
  width: 100%;
}
.sectionProduct .sectionProductInfo .sectionProductInfo--text .productTextWrapper .productDelivery b {
  display: block;
  font-weight: 700;
}

.item-lp {
  background: var(--4life-second-blue);
  border-radius: 100px;
  padding: 5px 19px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--4life-white-blue);
}

.sectionProductDescription {
  margin: 0 0 120px;
}

.productDescTabs .productDescTabs--btn {
  justify-content: center;
  margin: 0 0 70px;
  display: block;
}
@media (min-width: 581px) {
  .productDescTabs .productDescTabs--btn {
    display: flex;
  }
}
.productDescTabs .productDescTabs--btn li {
  width: 100%;
  margin: 0 0 10px;
}
@media (min-width: 581px) {
  .productDescTabs .productDescTabs--btn li {
    max-width: 480px;
    margin: 0px 10px;
  }
}
@media (min-width: 769px) {
  .productDescTabs .productDescTabs--btn li {
    margin: 0px 20px;
  }
}
.productDescTabs .productDescTabs--btn li a {
  display: block;
  border-radius: 100px;
  padding: 22px 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  transition: 0.5s;
}
.productDescTabs .productDescTabs--btn li a:hover, .productDescTabs .productDescTabs--btn li a.active {
  background: var(--4life-lightblue);
  color: var(--4life-main-blue);
}
.productDescTabs .productDescTabs--content .productDescTabs--elem {
  display: none;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem.active {
  display: block;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem ul {
  padding: 0 0 0 20px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem ul li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  list-style: disc;
  margin: 0 0 20px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .productTagsWrap {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .productTagsWrap li {
  margin: 0 5px 5px 0;
  list-style: none;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .productTagsWrap li a {
  display: block;
  padding: 5px 20px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .h5_title {
  margin: 0 0 20px;
  text-transform: uppercase;
  color: var(--4life-dark-grey);
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .h5_title.dark {
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0 0 20px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem p:last-child {
  margin: 0 0 30px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .product--tag {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-dark-grey);
  padding: 5px 20px;
  border: 1px solid var(--4life-dark-grey);
  border-radius: 100px;
  display: inline-block;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .hiddenText {
  height: 100%;
  max-height: 310px;
  overflow: hidden;
  margin: 0 0 20px;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .readMore {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--4life-dark-grey);
  display: inline;
  border-bottom: dashed 1px;
  transition: 0.5s;
  cursor: pointer;
}
.productDescTabs .productDescTabs--content .productDescTabs--elem .readMore:hover {
  border-bottom: 1px dashed transparent;
}

.otherProducts {
  margin: 0 0 120px;
}
.otherProducts .h2_title {
  margin: 0 0 40px;
}
.otherProducts .otherProductSliderWrap {
  padding: 0px 12%;
  position: relative;
}
.otherProducts .otherProductSliderWrap .swiper-button-prev {
  left: -15px;
  width: 64px;
  height: 64px;
}
@media (min-width: 581px) {
  .otherProducts .otherProductSliderWrap .swiper-button-prev {
    left: 0px;
  }
}
.otherProducts .otherProductSliderWrap .swiper-button-prev:after {
  display: none;
}
.otherProducts .otherProductSliderWrap .swiper-button-next {
  right: -15px;
  width: 64px;
  height: 64px;
}
@media (min-width: 581px) {
  .otherProducts .otherProductSliderWrap .swiper-button-next {
    right: 0px;
  }
}
.otherProducts .otherProductSliderWrap .swiper-button-next:after {
  display: none;
}
.otherProducts .otherProductSlider {
  position: relative;
}

/*mobil*/
.overlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(1, 20, 38, 0.5);
  z-index: 12;
  display: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.overlay.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0px;
  height: 100%;
  box-sizing: border-box;
  right: -100%;
  z-index: 16;
  transition: 0.5s ease;
}
.modal nav.navigation ul li {
  margin: 0;
}
.modal.show {
  right: 0px;
}
.modal .modal-close {
  position: absolute;
  top: 80px;
  right: 22px;
}
.modal .modal-close svg {
  transition: transform 0.3s ease;
}
.modal .modal-close:hover svg {
  cursor: pointer;
  transform: rotate(90deg);
}
.modal .title {
  font-size: 40px;
  line-height: 127%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
  font-family: var(--second-family);
}
@media (min-width: 769px) {
  .modal .title {
    font-size: 60px;
  }
}
.modal p, .modal small {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-main-blue);
  display: block;
  margin: 0 0 20px;
}

#mobilMenu {
  max-width: 452px;
  padding: 170px 80px;
}
#mobilMenu .navigation {
  text-align: left;
  margin: 0 0 70px;
  min-width: 270px;
}
#mobilMenu .navigation > a {
  max-width: 100px;
  font-size: 14px;
}
#mobilMenu .navigation ul {
  display: block !important;
}
#mobilMenu .navigation ul li a {
  display: inline-block;
}
#mobilMenu .mobilCompany--text {
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
}
#mobilMenu .mobilCompany--text b {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}

#authModal {
  max-width: 810px;
}
#authModal #office-auth-form {
  padding-top: 120px;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  padding-bottom: 120px;
}
#authModal .authForm {
  display: none;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 521px) {
  #authModal .authForm {
    max-width: 480px;
  }
}
#authModal .authForm.open {
  display: block;
}
#authModal .authForm > div .btn {
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  margin: 0 auto 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 16px 15px 14px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
#authModal .authForm small {
  text-align: center;
}
#authModal .authForm form {
  padding: 20px 0 0;
}
#authModal .authForm form input {
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  padding: 18px 20px;
  color: var(--4life-dark-grey);
  margin: 0 0 20px;
  box-sizing: border-box;
}
#authModal .authForm form .checkbox-container {
  margin: 0 0 20px;
}
#authModal .authForm form .flex {
  padding-top: 20px;
}

#searchModal {
  max-width: 100%;
  height: 0px;
  display: block;
  right: 0px;
  z-index: 4;
  overflow: hidden;
  transition: height 0.5s ease;
}
#searchModal.show {
  height: 100%;
}
#searchModal .container {
  padding-top: 230px;
  box-sizing: border-box;
  position: relative;
}
#searchModal .container .modal-close {
  top: 170px;
  right: 15%;
}
#searchModal .container form {
  width: 100%;
  max-width: 740px;
  margin: 0px auto;
}
#searchModal .container form input {
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  padding: 18px 20px;
  color: var(--4life-dark-grey);
  margin: 0 0 20px;
  box-sizing: border-box;
}

#miniCarts {
  padding: 120px 0 0;
}
@media (min-width: 481px) {
  #miniCarts {
    max-width: 452px;
  }
}
@media (min-width: 811px) {
  #miniCarts {
    max-width: 810px;
  }
}
#miniCarts .smallCartBox {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
@media (min-width: 481px) {
  #miniCarts .smallCartBox {
    padding-left: 15%;
    padding-right: 22px;
  }
}
@media (min-width: 769px) {
  #miniCarts .smallCartBox {
    padding-right: 8%;
  }
}
#miniCarts .title {
  text-align: left;
}
#miniCarts .cart-mg {
  margin-bottom: 30px;
}
#miniCarts .cartPromo {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #122601;
  background: #b4ff76;
  padding: 15px 0 13px;
}
#miniCarts .itemCart {
  margin: 0 0 20px;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  transition: opacity 0.1s ease, height 0.1s ease, margin 0.1s ease, padding 0.1s ease;
}
#miniCarts .itemCart.hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
#miniCarts .itemCart button.del {
  position: absolute;
  right: 0px;
  top: 0px;
  background: none;
  width: 20px;
  height: 20px;
  display: block;
  padding: 0px;
}
#miniCarts .itemCart button.del svg {
  transition: transform 0.3s ease;
  width: 100%;
}
#miniCarts .itemCart button.del:hover svg {
  cursor: pointer;
  transform: rotate(90deg);
}
#miniCarts .itemCart:last-child {
  margin: 0px;
}
#miniCarts .itemCart > a {
  display: block;
  margin-right: 20px;
}
#miniCarts .itemCart .itemCart--title {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--4life-main-blue);
  display: inline-block;
  margin: 0 0 10px;
  width: 100%;
  max-width: 90%;
}
#miniCarts .itemCart .itemCartWrap {
  justify-content: flex-start;
  margin: 0 0 10px;
}
#miniCarts .itemCart .itemCart--cost {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--4life-main-blue);
  margin: 0 30px 0px 0;
  padding-top: 3px;
}
#miniCarts .itemCart .changeCount {
  max-width: 105px;
}
#miniCarts .itemCart .changeCount span {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#miniCarts .itemCart .changeCount input {
  width: 100%;
  max-width: 75px;
  margin: 0px 10px;
  text-align: center;
}
#miniCarts .itemCart .changeCount input[type=number] {
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield; /* Для Firefox */
  appearance: none;
}
#miniCarts .itemCart .changeCount input[type=number]::-webkit-outer-spin-button,
#miniCarts .itemCart .changeCount input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#miniCarts .itemCart .changeCount input[type=number]:not(:focus) {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
#miniCarts .itemCart img {
  width: 100%;
  max-width: 70px;
}
@media (min-width: 769px) {
  #miniCarts .itemCart img {
    max-width: 90px;
  }
}
#miniCarts .totalCart {
  background: #dee6f0;
  padding: 20px 0;
}
#miniCarts .totalCart .totalCart--title {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
}
#miniCarts .totalCart .totalCart--cost {
  justify-content: flex-start;
}
#miniCarts .totalCart .totalCart--cost .itemItogPrice {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 133%;
  color: var(--4life-main-blue);
  margin-right: 30px;
}
#miniCarts #mCart {
  padding-bottom: 80px;
  overflow-y: auto;
  height: 100%;
  box-sizing: border-box;
}

#loyaltyModal {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: transparent;
  max-height: 100%;
  top: -150%;
  left: 0px;
}
#loyaltyModal.show {
  top: 0px;
}
#loyaltyModal .loyaltyModalWrapper {
  max-width: 90%;
  width: 100%;
  left: 5%;
  margin: 50px 0;
  right: auto;
  position: relative;
  padding: 90px 0 50px;
  overflow: auto;
  background: #fff;
  box-sizing: border-box;
}
@media (min-width: 581px) {
  #loyaltyModal .loyaltyModalWrapper {
    max-width: 520px;
    margin-left: -260px;
    left: 50%;
  }
}
@media (min-width: 769px) {
  #loyaltyModal .loyaltyModalWrapper {
    max-width: 620px;
    margin-left: -310px;
  }
}
@media (min-width: 1367px) {
  #loyaltyModal .loyaltyModalWrapper {
    max-width: 740px;
    margin-left: -370px;
  }
}
#loyaltyModal .formModalWrap {
  max-width: 90%;
  margin: 0px auto;
}
@media (min-width: 581px) {
  #loyaltyModal .formModalWrap {
    max-width: 65%;
  }
}
#loyaltyModal .title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  text-align: left;
}
@media (min-width: 1366px) {
  #loyaltyModal .title {
    text-align: center;
  }
}
#loyaltyModal input {
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  padding: 18px 20px;
  color: var(--4life-dark-grey);
  margin: 0 0 20px;
  box-sizing: border-box;
}
#loyaltyModal .modal-close {
  position: absolute;
  top: 50px;
  right: 5%;
}
@media (min-width: 581px) {
  #loyaltyModal .modal-close {
    right: 15%;
  }
}
@media (min-width: 993px) {
  #loyaltyModal .modal-close {
    right: 130px;
  }
}

#addCartModal {
  border-radius: 20px;
  box-shadow: 0 0 40px 0 rgba(1, 20, 38, 0.1);
  background: #dee6f0;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  right: -100%;
  top: 110px;
  transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 340px;
  /* Базовый стиль контента */
}
@media (min-width: 745px) {
  #addCartModal {
    max-width: 400px;
  }
}
@media (min-width: 1367px) {
  #addCartModal {
    max-width: 480px;
  }
}
#addCartModal.show {
  right: 2%;
}
@media (min-width: 581px) {
  #addCartModal.show {
    right: 22px;
  }
}
@media (min-width: 1366px) {
  #addCartModal.show {
    right: 45px;
  }
}
#addCartModal .close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 20px;
  height: 20px;
}
#addCartModal .close svg {
  max-width: 100%;
}
#addCartModal .addproduct_block {
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.25, 0, 0.1, 1);
}
#addCartModal .addproduct_block a.btn {
  width: 100%;
  max-width: 185px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--4life-white-blue);
  padding: 15px;
  display: block;
  box-sizing: border-box;
}
#addCartModal .addproduct_block.is-fading {
  opacity: 0 !important;
}
#addCartModal .modalTitle {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 20px;
}
#addCartModal .mcart_item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#addCartModal .mcart_item .mcart_item-img {
  width: 100%;
  max-width: 70px;
  margin: 0 20px 20px 0;
  border-radius: 20px;
  padding: 5px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (min-width: 1366px) {
  #addCartModal .mcart_item .mcart_item-img {
    max-width: 90px;
  }
}
#addCartModal .mcart_item .mcart_item-img a {
  display: block;
  line-height: 0;
}
#addCartModal .mcart_item .mcart_item-img a img {
  width: 100%;
  max-width: 100%;
}
#addCartModal .mcart_item .mcart_item-info {
  padding-top: 20px;
}
#addCartModal .mcart_item .mcart_item-info a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--4life-main-blue);
}

/*about*/
.sectionAboutTitle {
  padding-top: 70px;
  margin: 0 0 70px;
}
@media (min-width: 681px) {
  .sectionAboutTitle {
    padding-top: 120px;
  }
}
.sectionAboutTitle img {
  width: 100%;
  max-width: 100%;
  margin: 0 0 80px;
}
@media (min-width: 581px) {
  .sectionAboutTitle img {
    margin: 0 0 120px;
  }
}
.sectionAboutTitle h1 {
  margin: 0 0 35px;
}
.sectionAboutTitle span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  display: block;
  margin: 0 0 70px;
}
.sectionAboutTitle p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 133%;
  text-align: center;
  color: var(--4life-main-blue);
  display: block;
  max-width: 1000px;
  margin: 0px auto;
}
@media (min-width: 581px) {
  .sectionAboutTitle p {
    font-size: 24px;
  }
}

.sectionAboutAuthor {
  margin: 0 0 70px;
}
.sectionAboutAuthor .aboutAuthor--wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  flex-wrap: wrap;
}
@media (min-width: 681px) {
  .sectionAboutAuthor .aboutAuthor--wrapper {
    flex-wrap: nowrap;
  }
}
@media (min-width: 993px) {
  .sectionAboutAuthor .aboutAuthor--wrapper {
    padding: 0px 65px;
  }
}
.sectionAboutAuthor .aboutAuthor--wrapper .coll {
  width: 100%;
}
.sectionAboutAuthor .aboutAuthor--wrapper .coll:first-child {
  max-width: 630px;
  padding-right: 65px;
}
@media (max-width: 680px) {
  .sectionAboutAuthor .aboutAuthor--wrapper .coll:first-child {
    order: 2;
    max-width: 100%;
  }
}
.sectionAboutAuthor .aboutAuthor--wrapper .coll:last-child {
  max-width: 340px;
}
@media (max-width: 680px) {
  .sectionAboutAuthor .aboutAuthor--wrapper .coll:last-child {
    order: 1;
    margin: 0 auto 50px;
  }
}
@media (min-width: 993px) {
  .sectionAboutAuthor .aboutAuthor--wrapper .coll:last-child {
    max-width: 430px;
  }
}
.sectionAboutAuthor .aboutAuthor--wrapper .coll:last-child img {
  width: 100%;
  max-width: 100%;
}

.sectionAboutAuthors {
  margin: 0 0 120px;
}
.sectionAboutAuthors .aboutAuthors--wrapper {
  border: 1px solid var(--4life-main-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 992px) {
  .sectionAboutAuthors .aboutAuthors--wrapper {
    flex-wrap: wrap;
  }
}
.sectionAboutAuthors .aboutAuthors--wrapper .coll {
  width: 100%;
  max-width: 49.5%;
}
@media (max-width: 992px) {
  .sectionAboutAuthors .aboutAuthors--wrapper .coll {
    max-width: 100%;
  }
}
.sectionAboutAuthors .aboutAuthors--wrapper .coll img {
  line-height: 0;
  margin: 0 0 -6px;
  width: 100%;
  max-width: 100%;
}
.sectionAboutAuthors .aboutAuthors--wrapper .coll p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0 0 20px;
}
@media (max-width: 992px) {
  .sectionAboutAuthors .aboutAuthors--wrapper .coll:first-child {
    order: 2;
    text-align: center;
  }
}
.sectionAboutAuthors .aboutAuthors--wrapper .coll:last-child {
  padding: 0 50px 0 0;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .sectionAboutAuthors .aboutAuthors--wrapper .coll:last-child {
    order: 1;
    padding: 50px 90px;
  }
}
@media (max-width: 680px) {
  .sectionAboutAuthors .aboutAuthors--wrapper .coll:last-child {
    padding: 50px 20px;
  }
}
@media (min-width: 1366px) {
  .sectionAboutAuthors .aboutAuthors--wrapper .coll:last-child {
    padding: 0 65px 0 0;
  }
}
.sectionAboutAuthors .aboutAuthors--wrapper .coll:last-child img {
  margin: 0 0 12px;
}

.sectionTextColl {
  margin: 0 0 120px;
}
@media (max-width: 680px) {
  .sectionTextColl {
    margin: 0 0 80px;
  }
}
.sectionTextColl .h2_title {
  margin: 0 0 50px;
}
.sectionTextColl .textColl--wrapper {
  padding: 0px 65px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .sectionTextColl .textColl--wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 680px) {
  .sectionTextColl .textColl--wrapper {
    padding: 0;
  }
}
.sectionTextColl .textColl--wrapper .coll {
  width: 100%;
  max-width: 47%;
}
@media (max-width: 992px) {
  .sectionTextColl .textColl--wrapper .coll {
    max-width: 100%;
  }
}
.sectionTextColl .textColl--wrapper .coll p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0 0 20px;
}
.sectionTextColl .textColl--wrapper .coll.full {
  max-width: 100%;
}

.sectionAboutArticles {
  margin: 0 0 70px;
}
@media (max-width: 680px) {
  .sectionAboutArticles {
    margin: 0 0 30px;
  }
}
.sectionAboutArticles .h2_title {
  margin: 0 0 30px;
}
.sectionAboutArticles span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  display: block;
  margin: 0 0 50px;
}
.sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem {
  margin: 0 0 50px;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem {
    flex-wrap: wrap;
  }
}
.sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem img {
    order: 1;
  }
}
@media (min-width: 901px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem img {
    max-width: 450px;
  }
}
@media (min-width: 1081px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem img {
    max-width: 485px;
  }
}
@media (min-width: 1281px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem img {
    max-width: 585px;
  }
}
@media (min-width: 1366px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem img {
    max-width: 695px;
  }
}
.sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll {
  padding: 40px;
  width: 100%;
}
@media (max-width: 900px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll {
    padding: 50px 90px;
    order: 2;
  }
}
@media (max-width: 680px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll {
    padding: 50px 20px;
  }
}
@media (min-width: 1281px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll {
    padding: 50px 70px 55px 90px;
  }
}
@media (min-width: 1366px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll {
    padding: 70px 70px 100px 100px;
  }
}
.sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 25px;
}
@media (max-width: 900px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll h4 {
    font-size: 24px;
  }
}
@media (min-width: 1081px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll h4 {
    font-size: 24px;
  }
}
.sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}
@media (max-width: 900px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll p {
    font-size: 18px;
  }
}
@media (min-width: 1081px) {
  .sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll p {
    font-size: 18px;
  }
}
.sectionAboutArticles .aboutArticles--wrapper .aboutArticles--elem .aboutArticles--coll a {
  /* border-radius: 100px;
   padding: 10px 15px;*/
  width: 100%;
  max-width: 120px;
  font-weight: 700;
  font-size: 14px;
  padding: 15px;
  /* background: var(--4life-pure-white);
   font-family: var(--font-family);
   font-weight: 700;
   font-size: 14px;
   line-height: 143%;
   text-transform: uppercase;
   text-align: center;
   color: var(--4life-main-blue);*/
}

/*about*/
/*.sectionArticlTitle {
  padding-top: 120px;
  margin: 0 0 50px;
  @media (min-width: 681px) {
    padding-top: 240px;
  }

  img {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  h1 {
    margin: 0 0 50px;
  }
}*/
.sectionArticlText {
  margin: 0 0 80px;
}
@media (min-width: 581px) {
  .sectionArticlText {
    margin: 0 0 120px;
  }
}
.sectionArticlText .container {
  width: 100%;
  max-width: 100%;
  padding: 0 22px;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .sectionArticlText .container {
    max-width: 840px;
    padding: 0px;
  }
}
@media (min-width: 1366px) {
  .sectionArticlText .container {
    max-width: 1000px;
  }
}
.sectionArticlText .container .h4_title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 136%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 40px;
}
.sectionArticlText .container .h4_title.light {
  font-weight: 400;
  margin: 0px 0px 12px;
}
.sectionArticlText .container p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
}
.sectionArticlText .container img {
  width: 100%;
  max-width: 100%;
  margin: 50px 0;
}
.sectionArticlText .container ul {
  margin: 0 0 50px;
}
.sectionArticlText .container ul li {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 150%;
  font-family: var(--font-family);
  color: var(--4life-main-blue);
}
.sectionArticlText .container ul li strong {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  position: relative;
  padding-left: 20px;
}
.sectionArticlText .container ul li strong:before {
  content: "•";
  position: absolute;
  left: 6px;
  top: -2px;
}
.sectionArticlText .container ul li:last-child {
  margin: 0px;
}
.sectionArticlText a.btn {
  margin: 50px auto 0;
  display: block;
  max-width: 210px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  padding: 22px 0;
}
.sectionArticlText a.btn:hover {
  color: #fff;
}

/*health*/
/*.sectionHealthTitle {
  padding-top: 70px;
  margin: 0 0 70px;
  @media (min-width: 681px) {
    padding-top: 240px;
  }
  h1 {
    text-align:left;
  }
  span {
    text-align:left;
  }
}
*/
.sectionHealthyArticles {
  margin: 0 0 70px;
}
@media (max-width: 680px) {
  .sectionHealthyArticles {
    margin: 0 0 30px;
  }
}
.sectionHealthyArticles .h2_title {
  margin: 0 0 30px;
}
.sectionHealthyArticles span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  display: block;
  margin: 0 0 50px;
}
.sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem {
  margin: 0 0 50px;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem {
    flex-wrap: wrap;
  }
}
.sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem img {
    order: 1;
  }
}
@media (min-width: 901px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem img {
    max-width: 450px;
  }
}
@media (min-width: 1081px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem img {
    max-width: 485px;
  }
}
@media (min-width: 1281px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem img {
    max-width: 585px;
  }
}
@media (min-width: 1366px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem img {
    max-width: 695px;
  }
}
.sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll {
  padding: 40px;
  width: 100%;
}
@media (max-width: 900px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll {
    padding: 50px 90px;
    order: 2;
  }
}
@media (max-width: 680px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll {
    padding: 50px 20px;
  }
}
@media (min-width: 1281px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll {
    padding: 50px 90px 25px 70px;
  }
}
@media (min-width: 1366px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll {
    padding: 70px 105px 70px 85px;
  }
}
.sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  color: var(--4life-main-blue);
  margin: 0 0 25px;
}
@media (max-width: 900px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll h4 {
    font-size: 24px;
  }
}
.sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}
@media (max-width: 900px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll p {
    font-size: 18px;
  }
}
@media (min-width: 1081px) {
  .sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll p {
    font-size: 18px;
  }
}
.sectionHealthyArticles .healthyArticles--wrapper .healthyArticles--elem .healthyArticles--coll a {
  width: 100%;
  max-width: 120px;
  font-weight: 700;
  font-size: 14px;
  padding: 15px;
}
.sectionHealthyArticles .pagination .linkMore {
  width: 100%;
  max-width: 280px;
  margin: 0px auto 50px;
  display: block;
  cursor: pointer;
}
.sectionHealthyArticles .pagination .paginationPages span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 12px;
}
.sectionHealthyArticles .pagination .paginationPages ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sectionHealthyArticles .pagination .paginationPages ul li {
  margin: 0px 15px;
}
.sectionHealthyArticles .pagination .paginationPages ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
}
.sectionHealthyArticles .pagination .paginationPages ul li a:hover {
  font-weight: 700;
}
.sectionHealthyArticles .pagination .paginationPages ul li.active a {
  font-weight: 700;
}

/*cart*/
.sectionGreen {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #122601;
  padding: 13px 0;
  line-height: 1;
  margin: 0 0 50px;
  background: #b4ff76;
}

.cart--stepTitle {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 50px;
}

.cart .cart-line {
  margin: 0 0 50px;
  position: relative;
}
.cart .cart-line .cart-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
.cart .cart-line .cart-row .cart-photo {
  margin: 0 20px 0 0;
  width: 100%;
  max-width: 70px;
}
@media (min-width: 581px) {
  .cart .cart-line .cart-row .cart-photo {
    max-width: 160px;
    margin: 0 42px 0 0;
  }
}
@media (min-width: 769px) {
  .cart .cart-line .cart-row .cart-photo {
    max-width: 180px;
  }
}
@media (min-width: 993px) {
  .cart .cart-line .cart-row .cart-photo {
    max-width: 180px;
  }
}
@media (min-width: 1367px) {
  .cart .cart-line .cart-row .cart-photo {
    max-width: 220px;
  }
}
.cart .cart-line .cart-row .cart-photo a {
  display: block;
  border-radius: 20px;
  padding: 15px;
}
.cart .cart-line .cart-row .cart-photo a img {
  display: block;
  line-height: 0;
  max-width: 100%;
}
.cart .cart-line .cart-row .cart-name {
  margin: 0 0 20px;
  width: 100%;
}
@media (min-width: 993px) {
  .cart .cart-line .cart-row .cart-name {
    max-width: 40%;
  }
}
.cart .cart-line .cart-row .cart-block {
  padding-right: 50px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  display: block;
  padding-top: 0px;
}
@media (min-width: 769px) {
  .cart .cart-line .cart-row .cart-block {
    padding-top: 30px;
  }
}
@media (min-width: 993px) {
  .cart .cart-line .cart-row .cart-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 30px;
  }
}
.cart .cart-line .cart-row .cart-block .cart-count {
  width: 100%;
  max-width: 160px;
}
.cart .cart-line .cart-row .cart-block .cart-count .plmn {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .cart .cart-line .cart-row .cart-block .cart-count .plmn {
    padding: 0 30px;
  }
}
.cart .cart-line .cart-row .cart-block .cart-count .plmn .minus, .cart .cart-line .cart-row .cart-block .cart-count .plmn .plus {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart .cart-line .cart-row .cart-block .cart-count .plmn input {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--4life-main-blue);
  text-align: center;
  width: 100%;
  max-width: 50px;
}
.cart .cart-line .cart-row .cart-block .cart-cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 125%;
  color: var(--4life-main-blue);
  display: none;
}
@media (min-width: 581px) {
  .cart .cart-line .cart-row .cart-block .cart-cost {
    font-size: 24px;
  }
}
@media (min-width: 993px) {
  .cart .cart-line .cart-row .cart-block .cart-cost {
    display: block;
  }
}
.cart .cart-line .cart-row .cart-block .item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--4life-main-blue);
}
.cart .cart-line .cart-row .cart-block .item-desc a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  color: var(--4life-main-blue);
  margin: 0 0 12px;
  display: inline-block;
}
@media (min-width: 581px) {
  .cart .cart-line .cart-row .cart-block .item-desc a {
    font-size: 18px;
  }
}
.cart .cart-line .cart-row .cart-block .item-desc .item-descWrap {
  justify-content: flex-start;
}
.cart .cart-line .cart-row .cart-block .item-desc .item-descWrap .item-cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: var(--4life-main-blue);
  margin: 0 20px 0 0;
}
.cart .cart-line .cart-row .cart-block .cart-delete {
  position: absolute;
  top: 0px;
  right: 0px;
}
@media (min-width: 993px) {
  .cart .cart-line .cart-row .cart-block .cart-delete {
    position: relative;
  }
}
.cart .cart-line .cart-row .cart-block .cart-delete button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  color: var(--4life-dark-grey);
  cursor: pointer;
}
.cart .cart-line .cart-row .cart-block .cart-delete button svg {
  margin: 0 10px 0 0;
  transition: transform 0.3s ease;
}
.cart .cart-line .cart-row .cart-block .cart-delete button:hover svg {
  cursor: pointer;
  transform: rotate(90deg);
}
.cart .cart-line .cart-row .cart-block .cart-delete button span {
  display: none;
}
@media (min-width: 1100px) {
  .cart .cart-line .cart-row .cart-block .cart-delete button span {
    display: block;
  }
}
.cart .total-cart {
  margin: 0 0 50px;
}
.cart .total-cart .total-block .total {
  text-align: center;
}
.cart .total-cart .total-block .total .total-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  display: block;
  margin: 0 0 10px;
}
.cart .total-cart .total-block .total .item-cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 0 10px;
}
.cart .total-cart .total-block .total .total-plWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart .total-cart .total-block .total .total-plWrap .total-pl {
  background: var(--4life-second-blue);
  border-radius: 100px;
  padding: 5px 19px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  color: var(--4life-white-blue);
  display: inline-block;
}

.promoCart {
  display: flex;
  justify-content: center;
  margin: 0 0 70px;
}
.promoCart .mspc2 {
  width: 100%;
  max-width: 740px;
  display: block;
}
.promoCart .mspc2 .mspc2-form {
  display: flex;
  border: 1px solid var(--4life-main-blue);
  border-radius: 65px;
  overflow: hidden;
  margin: 0 0 20px;
  max-width: 100%;
}
.promoCart .mspc2 .mspc2-form__input {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-dark-grey);
  padding: 20px;
  box-sizing: border-box;
  background: none;
  border: none;
}
.promoCart .mspc2 .mspc2-form__button {
  border-radius: 100px;
  padding: 10px 15px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 120px;
  cursor: pointer;
}
@media (min-width: 681px) {
  .promoCart .mspc2 .mspc2-form__button {
    max-width: 220px;
  }
}
.promoCart .mspc2 .mspc2-form__button.mspc2-form__button_cancel {
  display: none;
}
.promoCart .mspc2-discount-amount {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-main-blue);
}

#msOrder .deliveryWrapLink {
  display: block;
  margin: 0 0 50px;
}
@media (min-width: 700px) {
  #msOrder .deliveryWrapLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  #msOrder .deliveryWrapLink {
    justify-content: center;
  }
}
#msOrder .deliveryWrapLink a {
  margin: 0px 0 20px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  #msOrder .deliveryWrapLink a {
    max-width: 48%;
  }
}
@media (min-width: 769px) {
  #msOrder .deliveryWrapLink a {
    margin: 0px 20px;
    max-width: 480px;
  }
}
#msOrder .deliveryWrapLink a:last-child {
  margin: 0px;
}
#msOrder .deliveyWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 50px;
}
#msOrder .deliveyWrap .deliveyWrap--title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  width: 100%;
  margin: 0 0 15px;
}
#msOrder .deliveyWrap .deliveyWrap--cost {
  display: flex;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 133%;
  text-align: center;
  color: var(--4life-main-blue);
}
#msOrder .deliveyWrap .deliveyWrap--cost #ms2_delivery_cost {
  margin: 0 10px 0 0;
}
#msOrder #deliveries {
  margin: 0 0 70px;
}
#msOrder #deliveries .deliveryInfo--grey {
  border-radius: 20px;
  background: var(--4life-white-blue);
  padding: 50px 20px 20px;
  text-align: center;
  margin: 0 0 50px;
}
#msOrder #deliveries .deliveryInfo--grey .deliveryInfo--wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
}
#msOrder #deliveries .deliveryInfo--grey p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}
#msOrder #deliveries .deliveryInfo--grey span {
  font-weight: 700;
  font-size: 18px;
  color: var(--4life-red);
  margin: 0 0 30px;
  display: block;
}
#msOrder #deliveries .tab-list .flexTabs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
@media (min-width: 581px) {
  #msOrder #deliveries .tab-list .flexTabs {
    justify-content: center;
    margin: 0 0 50px;
  }
}
#msOrder #deliveries .tab-list .flexTabs .tab-list-item {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  background: transparent;
  transition: 0.5s;
  cursor: pointer;
  padding: 11px 35px;
  border: 1px solid var(--4life-grey);
  border-radius: 100px;
  width: 100%;
  max-width: 48%;
  box-sizing: border-box;
  margin: 0px 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
@media (min-width: 581px) {
  #msOrder #deliveries .tab-list .flexTabs .tab-list-item {
    width: auto;
    margin: 0 10px 20px;
  }
}
@media (min-width: 993px) {
  #msOrder #deliveries .tab-list .flexTabs .tab-list-item {
    padding: 11px 41px;
    margin: 0 21px;
  }
}
@media (min-width: 1080px) {
  #msOrder #deliveries .tab-list .flexTabs .tab-list-item {
    padding: 11px 51px;
  }
}
#msOrder #deliveries .tab-list .flexTabs .tab-list-item:hover, #msOrder #deliveries .tab-list .flexTabs .tab-list-item.active {
  background: var(--4life-lightblue);
  border: 1px solid var(--4life-lightblue);
}
#msOrder #deliveries .tab-list .flexTabs .tab-list-item input {
  display: none;
}
#msOrder #deliveries .tab-list .flexTabs .tab-list-item small {
  display: block;
  font-size: 12px;
  width: 100%;
}
#msOrder #deliveries .tab-list .tabListDescription .elemTabDescription {
  display: none;
}
#msOrder #deliveries .tab-list .tabListDescription .elemTabDescription.active {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 0 50px;
}
#msOrder #deliveries .tab-list .flexInp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px;
  flex-wrap: wrap;
}
@media (min-width: 581px) {
  #msOrder #deliveries .tab-list .flexInp {
    margin: 0 0 50px;
  }
}
@media (min-width: 769px) {
  #msOrder #deliveries .tab-list .flexInp {
    justify-content: space-between;
  }
}
#msOrder #deliveries .tab-list .flexInp .inp-bl {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 10px 20px;
}
@media (min-width: 581px) {
  #msOrder #deliveries .tab-list .flexInp .inp-bl {
    max-width: 250px;
  }
}
@media (min-width: 769px) {
  #msOrder #deliveries .tab-list .flexInp .inp-bl {
    max-width: 48%;
    margin: 0 0 20px;
  }
}
@media (min-width: 993px) {
  #msOrder #deliveries .tab-list .flexInp .inp-bl {
    max-width: 23%;
  }
}
#msOrder #deliveries .tab-list .flexInp .inp-bl.full {
  max-width: 100% !important;
}
#msOrder #deliveries .tab-list .flexInp .inp-bl input {
  width: 100%;
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--4life-dark-grey);
  padding: 18px 20px;
  box-sizing: border-box;
}
#msOrder #deliveries .addrFrom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
@media (min-width: 581px) {
  #msOrder #deliveries .addrFrom {
    justify-content: flex-start;
  }
}
@media (min-width: 993px) {
  #msOrder #deliveries .addrFrom {
    justify-content: space-between;
  }
}
@media (min-width: 1081px) {
  #msOrder #deliveries .addrFrom {
    flex-wrap: nowrap;
  }
}
#msOrder #deliveries .addrFrom .inp-bl {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 0 20px;
}
@media (min-width: 581px) {
  #msOrder #deliveries .addrFrom .inp-bl {
    margin: 0 20px 20px;
    max-width: 250px;
  }
}
@media (min-width: 993px) {
  #msOrder #deliveries .addrFrom .inp-bl {
    max-width: 24%;
    margin: 0px 0 20px;
  }
}
@media (min-width: 1081px) {
  #msOrder #deliveries .addrFrom .inp-bl {
    margin: 0px;
  }
}
#msOrder #deliveries .addrFrom .inp-bl input {
  width: 100%;
  border: 1px solid var(--4life-main-blue);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--4life-dark-grey);
  padding: 18px 20px;
  box-sizing: border-box;
}
#msOrder #deliveries .addrFrom .inp-bl.small {
  max-width: 100%;
}
@media (min-width: 581px) {
  #msOrder #deliveries .addrFrom .inp-bl.small {
    max-width: 160px;
  }
}
@media (min-width: 993px) {
  #msOrder #deliveries .addrFrom .inp-bl.small {
    max-width: 20%;
    margin: 0px;
  }
}
#msOrder #deliveries .addrFrom .inp-bl.small:nth-child(3) {
  margin-right: 0px;
}
#msOrder #deliveries .addrFrom .inp-bl.small:nth-child(4), #msOrder #deliveries .addrFrom .inp-bl.small:nth-child(5) {
  max-width: 48%;
}
@media (min-width: 581px) {
  #msOrder #deliveries .addrFrom .inp-bl.small:nth-child(4), #msOrder #deliveries .addrFrom .inp-bl.small:nth-child(5) {
    max-width: 160px;
  }
}
#msOrder #deliveries .addrFrom .inp-bl.full {
  max-width: 100%;
}
#msOrder #deliveries .addrFrom .inp-bl.full input {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-dark-grey);
}
#msOrder #deliveries .addrFrom._cdek {
  text-align: center;
  display: block;
}
#msOrder #deliveries .addrFrom._cdek span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-red);
  display: block;
  margin: 0 0 10px;
}
#msOrder #deliveries .addrFrom._cdek .inp-bl {
  width: 100%;
  max-width: 350px;
  margin: 0px auto;
}
#msOrder #deliveries .addrFrom._cdek .inp-bl input {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-dark-grey);
}
#msOrder #deliveries .adres, #msOrder #deliveries ._courier {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-red) !important;
  margin: 0 0 55px;
}
#msOrder #deliveries .addrTitle {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 0 50px;
}
#msOrder #payments {
  margin: 0 0 50px;
}
#msOrder #payments .delivery-form .coll-2 {
  flex-wrap: wrap;
}
#msOrder #payments .delivery-form .input-parent {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
}
@media (min-width: 769px) {
  #msOrder #payments .delivery-form .input-parent {
    max-width: 50%;
    margin: 0px;
  }
}
#msOrder #payments .psevdoRadio input {
  position: absolute;
  left: -9999px;
}
#msOrder #payments .psevdoRadio input:checked + label:after {
  opacity: 1;
}
#msOrder #payments .psevdoRadio label {
  position: relative;
  align-items: center;
  cursor: pointer;
  display: inline-flex;
}
#msOrder #payments .psevdoRadio label:before {
  content: "";
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border: 1px solid var(--4life-main-blue);
  background: #fff;
  border-radius: 100%;
  margin: 0 20px 0 0;
}
#msOrder #payments .psevdoRadio label:after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 11px;
  left: 11px;
  display: block;
  margin: auto;
  background-color: var(--4life-lightblue);
  opacity: 0;
  border-radius: 100%;
}
#msOrder #payments .psevdoRadio label span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
}
#msOrder .msorderTotal .bg {
  background: #dee6f0;
  padding: 50px 0;
  margin: 0 0 20px;
}
#msOrder .msorderTotal .bg .total {
  text-align: center;
}
#msOrder .msorderTotal .bg .total .total--title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 0 10px;
}
#msOrder .msorderTotal .bg .total .total--cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 133%;
  text-align: center;
  color: var(--4life-main-blue);
}
#msOrder .msorderTotal .flex button {
  width: 100%;
  max-width: 490px;
  cursor: pointer;
}
#msOrder .flexCheckbox {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 20px;
  padding-left: 0px;
}
@media (min-width: 575px) {
  #msOrder .flexCheckbox {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  #msOrder .flexCheckbox {
    padding-left: 0px;
  }
}
#msOrder .flexCheckbox .consentText {
  margin: 0 20px 0 0;
}
#msOrder .flexCheckbox .consentText .personal {
  margin: 0px;
}

/*cart*/
/*.sectionContactTitle {
  padding-top: 120px;
  margin: 0 0 70px;
  @media (min-width: 681px) {
    padding-top: 240px;
  }
  h1 {
    text-align:left;
  }
  span {
    text-align:left;
  }
}*/
.contactFlexWrap {
  display: block;
  margin: 0 0 120px;
}
@media (min-width: 993px) {
  .contactFlexWrap {
    display: grid;
    grid-template-columns: 31% 64%;
    gap: 5%;
  }
}
@media (min-width: 1367px) {
  .contactFlexWrap {
    grid-template-columns: 32% 58%;
    gap: 10%;
  }
}

.emelContact {
  margin: 0 0 30px;
}
.emelContact .emelContact--title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 5px;
}
.emelContact .emelContact--title b {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}
.emelContact p {
  font-size: 24px;
  line-height: 133%;
}
.emelContact .socBlock {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 30px;
}
.emelContact .socBlock a {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 30px 0 0;
}
.emelContact .socBlock a svg, .emelContact .socBlock a img {
  max-width: 100%;
  transform: scale(1);
  transition: 0.8s;
}
.emelContact .socBlock a:hover svg, .emelContact .socBlock a:hover img {
  transform: scale(0.8);
}
.emelContact .elemContact--rekviz {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
}

.map {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.contactSheme {
  margin: 0 0 30px;
}
.contactSheme p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
}
.contactSheme p.--title {
  text-transform: uppercase;
  margin: 0 0 15px;
}
.contactSheme ul {
  margin: 0 0 20px 30px;
}
.contactSheme ul li {
  font-size: 24px;
  line-height: 133%;
  list-style: disc;
}

.sectionContactForm {
  background: url("../imgs/image-mesh-gradient.png") center center no-repeat;
  background-size: cover;
  padding: 120px 0;
}

.contactFormWrap {
  width: 96%;
  max-width: 1000px;
  margin: 0px auto;
  border-radius: 20px;
  padding: 50px 20px;
  box-sizing: border-box;
  background: var(--4life-pure-white);
}
.contactFormWrap .h3_title {
  margin: 0 0 20px;
  line-height: 1;
}
.contactFormWrap p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-main-blue);
  margin: 0 0 50px;
}
.contactFormWrap form {
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
}
@media (min-width: 681px) {
  .contactFormWrap form {
    max-width: 75%;
  }
}
.contactFormWrap form .btn {
  margin: 0px auto;
  display: block;
  width: 100%;
  max-width: 210px;
  cursor: pointer;
  font-family: var(--font-family);
}

/*lk*/
.sectionNavigationLk {
  margin: 0 0 50px;
}
@media (min-width: 581px) {
  .sectionNavigationLk {
    margin: 0 0 70px;
  }
}
.sectionNavigationLk .logout {
  text-align: center;
  margin: 0 0 70px;
}
.sectionNavigationLk .logout a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
}
.sectionNavigationLk ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sectionNavigationLk ul li {
  width: 100%;
  margin: 0 0 20px;
}
@media (min-width: 581px) {
  .sectionNavigationLk ul li {
    max-width: 480px;
    margin: 0 20px;
  }
}
.sectionNavigationLk ul li a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-main-blue);
  display: block;
  padding: 22px 0;
  border-radius: 100px;
  transition: 0.5s;
}
.sectionNavigationLk ul li a:hover {
  background: var(--4life-lightblue);
}
.sectionNavigationLk ul li.active a {
  background: var(--4life-lightblue);
}

#list_prof {
  margin: 0 0 70px;
}
@media (min-width: 581px) {
  #list_prof {
    margin: 0 0 120px;
  }
}
#list_prof .item_lk-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #122601;
  margin: 0 0 30px;
}
#list_prof .flex {
  justify-content: space-between;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  #list_prof .flex {
    flex-wrap: nowrap;
  }
}
#list_prof .flex .inp-bl {
  width: 100%;
}
@media (min-width: 481px) {
  #list_prof .flex .inp-bl {
    max-width: 48%;
  }
}
@media (min-width: 769px) {
  #list_prof .flex .inp-bl {
    max-width: 23%;
  }
  #list_prof .flex .inp-bl.small {
    max-width: 15%;
  }
}
#list_prof .flex:last-child {
  justify-content: center;
}
#list_prof .flex:last-child button {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-white-blue);
}
#list_prof .consentText {
  justify-content: flex-start;
  margin: 0;
}
@media (min-width: 581px) {
  #list_prof .consentText {
    margin: 0 0 20px;
  }
}

.sectionOrderHistory {
  margin: 0 0 120px;
}
.sectionOrderHistory .text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #122601;
  margin: 0 0 30px;
}
.sectionOrderHistory .orderItem {
  border: 1px solid var(--4life-main-blue);
  border-radius: 20px;
  margin: 0 0 20px;
}
.sectionOrderHistory .orderItem .orderItem--link {
  padding: 30px 80px 30px 30px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 769px) {
  .sectionOrderHistory .orderItem .orderItem--link {
    padding: 30px 100px 30px 50px;
  }
}
.sectionOrderHistory .orderItem .orderItem--link .icon {
  position: absolute;
  right: 25px;
  width: 24px;
  height: 24px;
  top: 50%;
  margin-top: -12px;
}
@media (min-width: 769px) {
  .sectionOrderHistory .orderItem .orderItem--link .icon {
    right: 50px;
  }
}
.sectionOrderHistory .orderItem .orderItem--link .icon svg {
  max-width: 100%;
}
.sectionOrderHistory .orderItem .orderItem--link .icon svg:last-child {
  display: none;
}
.sectionOrderHistory .orderItem .orderItem--link .flex {
  width: 100%;
  max-width: 690px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title {
  width: 100%;
  margin: 0 0 20px;
}
@media (min-width: 581px) {
  .sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title {
    width: auto;
    margin: 0px;
  }
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 100px;
  margin: 0 0 10px;
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title span.new {
  color: var(--4life-main-blue);
  background: var(--4life-lightblue);
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title span.paid {
  color: var(--4life-white-blue);
  background: var(--4life-second-blue);
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title span.cancel {
  color: var(--4life-white-blue);
  background: var(--4life-dark-grey);
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title div {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--4life-main-blue);
}
@media (min-width: 681px) {
  .sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--title div {
    font-size: 24px;
  }
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--cost span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 10px;
  padding: 5px 0;
  display: block;
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--cost div {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--4life-main-blue);
  display: flex;
  align-items: center;
}
@media (min-width: 681px) {
  .sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--cost div {
    font-size: 24px;
  }
}
.sectionOrderHistory .orderItem .orderItem--link .flex .orderItem--cost div .item-lp {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  color: var(--4life-white-blue);
  display: inline-block;
  padding: 5px 20px;
  background: var(--4life-second-blue);
  margin-left: 30px;
}
.sectionOrderHistory .orderItem .orderItem--content {
  display: none;
  padding: 20px 30px;
}
@media (min-width: 769px) {
  .sectionOrderHistory .orderItem .orderItem--content {
    padding: 20px 50px;
  }
}
.sectionOrderHistory .orderItem .orderItem--content .orderItem--links {
  margin: 0 0 30px;
}
.sectionOrderHistory .orderItem .orderItem--content .orderItem--links button {
  margin-right: 20px;
  font-size: 14px;
  padding: 16px 15px;
}
.sectionOrderHistory .orderItem .orderItem--content .orderItem--links button:last-child {
  margin: 0px;
}
.sectionOrderHistory .orderItem .orderItem--content .flex {
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  .sectionOrderHistory .orderItem .orderItem--content .flex .coll {
    max-width: 49%;
  }
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--product {
  justify-content: flex-start;
  margin: 0 0 20px;
  flex-wrap: nowrap;
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--product .orderItem--imgs {
  width: 100%;
  max-width: 70px;
  margin-right: 20px;
}
@media (min-width: 481px) {
  .sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--product .orderItem--imgs {
    max-width: 140px;
    margin-right: 30px;
  }
}
@media (min-width: 993px) {
  .sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--product .orderItem--imgs {
    max-width: 150px;
    margin-right: 60px;
  }
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--product .orderItem--imgs a {
  display: block;
  line-height: 1;
  border-radius: 20px;
  overflow: hidden;
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--product .orderItem--imgs a img {
  max-width: 100%;
}
@media (min-width: 581px) {
  .sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc {
    padding-top: 20px;
  }
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  color: var(--4life-main-blue);
}
@media (min-width: 581px) {
  .sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc a {
    font-size: 18px;
  }
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc .flex {
  margin: 10px 0;
  justify-content: flex-start;
  align-items: center;
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc .flex .item-cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 125%;
  color: var(--4life-main-blue);
  margin-right: 20px;
}
@media (min-width: 581px) {
  .sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc .flex .item-cost {
    font-size: 24px;
  }
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc .count {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--4life-main-blue);
}
@media (min-width: 581px) {
  .sectionOrderHistory .orderItem .orderItem--content .flex .coll .orderItem--desc .count {
    font-size: 18px;
  }
}
.sectionOrderHistory .orderItem .orderItem--content .flex .coll .pb_order {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
}
.sectionOrderHistory .orderItem.active .orderItem--content {
  display: block;
}
.sectionOrderHistory .orderItem.active .icon svg:first-child {
  display: none;
}
.sectionOrderHistory .orderItem.active .icon svg:last-child {
  display: block;
}

#mslistorders {
  margin: 0 0 70px;
}

.orderListPagination .orderListPagination--title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0 0 10px;
  text-align: center;
}
.orderListPagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orderListPagination ul li {
  margin: 0 15px;
}
.orderListPagination ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--4life-main-blue);
}
.orderListPagination ul li a.active {
  font-weight: 700;
}

/*loyalty*/
.marginTitleTop {
  margin-top: 75px;
  margin-bottom: 30px;
}
@media (min-width: 581px) {
  .marginTitleTop {
    margin-bottom: 50px;
  }
}
@media (min-width: 681px) {
  .marginTitleTop {
    margin-top: 120px;
  }
}

.sectionLoyalty {
  background: url("../imgs/loyalty-3.jpg") right top no-repeat;
  background-size: cover;
  padding: 122px 0;
}
@media (min-width: 681px) {
  .sectionLoyalty {
    padding: 300px 0;
    background: url("../imgs/loyalty-2.jpg") right center no-repeat;
    background-size: cover;
  }
}
@media (min-width: 993px) {
  .sectionLoyalty {
    padding: 195px 0;
    background: url("../imgs/partners2.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}
@media (max-width: 680px) {
  .sectionLoyalty .container {
    max-width: 92%;
    margin: 0px auto;
  }
}
.sectionLoyalty .container .sectionLoyalty--title {
  width: 100%;
}
@media (min-width: 581px) {
  .sectionLoyalty .container .sectionLoyalty--title {
    max-width: 48%;
  }
}
.sectionLoyalty .container .sectionLoyalty--title .h1_title {
  text-align: left;
  margin: 0 0 30px;
  font-size: 40px;
}
@media (min-width: 681px) {
  .sectionLoyalty .container .sectionLoyalty--title .h1_title {
    font-size: 50px;
  }
}
@media (min-width: 993px) {
  .sectionLoyalty .container .sectionLoyalty--title .h1_title {
    font-size: 70px;
  }
}
@media (min-width: 1366px) {
  .sectionLoyalty .container .sectionLoyalty--title .h1_title {
    font-size: 90px;
  }
}
.sectionLoyalty .container .sectionLoyalty--title p b {
  display: block;
}

.sectionLoyaltyList .loyaltyElem {
  padding: 50px 16px;
  box-sizing: border-box;
  background: var(--4life-white-blue);
  border-radius: 20px;
  margin: 0 0 30px;
}
@media (min-width: 581px) {
  .sectionLoyaltyList .loyaltyElem {
    margin-bottom: 50px;
    padding: 50px 90px;
  }
}
@media (min-width: 993px) {
  .sectionLoyaltyList .loyaltyElem {
    padding: 50px 220px;
  }
}
@media (min-width: 1366px) {
  .sectionLoyaltyList .loyaltyElem {
    padding: 50px 260px;
  }
}
.sectionLoyaltyList .loyaltyElem .h3_title {
  text-align: left;
  margin: 0 0 30px;
  font-size: 30px;
}
@media (min-width: 581px) {
  .sectionLoyaltyList .loyaltyElem .h3_title {
    font-size: 40px;
  }
}
@media (min-width: 993px) {
  .sectionLoyaltyList .loyaltyElem .h3_title {
    font-size: 50px;
  }
}
@media (min-width: 1366px) {
  .sectionLoyaltyList .loyaltyElem .h3_title {
    font-size: 70px;
  }
}
.sectionLoyaltyList .loyaltyElem p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0 0 30px;
}
.sectionLoyaltyList .loyaltyElem ul, .sectionLoyaltyList .loyaltyElem ol {
  margin: 0 0 30px 20px;
}
.sectionLoyaltyList .loyaltyElem ul li, .sectionLoyaltyList .loyaltyElem ol li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0 0 12px;
  list-style: disc;
}
.sectionLoyaltyList .loyaltyElem ul li b, .sectionLoyaltyList .loyaltyElem ol li b {
  font-weight: 700;
}
.sectionLoyaltyList .loyaltyElem ul li:last-child, .sectionLoyaltyList .loyaltyElem ol li:last-child {
  margin: 0px;
}
.sectionLoyaltyList .loyaltyElem ol li {
  list-style: decimal;
}
.sectionLoyaltyList .loyaltyElem span.must {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-red);
}
.sectionLoyaltyList .loyaltyElem a.btn.white {
  border-color: #fff;
}

.sectionPartnerTitle {
  padding: 50px 0 40px;
  background: url("../imgs/partner-title-bg.png") center center no-repeat;
  text-align: center;
  background-size: cover;
}
@media (min-width: 581px) {
  .sectionPartnerTitle {
    padding: 120px 0 40px;
  }
}
.sectionPartnerTitle .h1_title {
  margin: 0 0 30px;
}
.sectionPartnerTitle a.darkblue {
  margin: 0px auto 50px;
}
@media (min-width: 581px) {
  .sectionPartnerTitle a.darkblue {
    margin: 0px auto 70px;
  }
}
.sectionPartnerTitle p {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 20px;
  font-weight: 400;
}
.sectionPartnerTitle .flexIcon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 65px;
  width: 100%;
  max-width: 350px;
}
@media (min-width: 581px) {
  .sectionPartnerTitle .flexIcon {
    margin: 0px auto 70px;
  }
}
@media (min-width: 745px) {
  .sectionPartnerTitle .flexIcon {
    max-width: 100%;
    margin: 0 0 70px;
    justify-content: center;
  }
}
.sectionPartnerTitle .flexIcon .flexIcon--elem {
  margin: 0px 12px !important;
  width: 100%;
  max-width: 149px;
}
.sectionPartnerTitle .flexIcon .flexIcon--elem:first-child {
  margin-left: 0px;
}
.sectionPartnerTitle .flexIcon .flexIcon--elem:last-child {
  margin-right: 0px;
}
@media (min-width: 745px) {
  .sectionPartnerTitle .flexIcon .flexIcon--elem {
    max-width: 149px;
    margin: 0px 17.5px;
  }
}
@media (min-width: 993px) {
  .sectionPartnerTitle .flexIcon .flexIcon--elem {
    max-width: 160px;
  }
}
.sectionPartnerTitle .sectionPartnerTitle--block {
  background: var(--4life-pure-white);
  border-radius: 50px;
  padding: 30px 40px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--4life-main-blue);
}
@media (min-width: 581px) {
  .sectionPartnerTitle .sectionPartnerTitle--block {
    padding: 30px 60px;
    border-radius: 200px;
  }
}

/*delivery*/
.sectionDeliveryMust {
  background: #ffcce3;
  border-radius: 20px;
  width: 100%;
  max-width: 94%;
  margin: 0 auto 63px;
  padding: 50px 0;
}
@media (min-width: 1570px) {
  .sectionDeliveryMust {
    max-width: 1520px;
  }
}
@media (min-width: 768px) {
  .sectionDeliveryMust {
    margin: 0 auto 50px;
  }
}
.sectionDeliveryMust .container {
  width: 100%;
  max-width: 100%;
  padding: 0 22px;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .sectionDeliveryMust .container {
    max-width: 840px;
    padding: 0px;
  }
}
@media (min-width: 1366px) {
  .sectionDeliveryMust .container {
    max-width: 1000px;
  }
}
.sectionDeliveryMust .h4_title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0px 0px 25px;
}
.sectionDeliveryMust span {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-family: var(--font-family);
  color: var(--4life-main-blue);
  display: block;
  margin: 0 0 35px;
}
.sectionDeliveryMust span.red {
  color: var(--4life-red);
  margin: 0 0 20px;
  font-weight: 700;
}
.sectionDeliveryMust span b {
  display: inline;
  font-size: 16px;
  line-height: 200%;
}
.sectionDeliveryMust span:last-child {
  margin: 0;
}
.sectionDeliveryMust p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--4life-main-blue);
  margin: 0 0 25px;
}
.sectionDeliveryMust p:last-child {
  margin: 0px;
}
.sectionDeliveryMust p b {
  font-weight: 700;
  font-size: 22px;
  line-height: 155%;
}

.sectionDeliveryText {
  border: 1px solid var(--4life-lightblue);
  border-radius: 20px;
  width: 100%;
  max-width: 94%;
  margin: 0 auto 30px;
  padding: 50px 0;
}
@media (min-width: 1570px) {
  .sectionDeliveryText {
    max-width: 1520px;
  }
}
@media (min-width: 768px) {
  .sectionDeliveryText {
    margin: 0 auto 60px;
  }
}
.sectionDeliveryText .container {
  width: 100%;
  max-width: 100%;
  padding: 0 22px;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .sectionDeliveryText .container {
    max-width: 840px;
    padding: 0px;
  }
}
@media (min-width: 1366px) {
  .sectionDeliveryText .container {
    max-width: 1000px;
  }
}
.sectionDeliveryText .h4_title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 136%;
  text-transform: uppercase;
  color: var(--4life-main-blue);
  margin: 0px 0px 40px;
}
.sectionDeliveryText ul {
  margin: 0px;
  padding: 0px 0px 0px 20px;
}
.sectionDeliveryText ul li {
  list-style: disc;
  margin: 0 0 45px;
}
.sectionDeliveryText ul li b {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--4life-main-blue);
  margin: 0 0 20px;
}
.sectionDeliveryText ul li span {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-family: var(--font-family);
  color: var(--4life-main-blue);
  display: block;
  margin: 0 0 35px;
}
.sectionDeliveryText ul li span.red {
  color: var(--4life-red);
  margin: 0 0 20px;
  font-weight: 700;
}
.sectionDeliveryText ul li span b {
  display: inline;
  font-size: 16px;
  line-height: 200%;
}
.sectionDeliveryText ul li span:last-child {
  margin: 0;
}
.sectionDeliveryText ul li:last-child {
  margin-bottom: 0px;
}
.sectionDeliveryText ul li:last-child npm run span:last-child {
  margin-bottom: 0px;
}
.sectionDeliveryText ul li a.btn {
  background: var(--4life-main-blue);
  border-radius: 100px;
  padding: 10px 15px;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-white-blue);
  margin: 12px 0 0;
}
.sectionDeliveryText ul li a.btn:hover {
  color: var(--4life-white-blue);
  background: var(--4life-lightblue);
  border: 1px solid var(--4life-lightblue);
}
.sectionDeliveryText.returnBlock ul {
  padding: 0px;
}
.sectionDeliveryText.returnBlock ul li {
  list-style: none;
}
.sectionDeliveryText.returnBlock .h4_title {
  margin: 0 0 25px;
  line-height: 1;
}

.sectionReturn {
  margin: 0 0 80px;
}
@media (min-width: 581px) {
  .sectionReturn {
    margin: 0 auto 120px;
  }
}
.sectionReturn .h1_title {
  margin: 0 0 50px;
}
.sectionReturn a.btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--4life-pure-white);
  width: 100%;
  max-width: 94%;
  border-radius: 100px;
  padding: 14px 0;
  background: var(--4life-second-blue);
  margin: 0px auto;
  display: block;
}
@media (min-width: 521px) {
  .sectionReturn a.btn {
    max-width: 480px;
  }
}
.sectionReturn a.btn:hover {
  color: var(--4life-white-blue);
  background: var(--4life-lightblue);
  border: 1px solid var(--4life-lightblue);
}

.sectionReturnBlock {
  width: 100%;
  max-width: 94%;
  margin: 0 auto 80px;
  padding: 0;
}
@media (min-width: 1570px) {
  .sectionReturnBlock {
    max-width: 1520px;
  }
}
@media (min-width: 581px) {
  .sectionReturnBlock {
    margin: 0 auto 120px;
  }
}
.sectionReturnBlock .container {
  width: 100%;
  max-width: 100%;
  padding: 0 22px;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .sectionReturnBlock .container {
    max-width: 840px;
    padding: 0px;
  }
}
@media (min-width: 1366px) {
  .sectionReturnBlock .container {
    max-width: 1000px;
  }
}
.sectionReturnBlock p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 155%;
  color: var(--4life-main-blue);
}