@charset "UTF-8";
/**
 * Foundation for Sites by ZURB
 * Version 6.4.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*----------------------
 * Гамбургер
 ----------------------*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
   
   .asp_w_container_1{width: 91%!important; margin-top: 10px;margin-left: 5px;}
 .asp_w_container_2{width: 70%!important;margin: 5px 10%;}
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 35px;
  height: 21px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 35px;
    height: 3px;
    background-color: #42454e;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -9px; }
  .hamburger-inner::after {
    bottom: -9px; }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
       -o-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -18px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
          transform: translate3d(0, -9px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*----------------------
 * Компоненты
 ----------------------*/
@font-face {
  font-family: "GothamProRegular";
  src: url("../fonts/GothamPro/GothamPro.eot") format("eot"), url("../fonts/GothamPro/GothamPro.woff") format("woff"), url("../fonts/GothamPro/GothamPro.ttf") format("ttf"); }

@font-face {
  font-family: "GothamProMedium";
  src: url("../fonts/GothamPro/GothamPro-Medium.eot") format("eot"), url("../fonts/GothamPro/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Medium.ttf") format("ttf"); }

@font-face {
  font-family: "GothamProLight";
  src: url("../fonts/GothamPro/GothamPro-Light.eot") format("eot"), url("../fonts/GothamPro/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Light.ttf") format("ttf"); }

@font-face {
  font-family: "GothamProBold";
  src: url("../fonts/GothamPro/GothamPro-Bold.eot") format("eot"), url("../fonts/GothamPro/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Bold.ttf") format("ttf"); }

@font-face {
  font-family: "Rubik-Regular";
  src: url("../fonts/Rubik/Rubik-Regular.woff2") format("woff2"), url("../fonts/Rubik/Rubik-Regular.woff") format("woff"), url("../fonts/Rubik/Rubik-Regular.ttf") format("ttf"); }

@font-face {
  font-family: "Rubik-Light";
  src: url("../fonts/Rubik/Rubik-Light.woff2") format("woff2"), url("../fonts/Rubik/Rubik-Light.woff") format("woff"), url("../fonts/Rubik/Rubik-Light.ttf") format("ttf"); }

@font-face {
  font-family: "Rubik-Medium";
  src: url("../fonts/Rubik/Rubik-Medium.woff2") format("woff2"), url("../fonts/Rubik/Rubik-Medium.woff") format("woff"), url("../fonts/Rubik/Rubik-Medium.ttf") format("ttf"); }

@font-face {
  font-family: "Rubik-Bold";
  src: url("../fonts/Rubik/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik/Rubik-Bold.woff") format("woff"), url("../fonts/Rubik/Rubik-Bold.ttf") format("ttf"); }

@font-face {
  font-family: "Rubik-Black";
  src: url("../fonts/Rubik/Rubik-Black.woff2") format("woff2"), url("../fonts/Rubik/Rubik-Black.woff") format("woff"), url("../fonts/Rubik/Rubik-Black.ttf") format("ttf"); }

.space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.vertical-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.block-align-center {
  display: block;
  margin: auto; }

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

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

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

.spacer-60 {
  margin-bottom: 60px; }

body {
  line-height: 1.5;
  min-width: 320px;
  position: relative;
  font-size: 16px;
  color: #606060;
  font-family: "GothamProRegular";
  font-weight: 400;
  overflow-x: hidden; }

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

strong {
  font-family: "GothamProBold"; }

iframe,
video,
object {
  max-width: 100%; }

a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none; }

@media screen and (max-width: 63.9375em) {
  .wow {
    -webkit-animation-name: none !important;
            animation-name: none !important;
    visibility: visible !important; } }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s; }

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s; }

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms; }

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms; }

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s; }

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important; } }

.primary-nav {
  padding-left: 0;
  margin: 0; }
  .primary-nav li {
    display: inline-block;
    position: relative; }
    .primary-nav li:hover .sub-menu {
      display: block; }
    .primary-nav li a {
      font-size: 1rem;
      color: #42454e;
      font-family: "GothamProRegular";
      text-decoration: none;
      margin: 0 1px;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      padding: 30px 0;
      display: inline-block; }
      .primary-nav li a:hover {
        color: #ff6900; }
        .primary-nav li a:hover + .sub-menu {
          display: block; }
    .primary-nav li .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: auto;
      z-index: 99;
      white-space: nowrap;
      background-color: #f9f9f9;
      padding: 10px 25px 10px 21px;
      border-bottom: 2px solid #3d72eb;
      border-top: 1px solid #eee;
      list-style-type: none;
      display: none;
      min-width: 187px;
      text-align: left; }
      .primary-nav li .sub-menu li {
        display: block; }
        .primary-nav li .sub-menu li a {
          margin: 0;
          padding: 5px 0; }
  @media screen and (max-width: 80.9375em) {
    .primary-nav {
      display: none; } }

.hamburger {
  display: none;
  z-index: 100;
  position: relative;
  outline: none;
  line-height: 1.9;
  margin: auto; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::after,
  .hamburger.is-active .hamburger-inner::before {
    background-color: #4b4b4b; }
  @media screen and (max-width: 80.9375em) {
    .hamburger {
      display: block; } }
  @media screen and (max-width: 39.9375em) {
    .hamburger {
      margin: 0 0 0 10px; } }

.hamburger-box {
  top: 4px;    right: 15px; }

.mobile-nav {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  list-style-type: none; }
  .mobile-nav.full-height {
    height: 100%; }
  .mobile-nav__list {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-left: 0;
    list-style-type: none; }
    .mobile-nav__list li {
      display: block;
      margin: 10px 0;
      text-align: left; }
      .mobile-nav__list li a {
        text-decoration: none;
        font-size: 1.5rem;
        color: #606060;
        text-transform: uppercase;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
        @media screen and (max-width: 39.9375em) {
          .mobile-nav__list li a {
            font-size: 1.15rem; } }
        .mobile-nav__list li a:hover {
          color: #2fb5d8; }
  .mobile-nav__contacts {
    position: absolute;
    top: 10%;
    right: 10%; }
  .mobile-nav__contact-link {
    text-decoration: none;
    display: block;
    font-size: 1.125rem;
    color: #606060;
    margin: 7px 0; }

.rec-post__list .slick-dots,
.sl-products__list .slick-dots,
.upsell__inner .slick-dots,
.landing-reviews__list .slick-dots {
  left: 0;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 0;
  text-align: center; }
  .rec-post__list .slick-dots li,
  .sl-products__list .slick-dots li,
  .upsell__inner .slick-dots li,
  .landing-reviews__list .slick-dots li {
    display: inline-block;
    margin: 0 15px;
    width: 100px;
    height: 3px;
    background-color: #929292;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media screen and (max-width: 39.9375em) {
      .rec-post__list .slick-dots li,
      .sl-products__list .slick-dots li,
      .upsell__inner .slick-dots li,
      .landing-reviews__list .slick-dots li {
        width: 30px;
        margin: 0 7px; } }
    .rec-post__list .slick-dots li.slick-active,
    .sl-products__list .slick-dots li.slick-active,
    .upsell__inner .slick-dots li.slick-active,
    .landing-reviews__list .slick-dots li.slick-active {
      background-color: #3366ff; }
    .rec-post__list .slick-dots li button,
    .sl-products__list .slick-dots li button,
    .upsell__inner .slick-dots li button,
    .landing-reviews__list .slick-dots li button {
      font-size: 0;
      opacity: 0; }

.rec-post__list .slick-arrow,
.sl-products__list .slick-arrow,
.upsell__inner .slick-arrow,
.landing-reviews__list .slick-arrow {
  font-size: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 80px; }
  .rec-post__list .slick-arrow.slick-prev,
  .sl-products__list .slick-arrow.slick-prev,
  .upsell__inner .slick-arrow.slick-prev,
  .landing-reviews__list .slick-arrow.slick-prev {
    left: -25px; }
    .rec-post__list .slick-arrow.slick-prev:before,
    .sl-products__list .slick-arrow.slick-prev:before,
    .upsell__inner .slick-arrow.slick-prev:before,
    .landing-reviews__list .slick-arrow.slick-prev:before {
      content: url("../img/slick-next.svg");
      display: block; }
    @media screen and (max-width: 1199.9px) {
    	.asp_w_container_1{display:none!important;}
      .rec-post__list .slick-arrow.slick-prev,
      .sl-products__list .slick-arrow.slick-prev,
      .upsell__inner .slick-arrow.slick-prev,
      .landing-reviews__list .slick-arrow.slick-prev {
        left: 25px; } }
    @media screen and (max-width: 639.9px) {
      .rec-post__list .slick-arrow.slick-prev,
      .sl-products__list .slick-arrow.slick-prev,
      .upsell__inner .slick-arrow.slick-prev,
      .landing-reviews__list .slick-arrow.slick-prev {
        left: 15px; } }
  .rec-post__list .slick-arrow.slick-next,
  .sl-products__list .slick-arrow.slick-next,
  .upsell__inner .slick-arrow.slick-next,
  .landing-reviews__list .slick-arrow.slick-next {
    right: -25px; }
    .rec-post__list .slick-arrow.slick-next:before,
    .sl-products__list .slick-arrow.slick-next:before,
    .upsell__inner .slick-arrow.slick-next:before,
    .landing-reviews__list .slick-arrow.slick-next:before {
      content: url("../img/slick-next.svg");
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
      display: block; }
    @media screen and (max-width: 1199.9px) {
      .rec-post__list .slick-arrow.slick-next,
      .sl-products__list .slick-arrow.slick-next,
      .upsell__inner .slick-arrow.slick-next,
      .landing-reviews__list .slick-arrow.slick-next {
        right: 25px; } }
    @media screen and (max-width: 639.9px) {
      .rec-post__list .slick-arrow.slick-next,
      .sl-products__list .slick-arrow.slick-next,
      .upsell__inner .slick-arrow.slick-next,
      .landing-reviews__list .slick-arrow.slick-next {
        right: 15px; } }

.sl-products__list .slick-list {
  margin: 0 15px; }
  @media screen and (max-width: 39.9375em) {
    .sl-products__list .slick-list {
      margin: 0; } }

.upsell__inner .slick-list {
  margin: 0 25px; }
  @media screen and (max-width: 39.9375em) {
    .upsell__inner .slick-list {
      margin: 0; } }

.rec-post__list .slick-list {
  margin: 0 15px; }

.slick-slide {
  outline: 0; }
  .slick-slide.item {
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #f4f4f4; }
    .slick-slide.item img {
      margin: auto; }

.slider-nav {
  padding: 0 50px; }
  .slider-nav .slick-slide {
    cursor: pointer; }

.slick-lightbox .slick-prev {
  z-index: 9999; }

.btn, .price-plan__btn {
  display: inline-block;
  background-color: #3d72eb;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 25px;
  font-family: "GothamProLight";
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  cursor: pointer;
  font-size: 16px; }
  .btn:hover, .price-plan__btn:hover {
    background-color: #3262d1; }
  .btn--ttn {
    text-transform: none; }
  .btn--big-size {
    padding: 8px 40px; }
    @media screen and (max-width: 39.9375em) {
      .btn--big-size {
        padding: 8px 25px; } }
  .btn--bordered {
    background-color: #fff;
    border: 1px solid #3d72eb;
    color: #3d72eb; }
    .btn--bordered:hover {
      background-color: #3d72eb;
      color: #fff; }
  .btn + .btn--video, .price-plan__btn + .btn--video {
    margin-left: 25px; }
    @media screen and (max-width: 39.9375em) {
      .btn + .btn--video, .price-plan__btn + .btn--video {
        margin-top: 10px;
        margin-left: 0; } }
  .btn--video {
    background-color: #fff;
    -webkit-box-shadow: inset 0px 0px 0px 1px #ff6900;
            box-shadow: inset 0px 0px 0px 1px #ff6900;
    color: #ff6900;
    text-transform: capitalize;
    position: relative;
    padding: 8px 55px 8px 20px; }
    .btn--video:after {
      content: "";
      width: 23px;
      height: 17px;
      background-image: url("../img/icons/youtube-icon.svg");
      background-repeat: no-repeat;
      -webkit-background-size: contain;
              background-size: contain;
      position: absolute;
      right: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      line-height: 1; }
    .btn--video:hover {
      background-color: #fff; }

.primary-form__input, .form-popup__input {
  width: 100%;
  height: 100%;
  border: 1px solid #dbdbdb;
  padding-left: 45px; }

.primary-form__submit, .form-popup__submit {
  border: 0;
  height: 100%;
  width: 100%;
  text-transform: none; }

.primary-form__wrap {
  display: inline-block;
  width: 245px;
  height: 40px;
  margin-right: 15px;
  position: relative; }
  .primary-form__wrap.submit {
    width: auto; }
    @media print, screen and (min-width: 48.125em) {
      .primary-form__wrap.submit {
        margin-top: 15px; } }
    @media screen and (max-width: 39.9375em) {
      .primary-form__wrap.submit {
        width: 100%; } }
  @media screen and (max-width: 48.0625em) {
    .primary-form__wrap {
      width: 230px;
      margin: 6px 3px; } }
  @media screen and (max-width: 39.9375em) {
    .primary-form__wrap {
      display: block;
      margin: 12px 0;
      width: 100%; } }
  .primary-form__wrap:before {
    content: "";
    position: absolute;
    top: 55%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 15px; }
  .primary-form__wrap:nth-of-type(1):before {
    content: url("../img/popup/user-silhouette.svg"); }
  .primary-form__wrap:nth-of-type(2):before {
    content: url("../img/popup/envelope.svg"); }

.primary-form.is-popup .primary-form__wrap {
  display: block;
  margin-bottom: 20px; }

/*--------------------------------------------------
    Form Popup
--------------------------------------------------*/
.form-popup {
  max-width: 300px; }
  @media screen and (max-width: 39.9375em) {
    .form-popup__submit-wrap {
      text-align: center; } }
  .form-popup__wrap {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    position: relative; }
    @media screen and (max-width: 39.9375em) {
      .form-popup__wrap {
        margin: 0 auto 15px; } }
    .form-popup__wrap:before {
      content: "";
      position: absolute;
      top: 55%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 15px; }
    .form-popup__wrap:nth-of-type(1):before {
      content: url("../img/popup/user-silhouette.svg"); }
    .form-popup__wrap:nth-of-type(2):before {
      content: url("../img/popup/icon.svg"); }
    .form-popup__wrap:nth-of-type(3):before {
      content: url("../img/popup/envelope.svg"); }

#loader {
  display: none; }

.popup {
  position: relative;
  background: #fff;
  padding: 75px 45px;
  width: auto;
  max-width: 1000px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  margin: auto; }
  @media screen and (max-width: 39.9375em) {
    .popup {
      padding: 35px 20px; } }
  .popup__inner {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .popup__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .popup__content {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .popup__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .popup__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) {
    .popup__text {
      text-align: center; } }
  .popup__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .popup__img {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  .popup__title {
    font-size: 1.875rem;
    font-family: "Rubik-Regular";
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 0; }
  .popup__line {
    width: 150px;
    height: 3px;
    background-color: #3366ff; }
    @media screen and (max-width: 39.9375em) {
      .popup__line {
        margin: auto; } }
  .popup__descr {
    font-family: "Rubik-Regular";
    font-size: 1.125rem;
    color: #383838;
    max-width: 350px; }
    @media screen and (max-width: 48.0625em) {
      .popup__descr {
        margin-left: auto;
        margin-right: auto; } }
  .popup__videowrap {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0; }
  .popup iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .popup--quiz {
    padding: 25px 45px 45px; }

.thanks-page {
  text-align: center;
  position: relative;
  background: #fff;
  padding: 70px 25px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
  -webkit-border-radius: 10px;
          border-radius: 10px; }
  .thanks-page__title {
    font-family: "Rubik-Regular";
    font-size: 1.875rem;
    color: #383838; }
    .thanks-page__title span {
      text-transform: uppercase;
      color: #3366ff; }
  .thanks-page__line {
    width: 150px;
    height: 3px;
    background-color: #3366ff;
    margin: 40px auto; }
  .thanks-page__descr {
    font-size: 1.125rem;
    font-family: "GothamProRegular";
    color: #383838; }

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

.pagination {
  text-align: center; }
  .pagination .page-numbers {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: 1.4px 1.4px 4px 0 rgba(0, 0, 0, 0.27);
            box-shadow: 1.4px 1.4px 4px 0 rgba(0, 0, 0, 0.27);
    border: solid 1px #3d72eb;
    color: #3d72eb;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: 38px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin: 0 5px; }
    .pagination .page-numbers.current, .pagination .page-numbers:hover {
      background-color: #3d72eb;
      color: #fff; }
    .pagination .page-numbers.next:hover, .pagination .page-numbers.prev:hover {
      background-color: #ff6900;
      color: #fff;
      border: solid 1px #ff6900; }

.breadcrumbs {
  max-width: 76.875rem;
  padding: 0 1rem;
  margin: 34px auto 0; }
  .breadcrumbs.hidden {
    visibility: hidden;
    margin: auto;
    height: 0; }
  .breadcrumbs__item {
    font-size: 16px; }
    .breadcrumbs__item:after {
      content: ">";
      margin-left: 2px; }
  .breadcrumbs__current {
    color: #557397; }
    .breadcrumbs__current:after {
      content: none; }
  .breadcrumbs__link {
    font-family: "GothamProRegular";
    font-size: 16px;
    color: #42454e;
    text-decoration: none; }

.step-steps {
  padding-left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .step-steps li {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    -webkit-border-radius: 10px;
            border-radius: 10px;
    background-color: #c1c1c1;
    text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative; }
    @media screen and (max-width: 39.9375em) {
      .step-steps li {
        width: 50px;
        height: 50px;
        line-height: 50px; } }
    .step-steps li:after {
      content: "";
      width: 150%;
      height: 2px;
      background-color: #c1c1c1;
      display: inline-block;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 100%; }
      @media screen and (max-width: 39.9375em) {
        .step-steps li:after {
          display: none; } }
    .step-steps li:last-child:after {
      content: none; }
    .step-steps li.done {
      background-color: #ff6900; }
      .step-steps li.done:after {
        background-color: #ff6900; }
    .step-steps li.active {
      background-color: #ff6900; }
  .step-steps a {
    font-family: "Rubik-Light";
    font-size: 1.875rem;
    color: #fff;
    text-decoration: none; }
    @media screen and (max-width: 39.9375em) {
      .step-steps a {
        font-size: 1.5rem; } }

.step-content {
  -webkit-box-shadow: 4.114px 5.663px 14.4px 1.6px rgba(0, 0, 0, 0.08);
          box-shadow: 4.114px 5.663px 14.4px 1.6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  margin-top: 52px; }
  @media screen and (max-width: 39.9375em) {
    .step-content {
      margin-top: 25px; } }
  .step-content__input-wrap {
    display: block;
    width: 300px;
    height: 40px;
    margin-bottom: 15px;
    position: relative; }
    @media screen and (max-width: 39.9375em) {
      .step-content__input-wrap {
        display: block;
        margin: 12px 0;
        width: 100%; } }
    .step-content__input-wrap:before {
      content: "";
      position: absolute;
      top: 55%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 15px; }
    .step-content__input-wrap:nth-of-type(1):before {
      content: url("../img/popup/user-silhouette.svg"); }
    .step-content__input-wrap:nth-of-type(2):before {
      content: url("../img/popup/icon.svg"); }
    .step-content__input-wrap:nth-of-type(3):before {
      content: url("../img/popup/envelope.svg"); }
  .step-content__input {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 45px;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    border: 1px solid #dad5d5;
    outline: none; }
  .step-content__submit {
    display: block;
    width: 300px;
    height: 45px;
    background-color: #ff6900;
    color: #fff;
    border: 0;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .step-content__submit:hover {
      background-color: #cc5400; }
  .step-content [type="radio"]:checked,
  .step-content [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px; }
  .step-content [type="radio"]:checked + label,
  .step-content [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 23px;
    display: inline-block;
    color: #666; }
  .step-content [type="radio"]:checked + label:before,
  .step-content [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #c2c2c2;
    -webkit-border-radius: 100%;
            border-radius: 100%;
    background: #fff; }
  .step-content [type="radio"]:checked + label:after,
  .step-content [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #3366ff;
    position: absolute;
    top: 6px;
    left: 6px;
    -webkit-border-radius: 100%;
            border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .step-content [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
        transform: scale(0); }
  .step-content [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
        transform: scale(1); }

.step-tab-panel__header {
  background-color: #3366ff;
  padding: 20px 0;
  -webkit-border-top-left-radius: 10px;
          border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
          border-top-right-radius: 10px;
  display: block; }

.step-tab-panel__main {
  padding-left: 70px;
  margin: 30px 0; }
  @media screen and (max-width: 39.9375em) {
    .step-tab-panel__main {
      padding-left: 25px; } }

.step-tab-panel__title {
  color: #fff;
  margin: 0;
  font-weight: 400;
  padding-left: 70px;
  padding-right: 70px; }
  @media screen and (max-width: 39.9375em) {
    .step-tab-panel__title {
      padding-left: 25px;
      padding-right: 25px;
      font-size: 1.125rem; } }

.step-footer {
  margin-top: 25px;
  text-align: right; }
  .step-footer .next {
    background-color: #ff6900;
    outline: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .step-footer .next:hover {
      background-color: #cc5400; }
  .step-footer .prev {
    outline: none; }

.step-app > .step-content > .step-tab-panel {
  display: none; }

.step-app > .step-content > .step-tab-panel.active {
  display: block; }

.radio-container {
  display: block;
  margin-bottom: 24px;
  font-family: "GothamProRegular";
  font-size: 1.125rem;
  color: #6e6e72; }
  @media screen and (max-width: 39.9375em) {
    .radio-container {
      font-size: 1rem; } }
  .radio-container:last-child {
    margin-bottom: 0; }
  .radio-container > input[type="radio"] {
    width: 18px;
    height: 18px;
    vertical-align: sub;
    margin-right: 7px; }

.section__title {
  font-family: "Rubik-Bold";
  font-size: 36px;
  color: #42454e;
  margin: 0;
  line-height: 1.2; }
  .section__title .highligt {
    color: #ff6900; }
  .section__title--uppercase {
    text-transform: uppercase; }
  @media screen and (max-width: 63.9375em) {
    .section__title {
      font-size: 1.875rem; } }
  @media screen and (max-width: 39.9375em) {
    .section__title {
      font-size: 1.5rem; } }

.section__line {
  width: 100px;
  height: 2px;
  background-color: #3366ff;
  margin: 30px auto; }
  @media screen and (max-width: 39.9375em) {
    .section__line {
      margin: 15px auto; } }

.section__subtitle {
  font-size: 18px;
  line-height: 1.667;
  max-width: 650px;
  margin: auto; }

.section--align-left {
  max-width: 76.875rem;
  padding: 0 1rem;
  margin: auto; }
  .section--align-left .section__line {
    margin: 30px 0; }
  .section--align-left .section__subtitle {
    margin: 0; }

.tabs__caption {
  padding: 0; }
  @media screen and (max-width: 39.9375em) {
    .tabs__caption {
      text-align: center; } }

.tabs__caption li{
  list-style: none;
  outline: 0;
  display: inline-block;
  margin: 0 -3px;
  border-bottom: solid 2px #ccc;
  font-family: "GothamProMedium";
  font-size: 16px;
  color: #969696;
  text-transform: uppercase;
  padding: 10px 30px;
  cursor: pointer; }
  .tabs__caption li a{color: #969696;}
  @media screen and (max-width: 39.9375em) {
    .tabs__caption li {
      padding: 10px 15px;
      font-size: 14px; } }

.tabs__caption .active{
  color: #ff6900;
  border-bottom: solid 2px #ff6900; }
.tabs__caption .active a{color: #ff6900;}
.tabs__content {
  display: none;
  margin: 25px 0 35px;
  /* по умолчанию прячем все блоки */ }

.tabs__content.active {
  display: block;
  /* по умолчанию показываем нужный блок */ }

.tabs__features-list {
  list-style-type: none;
  padding: 0; }

.tabs__features-list-item {
  font-size: 1.125rem;
  font-family: "GothamProRegular";
  color: #4c4d51;
  margin: 2px 0;
  position: relative;
  padding-left: 20px; }
  @media screen and (max-width: 39.9375em) {
    .tabs__features-list-item {
      font-size: 1rem; } }
  .tabs__features-list-item:before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    background-color: #3d72eb; }
    @media screen and (max-width: 39.9375em) {
      .tabs__features-list-item:before {
        top: 8px;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); } }

.tabs__advantages-list {
  list-style-type: none;
  padding: 0;
  max-width: 90%; }

.tabs__advantages-img {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 13%;
      -ms-flex: 1 0 13%;
          flex: 1 0 13%;
  max-width: 13%; }
  @media screen and (max-width: 39.9375em) {
    .tabs__advantages-img {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 23%;
          -ms-flex: 1 0 23%;
              flex: 1 0 23%;
      max-width: 23%; } }

.tabs__advantages-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 75%;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  max-width: 75%; }

.tabs__advantages-list-item {
  font-size: 1.125rem;
  font-family: "GothamProRegular";
  color: #4c4d51;
  position: relative;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  @media screen and (max-width: 39.9375em) {
    .tabs__advantages-list-item {
      font-size: 1rem; }
      .tabs__advantages-list-item br {
        display: none; } }
  .tabs__advantages-list-item:last-child {
    margin-bottom: 0; }
  .tabs__advantages-list-item:before {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 2px;
    left: 0; }

#button {
  display: inline-block;
  background-color: #395bf1;
  width: 50px;
  height: 50px;
  text-align: center;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  position: fixed;
  bottom: 125px;
  right: 20px;
  -webkit-transition: background-color 0.3s,opacity 0.5s,visibility 0.5s;
  -o-transition: background-color 0.3s,opacity 0.5s,visibility 0.5s;
  transition: background-color 0.3s,opacity 0.5s,visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000; }
  #button:before {
    content: url("../img/up-arrow.png");
    line-height: 50px; }
  #button:hover {
    cursor: pointer;
    background-color: #333; }
  #button:active {
    background-color: #555; }
  #button.show {
    opacity: 1;
    visibility: visible; }

@media screen and (max-width: 74.9375em) {
  #button {
    display: none; } }

.rec-post__list {
  max-width: 76.875rem;
  margin: auto; }

.rec-post__heading {
  margin-top: 0; }
  @media screen and (max-width: 39.9375em) {
    .rec-post__heading {
      font-size: 26px !important; } }

.rec-post__item {
  max-width: 32.333%;
  display: inline-block;
  vertical-align: top;
  padding: 10px 15px; }
  .rec-post__item.slick-slide {
    max-width: none; }
  @media screen and (max-width: 57.5em) {
    .rec-post__item {
      max-width: 49%; } }
  @media screen and (max-width: 39.9375em) {
    .rec-post__item {
      margin-bottom: 0;
      max-width: 100%; } }

.rec-post__item-inner {
  display: inline-block;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0 0 8.6px 1.4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8.6px 1.4px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px; }

.rec-post__thumb {
  display: block; }
  .rec-post__thumb:hover {
    opacity: 0.7; }
  .rec-post__thumb img {
    width: 100%;
    -webkit-border-top-left-radius: 5px;
            border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
            border-top-right-radius: 5px; }

.rec-post__content {
  padding: 15px 25px 37px; }

.rec-post__title {
  font-size: 20px;
  font-family: "Rubik-Bold";
  line-height: 1.2;
  margin-bottom: 8px;
  text-decoration: none;
  color: #42454e;
  display: block; }
  .rec-post__title:hover {
    color: #3366ff; }

.rec-post__date {
  margin-bottom: 10px !important; }

.rec-post__excerpt {
  margin-bottom: 10px !important; }

.rec-post__link {
  color: #3366ff;
  display: block; }
  .rec-post__link:hover {
    color: #ff6900; }

.price-plan {
  -webkit-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #dadada;
  background-color: #f9f9f9;
  font-family: "Rubik-Regular";
  padding: 0 0 49px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .price-plan:hover {
    border: 1px solid #3366ff; }
  .price-plan__top {
    line-height: 1;
    font-size: 24px;
    color: #42454e;
    font-weight: 700;
    text-align: center;
    padding: 20px 0; }
    .price-plan__top .period {
      font-size: 14px;
      font-weight: 400; }
  .price-plan__title {
    font-size: 14px;
    color: #fff;
    background-color: #3366ff;
    padding: 9px 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500; }
  .price-plan__desc {
    padding: 11px 0 18px;
    margin-bottom: 18px;
    text-align: center;
    position: relative; }
    .price-plan__desc:after {
      content: "";
      display: block;
      width: 60px;
      height: 2px;
      background-color: #3366ff;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      bottom: 0; }
  .price-plan__note {
    text-transform: uppercase;
    font-size: 12px;
    color: #42454e;
    margin: 5px 0; }
  .price-plan__opt, .price-plan__discount {
    font-size: 16px;
    font-weight: 700;
    color: #3366ff; }
    .price-plan__opt .period, .price-plan__discount .period {
      font-size: 12px;
      font-weight: 400; }
  .price-plan__discount {
    font-size: 14px; }
  .price-plan__heading {
    font-size: 14px;
    color: #42454e;
    line-height: 1.57;
    font-weight: 500;
    text-align: center;
    padding: 0 40px; }
  .price-plan__list {
    list-style-type: none;
    margin: 5px 0 24px;
    padding: 0 40px; }
    .price-plan__list li {
      font-size: 14px;
      position: relative;
      padding-left: 30px;
      margin: 7px 0; }
      .price-plan__list li:before {
        content: "";
        width: 14px;
        height: 14px;
        background-image: url("../img/icons/checked-blue.png");
        background-repeat: no-repeat;
        -webkit-background-size: contain;
                background-size: contain;
        position: absolute;
        top: 4px;
        left: 0; }
  .price-plan__btn {
    font-size: 14px; }

@media screen and (max-width: 74.9375em) {
  .megamenu {
    display: none; } }

.megamenu .column:nth-of-type(2) {
  border-right: 1px solid #dadada;
  border-left: 1px solid #dadada; }

.megamenu:hover .megamenu__dropcontent {
  display: block; }

.megamenu__dropbtn {
  font-size: 1rem;
  color: #42454e;
  font-family: "GothamProRegular";
  text-decoration: none;
  margin: 0 3px;
  padding: 30px 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: inline-block; }
  .megamenu__dropbtn:hover {
    color: #ff6900; }

.megamenu__dropcontent {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 9;
  background-color: #fff;
  padding: 25px 0;
  border-bottom: 2px solid #3366ff; }

.megamenu__column {
  padding: 0 30px;
  text-align: left; }

.megamenu__heading {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: #42454e;
  min-height: 48px;
  font-family: "GothamProLight"; }

.megamenu__list {
  padding-left: 0;
  margin: 0; }

.megamenu__item {
  display: block !important;
  margin-bottom: 2px; }
  .megamenu__item:last-child {
    margin-bottom: 0; }
  .megamenu__item img {
    margin-right: 30px; }

.megamenu__link {
  margin: 0 !important;
  padding: 8px 0 !important;
  color: #42454e;
  font-size: 16px; }
  .megamenu__link:hover {
    color: #ff6900; }

.lang {
  padding-left: 0;
  margin: 0; }
  .lang-item, .lang__item {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    color: #828282;
    padding: 5px 11px;
    background: #f2f2f2;
    -webkit-border-radius: 60px;
            border-radius: 60px;
    margin-right: 6px;
    border: 1px solid #f2f2f2; }
    @media screen and (max-width: 39.9375em) {
      .lang-item, .lang__item {
        font-size: 12px;
        padding: 3px 5px; } }
    .lang-item a, .lang__item a {
      color: #828282; }
    .lang-item:last-child, .lang__item:last-child {
      margin-right: 0; }
    .lang-item.current-lang, .lang-item.active, .lang__item.current-lang, .lang__item.active {
      color: #606060;
      background-color: transparent;
      border: 1px solid #606060; }

.h-100 {
  height: 100%; }

.header {
  background-color: #f9f9f9;
  -webkit-box-shadow: 0px 3px 7.68px 0.32px rgba(0, 0, 0, 0.17);
          box-shadow: 0px 3px 7.68px 0.32px rgba(0, 0, 0, 0.17);
  position: relative; }
  @media print, screen and (min-width: 64em) {
    .header {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 74.9375em) {
    .header {
      padding: 10px 0;
      margin-bottom: 50px; } }
  .header__logo, .header__lang {
    display: inline-block;
    vertical-align: middle; }
  .header__logo {
    margin-right: 20px;
    padding: 1px 0; }
    @media screen and (max-width: 63.9375em) {
      .header__logo {
        margin-right: 10px; } }
  @media screen and (max-width: 767.9px) {
    .header__lang {
      position: absolute;
      top: 9%;
      left: 10%; } }
  .header__nav {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media screen and (max-width: 74.9375em) {
      .header__nav {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; } }
    @media screen and (max-width: 39.9375em) {
      .header__nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
  .header__contacts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media screen and (max-width: 74.9375em) {
      .header__contacts {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
  .header__contact-block {
    text-align: right;
    margin-right: 25px; }
  .header__contact-link {
    margin: 0;
    font-family: "Rubik-Medium";
    color: #343434;
    display: block;
    padding-left: 25px;
    text-decoration: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative; }
    .header__contact-link:hover {
      color: #ff6900; }
    .header__contact-link:before {
      content: url("../img/icons/phone-icon.svg");
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 0;
      line-height: 1; }
  .header__socials {
    text-align: center;
    margin-right: 20px; }
    @media screen and (max-width: 767.9px) {
      .header__socials {
        margin-right: 0; } }
  .header__socials-title {
    margin-bottom: 4px;
    font-size: 13px; }
  .header__socials-link {
    margin-right: 10px;
    display: inline-block; }
    .header__socials-link:last-child {
      margin-right: 0; }

.intro {
  /* margin-bottom: 155px;
	padding-top: 96px;

	@include breakpoint(large down) {
		padding-top: 45px;
		margin-bottom: 70px;
	}

	@include breakpoint(xsmall down) {
		padding-top: 45px;
		margin-bottom: 35px;
	} */ }
  .intro__slider {
    border-top: 3px solid #ff6900; }
  .intro .slick-dots {
    padding-left: 0;
    margin: 0;
    list-style-type: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media screen and (max-width: 639.9px) {
      .intro .slick-dots {
        bottom: 10px; } }
    .intro .slick-dots li {
      display: inline-block;
      width: 10px;
      height: 10px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: #c4c4c4;
      margin-right: 12px; }
      .intro .slick-dots li:last-child {
        margin-right: 0; }
      .intro .slick-dots li.slick-active {
        background-color: #3d72eb; }
      .intro .slick-dots li button {
        font-size: 0; }
        .intro .slick-dots li button::before {
          display: none; }
  .intro--landing {
    background-repeat: no-repeat;
    background-position: 100% 100%;
    padding-bottom: 60px;
    padding-top: 34px;
    margin-bottom: 0; }
    @media screen and (max-width: 99.9375em) {
      .intro--landing {
        background-position: 140% 100%; } }
    @media screen and (max-width: 89.9375em) {
      .intro--landing {
        background-position: 160% 100%; } }
    @media screen and (max-width: 74.9375em) {
      .intro--landing {
        background-image: none !important; } }
    @media screen and (max-width: 39.9375em) {
      .intro--landing {
        margin-bottom: 0;
        padding-bottom: 30px;
        padding-top: 40px; } }
  .intro--landing .intro__content {
    margin-top: 30px; }
  .intro--landing-coffee {
    background-image: url("../img/landing/coffee/intro_bg.jpg"); }
  .intro--landing-shop {
    background-image: url("../img/landing/shop/intro_bg.png"); }
  .intro__inner {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
  .intro__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .intro__content {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .intro__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
            -ms-flex: 0 0 75%;
                flex: 0 0 75%;
        max-width: 75%; } }
    @media screen and (max-width: 39.9375em) {
      .intro__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        margin: auto; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .intro__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) {
    .intro__content-img {
      width: 220px; } }
  .intro__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .intro__img {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .intro__img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
            -ms-flex: 0 0 75%;
                flex: 0 0 75%;
        max-width: 75%; } }
    @media screen and (max-width: 39.9375em) {
      .intro__img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .intro__img {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .intro__title {
    font-family: "Rubik-Light";
    color: #42454e;
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 24px 0 20px; }
    .intro__title--bold {
      font-weight: 700;
      letter-spacing: -0.4px; }
    @media print, screen and (min-width: 40em) {
      .intro__title {
        font-size: 2rem; }
        .intro__title br {
          display: none; } }
    @media screen and (max-width: 39.9375em) {
      .intro__title {
        font-size: 26px; } }
  .intro__subtitle {
    font-size: 1.5rem;
    color: #6e6e72;
    font-family: "Rubik-Light";
    margin: 26px 0 48px; }
    @media screen and (max-width: 39.9375em) {
      .intro__subtitle {
        font-size: 1.25rem; }
        .intro__subtitle br {
          display: none; } }
  .intro__line {
    width: 150px;
    height: 3px;
    background-color: #3366ff; }
  @media screen and (max-width: 63.9375em) {
    .intro__btn-wrap {
      text-align: left; } }
  .intro__list {
    padding-left: 0;
    list-style-type: none;
    margin: 25px 0 33px; }
  .intro__list-item {
    font-size: 20px;
    color: #42454e;
    margin: 19px 0; }
    @media screen and (max-width: 63.9375em) {
      .intro__list-item {
        font-size: 18px; } }
    @media screen and (max-width: 39.9375em) {
      .intro__list-item {
        font-size: 16px; } }
    .intro__list-item:before {
      content: url("../img/icons/checked-blue.png");
      display: inline-block;
      vertical-align: middle;
      margin-right: 8px;
      line-height: 1; }
    .intro__list-item.android-icon:before {
      content: url("../img/icons/android-icon.svg"); }
    .intro__list-item.arrow-icon:before {
      content: url("../img/icons/right-arrow-icon.svg"); }
    .intro__list-item.support-icon:before {
      content: url("../img/icons/settings-icon.svg"); }
  .intro__img-mobile {
    margin-bottom: 50px; }
  .intro__img-container {
    position: relative;
    min-height: 415px; }
  .intro__img-element {
    position: absolute;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .intro__img-element.element-1 {
      bottom: 35px;
      left: 51%;
      z-index: 3; }
    .intro__img-element.element-2 {
      bottom: 35px;
      left: 59%;
      z-index: 3; }
    .intro__img-element.element-3 {
      bottom: -3%;
      left: 0;
      z-index: 2; }
    .intro__img-element.element-4 {
      top: 25px;
      left: 30%;
      z-index: 1; }
    .intro__img-element.element-5 {
      top: 21%;
      left: 77%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 1; }

.solution {
  padding: 0 0 50px; }
  @media screen and (max-width: 74.9375em) {
    .solution {
      padding: 0 0 25px; } }
  .solution__list {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-top: 42px; }
  .solution__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    margin-bottom: 30px; }
    @media print, screen and (min-width: 40em) {
      .solution__item {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .solution__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        max-width: 50%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 63.9375em) and (min-width: 40em) {
    .solution__item {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .solution__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        text-align: center; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .solution__item {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .solution__item-inner {
    display: inline-block;
    position: relative; }
    .solution__item-inner:hover .solution__item-link-wrap {
      overflow: visible;
      opacity: 1; }
    .solution__item-inner:hover .solution__item-title {
      margin-bottom: 90px; }
    .solution__item-inner:hover .solution__item-content {
      bottom: 30px; }
  .solution__item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media screen and (max-width: 74.9375em) {
      .solution__item-content {
        bottom: 30px; } }
  .solution__item-title {
    font-size: 36px;
    font-family: "Rubik-Regular";
    color: #fff;
    text-transform: uppercase;
    line-height: 1.667;
    text-shadow: 0 0 6.44px rgba(0, 0, 0, 0.33);
    position: relative;
    text-align: center;
    display: inline-block;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .solution__item-title:after {
      content: "";
      width: 80px;
      height: 2px;
      background-color: #fff;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      bottom: 0; }
    @media screen and (max-width: 74.9375em) {
      .solution__item-title {
        margin-bottom: 30px; } }
  .solution__item-link-wrap {
    overflow: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media screen and (max-width: 74.9375em) {
      .solution__item-link-wrap {
        overflow: visible;
        opacity: 1; } }
  .solution__item-link {
    display: inline-block;
    font-size: 16px;
    padding: 12px 58px;
    text-align: center;
    background-color: #3d72eb;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .solution__item-link:hover {
      background-color: #1754de; }
  .solution--catalog {
    margin-top: 25px; }

.sl-products {
  padding-bottom: 80px; }
  @media screen and (max-width: 39.9375em) {
    .sl-products {
      padding-bottom: 40px;
      margin-top: 55px; } }
  @media screen and (min-width: 48.125em) {
    .sl-products + .order-form {
      margin: 35px auto 100px; } }
  .sl-products__list {
    max-width: 76.875rem;
    margin: 15px auto 0;
    cursor: pointer; }
    @media screen and (max-width: 63.9375em) {
      .sl-products__list {
        text-align: center; } }
  .sl-products__item {
    text-align: center;
    outline: none;
    border: 1px solid #e6e6e6;
    padding: 10px 10px 30px;
    margin: 15px 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    max-width: 280px;
    width: 100%; }
    .sl-products__item:hover {
      -webkit-box-shadow: 0 0 18.06px 2.94px rgba(0, 0, 0, 0.2);
              box-shadow: 0 0 18.06px 2.94px rgba(0, 0, 0, 0.2); }
    @media screen and (max-width: 39.9375em) {
      .sl-products__item {
        margin: 15px 10px 0; } }
    .sl-products__item.slick-slide {
      max-width: none; }
  .sl-products__img {
    margin-bottom: 20px;min-height: 250px; }
    .sl-products__img img {
      margin: auto; }
  .sl-products__price, .sl-products__item-title {
    font-size: 24px;
    line-height: 1.2; }
  .sl-products__item-title {
    color: #4c4d51;
    font-family: "Rubik-Light"; }
  .sl-products__price {
    color: #ff6900;
    font-family: "Rubik-Regular";
    margin: 13px 0; }
  .sl-products__link {
    display: inline-block;
    font-family: "GothamProLight";
    font-size: 16px;
    padding: 10px 40px;
    color: #fff;
    text-transform: uppercase;
    background-color: #3366ff;
    text-decoration: none;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .sl-products__link:hover {
      background-color: #0040ff; }

@media screen and (min-width: 39.9375em) {
.sl-products__item-title{min-height: 87px;}
}
@media screen and (max-width: 39.875em) {
.sl-products__item-title{min-height: 40px;}
}

.about__inner {
  max-width: 76.875rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.about__content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem; }
  @media print, screen and (min-width: 40em) {
    .about__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 74.9375em) {
    .about__content {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 50%;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%;
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 74.9375em) and (min-width: 40em) {
    .about__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) {
      .about__content {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 100%;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%;
      padding-right: 0.9375rem;
      padding-left: 0.9375rem;
      margin: 0 auto 30px; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .about__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

.about__video {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem; }
  @media print, screen and (min-width: 40em) {
    .about__video {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 74.9375em) {
    .about__video {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 50%;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%;
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 74.9375em) and (min-width: 40em) {
    .about__video {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) {
    .about__video {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 100%;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%;
      padding-right: 0.9375rem;
      padding-left: 0.9375rem;
      margin: auto; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .about__video {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

.about__title {
  font-family: "Rubik-Light";
  font-size: 2.625rem;
  color: #4c4d51;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 52px; }
  @media screen and (max-width: 48.0625em) {
  	.intro__btn, .landing-about .btn, .grid__content .grid__btn .btn, .sl-products__link, .open-quiz, .blog__link{display:block!important;}
    .about__title {
      font-size: 1.875rem;
      margin-bottom: 25px; } }

.about__descr {
  font-size: 1.125rem;
  font-family: "GothamProRegular";
  color: #666666;
  line-height: 1.667;
  position: relative;
  padding-left: 35px;
  padding-right: 100px; }
  @media screen and (max-width: 48.0625em) {
    .about__descr {
      padding-right: 0; } }
  .about__descr:before {
    content: "";
    height: 100%;
    width: 3px;
    background-color: #3d72eb;
    position: absolute;
    top: 0;
    left: 0; }

.about__list {
  list-style-type: none;
  padding-left: 0;
  margin: 0; }

.about__list-item {
  margin: 15px 0;
  position: relative;
  padding-left: 20px;
  line-height: 1.5; }
  .about__list-item:before {
    content: "";
    width: 7px;
    height: 7px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: #3d72eb;
    position: absolute;
    top: 8px;
    left: 0; }

.features {
  background-color: #f9f9f9;
  padding: 80px 0 80px;
  margin-top: 95px;
  margin-bottom: 83px; }
  @media screen and (max-width: 63.9375em) {
    .features {
      margin-bottom: 70px;
      padding: 40px 0 40px; } }
  @media screen and (max-width: 39.9375em) {
    .features {
      padding: 40px 0 25px;
      margin-top: 40px;
      margin-bottom: 45px; } }
  .features--landing {
    padding: 80px 0 120px; }
    @media screen and (max-width: 74.9375em) {
      .features--landing {
        margin: 45px 0;
        padding: 40px 0; } }
  .features--landing .features__list {
    margin-top: 32px;
    margin-bottom: 0; }
  .features--landing .features__item-inner {
    font-size: 16px;
    padding-left: 5px;
    padding-right: 0; }
    .features--landing .features__item-inner p {
      margin: 0; }
  .features--landing .features__item:nth-child(-n + 3) {
    margin-bottom: 85px; }
    @media screen and (max-width: 39.9375em) {
      .features--landing .features__item:nth-child(-n + 3) {
        margin-bottom: 35px; } }
  .features--landing .features__item:before {
    display: none; }
  .features--landing-shop .features__item:nth-child(5):before {
    content: url("../img/icons/shopping-bag.svg"); }
  .features--landing-coffee .features__item-inner {
    padding-right: 25px; }
  .features__title {
    text-align: center;
    font-family: "Rubik-Light";
    text-transform: uppercase;
    font-size: 42px;
    color: #4c4d51;
    margin-top: 0;
    line-height: 1.2; }
    @media screen and (max-width: 63.9375em) {
      .features__title {
        font-size: 2.25rem; } }
    @media screen and (max-width: 39.9375em) {
      .features__title {
        font-size: 1.875rem; } }
  .features__line {
    width: 130px;
    height: 2px;
    background-color: #3d72eb;
    margin: 35px auto 0; }
  .features__list {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-top: 60px;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none; }
    @media screen and (max-width: 39.9375em) {
      .features__list {
        margin-top: 30px; } }
  .features__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    position: relative; }
    @media print, screen and (min-width: 40em) {
      .features__item {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .features__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        max-width: 50%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 63.9375em) and (min-width: 40em) {
    .features__item {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .features__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        margin: 0 auto 35px; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .features__item {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    .features__item:before {
      position: absolute;
      top: 0;
      left: 15px;
      width: 60px;
      height: 60px; }
    .features__item:nth-child(-n + 3) {
      margin-bottom: 95px; }
      @media screen and (max-width: 39.9375em) {
        .features__item:nth-child(-n + 3) {
          margin-bottom: 35px; } }
    .features__item:nth-child(1):before {
      content: url("../img/features/settings.svg"); }
    .features__item:nth-child(2):before {
      content: url("../img/features/objective.svg"); }
    .features__item:nth-child(3):before {
      content: url("../img/features/android.svg"); }
    .features__item:nth-child(4):before {
      content: url("../img/features/design.svg"); }
    .features__item:nth-child(5):before {
      content: url("../img/features/shield.svg"); }
    .features__item:nth-child(6):before {
      content: url("../img/features/select.svg"); }
  .features__item-inner {
    padding-left: 85px;
    padding-right: 30px;
    font-size: 1.125rem; }
    @media screen and (max-width: 63.9375em) {
      .features__item-inner {
        padding-right: 25px; } }
    @media screen and (max-width: 39.9375em) {
      .features__item-inner {
        padding-right: 0; } }

.note {
  padding-bottom: 75px; }
  .note__row {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
  .note__title {
    text-transform: uppercase;
    font-size: 2.625rem;
    font-family: "Rubik-Light";
    color: #4c4d51;
    margin-bottom: 41px; }
    @media screen and (max-width: 63.9375em) {
      .note__title {
        font-size: 2.25rem; } }
    @media screen and (max-width: 39.9375em) {
      .note__title {
        font-size: 1.875rem;
        margin-bottom: 33px; } }
    .note__title .highlight {
      color: #ff6900;
      font-family: "Rubik-Regular";
      display: block; }
  .note__line {
    width: 130px;
    height: 2px;
    background-color: #3d72eb; }
  .note__inner {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
  .note__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .note__content {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .note__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
            -ms-flex: 0 0 83.33333%;
                flex: 0 0 83.33333%;
        max-width: 83.33333%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        margin: auto; } }
  @media screen and (max-width: 63.9375em) and (min-width: 40em) {
    .note__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .note__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .note__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .note__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    text-align: right; }
    @media print, screen and (min-width: 40em) {
      .note__img {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .note__img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
            -ms-flex: 0 0 83.33333%;
                flex: 0 0 83.33333%;
        max-width: 83.33333%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        margin: auto; } }
  @media screen and (max-width: 63.9375em) and (min-width: 40em) {
    .note__img {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .note__img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .note__img {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .note__list {
    padding: 0;
    list-style-type: none;
    margin-top: 72px; }
    @media screen and (max-width: 39.9375em) {
      .note__list {
        margin-top: 35px; } }
  .note__list-item {
    font-size: 1.125rem;
    font-family: "GothamProRegular";
    color: #666666;
    margin: 32px 0; }
    @media screen and (max-width: 39.9375em) {
      .note__list-item {
        font-size: 1rem;
        margin: 20px 0; } }
    .note__list-item:before {
      content: url("../img/arrow_right.svg");
      width: 20px;
      height: 20px;
      display: inline-block;
      margin-right: 25px;
      vertical-align: sub; }
      @media screen and (max-width: 39.9375em) {
        .note__list-item:before {
          width: 13px;
          height: 13px;
          margin-right: 12px; } }

.models {
  margin-bottom: 35px; }
  .models__row {
    padding-top: 57px;
    padding-bottom: 61px; }
    .models__row:nth-of-type(odd) {
      background-color: #f9f9f9; }
  .models__inner {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
  .models__slider {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .models__slider {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .models__slider {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        margin: auto; } }
  @media screen and (max-width: 63.9375em) and (min-width: 40em) {
    .models__slider {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .models__slider {
        padding-right: 0;
        padding-left: 0; } }
  .models__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .models__content {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .models__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
            -ms-flex: 0 0 83.33333%;
                flex: 0 0 83.33333%;
        max-width: 83.33333%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        margin: auto; } }
  @media screen and (max-width: 63.9375em) and (min-width: 40em) {
    .models__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .models__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .models__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .models__title {
    font-family: "Rubik-Light";
    font-size: 2.25rem;
    color: #4c4d51;
    margin-bottom: 10px;
    margin-top: 0; }
    @media screen and (max-width: 39.9375em) {
      .models__title {
        font-size: 1.875rem; } }
  .models__subtitle {
    font-family: "Rubik-Regular";
    font-size: 1.25rem;
    color: #6e6e72;
    line-height: 1.25;
    margin-top: 0;
    font-weight: normal; }
    @media screen and (max-width: 39.9375em) {
      .models__subtitle {
        font-size: 1.125rem; } }
  @media screen and (max-width: 63.9375em) {
    .models__btn-wrap {
      text-align: center;
      margin-top: 20px; } }
  .models__price {
    font-size: 1.875rem;
    font-family: "Rubik-Regular";
    color: #ff6900;
    margin-bottom: 10px; }
    @media screen and (max-width: 48.0625em) {
      .models__price {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 0; } }

.contact {
  margin-bottom: 100px;
  margin-top: 25px;
  padding: 0 15px; }
  @media screen and (max-width: 39.9375em) {
    .contact {
      margin-top: 0;
      margin-bottom: 50px; } }
  .contact--landing .contact__title {
    font-size: 36px;
    line-height: 1;
    color: #42454e;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    text-transform: none;
    margin: 0; }
  .contact--landing .contact__subtitle {
    font-size: 18px;
    line-height: 1.33;
    color: #42454e; }
  .contact--landing .contact__line {
    margin: 25px auto; }
  .contact__info {
    text-align: center; }
  .contact__title {
    font-family: "Rubik-Light";
    font-size: 2.625rem;
    color: #626262;
    text-transform: uppercase;
    margin-top: 25px; }
    @media screen and (max-width: 39.9375em) {
      .contact__title {
        font-size: 1.5rem; } }
  .contact__line {
    width: 200px;
    height: 2px;
    background-color: #3366ff;
    margin: 30px auto; }
    @media screen and (max-width: 39.9375em) {
      .contact__line {
        margin: 15px auto; } }
  .contact__subtitle {
    font-family: "Rubik-Regular";
    font-size: 1.5rem;
    color: #626262;
    max-width: 740px;
    margin: auto; }
    @media screen and (max-width: 39.9375em) {
      .contact__subtitle {
        font-size: 1.125rem; } }
    .contact__subtitle.light-style {
      font-family: "GothamProRegular"; }
  .contact__steps {
    max-width: 770px;
    margin: 30px auto 0; }
    @media screen and (max-width: 63.9375em) {
      .contact__steps {
        margin: 0 auto;
        width: 90%; } }

.actions {
  padding-top: 40px; }
  .actions__title {
    text-align: center;
    font-family: "Rubik-Light";
    color: #626262;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 0;
    line-height: 1.4;
    margin-bottom: 48px;
    padding: 0 15px; }
    @media screen and (max-width: 63.9375em) {
      .actions__title {
        font-size: 1.875rem; } }
    @media screen and (max-width: 39.9375em) {
      .actions__title {
        font-size: 1.5rem; } }
    .actions__title .highlight {
      text-transform: none;
      color: #3366ff;
      display: block; }
  .actions__inner {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .actions__inner:first-of-type {
      margin-bottom: 85px; }
  .actions__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .actions__content {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 63.9375em) {
      .actions__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        max-width: 50%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 63.9375em) and (min-width: 40em) {
    .actions__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .actions__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .actions__content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .actions__content-title {
    font-size: 30px;
    font-family: "Rubik-Medium";
    color: #ff6900;
    text-transform: uppercase;
    margin: 0; }
  .actions__content-subtitle {
    font-family: "Rubik-Regular";
    font-size: 1.5rem;
    color: #626262;
    margin: 0;
    line-height: 1.3; }
  .actions__content-descr {
    font-size: 1rem;
    font-family: "GothamProRegular";
    color: #6e6e72;
    line-height: 1.5; }
  .actions__line {
    width: 100px;
    height: 2px;
    background-color: #3366ff;
    margin: 30px 0; }
  .actions__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    text-align: right; }
    @media print, screen and (min-width: 40em) {
      .actions__img {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .actions__img {
        text-align: left;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
        margin-bottom: 25px; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .actions__img {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

.order-form {
  max-width: 900px;
  margin: 95px auto 100px;
  padding: 57px 70px;
  -webkit-box-shadow: 2.939px 4.045px 9.4px 0.6px rgba(0, 0, 0, 0.21);
          box-shadow: 2.939px 4.045px 9.4px 0.6px rgba(0, 0, 0, 0.21); }
  @media screen and (max-width: 63.9375em) {
    .order-form {
      margin: 55px 15px 70px;
      padding: 25px 20px; } }
  @media screen and (max-width: 39.9375em) {
    .order-form {
      margin: 35px 15px 50px;
      padding: 30px 25px; } }
  .order-form--landing {
    margin: auto; }
  .order-form__title {
    font-size: 1.875rem;
    font-family: "Rubik-Light";
    color: #3262d1;
    margin: 0; }
    @media screen and (max-width: 63.9375em) {
      .order-form__title {
        font-size: 1.625rem; } }
    @media screen and (max-width: 39.9375em) {
      .order-form__title {
        font-size: 1.375rem; } }
  .order-form__subtitle {
    font-size: 1.5rem;
    font-family: "Rubik-Light";
    color: #626262;
    margin: 3px 0 13px; }
    @media screen and (max-width: 63.9375em) {
      .order-form__subtitle {
        font-size: 1.25rem; } }
    @media screen and (max-width: 39.9375em) {
      .order-form__subtitle {
        font-size: 1.125rem; } }
  @media screen and (max-width: 48.0625em) {
    .order-form__form {
      text-align: center; } }

.footer {
  background-color: #f1f1f1;
  padding: 15px 0 15px;
  font-size: 16px;
  color: #383838;
  font-family: "GothamProRegular"; }
  @media screen and (max-width: 63.9375em) {
    .footer {
      text-align: center; } }
  .footer__link {
    text-decoration: none;
    color: #383838;
    border-bottom: 1px solid #d8d2d2;
    padding-bottom: 1px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    white-space: nowrap; }
    .footer__link:hover {
      color: #3262d1;
      opacity: 0.7; }
    .footer__link.email-link:before {
      content: url("../img/icons/envelope.svg");
      margin-right: 6px;
      line-height: 1;
      vertical-align: middle; }
    .footer__link.phone-link:before {
      content: url("../img/icons/call-answer.svg");
      margin-right: 6px;
      line-height: 1;
      vertical-align: middle; }
    @media screen and (max-width: 39.9375em) {
      .footer__link {
        display: block;
        border-bottom: 0; }
        .footer__link:first-child {
          margin-top: 25px; }
        .footer__link.designer {
          display: inline-block; } }
  .footer__inner {
    max-width: 76.875rem;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
  .footer__left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .footer__left {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .footer__left {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
        margin-bottom: 25px; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .footer__left {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .footer__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
    @media print, screen and (min-width: 40em) {
      .footer__right {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
      .footer__right {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .footer__right {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .footer__nav {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0 0; }
    .footer__nav li {
      display: inline-block; }
      @media screen and (max-width: 39.9375em) {
        .footer__nav li {
          display: block; } }
      .footer__nav li:last-of-type a:after {
        content: none; }
      .footer__nav li a {
        color: #383838;
        text-decoration: none;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        display: inline-block; }
        .footer__nav li a:after {
          content: "|";
          display: inline-block;
          vertical-align: middle;
          margin-left: 7px; }
          @media screen and (max-width: 39.9375em) {
            .footer__nav li a:after {
              display: none; } }
        .footer__nav li a:hover {
          color: #3262d1; }
  .footer__designed {
    margin-top: 20px;
    background-color: #ececec;
    padding: 10px 0; }
  .footer__socials {
    text-align: right; }
    @media screen and (max-width: 63.9375em) {
      .footer__socials {
        text-align: center;
        margin-top: 25px; } }
  .footer__socials-link {
    margin-left: 7px; }
  .footer__heading {
    text-transform: uppercase; }

.blog {
  margin-bottom: 100px;
  margin-top: 38px; }
  @media screen and (max-width: 39.9375em) {
    .blog {
      margin-bottom: 50px; } }
  .blog__item {
    margin-bottom: 52px; }
  .blog__thumb {
    display: inline-block;
    text-decoration: none;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 0 8.6px 1.4px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 8.6px 1.4px rgba(0, 0, 0, 0.2); }
    .blog__thumb:hover {
      opacity: 0.7; }
  .blog__heading, .rec-post__heading {
    margin-bottom: 40px;
    margin-top: 0;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.4px;
    color: #42454e;
    font-family: "Rubik-Light"; }
    .blog__heading:after, .rec-post__heading:after {
      content: "";
      width: 100px;
      height: 3px;
      background-color: #3d72eb;
      margin-top: 25px;
      display: block; }
  @media screen and (max-width: 63.9375em) {
    .blog__content {
      padding-top: 20px; } }
  .blog__title {
    font-size: 26px;
    line-height: 1;
    color: #42454e;
    margin-bottom: 21px;
    margin-top: 8px;
    text-decoration: none;
    display: block; }
    .blog__title:hover {
      color: #3d72eb; }
  .blog__date, .rec-post__date, .sngl-post__date {
    color: #999999;
    font-size: 12px;
    margin-bottom: 15px; }
  .blog__excerpt, .rec-post__excerpt {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 35px; }

.sngl-post {
  max-width: 76.875rem;
  margin: auto; }
  .sngl-post__thumb {
    text-align: center; }
  .sngl-post__content {
    background-color: #fff;
    position: relative;
    padding: 25px 115px 47px 100px;
    -webkit-border-radius: 10px;
            border-radius: 10px;
    -webkit-box-shadow: 0 0 11.2px 1.8px rgba(0, 0, 0, 0.11);
            box-shadow: 0 0 11.2px 1.8px rgba(0, 0, 0, 0.11);
    top: -150px;
    margin-bottom: -150px; }
    @media screen and (max-width: 63.9375em) {
      .sngl-post__content {
        padding: 25px 70px 47px 70px; } }
    @media screen and (max-width: 39.9375em) {
      .sngl-post__content {
        top: -50px;
        margin-bottom: -50px;
        padding: 25px 20px 27px; } }
  .sngl-post__date {
    text-align: right; }
  .sngl-post__title {
    font-size: 36px;
    line-height: 1.17;
    color: #42454e;
    position: relative;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px; }
    .sngl-post__title:after {
      content: "";
      width: 100px;
      height: 3px;
      background-color: #3d72eb;
      margin-top: 25px;
      display: block;
      margin: 32px auto 0; }
      @media screen and (max-width: 39.9375em) {
        .sngl-post__title:after {
          margin: 20px auto 0; } }
    @media screen and (max-width: 39.9375em) {
      .sngl-post__title {
        font-size: 26px;
        margin-bottom: 20px; } }
  .sngl-post p {
    line-height: 1.5;
    font-size: 16px;
    margin: 20px 0; }
  .sngl-post h2 {
    font-size: 24px;
    line-height: 1;
    color: #42454e;
    margin: 30px 0 23px;
    font-family: "Rubik-Regular"; }
  .sngl-post ul {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0; }
    .sngl-post ul li {
      font-size: 16px;
      margin: 23px 0;
      position: relative;
      padding-left: 20px; }
      .sngl-post ul li:before {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #3366ff;
        position: absolute;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        top: 8px;
        left: 0; }

.page {
  margin-top: 35px; }
  .page__rec-post {
    margin-bottom: 93px; }
  .page__sngl-post {
    margin-bottom: 62px; }

.toolbar__row {
  border-bottom: 1px solid #dadada;
  padding: 14px 0; }

.toolbar__reccomend-title {
  font-size: 18px;
  color: #ffffff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background-color: #ff8400;
  display: inline-block;
  padding: 3px 9px;
  line-height: 1; }

.toolbar__reccomend-list {
  margin-top: 15px;display: flex;
    justify-content: space-between; }

.toolbar__reccomend-item {
  display: inline-block;
  text-align: center; }
  .toolbar__reccomend-item:last-child {
    margin-right: 0; }

.toolbar__reccomend-item-title {
  font-size: 14px;
  color: #303030;
  margin-top: 10px; }

.toolbar__code-instock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }

.toolbar__code {
  font-size: 14px;
  color: #6e6e72; }

.toolbar__instock {
  color: #0dbe00;
  font-size: 14px; }
  .toolbar__instock:before {
    content: url("../img/icons/checked.svg");
    margin-right: 2px;
    display: inline-block;
    line-height: 1;
    vertical-align: middle; }

.toolbar__not-available {
  color: #d42e2e;
  font-size: 14px; }

.toolbar__stars {
  margin-right: 18px;
  display: inline-block;
  line-height: 0.6;
  vertical-align: text-top; }

.toolbar__rating {
  font-size: 14px;
  color: #3366ff;
  vertical-align: middle; }

.toolbar__rating-link {
  color: #606060; }
  .toolbar__rating-link:hover {
    color: #ff6900; }

.toolbar__software-title {
  font-size: 16px;
  color: #303030; }

.toolbar__software-table {
  width: 100%;
  margin-top: 8px; }
  .toolbar__software-table td:nth-child(1) {
    width: 55%; }
    @media screen and (max-width: 39.9375em) {
      .toolbar__software-table td:nth-child(1) {
        width: 60%; } }
  .toolbar__software-table td:nth-child(2) {
    width: 45%;
    text-align: right; }
    @media screen and (max-width: 39.9375em) {
      .toolbar__software-table td:nth-child(2) {
        width: 40%; } }
  .toolbar__software-table label {
    margin-left: 7px;
    font-size: 14px; }
  .toolbar__software-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    background-color: #fff;
    display: inline-block;
    vertical-align: middle;
    -webkit-border-radius: 2px;
            border-radius: 2px; }

.toolbar__price {
  font-size: 30px;
  color: #ff6900;
  font-family: "Rubik-Medium";
  display: inline-block;
  margin-right: 25px;
  vertical-align: middle; }
  @media screen and (max-width: 39.9375em) {
    .toolbar__price {
      margin-bottom: 10px; } }

.toolbar__btn {
  padding: 14px 40px;
  line-height: 1; }

.info {
  padding-left: 0;
  list-style-type: none;
  margin: 0; }
  .info__item {
    padding: 13px 15px 13px 30px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    background-color: #f9f9f9;
    margin-bottom: 10px; }
  .info__item-title {
    font-size: 18px;
    color: #303030;
    margin-bottom: 5px; }
    .info__item-title img {
      margin-right: 5px;
      vertical-align: baseline; }
  .info__item-descr {
    color: #606060;
    line-height: 1.5; }

.upsell {
  margin-top: 50px; }
  .upsell__title {
    text-align: center;
    font-family: "Rubik-Light";
    text-transform: uppercase;
    font-size: 30px;
    color: #4c4d51;
    margin-top: 0;
    margin-bottom: 25px; }
    @media screen and (max-width: 63.9375em) {
      .upsell__title {
        font-size: 36px; } }
    @media screen and (max-width: 39.9375em) {
      .upsell__title {
        font-size: 30px;
        line-height: 1.2; } }
  .upsell__inner {
    max-width: 76.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    padding: 0 15px; }
  .upsell__item {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 75px 0 55px;
    border: 1px solid #dadada; }
    @media screen and (max-width: 39.9375em) {
      .upsell__item {
        padding: 32px 0 27px; } }
  .upsell__block {
    position: relative; }
    @media screen and (max-width: 39.9375em) {
      .upsell__block {
        margin-bottom: 50px; } }
    .upsell__block:after {
      font-size: 48px;
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
      @media screen and (max-width: 39.9375em) {
        .upsell__block:after {
          right: 50%;
          top: 90%;
          -webkit-transform: translateY(0);
              -ms-transform: translateY(0);
                  transform: translateY(0); } }
    .upsell__block.plus:after {
      content: "+"; }
    .upsell__block.equal:after {
      content: "="; }
  .upsell__block-content {
    line-height: 1.5;
    padding-right: 50px; }
    @media screen and (max-width: 48.0625em) {
      .upsell__block-content {
        padding-right: 25px; } }
    @media screen and (max-width: 39.9375em) {
      .upsell__block-content {
        padding-right: 0; } }
  .upsell__new-price {
    font-size: 18px;
    color: #ff6900;
    font-family: "Rubik-Medium";
    margin-top: 17px;
    margin-bottom: 7px; }
  .upsell__old-price {
    font-size: 14px;
    font-family: "Rubik-Light";
    color: #606060;
    text-decoration: line-through; }
  .upsell__general-price {
    font-size: 30px;
    color: #ff6900;
    line-height: 0.8;
    font-family: "Rubik-Medium";
    margin-bottom: 17px; }
    @media screen and (max-width: 48.0625em) {
      .upsell__general-price {
        margin-top: 15px; } }

.device-spec {
  width: 100%;
  border-collapse: collapse; }
  .device-spec tr {
    border-bottom: 1px solid #cdcdcd; }
    .device-spec tr:last-child {
      border-bottom: 0; }
  .device-spec td {
    padding: 15px 0; }
    .device-spec td:nth-child(1) {
      width: 50%;
      font-size: 16px;
      color: #4c4d51; }
    .device-spec td:nth-child(2) {
      width: 50%;
      font-size: 14px;
      font-family: "Rubik-Medium";
      color: #4c4d51; }

.tabs__soft {
  padding: 35px 0;
  border-bottom: 1px solid #dadada; }
  .tabs__soft:last-child {
    border-bottom: 0; }

.tabs__soft-title {
  font-size: 24px;
  color: #303030; }

@media screen and (max-width: 39.9375em) {
  .tabs__soft-image {
    margin-bottom: 20px; } }

.sngl-card__title {
  font-size: 36px;
  font-family: "Rubik-Light";
  margin-top: 12px;
  margin-bottom: 17px;
  line-height: 1.2; }

@media screen and (min-width: 39.9375em) and (max-width: 48.0625em) {
.toolbar__reccomend-item-title{font-size: 12px;}
.toolbar__reccomend-item{margin-right: 10px;}
.toolbar .toolbar__btn{display:block!important;}
}

@media screen and (max-width: 39.9375em) {
  .sngl-card__info, .sngl-card__toolbar {
    margin: 25px 0; } 
  .toolbar .toolbar__btn{display:block!important;}
  }
 @media screen and (max-width: 400px) {
 .toolbar__reccomend-item-title{font-size: 12px;}
.toolbar__reccomend-item{margin-right: 12px;}
 } 
 

@media screen and (max-width: 48.0625em) {
  .sngl-card__info {
    margin: 35px 0 0; } }

.sngl-card__tabs {
  margin-bottom: 20px; }

.landing-about {
  margin: 110px 0 107px; }
  @media screen and (max-width: 39.9375em) {
    .landing-about {
      margin: 25px 0 52px; } }
  .landing-about__title {
    font-family: "Rubik-Medium";
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: -0.4px;
    color: #42454e;
    margin: 0; }
    @media screen and (max-width: 63.9375em) {
      .landing-about__title {
        font-size: 32px; } }
    @media screen and (max-width: 39.9375em) {
      .landing-about__title {
        font-size: 28px; } }
  .landing-about__subtitle {
    font-size: 18px;
    line-height: 1.67;
    margin-bottom: 30px;
    padding-right: 50px; }
  .landing-about__line {
    width: 75px;
    height: 3px;
    background-color: #3366ff;
    margin: 38px 0; }
  @media screen and (max-width: 39.9375em) {
    .landing-about__list {
      margin-top: 40px; } }
  .landing-about__item {
    border: solid 1px #ffffff;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 21.8px 2.2px rgba(0, 0, 0, 0.06);
            box-shadow: 0 10px 21.8px 2.2px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    padding: 30px 30px 40px; }
    .landing-about__item:last-child {
      margin-bottom: 0; }
    .landing-about__item p {
      margin: 0; }
  @media screen and (max-width: 48.0625em) {
    .landing-about__item-img {
      margin-bottom: 20px; } }

.landing-advantages {
  max-width: 76.875rem;
  margin: auto;
  padding: 0 15px 80px; }
  .landing-advantages.is_archive_terminal_page {
    padding: 0 15px 0; }
  .landing-advantages__title {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
    color: #42454e;
    font-family: "Rubik-Medium"; }
    @media screen and (max-width: 39.9375em) {
      .landing-advantages__title {
        font-size: 24px; } }
    .landing-advantages__title:after {
      content: "";
      width: 100px;
      height: 3px;
      background-color: #3366ff;
      margin: auto;
      display: block;
      margin-top: 30px; }
  .landing-advantages__content {
    max-width: 970px;
    margin: auto; }
    .landing-advantages__content ul {
      list-style-type: none;
      padding-left: 0; }
      .landing-advantages__content ul li {
        position: relative;
        padding-left: 20px;
        margin: 7px 0; }
        .landing-advantages__content ul li:before {
          content: "";
          width: 7px;
          height: 7px;
          background-color: #3366ff;
          -webkit-border-radius: 50%;
                  border-radius: 50%;
          position: absolute;
          top: 9px;
          left: 0; }

.landing-task {
  margin-bottom: 120px; }
  @media screen and (max-width: 63.9375em) {
    .landing-task {
      margin-bottom: 50px; } }
  @media screen and (max-width: 39.9375em) {
    .landing-task {
      margin-bottom: 25px; } }
  .landing-task__title {
    font-size: 36px;
    font-family: "Rubik-Medium";
    color: #42454e;
    line-height: 1;
    margin-top: 0; }
  .landing-task__list {
    padding-left: 0;
    list-style-type: none;
    margin: 48px 0 0; }
    @media screen and (max-width: 63.9375em) {
      .landing-task__list {
        margin: 25px 0 0; } }
  .landing-task__item {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    padding-right: 50px; }
    @media screen and (max-width: 63.9375em) {
      .landing-task__item {
        padding-right: 0; } }
    .landing-task__item:last-child {
      margin-bottom: 0; }
  .landing-task__item-title {
    line-height: 1.33;
    font-size: 18px;
    font-family: "GothamProMedium";
    color: #3366ff;
    margin-bottom: 10px; }
  .landing-task__img-wrap {
    text-align: right; }
    @media screen and (max-width: 39.9375em) {
      .landing-task__img-wrap {
        margin-top: 25px;
        text-align: left; } }

.landing-model {
  padding-top: 70px; }
  @media screen and (max-width: 39.9375em) {
    .landing-model {
      padding-top: 50px; } }
  .landing-model strong.block {
    display: block;
    color: #42454e; }
  .landing-model strong.icon-pointer:before {
    content: "";
    width: 21px;
    height: 21px;
    background-image: url("../img/icons/finger-down.png");
    background-repeat: no-repeat;
    -webkit-background-size: contain;
            background-size: contain;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle; }
  .landing-model__item {
    margin-top: 50px;
    border-top: 1px solid #e6e6e6;
    padding-top: 45px; }
    .landing-model__item:nth-child(odd) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
  .landing-model__content {
    padding-right: 30px; }
    @media screen and (max-width: 63.9375em) {
      .landing-model__content {
        margin-top: 30px;
        padding-right: 0; } }
  .landing-model__text p {
    margin: 10px 0; }
  .landing-model__text ul,
  .landing-model__text ol {
    list-style-type: none;
    padding-left: 0; }
    .landing-model__text ul li,
    .landing-model__text ol li {
      padding-left: 22px;
      position: relative;
      margin: 13px 0; }
      .landing-model__text ul li:before,
      .landing-model__text ol li:before {
        content: url("../img/icons/checked-blue-circle.png");
        position: absolute;
        top: 3px;
        left: 0; }
  .landing-model__title {
    font-size: 20px;
    line-height: 1;
    color: #3366ff;
    font-family: "Rubik-Medium";
    margin-bottom: 16px; }
  .landing-model__software {
    margin: 20px 0; }
    .landing-model__software .block {
      display: block;
      margin-bottom: 13px; }
  .landing-model__sofware-item {
    display: inline-block;
    margin-right: 15px; }
    .landing-model__sofware-item:last-child {
      margin-right: 0; }
  .landing-model__price-block {
    margin: 20px 0; }
    .landing-model__price-block .block {
      display: block; }
  .landing-model__price {
    color: #ff6900;
    font-size: 24px;
    line-height: 1;
    font-family: "GothamProMedium";
    margin-top: 10px; }
  .landing-model__include {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6; }
  .landing-model__include-item {
    text-align: center;
    position: relative; }
    .landing-model__include-item.last:after {
      content: none; }
    .landing-model__include-item:after {
      content: "+";
      font-size: 30px;
      color: #ff6900;
      position: absolute;
      top: 25%;
      right: -25px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
      @media screen and (max-width: 39.9375em) {
        .landing-model__include-item:after {
          top: 30%;
          right: -10px; } }
  .landing-model__include-text {
    font-family: "GothamProMedium";
    color: #42454e;
    margin-top: 7px; }
    @media screen and (max-width: 39.9375em) {
      .landing-model__include-text {
        font-size: 12px; } }
  .landing-model__video {
    margin-top: 17px; }
  .landing-model__dropcontent {
    display: none; }
  .landing-model__dropbtn {
    color: #3366ff;
    font-family: "GothamProMedium";
    margin-top: 11px;
    cursor: pointer; }
    .landing-model__dropbtn:after {
      content: "";
      width: 11px;
      height: 8px;
      background-image: url("../img/icons/arrow-down.png");
      background-repeat: no-repeat;
      -webkit-background-size: contain;
              background-size: contain;
      display: inline-block;
      margin-left: 4px;
      vertical-align: middle;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .landing-model__dropbtn.is-active:after {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }

.landing-plan {
  background-color: #fbfbfb;
  padding: 84px 0 105px; }
  @media screen and (max-width: 39.9375em) {
    .landing-plan {
      padding: 42px 0 52px; } }
  .landing-plan__title {
    margin-top: 0;
    margin-bottom: 35px;
    color: #3366ff;
    line-height: 1;
    font-size: 36px;
    font-family: "Rubik-Medium"; }
  .landing-plan__item {
    -webkit-box-shadow: 0 10px 21.8px 2.2px rgba(0, 0, 0, 0.06);
            box-shadow: 0 10px 21.8px 2.2px rgba(0, 0, 0, 0.06);
    padding: 50px 85px 42px 62px; }
    @media screen and (max-width: 39.9375em) {
      .landing-plan__item {
        margin-bottom: 25px; } }
    @media screen and (max-width: 39.9375em) {
      .landing-plan__item {
        padding: 25px 20px 22px 15px; } }
  .landing-plan__item-title {
    line-height: 1;
    color: #42454e;
    font-size: 24px;
    font-family: "Rubik-Medium";
    margin-bottom: 40px; }
  .landing-plan__list {
    list-style-type: none;
    padding-left: 0; }
  .landing-plan__list-item {
    color: #42454e;
    line-height: 1.5;
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px; }
    .landing-plan__list-item:last-child {
      margin-bottom: 0; }
    .landing-plan__list-item:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 0;
      display: block;
      width: 19px;
      height: 19px; }
    .landing-plan__list-item.checked:before {
      content: url("../img/icons/checked-yellow.svg"); }
    .landing-plan__list-item.error:before {
      content: url("../img/icons/error.svg"); }

.landing-steps {
  background-color: #f9f9f9;
  padding: 71px 0;
  margin: 94px 0 84px; }
  @media screen and (max-width: 39.9375em) {
    .landing-steps {
      padding: 41px 0;
      margin: 45px 0 42px; } }
  .landing-steps__list {
    margin-top: 34px; }
  .landing-steps__item {
    border: solid 1px #e6e6e6;
    background-color: #fff;
    border-bottom: 3px solid #3366ff;
    text-align: center;
    padding: 54px 42px 38px;
    position: relative; }
    @media screen and (max-width: 63.9375em) {
      .landing-steps__item {
        margin-bottom: 25px; } }
    .landing-steps__item:after {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 8px 0 8px 12px;
      border-color: transparent transparent transparent #3366ff;
      position: absolute;
      top: 50%;
      right: -23px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
      @media screen and (max-width: 63.9375em) {
        .landing-steps__item:after {
          display: none; } }
    .landing-steps__item.last:after {
      content: none; }
  .landing-steps__text {
    line-height: 1.33;
    color: #42454e;
    font-family: "Rubik-Medium";
    margin-top: 35px; }
  .landing-steps__num {
    font-size: 30px;
    color: #ff9811;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 16px; }

.landing-section {
  padding: 0 15px; }
  .landing-section__title {
    font-size: 36px;
    line-height: 1;
    color: #42454e;
    font-family: "Rubik-Medium";
    margin: 0; }
    @media screen and (max-width: 39.9375em) {
      .landing-section__title {
        font-size: 28px; } }
    .landing-section__title.with-line {
      margin-bottom: 30px; }
      .landing-section__title.with-line:after {
        content: "";
        display: block;
        width: 120px;
        margin: auto;
        height: 3px;
        margin-top: 23px;
        background-color: #3366ff; }
  .landing-section__descr {
    font-size: 18px;
    line-height: 1.33;
    color: #42454e;
    max-width: 755px;
    margin: auto; }
  .landing-section__uppertext {
    color: #3366ff;
    text-transform: uppercase;
    font-family: "GothamProMedium";
    margin-bottom: 22px; }
  .landing-section__lowertext {
    color: #3366ff;
    text-transform: uppercase;
    font-family: "GothamProMedium";
    margin-top: 10px; }

.landing-order-form {
  background-color: #f9f9f9;
  padding: 111px 0 101px; }

.landing-cloudshop {
  margin-bottom: 100px; }
  .landing-cloudshop__list {
    margin-top: 60px;
    margin-bottom: -32px; }
    .landing-cloudshop__list > div {
      text-align: center; }
  .landing-cloudshop__item {
    margin-bottom: 32px;
    display: inline-block;
    position: relative; }
    .landing-cloudshop__item:hover .landing-cloudshop__back {
      opacity: 1;
      visibility: visible; }
  .landing-cloudshop__img {
    -webkit-border-top-left-radius: 5px;
            border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
            border-top-right-radius: 5px; }
  .landing-cloudshop__title {
    font-size: 20px;
    line-height: 1.1;
    padding: 19px 0;
    color: #42454e;
    font-family: "Rubik-Medium";
    text-align: center;
    text-transform: uppercase;
    -webkit-box-shadow: 0px 10px 21.8px 2.2px rgba(0, 0, 0, 0.06);
            box-shadow: 0px 10px 21.8px 2.2px rgba(0, 0, 0, 0.06);
    border: solid 1px #e6e6e6;
    -webkit-border-bottom-left-radius: 5px;
            border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
            border-bottom-right-radius: 5px; }
  .landing-cloudshop__back {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 0;
    left: 0;
    list-style-type: none;
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 30px; }
  .landing-cloudshop__entry {
    font-size: 16px;
    color: #42454e;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px; }
    .landing-cloudshop__entry:last-child {
      margin-bottom: 0; }
    .landing-cloudshop__entry:before {
      content: "";
      width: 18px;
      height: 14px;
      background-image: url("../img/icons/checked-blue.png");
      background-repeat: no-repeat;
      -webkit-background-size: contain;
              background-size: contain;
      position: absolute;
      top: 4px;
      left: 0; }

.landing-price {
  background-color: #f9f9f9;
  padding: 75px 0; }
  .landing-price__desc {
    font-size: 16px;
    color: #3366ff;
    line-height: 1.5;
    font-family: "GothamProMedium";
    max-width: 280px;
    margin: 23px auto 0;
    text-transform: uppercase; }
  .landing-price__list {
    margin-top: 23px; }
    @media screen and (max-width: 63.9375em) {
      .landing-price__list .column {
        margin-bottom: 25px; }
        .landing-price__list .column:last-child {
          margin-bottom: 0; } }

.landing-complex {
  padding: 90px 0 0; }
  .landing-complex__item {
    -webkit-border-radius: 20px;
            border-radius: 20px;
    border: solid 2px #ff8a00;
    padding: 31px 40px 42px;
    margin-top: 44px;
    margin-bottom: 49px; }
    @media screen and (max-width: 63.9375em) {
      .landing-complex__item {
        padding: 31px 0 50px; } }
    .landing-complex__item .column {
      position: relative; }
      @media screen and (max-width: 39.9375em) {
        .landing-complex__item .column:nth-of-type(2) {
          padding: 50px 0; } }
      .landing-complex__item .column:nth-of-type(2):before, .landing-complex__item .column:nth-of-type(2):after {
        content: "";
        background-image: url("../img/icons/plus-icon.png");
        background-repeat: no-repeat;
        -webkit-background-size: contain;
                background-size: contain;
        width: 47px;
        height: 47px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); }
        @media screen and (max-width: 63.9375em) {
          .landing-complex__item .column:nth-of-type(2):before, .landing-complex__item .column:nth-of-type(2):after {
            width: 37px;
            height: 37px; } }
      .landing-complex__item .column:nth-of-type(2):before {
        left: -36px; }
        @media screen and (max-width: 39.9375em) {
          .landing-complex__item .column:nth-of-type(2):before {
            left: 50%;
            top: 10%;
            -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%); } }
      .landing-complex__item .column:nth-of-type(2):after {
        right: -36px; }
        @media screen and (max-width: 39.9375em) {
          .landing-complex__item .column:nth-of-type(2):after {
            left: 50%;
            top: 95%;
            -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%); } }
  .landing-complex__block {
    text-align: center; }
  .landing-complex__title {
    font-size: 18px;
    color: #42454e;
    line-height: 1.33;
    font-family: "Rubik-Medium";
    max-width: 120px;
    margin: 22px auto 0; }
  .landing-complex__row {
    margin-bottom: 31px; }
    .landing-complex__row:last-child {
      margin-bottom: 0; }
  .landing-complex__heading {
    font-size: 20px;
    text-transform: uppercase;
    color: #3366ff;
    font-family: "GothamProMedium";
    margin-top: 15px; }
    @media screen and (max-width: 39.9375em) {
      .landing-complex__heading {
        margin-top: 0;
        margin-bottom: 10px; } }
  .landing-complex__desc {
    line-height: 1.5;
    font-size: 16px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px #e6e6e6;
    padding: 21px 33px 35px; }
    @media screen and (max-width: 39.9375em) {
      .landing-complex__desc {
        padding: 20px 20px 30px; } }

.landing-reviews {
  background-color: #f9f9f9;
  padding-top: 65px;
  padding-bottom: 75px;
  margin-bottom: 25px; }
  .landing-reviews__list {
    max-width: 1170px;
    margin: 58px auto 0;
    padding: 0 15px 32px; }
    @media screen and (max-width: 39.9375em) {
      .landing-reviews__list {
        margin: 30px auto 0; } }
  .landing-reviews__item {
    -webkit-border-radius: 10px;
            border-radius: 10px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px #dadada;
    padding: 45px 65px 62px;
    margin: 0 15px;
    background-color: #fff; }
    @media screen and (max-width: 63.9375em) {
      .landing-reviews__item {
        padding: 25px 15px 31px; } }
    @media screen and (max-width: 39.9375em) {
      .landing-reviews__item {
        margin: 0; } }
  .landing-reviews__title {
    font-size: 18px;
    text-transform: uppercase;
    color: #42454e;
    font-family: "Rubik-Medium";
    position: relative;
    padding: 5px 0 0 46px;
    margin-bottom: 20px;
    min-height: 59px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .landing-reviews__title:before {
      content: "";
      width: 33px;
      height: 33px;
      background-image: url("../img/icons/quote-icon.png");
      -webkit-background-size: contain;
              background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 0; }
  .landing-reviews__desc {
    line-height: 1.5; }
  .landing-reviews__adress {
    font-family: "Rubik-Medium";
    line-height: 1.5;
    margin-top: 20px;
    position: relative;
    padding-left: 30px; }
    .landing-reviews__adress:before {
      content: "";
      width: 17px;
      height: 17px;
      background-image: url("../img/icons/map-icon.png");
      -webkit-background-size: contain;
              background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      top: 3px;
      left: 0; }
  .landing-reviews__morelink {
    color: #3366ff;
    margin-top: 10px;
    display: inline-block;
    outline: 0; }

.hero .slick-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .hero .slick-arrow:hover {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1); }
  .hero .slick-arrow.slick-prev {
    left: 30px;
    background-image: url("../img/page-home/arrow-left.svg"); }
    .hero .slick-arrow.slick-prev:before {
      display: none; }
  .hero .slick-arrow.slick-next {
    right: 30px;
    background-image: url("../img/page-home/arrow-right.svg"); }
    .hero .slick-arrow.slick-next:before {
      display: none; }

.hero__slide {
  height: 600px;
  position: relative;
  background-position: center;
  /* background-position-x: 50%; */
  -webkit-background-size: cover;
          background-size: cover; }
  /* @media screen and (max-width: 767.9px) {
    .hero__slide {
      background-position-x: 0%; } }
  @media screen and (max-width: 639.9px) {
    .hero__slide {
      background-position-y: 100%; } } */

.hero__row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 767.9px) {
    .hero__row {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding-top: 20px; } }

.hero__logo {
  margin-bottom: 20px; }

.hero__title {
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Rubik-Bold";
  margin-bottom: 20px; }
  @media screen and (max-width: 1023.9px) {
    .hero__title {
      font-size: 30px; } }
  @media screen and (max-width: 767.9px) {
    .hero__title {
      font-size: 24px; } }

.hero__subtitle {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  max-width: 575px; }
  @media screen and (max-width: 767.9px) {
    .hero__subtitle {
      font-size: 15px; } }

.hero__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 40px; }

.hero__meta-block {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33%;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 10px;
  text-align: center; }
  @media screen and (max-width: 767.9px) {
    .hero__meta-block {
      padding: 0; } }

.hero__meta-img {
  margin: auto; }

.hero__meta-title {
  font-size: 15px;
  color: #fff;
  max-width: 75%;
  margin: 22px auto 0; }
  @media screen and (max-width: 767.9px) {
    .hero__meta-title {
      max-width: 100%;
      font-size: 13px;
      margin: 11px auto 0; } }
  @media screen and (max-width: 359.9px) {
    .hero__meta-title {
      font-size: 12px; } }

.reasons {
  padding-top: 105px;
  padding-bottom: 63px;
  background-image: url("../img/page-home/pattern.svg");
  background-repeat: no-repeat;
  background-position: 83% 5%; }
  @media screen and (max-width: 767.9px) {
    .reasons {
      background-image: none;
      padding-top: 30px;
      padding-bottom: 30px; } }
  .reasons__title,.reasons__title h1 {
    font-size: 36px;
    color: #333333;
    text-transform: uppercase;
    font-family: "Rubik-Bold";
    line-height: 1.3; }
    @media screen and (max-width: 1023.9px) {
      .reasons__title, .reasons__title h1 {
        font-size: 30px; } }
    @media screen and (max-width: 767.9px) {
      .reasons__title, .reasons__title h1 {
        font-size: 24px; text-align:center; } }
    .reasons__title span {
      font-size: 60px;
      color: #3366ff;
      display: block;
      line-height: 1.2; }
      @media screen and (max-width: 1023.9px) {
        .reasons__title span {
          font-size: 46px; } }
      @media screen and (max-width: 767.9px) {
        .reasons__title span {
          font-size: 36px; } }
  .reasons__list {
    margin-top: 25px; }
    @media screen and (max-width: 767.9px) {
      .reasons__list {
        margin-top: 0; } }
  .reasons__item {
    margin-top: 38px; }

.reason-item {
  text-align: center; }
  .reason-item__title {
    margin-top: -5px;
    margin-bottom: 15px;
    color: #333333;
    font-family: "Rubik-Bold"; }
    @media screen and (max-width: 767.9px) {
      .reason-item__title {
        font-size: 14px; } }
  .reason-item__desc {
    font-size: 15px;
    color: #606060; }
    @media screen and (max-width: 767.9px) {
      .reason-item__desc {
        font-size: 13px; } }

.block__title {
  font-size: 36px;
  line-height: 1.3;
  color: #333333;
  text-transform: uppercase;
  font-family: "Rubik-Bold"; }
  @media screen and (max-width: 1023.9px) {
    .block__title {
      font-size: 30px; } }
  @media screen and (max-width: 767.9px) {
    .block__title {
      font-size: 24px; } }

.block__subtitle {
  font-size: 16px;
  color: #3366ff;
  text-transform: uppercase; }
  .block__subtitle--accent {
    color: #ff6900; }

.block--center {
  text-align: center; }
  
 .f-category {
  background: #f7f7f7;
  padding-bottom: 85px; }
  @media screen and (max-width: 767.9px) {
    .f-category {
      padding-top: 30px;
	  padding-bottom: 30px; } }
  .f-category__list {
    margin-top: 44px; }
    @media screen and (max-width: 767.9px) {
      .f-category__list {
        margin-top: 25px; } }
  @media screen and (max-width: 1023.9px) {
    .f-category__item {
      margin-bottom: 25px; }
      .f-category__item:last-child {
        margin-bottom: 0; } }
	.f-category-item {text-align: center;}	
	.f-category-item__media img {width:50px;height:50px;margin-bottom:10px;transition: transform 0.8s;filter: grayscale(1);}
	.f-category-item__media:hover img {transform: scale(1.2);filter: grayscale(0);}
	.category_name {color:#404040;padding-left:50px;padding-right:50px}
	.block__title a {color:#404040;}

.f-solution {
  background: #f7f7f7;
  padding-top: 75px;
  padding-bottom: 85px; }
  @media screen and (max-width: 767.9px) {
    .f-solution {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .f-solution__list {
    margin-top: 44px; }
    @media screen and (max-width: 767.9px) {
      .f-solution__list {
        margin-top: 25px; } }
  @media screen and (max-width: 1023.9px) {
    .f-solution__item {
      margin-bottom: 25px; }
      .f-solution__item:last-child {
        margin-bottom: 0; } }

.f-solution-item {
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.15)); }
  .f-solution-item__media {
    height: 355px;
    -webkit-background-size: cover;
            background-size: cover;
    position: relative;
    -webkit-border-top-left-radius: 10px;
            border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
            border-top-right-radius: 10px;
    z-index: 1;
    display: block; }
    .f-solution-item__media:hover {
      opacity: 0.8; }
    .f-solution-item__media:after {
      content: "";
      width: 100px;
      height: 100px;
      background-image: url("../img/page-home/pattern-1.png");
      -webkit-background-size: cover;
              background-size: cover;
      position: absolute;
      bottom: 35px;
      left: 30px;
      z-index: -1; }
  .f-solution-item__label {
    text-align: center;
    font-size: 10px;
    color: #fff;
    padding: 6px 12px;
    background: #100f14;
    -webkit-border-radius: 60px;
            border-radius: 60px;
    position: absolute;
    bottom: 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    text-transform: uppercase; }
  .f-solution-item__title {
    font-size: 34px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 35px;
    width: 100%;
    text-align: center;
    font-family: "Rubik-Black"; }
    @media screen and (max-width: 1023.9px) {
      .f-solution-item__title {
        font-size: 30px; } }
  .f-solution-item__content {
    height: 189px;
	padding: 40px 20px 45px 45px;
    background: #ffffff;
    position: relative;
    -webkit-border-bottom-left-radius: 10px;
            border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
            border-bottom-right-radius: 10px; }
  .f-solution-item__eye {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -28px;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background: #3366ff;
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); }
    .f-solution-item__eye:hover {
      background: #2548b1; }
  .f-solution-item__list {
    padding-left: 0;
    margin: 0;
    list-style-type: none; }
  .f-solution-item__list-item {
    font-size: 14px;
    color: #606060;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative; }
    .f-solution-item__list-item:before {
      content: url("../img/icons/bi_check.svg");
      position: absolute;
      top: 0;
      left: 0; }
    .f-solution-item__list-item:last-child {
      margin-bottom: 0; }

.callout {
  padding: 78px 0;
  margin: 0;
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover; }
  @media screen and (max-width: 767.9px) {
    .callout {
      min-height: 150px;
      padding: 30px 0; } }
  .callout__content {
    position: relative; }
  .callout__title {
    color: #fff;
    font-size: 40px;
    font-family: "Rubik-Bold";
    line-height: 1.3;
    text-transform: uppercase; }
    @media screen and (max-width: 1023.9px) {
      .callout__title {
        font-size: 30px; } }
    @media screen and (max-width: 767.9px) {
      .callout__title {
        font-size: 24px; } }
  .callout__logo {
    position: absolute;
    top: 0;
    right: -75px; }
    @media screen and (max-width: 1023.9px) {
      .callout__logo {
        right: 0px; } }
    @media screen and (max-width: 767.9px) {
      .callout__logo {
        display: none; } }
  .callout__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 50px; }
    @media screen and (max-width: 767.9px) {
      .callout__list {
        margin-top: 25px; } }
  .callout__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33%;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
    padding: 0 10px; }
  .callout__item-title {
    font-size: 15px;
    color: #f2f2f2;
    padding-top: 15px;
    margin-top: 30px;
    border-top: 1px solid #f96d26; }
    @media screen and (max-width: 767.9px) {
      .callout__item-title {
        margin-top: 15px;
        font-size: 13px; } }
    @media screen and (max-width: 359.9px) {
      .callout__item-title {
        font-size: 12px; } }

.f-news {
  margin-top: 85px; margin-bottom: 85px; }
  .f-news__title {
    margin-bottom: 30px; }

.grid {
  margin-bottom: 60px; }
  .grid__item {
    min-height: 690px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover; }
    @media screen and (max-width: 767.9px) {
      .grid__item {
        background-position: -20%;
        min-height: auto; } }
    @media screen and (max-width: 767.9px) {
      .grid__item:nth-child(even) {
        background-position: right; } }
    .grid__item:nth-child(even) .grid__title {
      color: #f2f2f2; }
    .grid__item:nth-child(even) .grid__list-item {
      color: #f2f2f2; }
      .grid__item:nth-child(even) .grid__list-item:before {
        background-image: url("../img/icons/grid-el-dark.png"); }
  .grid__content {
    padding-top: 60px; }
    @media screen and (max-width: 1023.9px) {
      .grid__content {
        padding: 30px 0; } }
  .grid__title {
    font-size: 40px;
    font-family: "Rubik-Bold";
    margin-bottom: 35px;
    line-height: 1.2;
    color: #333333; }
    @media screen and (max-width: 1199.9px) {
      .grid__title {
        font-size: 35px; } }
    @media screen and (max-width: 1023.9px) {
      .grid__title {
        font-size: 30px;
        margin-bottom: 35px; } }
    @media screen and (max-width: 767.9px) {
      .grid__title {
        font-size: 24px; } }
  .grid__list {
    padding-left: 0;
    margin: 0;
    list-style-type: none; }
  .grid__list-item {
    margin-bottom: 35px;
    position: relative;
    padding-left: 40px; }
    .grid__list-item:before {
      content: "";
      width: 20px;
      height: 40px;
      background-image: url("../img/icons/grid-el-light.png");
      background-repeat: no-repeat;
      -webkit-background-size: contain;
              background-size: contain;
      position: absolute;
      top: 7px;
      left: 0; }
    .grid__list-item:last-child {
      margin-bottom: 0; }
  .grid__btn {
    margin-top: 44px; }
  .grid__note {
    margin-top: 20px;
    font-size: 14px;
    color: #606060; }
    .grid__note a {
      color: #3366ff;
      position: relative; }
      .grid__note a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #3366ff; }

.action {
  max-width: 73rem;
  margin: auto;
  min-height: 490px;
  background-image: url("../img/page-home/bg-3.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  position: relative; }
  @media screen and (max-width: 1199.9px) {
    .action {
      margin: 0 15px; } }
  @media screen and (max-width: 767.9px) {
    .action {
      background-image: url("../img/page-home/bg-3-mobile.jpg");
      background-position: center right; } }
  .action:after {
    content: "";
    width: 150px;
    height: 160px;
    background-image: url("../img/page-home/pattern-1.png");
    background-repeat: no-repeat;
    -webkit-background-size: contain;
            background-size: contain;
    position: absolute;
    top: 0;
    right: 0; }
    @media screen and (max-width: 767.9px) {
      .action:after {
        width: 75px;
        height: 75px; } }
  .action__content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .action__title {
    font-size: 36px;
    color: #f2f2f2;
    font-family: "Rubik-Bold";
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase; }
    @media screen and (max-width: 1023.9px) {
      .action__title {
        font-size: 30px; } }
    @media screen and (max-width: 767.9px) {
      .action__title {
        font-size: 24px; } }
  .action__desc {
    color: #f2f2f2; }
  .action__btn {
    margin-top: 45px; }
    @media screen and (max-width: 767.9px) {
      .action__btn {
        margin-top: 25px; } }

.f-order-form {
  padding: 90px 0 100px; }
  @media screen and (max-width: 767.9px) {
    .f-order-form {
      padding: 30px 0; } }
  .f-order-form__textual {
    text-align: center;
    background-image: url("../img/page-home/rectangles.svg");
    background-repeat: no-repeat;
    background-position: left top; }
    @media screen and (max-width: 1023.9px) {
      .f-order-form__textual {
        background-image: none; } }
  .f-order-form__title {
    color: #3366ff;
    font-size: 36px;
    font-family: "Rubik-Bold";
    text-transform: uppercase;
    line-height: 1.3; }
    @media screen and (max-width: 1023.9px) {
      .f-order-form__title {
        font-size: 30px; } }
    @media screen and (max-width: 767.9px) {
      .f-order-form__title {
        font-size: 24px; } }
  .f-order-form__subtitle {
    color: #f96d26;
    font-size: 16px;
    text-transform: uppercase; }
  .f-order-form__desc {
    font-size: 15px;
    color: #606060;
    max-width: 475px;
    margin: 23px auto 15px; }
    
    #main-content .page-title {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
#main-content{margin-bottom: 100px;}
@media screen and (max-width: 1199px){
#main-content .popup__content{flex: 0 0 100%;max-width: 100%;}
}
@media screen and (min-width: 1024px){
.header_block .row{justify-content: flex-start;margin-left: 20px;}
}
.sitemap-page .solution{padding: 0;}
.products-section.sitemap-page  {padding: 0px 0 50px;}

.sitemap-page .site_map {
    display: flex;
    height: 1000px;
    flex-wrap: wrap;
    flex-direction: column;
    list-style-type: none;
}
.sitemap-page .site_map li {
    padding: 5px 10px;
    text-align: left;
    width: 100%;
}
@media screen and (max-width: 991px){
    .site_map {
        height: auto !important;
        display: block !important;
    }
    .site_map li {
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width: 1200px) {
	.page{min-height: calc(100vh - 425px);}
    #main-content{  min-height: calc(100vh - 375px);
}
	
#sticky > div > div.xlarge-5.medium-1.small-order-3.xlarge-order-2.small-2.column > div > div.megamenu > div > div > div > div{
	max-height: 450px;
    overflow: auto;
}
