:root {
    --font-main: 'Montserrat', Arial, Helvetica, sans-serif;
    --color-dark: #212b5d;

    --antizhir-gradient: linear-gradient(
      to bottom,
      #aa87ee,
      #6f4db2
    );
    --koncentrat-gradient: linear-gradient(
      to bottom,
      #e46a8b,
      #d83963
    );
    --ochistitel-gradient: linear-gradient(
      to bottom,
      #6a6dca,
      #232680
    );
    --mylo-dlya-kuhni-gradient: linear-gradient(
      to bottom,
      #ff929e,
      #d8606d
    );
    --zhidkij-utyug-gradient: linear-gradient(
      to bottom,
      #df68bc,
      #7d1b60
    );

    --antizhir-gradient-circle: radial-gradient(
      circle,
      rgba(198, 169, 255, 1) 0%,
      rgba(198, 169, 255, 0) 64%
    );
    --gel-koncentrat-gradient-circle: radial-gradient(
      circle,
      rgba(255, 178, 198, 1) 0%,
      rgba(255, 178, 198, 0) 64%
    );
    --ochistitel-gradient-circle: radial-gradient(
      circle,
      rgba(158, 161, 237, 1) 0%,
      rgba(158, 161, 237, 0) 64%
    );
    --mylo-dlya-kuhni-gradient-circle: radial-gradient(
      circle,
      rgba(255, 185, 193, 1) 0%,
      rgba(255, 185, 193, 0) 64%
    );
    --zhidkij-utyug-gradient-circle: radial-gradient(
      circle,
      rgba(253, 140, 219, 1) 0%,
      rgba(253, 140, 219, 0) 64%
    );

    --brand-gradient: linear-gradient(
      to bottom,
      #b8e9fd,
      #cfdcef
    );

    --antizhir-dark-color: #6f4db2;
    --koncentrat-dark-color: #d02f5a;
    --ochistitel-dark-color: #1e217e;
    --mylo-dlya-kuhni-dark-color: #c4414f;
    --zhidkij-utyug-dark-color: #821762;
}

/* ROOT */
html {
  margin: 0;
  padding: 0;
}

html > body {
  /*
  overflow-x: hidden;
  */
  margin: inherit;
  padding: inherit;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  font-family: var(--font-main);
  min-width: 360px;
  color: var(--color-dark);
  background-color: #fff;
}

/* ELEMENT: inner */
.el-inner {
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1344px) {
  .el-inner {
    max-width: 960px;
  }
}

@media (max-width: 960px) {
  .el-inner {
    max-width: 512px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 512px) {
  .el-inner {
    max-width: 360px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ELEMENT: product-card */
.el-product-card {
  padding-top: 96px;
}

.el-product-card > .banner {
  border-radius: 56px;
  background-image: linear-gradient(
    to bottom,
    #00aff7,
    #5382c7
  );
}

.el-product-card.v-antizhir > .banner {
  background-image: var(--antizhir-gradient);
}

.el-product-card.v-antizhir > .banner > .box > .cover:before {
  background-image: var(--antizhir-gradient-circle);
}

.el-product-card.v-gel-koncentrat > .banner > .box > .cover:before {
  background-image: var(--gel-koncentrat-gradient-circle);
}

.el-product-card.v-ochistitel > .banner > .box > .cover:before {
  background-image: var(--ochistitel-gradient-circle);
}

.el-product-card.v-mylo-dlya-kuhni > .banner > .box > .cover:before {
  background-image: var(--mylo-dlya-kuhni-gradient-circle);
}

.el-product-card.v-zhidkij-utyug > .banner > .box > .cover:before {
  background-image: var(--zhidkij-utyug-gradient-circle);
}

.el-product-card.v-antizhir > .banner > .box > .content > .meta > .label {
  background-color: var(--antizhir-dark-color);
}

.el-product-card.v-gel-koncentrat > .banner {
  background-image: var(--koncentrat-gradient);
}

.el-product-card.v-gel-koncentrat > .banner > .box > .content > .meta > .label {
  background-color: var(--koncentrat-dark-color);
}

.el-product-card.v-ochistitel > .banner {
  background-image: var(--ochistitel-gradient);
}

.el-product-card.v-ochistitel > .banner > .box > .content > .meta > .label {
  background-color: var(--ochistitel-dark-color);
}

.el-product-card.v-mylo-dlya-kuhni > .banner {
  background-image: var(--mylo-dlya-kuhni-gradient);
}

.el-product-card.v-mylo-dlya-kuhni > .banner > .box > .content > .meta > .label {
  background-color: var(--mylo-dlya-kuhni-dark-color);
}

.el-product-card.v-zhidkij-utyug > .banner {
  background-image: var(--zhidkij-utyug-gradient);
}

.el-product-card.v-zhidkij-utyug > .banner > .box > .content > .meta > .label {
  background-color: var(--zhidkij-utyug-dark-color);
}

.el-product-card > .banner > .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 64px 96px;
}

.el-product-card.v-inverse > .banner > .box {
  justify-content: flex-start;
}
.el-product-card.v-inverse > .banner > .box > .cover {
  left: auto;
  right: 0;
}

.el-product-card > .banner > .box > .cover {
  position: absolute;
  z-index: 0;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.el-product-card > .banner > .box > .cover:before {
  display: block;
  position: absolute;
  content: '';
  width: 480px;
  height: 480px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
}

.el-product-card > .banner > .box > .cover > .parallax-layer {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.el-product-card > .banner > .box > .cover > .parallax-layer > img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.el-product-card > .banner > .box > .cover img {
  display: block;
}

.el-product-card > .banner > .box > .cover img.text-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  opacity: .56;
  height: 100%;
  width: auto;
}

.el-product-card > .banner > .box > img.mobile-cover {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}

.el-product-card > .banner > .box > .content {
  position: relative;
  z-index: 1;
  width: 50%;
  color: #fff;
}

.el-product-card > .banner > .box > .content > .text-group {
  /**/
}

.el-product-card > .banner > .box > .content > .text-group > .title {
  font-size: 56px;
  font-weight: 800;
}

.el-product-card > .banner > .box > .content > .text-group > .text {
  text-transform: lowercase;
  font-size: 32px;
  font-weight: 600;
  padding-top: 12px;
}

.el-product-card > .banner > .box > .content > .meta {
  padding-top: 16px;
  display: flex;
}

.el-product-card > .banner > .box > .content > .meta > *:first-child {
  margin-right: 12px;
}

.el-product-card > .banner > .box > .content > .meta > .label {
  display: block;
  padding: 8px 20px;
  letter-spacing: .06rem;
  text-transform: uppercase;
  border-radius: 8px;
  font-weight: 800;
  background-color: #5382c7;
}

.el-product-card > .banner > .box > .content > .meta > .info {
  display: flex;
  align-items: center;
}

.el-product-card > .banner > .box > .content > .meta > .info img {
  display: block;
}

.el-product-card > .banner > .box > .content > .meta > .info span {
  display: block;
  flex: 1;
  padding-left: 2px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01rem;
}

.el-product-card > .banner > .box > .content > ul {
  display: block;
  margin: 0;
  padding: 0;
  padding-top: 24px;
}

.el-product-card > .banner > .box > .content > ul li {
  position: relative;
  display: block;
  margin: 0;
  padding: 4px 0 4px 18px;
  font-size: 18px;
  line-height: 1.33;
}

.el-product-card > .banner > .box > .content > ul li:after {
  display: block;
  position: absolute;
  content: '';
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}

.el-product-card > .banner > .box > .content > .button {
  padding-top: 32px;
}

.el-product-card > .description {
  display: flex;
  padding-top: 64px;
}

.el-product-card > .description > .column {
  width: 50%;
  box-sizing: border-box;
  padding-left: 48px;
  padding-right: 48px;
}

.el-product-card > .description > .column .title {
  font-size: 24px;
  font-weight: 700;
}

.el-product-card > .description > .column p {
  font-size: 18px;
  line-height: 1.44;
  margin: 0;
  padding: 0;
  padding-top: 12px;
}

.el-product-card > .description > .column .info-box {
  position: relative;
  box-sizing: border-box;
  padding: 32px;
  border-radius: 32px;
  background-image: var(--brand-gradient);
}

.el-product-card > .description > .column .info-box:before {
  display: block;
  position: absolute;
  content: '';
  width: 68px;
  height: 68px;
  right: 32px;
  top: -32px;
  background-image: url('images/misc/question-icon.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.el-product-card > .button {
  padding-top: 56px;
  text-align: center;
}

@media (max-width: 1344px) {
  .el-product-card {
    padding-top: 48px;
  }
  .el-product-card > .banner {
    border-radius: 40px;
  }
  .el-product-card > .banner > .box {
    padding: 40px 72px;
  }
  .el-product-card > .banner > .box > .content > .text-group > .title {
    font-size: 42px;
  }
  .el-product-card > .banner > .box > .content > .text-group > .text {
    padding-top: 8px;
    font-size: 24px;
  }
  .el-product-card > .banner > .box > .content > .meta {
    padding-top: 12px;
  }
  .el-product-card > .banner > .box > .content > .meta > *:first-child {
    margin-right: 8px;
  }
  .el-product-card > .banner > .box > .content > .meta > .label {
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 6px;
  }
  .el-product-card > .banner > .box > .content > .meta > .info img {
    width: 18px;
    height: auto;
  }
  .el-product-card > .banner > .box > .content > .meta > .info span {
    font-size: 14px;
  }
  .el-product-card > .banner > .box > .content > ul {
    padding-top: 16px;
  }
  .el-product-card > .banner > .box > .content > ul li {
    font-size: 16px;
    line-height: 1.25;
    padding: 3px 0 3px 16px;
  }
  .el-product-card > .banner > .box > .content > ul li:after {
    width: 6px;
    height: 6px;
    top: 10px;
  }
  .el-product-card > .banner > .box > .content > .button {
    padding-top: 16px;
  }
  .el-product-card > .banner > .box > .cover > .parallax-layer > img {
    height: 100%;
    width: auto;
  }
  .el-product-card > .banner > .box > .cover > .product img {
    height: 120%;
    max-width: 208px;
    object-fit: contain;
  }
  .el-product-card.v-ochistitel > .banner > .box > .cover:before {
    width: 360px;
    height: 360px;
  }
  .el-product-card > .description {
    padding-top: 48px;
  }
  .el-product-card > .description > .column {
    padding-left: 32px;
    padding-right: 32px;
  }
  .el-product-card > .description > .column .title {
    font-size: 20px;
  }
  .el-product-card > .description > .column p {
    padding-top: 8px;
    font-size: 16px;
  }
  .el-product-card > .description > .column .info-box {
    padding: 24px;
    border-radius: 24px;
  }
  .el-product-card > .description > .column .info-box:before {
    width: 52px;
    height: 52px;
    right: 24px;
    top: -24px;
  }
}

@media (max-width: 960px) {
  .el-product-card {
    padding-top: 32px;
  }
  .el-product-card > .banner {
    overflow: hidden;
  }
  .el-product-card > .banner > .box {
    padding: 64px 32px 40px;
    display: block;
  }
  .el-product-card > .banner > .box > .cover {
    display: none;
  }
  .el-product-card > .banner > .box > img.mobile-cover {
    display: block;
  }
  .el-product-card > .banner > .box > .content {
    width: 100%;
    max-width: 280px;
  }
  .el-product-card > .banner > .box > .content > .text-group > .title {
    font-size: 32px;
  }
  .el-product-card > .banner > .box > .content > .text-group > .text {
    font-size: 20px;
  }
  .el-product-card > .banner > .box > .content > ul {
    padding-top: 12px;
  }
  .el-product-card > .banner > .box > .content > ul li {
    padding-left: 14px;
    font-size: 15px;
  }
  .el-product-card > .description {
    display: block;
    padding-top: 32px;
  }
  .el-product-card > .description > .column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .el-product-card > .description > .column:first-child {
    margin-bottom: 24px;
  }
  .el-product-card > .button {
    padding-top: 48px;
  }
}

@media (max-width: 512px) {
  .el-product-card > .banner {
    border-radius: 32px;
  }
  .el-product-card > .banner > .box {
    padding: 24px;
  }
  .el-product-card > .banner > .box:after {
    display: block;
    position: absolute;
    z-index: 0;
    content: '';
    width: 360px;
    height: 360px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -96px;
  }
  .el-product-card.v-antizhir > .banner > .box:after {
    background-image: var(--antizhir-gradient-circle);
  }
  .el-product-card.v-gel-koncentrat > .banner > .box:after {
    background-image: var(--gel-koncentrat-gradient-circle);
  }
  .el-product-card.v-ochistitel > .banner > .box:after {
    background-image: var(--ochistitel-gradient-circle);
  }
  .el-product-card.v-mylo-dlya-kuhni > .banner > .box:after {
    background-image: var(--mylo-dlya-kuhni-gradient-circle);
  }
  .el-product-card.v-zhidkij-utyug > .banner > .box:after {
    background-image: var(--zhidkij-utyug-gradient-circle);
  }
  .el-product-card > .banner > .box > img.mobile-cover {
    position: relative;
    z-index: 1;
    right: auto;
    top: auto;
    margin-left: auto;
    margin-right: auto;
    max-height: 240px;
  }
  .el-product-card > .banner > .box > .content > .text-group > .title {
    font-size: 24px;
  }
  .el-product-card > .banner > .box > .content > .text-group > .text {
    padding-top: 4px;
    font-size: 15px;
  }
  .el-product-card > .description {
    padding-top: 24px;
  }
  .el-product-card > .description > .column .title {
    font-size: 18px;
  }
  .el-product-card > .description > .column p {
    font-size: 15px;
  }
  .el-product-card > .description > .column:first-child {
    margin-bottom: 16px;
  }
  .el-product-card > .button {
    padding-top: 24px;
  }
}

/* ELEMENT: button */
.el-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(33, 43, 93, .16);
  box-shadow: 0 12px 8px rgba(255, 255, 255, .48) inset;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin: 0;
  padding: 22px 44px;
  box-sizing: border-box;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .06rem;
  white-space: nowrap;
  color: #fff;
  background-color: transparent;
  background-image: linear-gradient(
    to bottom,
    #ff79a0,
    #d83a64
  );
  transition: all .3s;
}

.el-button:hover {
  text-shadow: 0 -2px 0 rgba(33, 43, 93, .16);
  box-shadow: 0 0 8px rgba(255, 255, 255, .16) inset;
}

.el-button.v-secondary {
  font-weight: 600;
  border: 3px solid #fff;
  padding: 13px 32px;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  text-shadow: none;
  background-color: transparent;
  background-image: none;
}

.el-button.v-secondary:hover {
  color: var(--color-dark);
  background-color: #fff;
}

.el-button.v-wb {
  background-image: linear-gradient(
    to bottom,
    #481173,
    #cb11ab
  );
}

@media (max-width: 1344px) {
  .el-button {
    font-size: 14px;
    padding: 20px 40px;
  }
  .el-button.v-secondary {
    font-size: 13px;
    padding: 9.5px 20px;
    border-width: 1.5px;
  }
}

@media (max-width: 512px) {
  .el-button {
    display: block;
    width: 100%;
  }
}

/* ELEMENT: card */
.el-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  color: #fff;
  background-image: var(--antizhir-gradient);
}

.el-card > .box {
  display: flex;
  justify-content: flex-end;
  padding: 56px 40px 48px 40px;
  box-sizing: border-box;
}

.el-card > .box > .cover {
  position: absolute;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 160px;
  height: 100%;
}

.el-card > .box > .cover > * {
  z-index: 1;
}

.el-card > .box > .cover:after {
  display: block;
  position: absolute;
  z-index: 0;
  content: '';
  width: 560px;
  height: 560px;
  left: -280px;
  top: -280px;
  border-radius: 50%;
  background-image: var(--antizhir-gradient-circle);
}

.el-card > .box > .cover > img {
  display: block;
}

.el-card > .box > .cover > img.product {
  width: 92px;
  height: auto;
}

.el-card > .box > .cover > img.glare {
  position: absolute;
  animation: glare infinite linear 3s;
}

.el-card > .box > .cover > img.glare.v-first {
  right: 8px;
  top: 72px;
}

.el-card > .box > .cover > img.glare.v-second {
  width: 14px;
  animation-delay: -2s;
}

.el-card > .box > .cover > img.glare.v-third {
  width: 24px;
  animation-delay: -1s;
}

.el-card > .box > .label {
  position: absolute;
  right: -100px;
  top: 12px;
  width: 320px;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06rem;
  background-color: var(--antizhir-dark-color);
  transform: rotate(15deg);
}

.el-card > .box > .content {
  position: relative;
  z-index: 1;
  max-width: 192px;
}

.el-card > .box > .content > .text-group > .title {
  font-size: 30px;
  font-weight: 700;
}

.el-card > .box > .content > .text-group > .text {
  padding-top: 12px;
  font-size: 18px;
  line-height: 1.22;
  max-width: 168px;
}

.el-card > .box > .content > .button {
  width: 100%;
  padding-top: 24px;
}

.el-card.v-antizhir > .box > .cover > img.glare.v-first {
  right: 8px;
  top: 72px;
}

.el-card.v-antizhir > .box > .cover > img.glare.v-second {
  left: 16px;
  top: 190px;
}

.el-card.v-antizhir > .box > .cover > img.glare.v-third {
  left: 16px;
  top: 30px;
}

.el-card.v-gel-koncentrat {
  background-image: var(--koncentrat-gradient);
}

.el-card.v-gel-koncentrat > .box > .cover > img.glare.v-first {
  left: 110px;
  top: 40px;
}

.el-card.v-gel-koncentrat > .box > .cover > img.glare.v-second {
  left: 130px;
  top: 60px;
}

.el-card.v-gel-koncentrat > .box > .cover > img.glare.v-third {
  left: 20px;
  top: 30px;
}

.el-card.v-gel-koncentrat > .box > .cover:after {
  background-image: var(--gel-koncentrat-gradient-circle);
}

.el-card.v-gel-koncentrat > .box > .label {
  background-color: var(--koncentrat-dark-color);
}

.el-card.v-ochistitel {
  background-image: var(--ochistitel-gradient);
}

.el-card.v-ochistitel > .box > .cover > img.glare.v-first {
  left: 120px;
  top: 50px;
}

.el-card.v-ochistitel > .box > .cover > img.glare.v-second {
  left: 90px;
  top: 40px;
}

.el-card.v-ochistitel > .box > .cover > img.glare.v-third {
  left: 20px;
  top: 50px;
}

.el-card.v-ochistitel > .box > .cover:after {
  background-image: var(--ochistitel-gradient-circle);
}

.el-card.v-ochistitel > .box > .label {
  background-color: var(--ochistitel-dark-color);
}

.el-card.v-mylo-dlya-kuhni {
  background-image: var(--mylo-dlya-kuhni-gradient);
}

.el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-first {
  left: 30px;
  top: 90px;
}

.el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-second {
  left: 40px;
  top: 60px;
}

.el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-third {
  left: 120px;
  top: 100px;
}

.el-card.v-mylo-dlya-kuhni > .box > .cover:after {
  background-image: var(--mylo-dlya-kuhni-gradient-circle);
}

.el-card.v-mylo-dlya-kuhni > .box > .label {
  background-color: var(--mylo-dlya-kuhni-dark-color);
}

.el-card.v-zhidkij-utyug {
  background-image: var(--zhidkij-utyug-gradient);
}

.el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-first {
  left: 30px;
  top: 86px;
}

.el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-second {
  left: 140px;
  top: 170px;
}

.el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-third {
  left: 125px;
  top: 60px;
}

.el-card.v-zhidkij-utyug > .box > .cover:after {
  background-image: var(--zhidkij-utyug-gradient-circle);
}

.el-card.v-zhidkij-utyug > .box > .label {
  background-color: var(--zhidkij-utyug-dark-color);
}

@media (max-width: 1344px) {
  .el-card {
    border-radius: 24px;
  }
  .el-card > .box {
    padding: 40px 32px;
  }
  .el-card > .box > .label {
    right: -110px;
    top: 10px;
    font-size: 10px;
    padding: 6px;
  }
  .el-card > .box > .cover {
    width: 120px;
  }
  .el-card > .box > .cover:after {
    width: 400px;
    height: 400px;
    left: -200px;
    top: -200px;
  }
  .el-card > .box > .cover > img.product {
    width: 80px;
    height: 80%;
    object-fit: contain;
  }
  .el-card > .box > .content {
    max-width: none;
    width: 140px;
  }
  .el-card > .box > .content > .text-group > .title {
    font-size: 22px;
  }
  .el-card > .box > .content > .text-group > .text {
    font-size: 13px;
  }
  .el-card > .box > .content > .button {
    padding-top: 20px;
  }
  .el-card.v-antizhir > .box > .cover > img.glare.v-third {
    left: 10px;
    top: 20px;
  }
  .el-card.v-antizhir > .box > .cover > img.glare.v-second {
    left: 26px;
    top: 10px;
  }
  .el-card.v-gel-koncentrat > .box > .cover > img.glare.v-first {
    left: 90px;
  }
  .el-card.v-gel-koncentrat > .box > .cover > img.glare.v-second {
    left: 80px;
    top: 32px;
  }
  .el-card.v-gel-koncentrat > .box > .cover > img.glare.v-third {
    left: 10px;
  }
  .el-card.v-ochistitel > .box > .cover > img.glare.v-first {
    left: 60px;
    top: 10px;
  }
  .el-card.v-ochistitel > .box > .cover > img.glare.v-second {
    left: 20px;
    top: 20px;
  }
  .el-card.v-ochistitel > .box > .cover > img.glare.v-third {
    left: 80px;
    top: 15px;
  }
  .el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-first {
    left: 20px;
    top: 30px;
  }
  .el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-second {
    left: 40px;
    top: 20px;
  }
  .el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-third {
    left: 90px;
    top: 60px;
  }
  .el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-first {
    left: 10px;
    top: 70px;
  }
  .el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-second {
    left: 100px;
  }
  .el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-third {
    left: 90px;
    top: 40px;
  }

}

@media (max-width: 960px) {
  .el-card > .box {
    padding: 56px 16px 24px 16px;
    justify-content: flex-start;
  }
  .el-card > .box > .label {
    right: auto;
    left: 0;
    top: 24px;
    transform: none;
    width: auto;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .el-card > .box > .cover {
    width: 100px;
    left: auto;
    right: 0;
  }
  .el-card > .box > .cover:after {
    width: 248px;
    height: 248px;
    left: auto;
    right: -124px;
    top: -124px;
  }
  .el-card > .box > .cover > img.product {
    width: 64px;
  }
  .el-card > .box > .content > .text-group > .title {
    min-height: 36px;
    font-size: 18px;
  }
  .el-card > .box > .content > .text-group > .text {
    padding-top: 8px;
  }
  .el-card > .box > .content > .button {
    padding-top: 16px;
  }
  .el-card.v-antizhir > .box > .cover > img.glare.v-first {
    right: 0;
  }
  .el-card.v-gel-koncentrat > .box > .cover > img.glare.v-third {
    left: 0;
  }
  .el-card.v-gel-koncentrat > .box > .cover > img.glare.v-first {
    left: 68px;
  }
  .el-card.v-ochistitel > .box > .cover > img.glare.v-third {
    left: 40px;
    top: 25px;
  }
  .el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-third {
    left: 70px;
  }
  .el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-third {
    left: 72px;
  }
  .el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-second {
    left: 25px;
    top: 60px;
  }
}

@media (max-width: 512px) {
  .el-card > .box {
    padding: 48px 24px 24px 24px;
  }
  .el-card > .box > .cover {
    width: 40%;
  }
  .el-card > .box > .cover > img.product {
    width: 72px;
  }
  .el-card.v-antizhir > .box > .cover > img.glare.v-first {
    right: 10px;
  }
  .el-card.v-gel-koncentrat > .box > .cover > img.glare.v-first {
    left: 90px;
  }
  .el-card.v-gel-koncentrat > .box > .cover > img.glare.v-third {
    left: 10px;
  }
  .el-card.v-ochistitel > .box > .cover > img.glare.v-third {
    left: 0;
    top: 25px;
  }
  .el-card.v-ochistitel > .box > .cover > img.glare.v-first {
    left: 90px;
  }
  .el-card.v-mylo-dlya-kuhni > .box > .cover > img.glare.v-third {
    left: 90px;
    top: 50px;
  }
  .el-card.v-zhidkij-utyug > .box > .cover > img.glare.v-third {
    left: 90px;
  }
  .el-card > .box > .label {
    top: 20px;
  }
  .el-card > .box > .content {
    width: 100%;
    max-width: 60%;
  }
  .el-card > .box > .content > .text-group > .title {
    font-size: 22px;
    min-height: auto;
  }
  .el-card > .box > .content > .button {
    padding-top: 12px;
  }
}

/* ELEMENT: text-group */
.el-text-group {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.el-text-group > .title {
  font-size: 80px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02rem;
}

.el-text-group > .text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  padding-top: 16px;
}

@media (max-width: 1344px) {
  .el-text-group {
    max-width: 480px;
  }
  .el-text-group > .title {
    font-size: 48px;
    line-height: 1.08;
  }
  .el-text-group > .text {
    padding-top: 8px;
    font-size: 20px;
    line-height: 1.4;
  }
}

@media (max-width: 960px) {
  .el-text-group > .title {
    font-size: 36px;
  }
}

@media (max-width: 512px) {
  .el-text-group > .title {
    font-size: 26px;
  }
  .el-text-group > .text {
    font-size: 18px;
  }
}

/* ELEMENT: links */
.el-links {
  display: flex;
  justify-content: center;
  text-align: center;
}

.el-links > a.link {
  width: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  color: inherit;
  text-decoration: none;
}

.el-links > a.link > .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-image: linear-gradient(
    to bottom,
    #00aff7,
    #5382C7
  );
  transition: transform .3s;
}

.el-links > a.link:hover > .icon {
  transform: translateY(-4px);
}

.el-links > a.link.v-email > .icon {
  background-image: linear-gradient(
    to bottom,
    #ff79a0,
    #d83a64
  );
}

.el-links > a.link.v-telegram > .icon {
  background-image: linear-gradient(
    to bottom,
    #2eb3f5,
    #0088cc
  );
}

.el-links > a.link.v-telegram > .icon > img {
  position: relative;
  left: -2px;
  top: 1px;
}

.el-links > a.link.v-instagram > .icon {
  background-image: linear-gradient(
    to bottom,
    #ff51a5,
    #f00073
  );
}

.el-links > a.link > .icon > img {
  display: block;
  max-width: 32px;
  height: auto;
}

.el-links > a.link > .text {
  display: block;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1344px) {
  .el-links > a.link {
    margin-left: 8px;
    margin-right: 8px;
  }
}

@media (max-width: 960px) {
  .el-links > a.link {
    width: auto;
  }
  .el-links > a.link {
    margin-left: 16px;
    margin-right: 16px;
  }
  .el-links > a.link > .text {
    display: none;
  }
}

@media (max-width: 512px) {
  .el-links > a.link {
    margin-left: 8px;
    margin-right: 8px;
  }
  .el-links > a.link > .icon {
    width: 56px;
    height: 56px;
  }
  .el-links > a.link > .icon > img {
    max-width: 24px;
  }
}

/* ELEMENT: content-row */
.el-content-row {
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.el-content-row.v-inverse {
  flex-direction: row-reverse;
}

.el-content-row.v-inverse > .column > img {
  transform: rotate(-2deg);
}

.el-content-row > .column {
  box-sizing: border-box;
  width: 50%;
  padding-left: 48px;
  padding-right: 48px;
}

.el-content-row > .column > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  transform: rotate(2deg);
}

.el-content-row > .column > .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.el-content-row > .column > p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  padding: 0;
}

.el-content-row > .column > p strong {
  font-weight: 600;
}

@media (max-width: 1344px) {
  .el-content-row > .column {
    padding-left: 32px;
    padding-right: 32px;
  }
  .el-content-row > .column > .title {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .el-content-row > .column > p {
    font-size: 16px;
  }
}

@media (max-width: 960px) {
  .el-content-row {
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 32px;
  }
  .el-content-row.v-inverse {
    flex-direction: column-reverse;
  }
  .el-content-row > .column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .el-content-row > .column > img {
    margin-bottom: 24px;
    border-radius: 24px;
    transform: rotate(0);
  }
  .el-content-row.v-inverse > .column > img {
    transform: rotate(0);
  }
}

@media (max-width: 512px) {
  .el-content-row {
    margin-bottom: 16px;
  }
  .el-content-row > .column > .title {
    font-size: 18px;
  }
  .el-content-row > .column > p {
    font-size: 15px;
  }
}

/* SECTION: promo */
.s-promo {
  overflow: hidden;
  position: relative;
  padding-top: 24px;
  color: #fff;
  background-image: linear-gradient(
    to bottom,
    #00aff7,
    #5382c7
  );
}

.s-promo > .bubbles {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

.s-promo > .bubbles > .bubble {
  position: absolute;
  opacity: 0;
  bottom: 0;
  transform: scale(.1);
  animation: bubble-rise linear 10s infinite;
  background-image: url('images/misc/bubble.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.s-promo > .bubbles > .bubble:nth-child(1) { width: 56px; height: 56px; left: 10%; animation-delay: 0s; }
.s-promo > .bubbles > .bubble:nth-child(10) { width: 32px; height: 32px; left: 15%; animation-delay: -0.5s; }
.s-promo > .bubbles > .bubble:nth-child(2) { width: 32px; height: 32px; left: 30%; animation-delay: -1s; }
.s-promo > .bubbles > .bubble:nth-child(10) { width: 20px; height: 20px; left: 35%; animation-delay: -1.5s; }
.s-promo > .bubbles > .bubble:nth-child(3) { width: 20px; height: 20px; left: 50%; animation-delay: -2s; }
.s-promo > .bubbles > .bubble:nth-child(4) { width: 32px; height: 32px; left: 70%; animation-delay: -3s; }
.s-promo > .bubbles > .bubble:nth-child(10) { width: 20px; height: 20px; left: 75%; animation-delay: -3.5s; }
.s-promo > .bubbles > .bubble:nth-child(5) { width: 32px; height: 32px; left: 20%; animation-delay: -4s; }
.s-promo > .bubbles > .bubble:nth-child(10) { width: 32px; height: 32px; left: 25%; animation-delay: -4.5s; }
.s-promo > .bubbles > .bubble:nth-child(6) { width: 20px; height: 20px; left: 40%; animation-delay: -5s; }
.s-promo > .bubbles > .bubble:nth-child(7) { width: 56px; height: 56px; left: 60%; animation-delay: -6s; }
.s-promo > .bubbles > .bubble:nth-child(10) { width: 56px; height: 56px; left: 65%; animation-delay: -6.5s; }
.s-promo > .bubbles > .bubble:nth-child(8) { width: 20px; height: 20px; left: 80%; animation-delay: -7s; }
.s-promo > .bubbles > .bubble:nth-child(10) { width: 56px; height: 56px; left: 85%; animation-delay: -7.5s; }
.s-promo > .bubbles > .bubble:nth-child(9) { width: 56px; height: 56px; left: 15%; animation-delay: -8s; }

.s-promo > .text-background {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  inset: 0;
}

.s-promo > .text-background > .inner {
  position: absolute;
  width: 100%;
  height: 100%;
}

.s-promo > .text-background > .inner > img {
  position: absolute;
  display: block;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
}

.s-promo > .el-inner {
  position: relative;
  z-index: 2;
}

.s-promo .panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s-promo .panel > .site {
  max-width: 160px;
  margin-right: 16px;
}

.s-promo .panel > .site > .name {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
}

.s-promo .panel > .site > .slogan {
  font-size: 13px;
  padding-top: 4px;
}

.s-promo .panel > .logo {
  display: block;
}

.s-promo .panel > .menu {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.s-promo .panel > .menu > button {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  transition: color .3s;
}

.s-promo .panel > .menu > button:hover {
  color: rgba(255, 255, 255, .72);
}

.s-promo .panel > .menu > button:last-child {
  margin-left: 80px;
}

.s-promo .body {
  display: flex;
  padding-bottom: 140px; /* see `s-foam` position  */
}

.s-promo .body > .content {
  width: 50%;
  padding-top: 168px;
}

.s-promo .body > .content > .title {
  letter-spacing: -.02rem;
  font-size: 78px;
  font-weight: 800;
  text-shadow: 0 4px 2px rgba(26, 137, 205, .64);
}

.s-promo .body > .content > .title > span {
  color: transparent;
  text-shadow: none;
  background-image: url('images/promo/yovi-text.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.s-promo .body > .content > .button {
  padding-top: 56px;
}

.s-promo .body > .cover {
  position: relative;
  width: 50%;
}

.s-promo .body > .cover:before {
  display: block;
  position: absolute;
  content: '';
  width: 760px;
  height: 760px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(
    circle,
    rgba(129, 239, 255, 1) 0%,
    rgba(129, 239, 255, 0) 64%
  );
}

.s-promo .body > .cover > img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.s-promo .body > .cover > img.washing-machine {
  position: relative;
}

.s-promo .body > .cover > img.glare-first {
  animation: promo-glare infinite linear 3s;
}

.s-promo .body > .cover > img.glare-second {
  animation: promo-glare infinite linear 3s;
  animation-delay: -1s;
}

.s-promo .body > .cover > img.glare-third {
  animation: promo-glare infinite linear 3s;
  animation-delay: -2s;
}

.s-promo .body > .cover > img.yovi {
  /**/
}

.s-promo .body > .cover > img.yovi-hand {
  animation: yovi-hand infinite linear 3s;
}

@media (max-width: 1344px) {
  .s-promo {
    padding-top: 20px;
  }
  .s-promo .panel > .logo {
    width: 92px;
  }
  .s-promo .body > .content {
    padding-top: 128px;
  }
  .s-promo .body > .content > .title {
    font-size: 56px;
  }
  .s-promo .body > .content > .button {
    padding-top: 32px;
  }
  .s-promo .body > .cover:before {
    width: 560px;
    height: 560px;
  }
}

@media (max-width: 960px) {
  .s-promo .panel > .logo {
    order: 1;
  }
  .s-promo .panel > .site {
    order: 2;
    margin-right: auto;
    margin-left: 12px;
  }
  .s-promo .panel > .menu {
    order: 3;
  }
  .s-promo .panel > .menu > button {
    font-size: 16px;
  }
  .s-promo .panel > .menu > button:last-child {
    margin-left: 24px;
  }
  .s-promo .body {
    flex-direction: column-reverse;
  }
  .s-promo .body > .cover {
    width: 100%;
  }
  .s-promo .body > .content {
    padding-top: 8px;
    width: 100%;
  }
  .s-promo > .text-background > .inner > img {
    width: 400%;
  }
}

@media (max-width: 512px) {
  .s-promo {
    padding-top: 16px;
  }
  .s-promo .panel {
    position: relative;
    z-index: 1;
  }
  .s-promo .panel > .site {
    display: none;
  }
  .s-promo .body > .content > .title {
    font-size: 42px;
  }
  .s-promo .body > .content > .button {
    padding-top: 24px;
  }
}

/* SECTION: foam */
.s-foam {
  overflow: hidden;
  position: relative;
  z-index: 1;
  /*  */
  top: -300px;
  margin-bottom: -420px;
}

.s-foam > .inner {
  position: relative;
}

.s-foam > .inner > img.foam {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.s-foam > .inner > .bubbles {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.s-foam > .inner > .bubbles > img {
  display: block;
  position: absolute;
  top: 10px;
  width: 102%;
  left: 50%;
  transform: translateX(-50%);
}

.s-foam > img.foam-mobile {
  display: none;
  width: 100%;
  height: auto;
}

@media (max-width: 1344px) {
  .s-foam {
    top: -240px;
    margin-bottom: -320px;
  }
}

@media (max-width: 960px) {
  .s-foam {
    top: -128px;
    margin-bottom: -128px;
  }
  .s-foam > .inner {
    display: none;
  }
  .s-foam > img.foam-mobile {
    display: block;
  }
}

@media (max-width: 512px) {
  .s-foam > img.foam-mobile {
    width: 200%;
  }
}

/* SECTION: cards */
.s-cards {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  background-image: linear-gradient(
    to bottom,
    #edf9fd,
    #fff
  );
}

.s-cards .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.s-cards .content > .item {
  padding: 12px;
  min-width: 400px;
}

.s-cards .content > .item:nth-child(2) {
  transform: translateY(-32px);
}

.s-cards .content > .item:nth-child(1),
.s-cards .content > .item:nth-child(4) {
  transform: rotate(-2deg);
}

.s-cards .content > .item:nth-child(3),
.s-cards .content > .item:nth-child(5) {
  transform: rotate(2deg);
}

@media (max-width: 1344px) {
  .s-cards .content > .item {
    min-width: 300px;
    padding: 8px;
  }
}

@media (max-width: 960px) {
  .s-cards > .el-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .s-cards .content > .item {
    min-width: 240px;
  }
  .s-cards .content > .item{
    transform: translateY(0) !important;
  }
}

@media (max-width: 512px) {
  .s-cards {
    padding-bottom: 24px;
  }
  .s-cards > .el-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .s-cards .content {
    display: block;
  }
  .s-cards .content > .item {
    padding: 0;
    margin-bottom: 12px;
  }
}

/* SECTION: about */
.s-about .content {
  padding-top: 48px;
}

.s-about .content > .button {
  padding-top: 48px;
  text-align: center;
}

@media (max-width: 960px) {
  .s-about .content {
    padding-top: 32px;
  }
  .s-about .content > .button {
    padding-top: 0;
  }
}

@media (max-width: 512px) {
  .s-about .content {
    padding-top: 24px;
  }
}

/* SECTION: products */
.s-products {
  padding-top: 64px;
}

@media (max-width: 1344px) {
  .s-products .el-inner {
    overflow: hidden;
  }
}

@media (max-width: 512px) {
  .s-products {
    padding-top: 32px;
  }
}

/* SECTION: history */
.s-history {
  padding-top: 64px;
  padding-bottom: 64px;
}
.s-history .content {
  padding-top: 64px;
}

.s-history .content > .coda {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-history .content > .coda > img {
  display: block;
}

.s-history .content > .coda > .text {
  padding-top: 16px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}

.s-history .content > .button {
  padding-top: 48px;
  text-align: center;
}

@media (max-width: 1344px) {
  .s-history .content {
    padding-top: 56px;
  }
}

@media (max-width: 960px) {
  .s-history .content {
    padding-top: 32px;
  }
  .s-history .content > .coda {
    padding-top: 0;
  }
  .s-history .content > .coda > .text {
    padding-top: 8px;
    font-size: 20px;
  }
  .s-history .content > .button {
    padding-top: 32px;
  }
}

@media (max-width: 512px) {
  .s-history {
    padding-top: 32px;
  }
  .s-history .content > .coda > .text {
    font-size: 18px;
    line-height: 1.33;
    padding-top: 0;
  }
}

/* SECTION: contact */
.s-contact {
  padding-top: 64px;
}
.s-contact > img.bg {
  display: block;
  width: 100%;
  height: auto;
}
.s-contact .content {
  padding-top: 48px;
}

@media (max-width: 960px) {
  .s-contact {
    overflow: hidden;
    padding-top: 0;
  }
  .s-contact > img.bg {
    position: relative;
    width: 1344px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* SECTION: footer */
.s-footer {
  padding-top: 96px;
  padding-bottom: 96px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #5382c7;
}

@media (max-width: 1344px) {
  .s-footer {
    font-size: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 512px) {
  .s-footer {
    font-size: 13px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* KEYFRAME: glare */
@keyframes glare {
  from,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.72);
    opacity: .48;
  }
}

/* KEYFRAME: bubble */
@keyframes bubble {
  from,
  to {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-8px);
  }
}

/* KEYFRAME: yovi-hand */
@keyframes yovi-hand {
  from,
  to {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-5deg);
  }
}

/* KEYFRAME: promo-glare */
@keyframes promo-glare {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: .12;
  }
}

/* KEYFRAME: bubble-rise */
@keyframes bubble-rise {
    to {
        transform: translateY(-100vh) scale(1);
        opacity: 1;
    }
}
