/* reset */
/* main variables */
:root {
  --main-color: #1b91ff;
  --main-color-h: #1689f4;
  --main-color-second: #23292D;
  --main-color-second-h: #23292D;
  --text: #23292D;
  --text-invert: #fff;
}

/*MAIN*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
/*  font-size: 100%;*/
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Stolzl", sans-serif;
  background-color: #FFF;
  height: 100%;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  font-size: 13px !important;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, html{
  font-size: 0.694vw !important;
}

@media (max-width: 767px){
  body, html {
    font-size: 2.667vw !important;
  }
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

button, input, select {
  font-family: "Stolzl", sans-serif;
}

table {
  border-collapse: collapse;
  border-width: 0px;
  padding: 0px;
  margin: 0px;
}

html {
  height: 100%;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  font-size: 10px;
}

img {
  max-width: 100%;
}

input,
textarea {
  color: #333;
  font-family: "Stolzl", sans-serif;
  outline: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}

input[type=button],
input[type=submit],
button {
  cursor: pointer;
}

td {
  margin: 0px;
  padding: 0px;
}

form {
  padding: 0px;
  margin: 0px;
}

a {
  color: #100da9;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
span,
div,
button {
  outline: none !important;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.delay {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.delay2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

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

@media (max-width: 768px) {
  .delay,
.delay10,
.delay2,
.delay4,
.delay6,
.delay8 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
}
.animate_fade_in,
.animate_fade_left,
.animate_fade_right {
  opacity: 0;
}

@-webkit-keyframes slide-up-in {
  0% {
    -webkit-transform: translate(0, 30px) rotate(1deg);
            transform: translate(0, 30px) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-up-in {
  0% {
    -webkit-transform: translate(0, 30px) rotate(1deg);
            transform: translate(0, 30px) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_in {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-up-in;
  animation-name: slide-up-in;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translate(50px, 0) rotate(1deg);
            transform: translate(50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translate(50px, 0) rotate(1deg);
            transform: translate(50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_left {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-left;
  animation-name: slide-left;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translate(-50px, 0) rotate(1deg);
            transform: translate(-50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translate(-50px, 0) rotate(1deg);
            transform: translate(-50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_right {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-right;
  animation-name: slide-right;
}

@font-face {
  font-family: "Stolzl";
  src: local("Stolzl Medium"), local("Stolzl-Medium"), url("../fonts/Stolzl-Medium.woff2") format("woff2"), url("../fonts/Stolzl-Medium.woff") format("woff"), url("../fonts/Stolzl-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Stolzl";
  src: local("Stolzl Regular"), local("Stolzl-Regular"), url("../fonts/Stolzl-Regular.woff2") format("woff2"), url("../fonts/Stolzl-Regular.woff") format("woff"), url("../fonts/Stolzl-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Stolzl";
  src: local("Stolzl Light"), local("Stolzl-Light"), url("../fonts/Stolzl-Light.woff2") format("woff2"), url("../fonts/Stolzl-Light.woff") format("woff"), url("../fonts/Stolzl-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Stolzl";
  src: local("Stolzl Bold"), local("Stolzl-Bold"), url("../fonts/Stolzl-Bold.woff2") format("woff2"), url("../fonts/Stolzl-Bold.woff") format("woff"), url("../fonts/Stolzl-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/*@import "components/_fancybox";
@import "components/_slick";
@import "components/_mCustomScrollbar";*/
/*
================================================================================
|                                     HEADER                                   |
================================================================================
*/
header {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-order: 1;
}

/*
================================================================================
|                                     FOOTER                                   |
================================================================================
*/
footer {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-order: 3;
}

.main-wrapper {
  padding: 0 0 0 0;
  min-width: 290px;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.wrapper {
  min-width: 290px;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}

/* titles */
/*p{	
	@include font($base-font-size,$base-line-height,$text-color);
	font-weight: 400;	
}
h1{	
	@include font($font-size-h1,$line-height-h1,$title-color);
	font-family: $title-font-family;
	font-weight: 400;	
}
h2{
	@include font($font-size-h2,$line-height-h2,$title-color);
	font-family: $title-font-family;
	font-weight: 400;	
}
h3{
	@include font($font-size-h3,$line-height-h3,$title-color);
	font-family: $title-font-family;
	font-weight: 400;
}*/
/* text position */
.text-left {
  text-align: left !important;
}

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

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

.nowrap {
  white-space: nowrap !important;
}

/* loader */
/*.loaded .main-wrapper{visibility:hidden;}
.icon-load{background:url(../img/loader.gif) no-repeat left top;width:40px;height:40px;position:fixed;left:50%;top:50%;margin-left:-20px;margin-left:-20px;display:none;}
.loaded .icon-load{display:block;}*/
/*
================================================================================
|                                     CONTENT                                 |
================================================================================
*/
.content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-order: 2;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  padding: 2rem 0;
}
.header__box.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  width: 12rem;
/*  border-radius: 50%;*/
  overflow: hidden;
}
.header__socbox {
  margin-right: 4rem;
}
.header__socbox.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__socbox a {
  width: 3rem;
  height: 3rem;
  border-radius: 0.4rem;
  margin-right: 0.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__socbox a img {
  width: 50%;
}
.header__socbox a.tg {
  background: #24A1DE;
}
.header__socbox a.wa {
  background: #25d366;
}
.header__socbox a.viber {
  background: #7360f2;
}
.header__socbox a.fb {
  background: #1877F2;
}
.header__socbox a.insta {
  background: #833ab4;
  background: -webkit-gradient(linear, left top, right top, from(#833ab4), color-stop(#fd1d1d), to(#fcb045));
  background: -o-linear-gradient(left, #833ab4, #fd1d1d, #fcb045);
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
.header__socbox a.tt {
  background: #fff;
}
.header__socbox p {
  font-size: 1rem;
  margin-right: 1.2rem;
  color: var(--text-invert);
}
.header__phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-invert);
}
.header__callback {
  border: 0;
  padding: 1.6rem 2rem;
  background: #fff;
}
.header__callback img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.header__callback span {
  font-weight: 700;
  color: var(--text);
  font-size: 1.4rem;
  text-transform: uppercase;
}
.header__contact {
  text-align: center;
  margin-left: 4rem;
}
.header__contact p {
  font-size: 1rem;
  opacity: 0.7;
  color: var(--text-invert);
}

.banner {
  position: relative;
}
.banner__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.banner__bg:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  /*			backdrop-filter: blur(.15625vw);*/
}
.banner__bg:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(8.98%, rgba(0, 0, 0, 0.3)), color-stop(50%, transparent));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3) 8.98%, transparent 50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 8.98%, transparent 50%);
}
.banner__bg img {
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner__box {
  min-height: 100vh;
  padding: 20rem 12rem 8rem;
}
.banner .wrapper {
  z-index: 2;
}
.banner__title {
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-invert);
  text-align: center;
  margin-bottom: 3rem;
}
.banner__subtitle {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-invert);
  text-align: center;
}
.banner__controls {
  margin-top: 4rem;
}
.banner__controls.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner__btn {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid var(--main-color);
  padding: 2.2rem 3.5rem;
  background: var(--main-color);
  border-radius: 1.2rem;
}
.banner__more {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  padding: 2.2rem 3.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1.2rem;
  margin-left: 2rem;
}
.banner__advas {
  position: absolute;
  left: 50%;
  width: 95rem;
  bottom: 0;
  -webkit-transform: translateY(50%) translateX(-50%);
      -ms-transform: translateY(50%) translateX(-50%);
          transform: translateY(50%) translateX(-50%);
  padding: 4rem 0;
  border-radius: 2rem;
  background: #f3f3f3;
}
.banner__advas.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner__adv {
  margin-right: 5rem;
}
.banner__adv:last-child {
  margin-right: 0;
}
.banner__adv p {
  font-size: 1.5rem;
  color: var(--text);
}
.banner__icon {
  width: 4rem;
  height: 4rem;
  margin-right: 1.2rem;
  background: var(--main-color);
  border-radius: 0.4rem;
}
.banner__icon.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner__icon svg, .banner__icon img {
  width: 40%;
  height: 40%;
}

.videobl {
  padding-top: 15rem;
  padding-bottom: 7rem;
}
.videobl__play {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.videobl__play:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: -1;
  background-color: var(--main-color);
  -webkit-animation: pulse 1.4s linear infinite;
          animation: pulse 1.4s linear infinite;
}
.videobl__play img {
  width: 40%;
  margin-right: -9%;
  height: 40%;
}
.videobl__head {
  margin-bottom: 4rem;
}
.videobl__head.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.videobl__title {
  font-size: 4rem;
  font-weight: 700;
}
.videobl__playbox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 6rem;
  border-radius: 1.2rem;
  background: var(--main-color);
  padding: 3rem;
}
.videobl__playbox p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--text);
  font-size: 1.5rem;
}
.videobl__playicon {
  width: 8rem;
  height: 8rem;
  background: #fff;
  border-radius: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1.8rem;
}
.videobl__playicon img {
  display: block;
  width: 50%;
  height: 50%;
}
.videobl__video {
  height: 55rem;
  width: 100%;
  border-radius: 2rem;
  background: url(../img/vid.jpg) center center/cover no-repeat;
  -webkit-box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3) inset;
          box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3) inset;
  position: relative;
}

.rekl {
  position: relative;
  padding: 8rem 0;
}
.rekl__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.rekl__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rekl__box {
  padding-right: 30%;
}
.rekl__title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-invert);
  margin-bottom: 3rem;
}
.rekl__subtitle {
  font-size: 2.2rem;
  color: var(--text-invert);
  margin-bottom: 3rem;
}
.rekl__form.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.rekl__input {
  width: 32%;
}
.rekl__input label {
  display: block;
  color: var(--text-invert);
  font-size: 1.4rem;
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 1rem;
}
.rekl__input input {
  display: block;
  width: 100%;
  height: 6.5rem;
  border: 0;
  border-radius: 0.8rem;
  background: #fff;
  font-size: 1.5rem;
  padding: 0 3rem;
}
.rekl__btn {
  display: block;
  width: 32%;
  height: 6.5rem;
  border: 0;
  font-weight: 700;
  color: #fff;
  border-radius: 0.8rem;
  background: var(--main-color);
  font-size: 1.4rem;
}

.services {
  padding: 7rem 0;
}
.services__title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 5rem;
}
.services__box.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.services__item {
  background: #f5f5f5;
  width: 48.5%;
  padding: 4rem;
  position: relative;
  border-radius: 2rem;
  margin-bottom: 3%;
}
.services__item.colored {
  background: var(--main-color);
  background: #e4f0ff;
}
.services__item.colored .services__subtitle {
  color: var(--text);
}
.services__item.colored .services__text p {
  color: var(--text);
}
.services__item.colored .services__icon {
  background: #fff;
}
.services__item.colored .services__icon img {
  -webkit-filter: none;
          filter: none;
}
.services__item.withimage {
  background: url(../img/bg-del.jpg) center center/cover no-repeat;
  -webkit-box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.1) inset;
}
.services__item.withimage .services__subtitle {
  color: var(--text-invert);
}
.services__item.withimage .services__text p {
  color: var(--text-invert);
}
.services__item.withimage .services__icon {
  background: #fff;
}
.services__item.withimage .services__icon img {
  -webkit-filter: none;
          filter: none;
}
.services__icon {
  width: 8rem;
  height: 8rem;
  border-radius: 0.8rem;
  background: var(--main-color);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.services__icon img {
  -webkit-filter: invert(1) brightness(1);
          filter: invert(1) brightness(1);
  width: 50%;
  height: 50%;
}
.services__head {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.services__subtitle {
  font-weight: 600;
  font-size: 2.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2rem;
}
.services__text {
  position: relative;
  z-index: 2;
}
.services__text p {
  color: var(--text);
  font-size: 1.4rem;
  opacity: 0.8;
  line-height: 1.5;
}
.services__bg {
  width: 70rem;
  height: 70rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.1;
  position: absolute;
  -webkit-transform: rotate(5deg);
      -ms-transform: rotate(5deg);
          transform: rotate(5deg);
  left: 30rem;
  top: 20rem;
}

.models {
  padding: 7rem 0 9rem;
  overflow: hidden;
  background: #f5f5f5;
}
.models__title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 5rem;
}
.models__slider {
  margin-left: 12.5rem;
  width: 120%;
}
.models__slider .slick-slide {
  margin: 0 1.5rem;
}
.models__slider .slick-list {
  margin: 0 -1.5rem;
}
.models__slider .slick-prev, .models__slider .slick-next {
  width: 5rem;
  height: 5rem;
  background-color: var(--main-color);
  position: absolute;
  top: 40%;
  z-index: 2;
  text-indent: 9999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  border: 0;
}
.models__slider .slick-next {
  background-image: url(../img/next.svg);
  right: 52.5rem;
}
.models__slider .slick-prev {
  left: -2.5rem;
  background-image: url(../img/prev.svg);
}
.models__slider .slick-dots {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 131.5rem;
  list-style: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  bottom: -3rem;
  overflow: hidden;
}
.models__slider .slick-dots li {
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
}
.models__slider .slick-dots li button {
  display: block;
  padding: 0;
  margin: 0;
  height: 0.4rem;
  border: 0;
  opacity: 0;
}
.models__slider .slick-dots li.slick-active {
  background: var(--main-color);
}
.models__item {
  background: #fff;
}
.models__item.opacity{
  opacity: 0 !important;
  pointer-events: none !important;
}
.models__info {
  width: 100%;
  padding: 3rem;
  position: relative;
}
.models__info.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.models__image {
  height: 35rem;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}
.models__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.models__name {
  width: 100%;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.models__inform {
  flex: 1;
  margin-left: 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.models__new span {
  font-size: 2.4rem;
  font-weight: 600;
  display: block;
  width: 12rem;
}
.models__new p {
  font-size: 1.2rem;
  opacity: 0.7;
}
.models__old {
  margin-top: 0.5rem;
}
.models__old span {
  font-size: 1.7rem;
  font-weight: 600;
  display: block;
  width: 12rem;
}
.models__old p {
  font-size: 1.2rem;
  opacity: 0.7;
}
.models__btn {
  display: block;
  padding: 1.6rem 3rem;
  border: 0;
  font-weight: 700;
  color: #fff;
  border-radius: 0.8rem;
  background: var(--main-color);
  font-size: 1.5rem;
}
.models__econ{
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 0.4rem;
  background: red;
  font-size: 1rem;
  color: var(--text-invert);
  font-weight: 500;
  margin-bottom: 1.5rem;
  /*position: absolute;
  right: 3rem;
  top: 3rem;*/
}

.models__banner{
  background: url(../img/bg-2.jpg) center center/cover no-repeat;
  height: 100%;
  min-height: 56rem;
  width: 100%;
  padding: 5rem;
  text-align: center;
}
.models__banner.flex{
  flex-direction: column;
  justify-content: center;
}
.models__bannertitle{
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-invert);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.models__bannertext{
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-invert);
  opacity: 0.8;
  margin-bottom: 2rem;
}
.models__bannerbtn{
  display: block;
  width: 20rem;
  height: 5.5rem;
  border: 0;
  font-weight: 700;
  color: var(--text);
  border-radius: 0.8rem;
  background: var(--main-color);
  font-size: 1.4rem;
  margin-right: 1.5rem;
}
.models__bannertg.flex{
  justify-content: center;
}
.models__bannertg{
  width: 20rem;
  height: 5.5rem;
  border: 0;
  font-weight: 700;
  color: var(--text-invert);
  border-radius: 0.8rem;
  background: #24A1DE;
  font-size: 1.4rem;
}
.models__bannertg img{
  width: 2rem;
  margin-right: 1.5rem;
}
.models__bannercontr.flex{
  justify-content: center;
}

.calcul {
  padding: 7rem 0;
  background: url(../img/bg-2.jpg) center center/cover no-repeat;
}
.calcul__box.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calcul__form.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.calcul__title {
  font-size: 4.6rem;
  line-height: 1.2;
  color: var(--text-invert);
  margin-bottom: 2rem;
}
.calcul__text {
  font-size: 1.8rem;
  color: var(--text-invert);
}
.calcul__left {
  width: 40%;
}
.calcul__right {
  width: 54%;
  padding: 5rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
}
.calcul__min {
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 2.5rem;
  color: var(--text-invert);
}
.calcul__max {
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: 2.5rem;
  color: var(--text-invert);
}
.calcul__range {
  /*		padding-top: 3rem;*/
  position: relative;
  margin-bottom: 3rem;
  width: 47%;
}
.calcul__range #slider-range {
  margin: 0;
}
.calcul__range label {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  color: var(--text-invert);
}
.calcul__range .ui-slider .ui-slider-handle {
  width: 2rem;
  height: 2rem;
  top: -0.5rem;
  border-radius: 50%;
  background: #FFBF00;
  border: 2px solid #fff;
}
.calcul__range .ui-slider .ui-slider-range {
  background: #FFBF00;
  border: 0;
}
.calcul__range .ui-widget.ui-widget-content {
  border: 0;
  background: #e7e7e7;
}
.calcul__input {
  margin-bottom: 1.5rem;
  width: 47%;
}
.calcul__input.full {
  width: 100%;
}
.calcul__input label {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-invert);
}
.calcul__input input {
  display: block;
  width: 100%;
  background: #fff;
  font-size: 1.5rem;
  padding: 1.7rem 2rem;
  border-radius: 0.6rem;
  border: 0;
}
.calcul__input textarea {
  display: block;
  width: 100%;
  background: #fff;
  font-size: 1.4rem;
  padding: 1.7rem 2rem;
  border-radius: 0.6rem;
  border: 0;
}
.calcul__input select {
  display: block;
  width: 100%;
  background: #fff;
  font-size: 1.5rem;
  padding: 1.7rem 2rem;
  border-radius: 0.6rem;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.calcul__btn {
  display: block;
  width: 100%;
  height: 6rem;
  border: 0;
  font-weight: 700;
  color: #fff;
  border-radius: 0.8rem;
  background: var(--main-color);
  font-size: 1.5rem;
}

.steps {
  padding: 12rem 0 7rem;
}
.steps__title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 4rem;
}
.steps__box.flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.steps__item {
  width: 31%;
  margin-right: 3%;
  margin-bottom: 3%;
  padding: 3.5rem;
  /*		min-height: 40rem;*/
  background: url(../img/step-bg.png) center center/cover no-repeat;
}
.steps__item.dark {
  background: url(../img/step-bg-2.png) center center/cover no-repeat;
}
.steps__item.dark .steps__subtitle, .steps__item.dark .steps__text {
  color: var(--text-invert);
}
.steps__item:nth-child(3n) {
  margin-right: 0;
}
.steps__label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--main-color);
  background: #fff;
  margin-bottom: 2rem;
  padding: 1.2rem 2.4rem;
}
.steps__subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.steps__text {
  font-size: 1.2rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.steps__btn {
  display: block;
  border: 0;
  padding: 1.6rem 2.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.4rem;
  background: var(--main-color);
  font-size: 1.4rem;
}
.steps__teleg{
  margin-left: 1.5rem;
  margin-top: -0.3rem;
}
.steps__teleg span{
  font-size: 1rem;
  color: var(--text-invert);
}
.steps__telegicon{
  width: 10rem;
  height: 3rem;
  border-radius: 0.4rem;
  background: #24A1DE;
  margin-top: 0.3rem;
}
.steps__telegicon.flex{
  justify-content: center;
}
.steps__telegicon img{
  width: 1.6rem;
  margin-right: 1rem;
}
.steps__upper {
  color: var(--text-invert);
  font-size: 1rem;
  opacity: 0.7;
  margin-top: 1rem;
}
.steps__phones a {
  color: var(--text-invert);
  font-size: 1.8rem;
  font-weight: 600;
}

.reklbox {
  padding: 7rem 0;
  background: url(../img/bg-rekl-2.jpg) center center/cover no-repeat;
}
.reklbox__box {
  padding-right: 40%;
}
.reklbox__title {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--text-invert);
  margin-bottom: 2rem;
}
.reklbox__subtitle {
  font-size: 1.8rem;
  color: var(--text-invert);
  margin-bottom: 3rem;
}
.reklbox__btn {
  display: inline-block;
  border: 0;
  padding: 1.8rem 2.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.4rem;
  background: var(--main-color);
  font-size: 1.5rem;
}

.faq {
  padding: 7rem 0;
}
.faq__title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
.faq__box.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq__col {
  width: 49%;
}
.faq__item {
  background: #f5f5f5;
  margin-bottom: 4%;
}
.faq__head {
  padding: 3rem 4rem;
  position: relative;
}
.faq__head p {
  font-size: 1.8rem;
  font-weight: 700;
}
.faq__more {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  right: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__more img {
  width: 50%;
  height: 50%;
}
.faq__more.active {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.faq__text {
  padding: 0 4rem 3rem;
  display: none;
}
.faq__text p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 12px;
}

.team {
  padding: 7rem 0 9rem;
  background: #f5f5f5;
}
.team__title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
.team__box {
  padding-bottom: 2rem;
}
.team__box .slick-slide {
  margin: 0 1.5rem;
}
.team__box .slick-list {
  margin: 0 -1.5rem;
}
.team__box .slick-prev, .team__box .slick-next {
  width: 5rem;
  height: 5rem;
  background-color: var(--main-color);
  position: absolute;
  top: 25%;
  z-index: 2;
  text-indent: 9999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  border: 0;
}
.team__box .slick-next {
  background-image: url(../img/next.svg);
  right: -2.5rem;
}
.team__box .slick-prev {
  left: -2.5rem;
  background-image: url(../img/prev.svg);
}
.team__box .slick-dots {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  list-style: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  bottom: -3rem;
  overflow: hidden;
}
.team__box .slick-dots li {
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
}
.team__box .slick-dots li button {
  display: block;
  padding: 0;
  margin: 0;
  height: 0.4rem;
  border: 0;
  opacity: 0;
}
.team__box .slick-dots li.slick-active {
  background: var(--main-color);
}
.team__image {
  width: 100%;
  height: 35rem;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.team__imageinside {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.team__tg {
  background: #24A1DE;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.team__tg img {
  width: 50%;
  height: 50%;
}
.team__info span {
  font-size: 2.4rem;
  font-weight: 700;
}
.team__info p {
  font-size: 1.5rem;
  color: var(--text);
  opacity: 0.7;
  margin-top: 1rem;
}

.contact {
  padding: 7rem 0;
}
.contact__box.flex {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__title {
  font-size: 4.2rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.contact__info {
  width: 30%;
}
.contact__map {
  width: 65%;
  border-radius: 2rem;
  overflow: hidden;
}
.contact__item {
  margin-bottom: 5rem;
}
.contact__item:last-child {
  margin-bottom: 0;
}
.contact__item p {
  display: block;
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 0.6rem;
}
.contact__item span {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
}
.contact__item a {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text);
}
.contact__soc.flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact__soc a {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 0.4rem;
  margin-right: 0.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1rem;
}
.contact__soc a img {
  width: 50%;
}
.contact__soc a.tg {
  background: #24A1DE;
}
.contact__soc a.wa {
  background: #25d366;
}
.contact__soc a.viber {
  background: #7360f2;
}
.contact__soc a.fb {
  background: #1877F2;
}
.contact__soc a.insta {
  background: #833ab4;
  background: -webkit-gradient(linear, left top, right top, from(#833ab4), color-stop(#fd1d1d), to(#fcb045));
  background: -o-linear-gradient(left, #833ab4, #fd1d1d, #fcb045);
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
.contact__soc a.tt {
  background: #fff;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
.videofeed {
  padding: 7rem 0;
}
.videofeed__title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.videofeed__subtitle {
  font-size: 1.8rem;
  opacity: 0.7;
  margin-bottom: 4rem;
}
.videofeed__box.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.videofeed__item {
  width: 48.5%;
  position: relative;
  margin-bottom: 3%;
}
.videofeed__item.hidden {
  display: none;
}
.videofeed__play {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.videofeed__play:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: -1;
  background-color: var(--main-color);
  -webkit-animation: pulse 1.4s linear infinite;
          animation: pulse 1.4s linear infinite;
}
.videofeed__play img {
  width: 40%;
  margin-right: -9%;
  height: 40%;
}
.videofeed__inside {
  width: 100%;
  height: 35rem;
  position: relative;
}
.videofeed__inside img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.videofeed__more.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.videofeed__more button {
  background: var(--main-color);
  border-radius: 0.8rem;
  border: 0;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.8rem 4rem;
}
.videofeed__slider{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.videofeed__slide{
  width: 19%;
  border: 1px solid rgba(0,0,0,0.05);
}
.videofeed__slide img{
  display: block;
  width: 100%;
}
.videofeed__slider .slick-slide {
  margin: 0 1.5rem;
}
.videofeed__slider .slick-list {
  margin: 0 -1.5rem;
}
.videofeed__slider .slick-prev, .videofeed__slider .slick-next {
  width: 5rem;
  height: 5rem;
  background-color: var(--main-color);
  position: absolute;
  top: 40%;
  z-index: 2;
  text-indent: 9999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  border: 0;
}
.videofeed__slider .slick-next {
  background-image: url(../img/next.svg);
  right: 52.5rem;
}
.videofeed__slider .slick-prev {
  left: -2.5rem;
  background-image: url(../img/prev.svg);
}
.videofeed__slider .slick-dots {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 131.5rem;
  list-style: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  bottom: -3rem;
  overflow: hidden;
}
.videofeed__slider .slick-dots li {
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
}
.videofeed__slider .slick-dots li button {
  display: block;
  padding: 0;
  margin: 0;
  height: 0.4rem;
  border: 0;
  opacity: 0;
}
.videofeed__slider .slick-dots li.slick-active {
  background: var(--main-color);
}

.footer {
  background: #333;
  padding: 5rem 0;
}
.footer__box.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__logo {
  width: 10rem;
}
.footer__logotext {
  margin-left: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-invert);
  line-height: 1.8;
}
.footer__copy {
  font-size: 1.2rem;
  color: var(--text-invert);
  line-height: 1.8;
  width: 100%;
  margin-top: 2rem;
  opacity: 0.7;
}
.footer__menu {
  width: 40rem;
  list-style: none;
}
.footer__menu p {
  width: 100%;
  font-size: 1.6rem;
  color: var(--text-invert);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer__menu li {
  width: 20rem;
  padding-bottom: 0.5rem;
}
.footer__menu a {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.7;
  color: var(--text-invert);
}
.footer__menu a:hover {
  color: var(--main-color);
}
.footer__contact {
  width: 38rem;
}
.footer__contact.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__contact p {
  width: 100%;
  font-size: 1.6rem;
  color: var(--text-invert);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer__contact span {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  color: var(--text-invert);
  opacity: 0.7;
  margin-bottom: 1.2rem;
}
.footer__soc {
  width: 12rem;
  color: var(--text-invert);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9rem 0;
  border-radius: 0.4rem;
  font-size: 1.2rem;
}
.footer__soc.tg {
  background: #24A1DE;
}
.footer__soc.wa {
  background: #25d366;
}
.footer__soc.viber {
  background: #7360f2;
}
.footer__soc img {
  width: 1.6rem;
  margin-right: 1.2rem;
}

.modalbox {
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 44rem;
  background: url(../img/modal-bg.jpeg) center center/cover no-repeat;
  padding: 5rem;
  pointer-events: none;
}
.modalbox.active {
  opacity: 1;
  pointer-events: auto;
}
.modalbox__close {
  width: 1.5rem;
  height: 1.5rem;
  right: 1.5rem;
  top: 1.5rem;
  cursor: pointer;
  position: absolute;
}
.modalbox__close img {
  display: block;
  width: 100%;
  height: 100%;
}
.modalbox__title {
  font-size: 3.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-invert);
}
.modalbox__text {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--text-invert);
}
.modalbox__overlay {
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modalbox__overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modalbox__input {
  display: block;
  width: 100%;
  border: 0;
  padding: 1.8rem 3rem;
  border-radius: 0.8rem;
  background: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.modalbox__btn {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: var(--main-color);
  padding: 1.8rem 2.5rem 1.8rem;
  border-radius: 0.8rem;
  border: 0;
  margin-right: 1.5rem;
  text-decoration: none;
  display: block;
  width: 100%;
}
.modalbox__secure {
  margin-top: 2rem;
}
.modalbox__secure img {
  width: 2rem;
}
.modalbox__secure p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1rem;
  color: var(--text-invert);
  opacity: 0.8;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .wrapper {
    max-width: calc(100% - 3rem);
  }
  .modalbox {
    padding: 4rem;
    width: 36rem;
  }
  .modalbox__title {
    line-height: 1.2;
  }
  /*.header__socbox {
    display: none;
  }*/
  .header__socbox{
    margin-right: 0rem;
    margin-bottom: 1.2rem;
  }
  .header__socbox p{
    width: 11rem;
    display: none;
  }
  .header__socbox a{
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.8rem;
  }
  .header__callback {
    padding: 1rem;
    border-radius: 0.8rem;
    background: var(--main-color);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__callback img {
    margin-right: 0;
    width: 2.5rem;
    height: 2.5rem;
  }
  .header__callback span {
    display: none;
  }
  .header__right {
    margin-left: 2.5rem;
    margin-left: 1.5rem;
    margin-left: 0;
    /*-webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;*/
  }
  .header__right.flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
            justify-content: flex-end;
            justify-content: center;
  }
  .header__contact {
    margin: 0;
  }
  .header__logo{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.2rem;
  }
  .banner__box {
    padding: 26rem 0 15px;
  }
  .banner__title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .banner__subtitle {
    font-size: 1.6rem;
  }
  .banner__subtitle br {
    display: none;
  }
  .banner__controls {
    margin-top: 3rem;
  }
  .banner__btn {
    font-size: 1.4rem;
    padding: 1.7rem 2.5rem;
  }
  .banner__more {
    display: none;
  }
  .banner__advas {
    width: 100%;
    background: none;
    padding: 0;
  }
  .banner__adv {
    background: #f3f3f3;
    border-radius: 1.2rem;
    padding: 1.5rem 2rem;
    width: 100%;
    width: 84%;
    margin: 0 0 1.5rem;
  }
  .videobl__title {
    font-size: 2.5rem;
  }
  .videobl__playbox {
    margin-left: 0;
    padding: 2rem;
    margin-top: 1.5rem;
  }
  .videobl__playbox p {
    font-size: 1.3rem;
  }
  .videobl__playicon {
    width: 7rem;
    height: 7rem;
  }
  .videobl__head {
    margin-bottom: 3rem;
  }
  .videobl__video {
    height: 23rem;
    border-radius: 1.2rem;
  }
  .rekl__box {
    padding-right: 0;
  }
  .rekl__title {
    font-size: 3rem;
  }
  .rekl__subtitle {
    font-size: 1.6rem;
  }
  .rekl__input {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .rekl__btn {
    width: 100%;
  }
  .services {
    padding: 5rem 0;
  }
  .services__title {
    font-size: 3rem;
    margin-bottom: 3rem;
    /*			padding-right: 5rem;*/
  }
  .services__item {
    width: 100%;
    padding: 3rem;
    margin-bottom: 2rem;
  }
  .services__item:last-child {
    margin-bottom: 0;
  }
  .services__icon {
    width: 6rem;
    height: 6rem;
  }
  .services__subtitle {
    font-size: 2.2rem;
  }
  .services__text p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .models {
    padding: 5rem 0 7rem;
  }
  .models__title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .models__slider {
    margin-left: 0;
    padding: 0 2rem;
    width: 100%;
  }
  .models__slider .slick-next {
    right: 0rem;
    width: 4rem;
    height: 4rem;
  }
  .models__slider .slick-prev {
    left: 0rem;
    width: 4rem;
    height: 4rem;
  }
  .models__slider .slick-dots {
    width: calc(100% - 4rem);
    margin-left: 2rem;
  }
  .models__info {
    padding: 2rem 2rem;
  }
  .models__inform{
    width: 100%;
    flex: initial;
    margin-left: 0;
  }
  .models__image {
    height: 26rem;
  }
  .models__btn {
    margin-top: 1.5rem;
  }
  .models__bannertitle{
    font-size: 2.8rem;
  }
  .models__bannertext{
    font-size: 1.3rem;
  }
  .models__bannerbtn{
    margin-right: 0;
    width: 100%;
    margin-bottom: 1rem;
  }
  .models__bannertg{
    width: 100%;
  }
  .models__banner{
    padding: 4rem;
  }
  .calcul {
    padding: 5rem 0;
  }
  .calcul__title {
    font-size: 3.2rem;
  }
  .calcul__text {
    font-size: 1.4rem;
  }
  .calcul__left {
    width: 100%;
    margin-bottom: 2rem;
  }
  .calcul__right {
    width: 100%;
    padding: 3rem;
  }
  .calcul__range {
    width: 100%;
  }
  .calcul__input {
    width: 100%;
  }
  .videofeed {
    padding: 5rem 0;
  }
  .videofeed__title {
    font-size: 3rem;
  }
  .videofeed__subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .videofeed__item {
    width: 100%;
    margin-bottom: 6%;
  }
  .videofeed__inside {
    height: 24rem;
  }
  .videofeed__play {
    width: 5rem;
    height: 5rem;
  }
  .videofeed__slider{
    width: 76%;
    margin-left: auto;
    margin-right: auto;
  }
  .videofeed__slider .slick-next {
    right: -4.5rem;
    width: 4rem;
    height: 4rem;
  }
  .videofeed__slider .slick-prev {
    left: -4.5rem;
    width: 4rem;
    height: 4rem;
  }
  .videofeed__slider .slick-dots {
    width: calc(100% - 4rem);
    margin-left: 2rem;
  }
  .steps {
    padding: 8rem 0 5rem;
  }
  .steps__title {
    font-size: 3rem;
  }
  .steps__title br {
    display: none;
  }
  .steps__item {
    width: 100%;
    margin-bottom: 3rem;
  }
  .steps__item:last-child {
    margin-bottom: 0;
  }
  .steps__teleg{
    margin-left: 0;
    margin-left: 1.2rem;
  }
  .steps__teleg span{
    display: none;
  }
  .steps__telegicon{
    width: 5rem;
    height: 5rem;
  }
  .steps__telegicon img{
    margin-right: 0;
    width: 2.4rem;
  }
  .steps__telegicon span{
    display: none;
  }
  .reklbox__box {
    padding-right: 0;
  }
  .reklbox__title {
    font-size: 3.2rem;
    line-height: 1.3;
    display: block;
  }
  .reklbox__subtitle {
    font-size: 1.4rem;
  }
  .reklbox__subtitle br {
    display: none;
  }
  .faq {
    padding: 5rem 0 4rem;
  }
  .faq__title {
    font-size: 3rem;
    line-height: 1.2;
  }
  .faq__title br {
    display: none;
  }
  .faq__col {
    width: 100%;
  }
  .faq__head {
    padding: 2rem 2rem;
    padding-right: 5rem;
  }
  .faq__head p {
    font-size: 1.6rem;
  }
  .faq__text {
    padding: 0 2rem 3rem;
  }
  .faq__text p {
    font-size: 1.2rem;
  }
  .faq__more{
    right: 2rem;
  }
  .team__team {
    padding: 5rem 0 7rem;
  }
  .team__title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
  .team__box .slick-next {
    right: -2rem;
  }
  .team__box .slick-prev {
    left: -2rem;
  }
  .contact {
    padding: 5rem 0;
  }
  .contact__title {
    font-size: 3.2rem;
  }
  .contact__info {
    width: 100%;
  }
  .contact__item {
    margin-bottom: 3rem;
  }
  .contact__map {
    width: 100%;
    height: 30rem;
    margin-top: 3rem;
  }
  .footer__menu {
    margin: 3rem 0;
  }
  .footer__menu li {
    width: 50%;
  }
  .footer__soc {
    width: 31%;
  }
  .footer__soc img {
    margin-right: 0.8rem;
  }
}