@charset "UTF-8";
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%;
  font: inherit;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul, li {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

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

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none !important; }

body {
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased; }

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

input[type=file],
input[type=password],
input[type=submit],
input[type=text],
input[type=email],
input[type=search],
textarea,
select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: auto; }

select::ms-expand {
  display: none; }

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

/**************
END RESETT CSS
****************/
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Black.woff") format("woff");
  font-style: normal;
  font-weight: 900; }
@font-face {
  font-family: "Roboto";
  src: url("../font/RobotoBold.woff") format("woff");
  font-style: normal;
  font-weight: 700; }
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500; }
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto.woff") format("woff");
  font-style: normal;
  font-weight: 400; }
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300; }
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Thin.woff") format("woff");
  font-style: normal;
  font-weight: 200; }
:root {
  --black: #101010;
  --grey: #818181;
  --yellow: #ffdd55;
  --red: #f5939d;
  --blue: #4198f9;
  --grey-bg: #f7f8f9;
  --black-bg: #191919; }

html, body {
  min-height: 100%; }

html {
  font-size: 16px; }

body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
  color: var(--black); }

.noscroll {
  overflow: hidden; }

a {
  color: var(--black);
  -webkit-transition: all .2s;
  transition: all .2s; }

img {
  max-width: 100%; }

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

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px; }
  .container.no-padding {
    padding: 0; }
  .container--lt {
    max-width: 1180px; }
  .container--lg {
    padding: 0 4.375em; }
  .container--fluid {
    max-width: 100%; }
    .container--fluid.no-padding {
      width: 90%;
      margin: 0 auto; }

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }

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

.red {
  color: var(--red); }

.grey-bg {
  background-color: #edf0f5; }

.blue-bg {
  background-color: #9dd3ef; }

.brown-bg {
  background-color: #d6c9b5; }

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

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

.title-row {
  position: relative;
  overflow: hidden; }
  .title-row--bg {
    padding-bottom: 4.375em;
    margin-bottom: 0 !important; }
    .title-row--bg::after {
      content: '';
      width: 10em;
      height: 10em;
      border-radius: 50%;
      background-color: #f6a1aa;
      position: absolute;
      right: 15%;
      bottom: 0;
      -webkit-transform: translateY(70%);
              transform: translateY(70%);
      -webkit-filter: blur(30px);
              filter: blur(30px);
      z-index: 0; }
  .title-row .title {
    width: 80%;
    margin-bottom: 0;
    position: relative;
    z-index: 1; }
  .title-row .mouse {
    position: relative;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    z-index: 1; }

.title {
  margin-bottom: 6.25em; }
  .title .h2 {
    font-size: 3em;
    font-weight: 500; }
  .title h4, .title .h4 {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.5;
    max-width: 75%; }
  .title p {
    font-size: 1.5rem;
    margin: 1.5em auto 0;
    font-weight: 300;
    line-height: 1.4;
    max-width: 90%; }

h1 {
  font-size: 4rem;
  font-weight: 700; }

h2 {
  font-size: 3rem;
  font-weight: 500; }

h3 {
  font-size: 2.5rem;
  font-weight: 500; }

h4, .h4 {
  font-size: 2rem;
  font-weight: 300; }

.btn {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 200;
  padding: 1.4em 2.9em;
  border: 2px solid var(--yellow);
  border-radius: 50px;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .btn:hover {
    background-color: var(--yellow); }
  .btn--yellow {
    background-color: var(--yellow); }
    .btn--yellow:hover {
      background-color: transparent;
      color: #fff !important; }
  .btn--white-text {
    color: #fff; }
    .btn--white-text:hover {
      color: var(--black); }
  .btn--lt {
    padding: .833em 2em; }
  .btn--full {
    width: 100%;
    text-align: center; }
  .btn--black {
    background-color: var(--black);
    color: #fff;
    border-color: var(--black); }
    .btn--black:hover {
      border-color: var(--black);
      background-color: #fff;
      color: var(--black); }
  .btn--blue {
    border-color: var(--blue); }
    .btn--blue:hover {
      border-color: var(--yellow); }

.columns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .columns .column {
    width: 20%;
    border-right: 1px solid #f3f3f3; }

.prev-arrow,
.next-arrow {
  display: block;
  position: relative;
  width: 3.75em;
  height: 3.75em;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  margin-bottom: .75em;
  border: 2px solid #000;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .prev-arrow:hover,
  .next-arrow:hover {
    background-color: var(--red);
    border-color: var(--red); }
  .prev-arrow.slick-arrow--white,
  .next-arrow.slick-arrow--white {
    background-color: #fff; }
    .prev-arrow.slick-arrow--white:hover,
    .next-arrow.slick-arrow--white:hover {
      background-color: var(--red);
      border-color: var(--red); }
  .prev-arrow.slick-disabled,
  .next-arrow.slick-disabled {
    cursor: default;
    pointer-events: none;
    opacity: .3; }

.prev-arrow {
  background-image: url("../img/icons/arrow_left.png"); }
  .prev-arrow.slick-arrow--white {
    background-image: url("../img/icons/arrow_left_white.png"); }

.next-arrow {
  background-image: url("../img/icons/arrow_right.png"); }
  .next-arrow.slick-arrow--white {
    background-image: url("../img/icons/arrow_right_white.png"); }

b {
  font-weight: 700; }

.radio,
.checkbox {
  margin-bottom: 1.5rem; }
  .radio input,
  .checkbox input {
    display: none; }
    .radio input:checked + label::before,
    .checkbox input:checked + label::before {
      background-image: url("../img/icons/check.svg"); }
  .radio label,
  .checkbox label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.125em;
    font-weight: 300;
    line-height: 1.5;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
    .radio label::before,
    .checkbox label::before {
      content: '';
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      width: 2.444em;
      height: 2.44em;
      border-radius: 50%;
      background-color: #fff;
      background-position: center;
      background-repeat: no-repeat;
      margin-right: 1.2em; }
    .radio label:hover,
    .checkbox label:hover {
      color: var(--red); }
    .radio label b,
    .checkbox label b {
      font-weight: 700; }

.agree {
  padding: 2.5em 0 0 0; }
  .agree input {
    display: none; }
    .agree input:checked + label::before {
      background-image: url("../img/icons/check.svg"); }
  .agree label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: .85rem;
    font-weight: 300;
    line-height: 1.4;
    cursor: pointer; }
    .agree label::before {
      content: '';
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      width: 2.8em;
      height: 2.8em;
      border-radius: 50%;
      background-color: #fff;
      background-position: center;
      background-repeat: no-repeat;
      margin-right: .5em; }
    .agree label a {
      text-decoration: underline; }
      .agree label a:hover {
        text-decoration: none; }

.mobile {
  display: none; }

@-webkit-keyframes moveDown {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    opacity: 1; }
  15% {
    -webkit-transform: translate(30%, 0%);
            transform: translate(30%, 0%); }
  30% {
    -webkit-transform: translate(60%, 100%);
            transform: translate(60%, 100%); }
  45% {
    -webkit-transform: translate(40%, 150%);
            transform: translate(40%, 150%); }
  60% {
    -webkit-transform: translate(70%, 200%);
            transform: translate(70%, 200%); }
  75% {
    -webkit-transform: translate(30%, 250%);
            transform: translate(30%, 250%); }
  90% {
    -webkit-transform: translate(5%, 300%);
            transform: translate(5%, 300%); }
  100% {
    -webkit-transform: translate(0, 350%);
            transform: translate(0, 350%);
    opacity: 0; } }

@keyframes moveDown {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    opacity: 1; }
  15% {
    -webkit-transform: translate(30%, 0%);
            transform: translate(30%, 0%); }
  30% {
    -webkit-transform: translate(60%, 100%);
            transform: translate(60%, 100%); }
  45% {
    -webkit-transform: translate(40%, 150%);
            transform: translate(40%, 150%); }
  60% {
    -webkit-transform: translate(70%, 200%);
            transform: translate(70%, 200%); }
  75% {
    -webkit-transform: translate(30%, 250%);
            transform: translate(30%, 250%); }
  90% {
    -webkit-transform: translate(5%, 300%);
            transform: translate(5%, 300%); }
  100% {
    -webkit-transform: translate(0, 350%);
            transform: translate(0, 350%);
    opacity: 0; } }
@-webkit-keyframes rotate {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0; } }
@keyframes rotate {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0; } }
/* Firefox 19+ */
/* Firefox 18- */
/* хром, сафари */
.element::-webkit-scrollbar {
  width: 0; }

/* ie 10+ */
.element {
  -ms-overflow-style: none; }

/* фф (свойство больше не работает, других способов тоже нет)*/
.element {
  overflow: -moz-scrollbars-none; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff slick-image-url("../img/icons/ajax-loader.gif") center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

.input {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 2.5em; }
  .input--black .input__label,
  .input--black .input__field--hoshi {
    color: var(--black); }
  .input--black .input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
  .input--black .input--filled + .input__label--hoshi .input__label-content--hoshi {
    color: rgba(0, 0, 0, 0.7); }

.input__field {
  position: relative;
  display: block;
  padding: 0.8em;
  border: none !important;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */ }

textarea.input__field {
  resize: none; }

.input__field:focus {
  outline: none; }

.input__label {
  display: inline-block;
  width: 40%;
  color: #fff;
  font-weight: 200;
  font-size: 1.5rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.input__label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%; }

/* Hoshi */
.input--hoshi {
  overflow: hidden; }

.input__field--hoshi {
  margin-top: 0.85em;
  padding: 0.85em 0.15em;
  width: 100%;
  background: transparent;
  color: #fff; }

.input__label--hoshi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  pointer-events: none; }

.input__label-content--hoshi {
  position: absolute; }

.input__label--hoshi::before,
.input__label--hoshi::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1px);
  border-bottom: 1px solid #424242; }

.input__label--hoshi::after {
  width: 100px;
  border-bottom: 2px solid #ffdd55;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.input__label--hoshi-color-1::after {
  border-color: #ffdd55; }

.input__field--hoshi:focus + .input__label--hoshi::after,
.input--filled + .input__label--hoshi::after {
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
.input--filled + .input__label--hoshi .input__label-content--hoshi {
  color: rgba(255, 255, 255, 0.6);
  font-size: .6em;
  -webkit-animation: anim-1 0.3s forwards;
  animation: anim-1 0.3s forwards; }

.input--filled.input--error,
.input--filled.input--error + .input__label--hoshi .input__label-content--hoshi {
  color: var(--red); }

.input--filled.input--error + .input__label--hoshi::after {
  border-color: #de5558; }

@-webkit-keyframes anim-1 {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0); }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -40%, 0);
    transform: translate3d(-1em, -40%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0); } }
/*Header*/
.header {
  width: 90%;
  margin: 0 auto;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  position: relative;
  z-index: 12; }
  .header .container {
    max-width: 100%;
    padding: 0; }

.main-screen-open .header {
  padding-bottom: 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #edf0f5;
  padding-bottom: 10px;
  z-index: 12; }

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 900; }
  .logo::before {
    content: '';
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: .8571em;
    height: .8571em;
    border-radius: 50%;
    background-color: #de5558;
    margin-right: .75em; }
  .logo span {
    padding: 0 3px; }

.header__options {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900; }
  .header__options .social {
    margin-left: 3em; }

.callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap; }
  .callback::before {
    content: '';
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4px;
            flex: 0 0 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #de5558;
    margin-right: .75em;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .callback:hover {
    color: var(--red); }
  .callback.active span::after {
    display: block; }
  .callback span {
    display: block;
    position: relative; }
    .callback span::after {
      content: 'Закрыть';
      background-color: #edf0f5;
      position: absolute;
      top: -2px;
      left: 0;
      padding: 2px;
      width: 100%;
      height: 100%;
      display: none; }

.hidden {
  opacity: 0;
  pointer-events: none; }

.social li {
  padding: 0 5px; }
  .social li a:hover img {
    -webkit-filter: drop-shadow(0 0 rgba(0, 0, 0, 0.9));
            filter: drop-shadow(0 0 rgba(0, 0, 0, 0.9)); }
.social img {
  max-width: 100%;
  -webkit-transition: -webkit-filter .3s;
  transition: -webkit-filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s; }
.social--border li {
  padding: 0 .5em; }
  .social--border li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 3.75em;
    height: 3.75em;
    border-radius: 50%;
    border: 1px solid #d5d7db; }
    .social--border li a img {
      height: 20px; }
    .social--border li a:hover {
      background-color: var(--yellow);
      border-color: var(--yellow); }

.menu-btn {
  margin-left: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .menu-btn:hover .menu__dots span {
    background-color: var(--black); }
  .menu-btn.active .menu__dots span:first-child, .menu-btn.active .menu__dots span:nth-child(2) {
    -webkit-transform: translate(4px, -4px);
            transform: translate(4px, -4px); }
  .menu-btn.active .menu__dots span:last-child {
    -webkit-transform: translate(-15px, 4px);
            transform: translate(-15px, 4px); }
  .menu-btn.active .menu__text::before {
    -webkit-transform: translateX(120%);
            transform: translateX(120%); }
  .menu-btn.active .menu__text::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; }

.menu__text {
  width: 4.75em;
  height: 1em;
  text-align: right;
  overflow: hidden;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .menu__text::before {
    content: 'Меню';
    display: block;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .menu__text::after {
    content: 'Закрыть';
    display: block;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s; }

.menu__dots {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 30px;
  margin-left: 8px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px); }
  .menu__dots span {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--red);
    border-radius: 50%;
    -webkit-transition: all .3s;
    transition: all .3s; }
    .menu__dots span:not(:last-child) {
      margin-right: 8px; }

/*main-screen*/
.main-screen {
  background-color: #edf0f5;
  width: 100%;
  height: 100vh;
  padding-bottom: 3em;
  overflow: hidden; }
  .main-screen .container {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

.main-screen__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.main-screen__img {
  position: absolute;
  top: 6em;
  right: 0; }
  .main-screen__img img {
    max-width: 100%;
    height: 65vh;
    -o-object-fit: contain;
       object-fit: contain; }

.main-screen__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 6.25em 0;
  position: relative;
  line-height: 1.3;
  z-index: 1; }
  .main-screen__title .h1 {
    font-size: 3.75rem;
    font-weight: 900;
    position: relative;
    z-index: 2; }
  .main-screen__title .h2 {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    position: relative;
    z-index: 2; }
  .main-screen__title img {
    position: absolute;
    width: auto;
    position: absolute; }
  .main-screen__title .circles {
    top: 50%;
    left: -10em;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .main-screen__title .dots {
    top: 50%;
    left: 1.5em;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.main-screen__bottom {
  position: relative;
  z-index: 2; }

.main-screen__contact a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 300; }
  .main-screen__contact a::before {
    content: '';
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #de5558;
    margin-right: .5em; }
  .main-screen__contact a:not(:last-child) {
    margin-right: 5em; }
  .main-screen__contact a:hover {
    text-decoration: underline; }

.mouse {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.mouse__body {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 22px;
  height: 38px;
  border-radius: 12px;
  background-color: #f5939d;
  position: relative; }
  .mouse__body::before {
    content: '';
    width: 6px;
    height: 5px;
    background-color: #fff;
    border-radius: 3px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: dot__move infinite 1.5s;
            animation: dot__move infinite 1.5s; }

.mouse__tail {
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .mouse__tail span {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    border-radius: 50%;
    background-color: #f5939d;
    margin-bottom: 2px;
    -webkit-animation: tail__move infinite 1.5s;
            animation: tail__move infinite 1.5s;
    -webkit-transition: all .3s;
    transition: all .3s; }
    .mouse__tail span:first-child {
      width: 3px;
      height: 3px;
      -webkit-animation-delay: .5s;
              animation-delay: .5s; }
    .mouse__tail span:nth-child(2) {
      width: 4px;
      height: 4px;
      -webkit-animation-delay: 1s;
              animation-delay: 1s; }
    .mouse__tail span:last-child {
      width: 6px;
      height: 6px;
      margin-bottom: 0; }

@-webkit-keyframes dot__move {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
  10% {
    opacity: 1; }
  90% {
    -webkit-transform: translate(-50%, -15px) scale(0.3);
            transform: translate(-50%, -15px) scale(0.3);
    opacity: 0; }
  100% {
    -webkit-transform: translate(-50%, 0) scale(1);
            transform: translate(-50%, 0) scale(1);
    opacity: 0; } }

@keyframes dot__move {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
  10% {
    opacity: 1; }
  90% {
    -webkit-transform: translate(-50%, -15px) scale(0.3);
            transform: translate(-50%, -15px) scale(0.3);
    opacity: 0; }
  100% {
    -webkit-transform: translate(-50%, 0) scale(1);
            transform: translate(-50%, 0) scale(1);
    opacity: 0; } }
@-webkit-keyframes tail__move {
  0%, 100% {
    background-color: var(--black); }
  50% {
    background-color: var(--red); } }
@keyframes tail__move {
  0%, 100% {
    background-color: var(--black); }
  50% {
    background-color: var(--red); } }
/*menu*/
.menu-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #edf0f5;
  padding: 12.5em 0;
  overflow: hidden;
  -webkit-transform: scale(3);
          transform: scale(3);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  -webkit-transition: all .5s;
  transition: all .5s; }
  .menu-block.active {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .menu-block .social li a:hover {
    border-color: #fff !important;
    background-color: #fff !important; }

.menu-block__content {
  width: 50%; }

.main-menu {
  position: relative;
  width: 23em;
  margin-bottom: 4em; }
  .main-menu > li {
    font-size: 2.1428em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5em; }
    .main-menu > li.active, .main-menu > li:hover {
      color: var(--red); }
      .main-menu > li.active a, .main-menu > li:hover a {
        color: var(--red); }
      .main-menu > li.active .submenu a, .main-menu > li:hover .submenu a {
        color: var(--black); }
  .main-menu .drop-li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--black);
    cursor: pointer; }
    .main-menu .drop-li::after {
      content: '';
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      height: 1px;
      margin: 0 20px;
      background-color: #de5558;
      opacity: 0;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }

.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  padding-top: .45em;
  opacity: 0;
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .submenu li {
    font-size: .6em;
    text-transform: initial;
    margin-bottom: 2.77em;
    white-space: nowrap; }
    .submenu li a:hover {
      color: var(--red) !important; }

@media (min-width: 1360px) {
  .drop-li:hover .submenu {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    visibility: visible; }
  .drop-li:hover::after {
    opacity: 1; } }
.menu-block__decor {
  width: 45%;
  position: relative; }

.menu__title {
  font-size: 9rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  background: url("../img/bg/text-bg-2.jpg") 100% 100% no-repeat;
  -webkit-background-clip: text;
  -o-background-clip: text;
  -moz-background-clip: text;
  -ms-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  z-index: 3; }

.yellow-circle {
  position: absolute;
  width: 17em;
  height: 17em;
  border-radius: 50%;
  background-color: var(--yellow);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-80%, -50%);
          transform: translate(-80%, -50%);
  z-index: 2; }

.pink-circle {
  width: 58.75em;
  height: 58.75em;
  border-radius: 50%;
  background-color: #f5939d;
  position: absolute;
  right: -8em;
  bottom: -23em; }

/*callback-block*/
.callback-block,
.order-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #edf0f5;
  padding: 12.5em 0 0;
  overflow: hidden;
  -webkit-transform: scale(3);
          transform: scale(3);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  -webkit-transition: all .5s;
  transition: all .5s; }
  .callback-block.active,
  .order-block.active {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .callback-block .container,
  .order-block .container {
    height: 100%; }
  .callback-block .menu__title,
  .order-block .menu__title {
    font-size: 6.5rem;
    background-position: 50% 0; }
  .callback-block .menu-block__decor,
  .order-block .menu-block__decor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 3em; }
  .callback-block .pink-circle,
  .order-block .pink-circle {
    background-color: var(--blue);
    width: 48em;
    height: 48em;
    bottom: -20em;
    right: -8em; }
  .callback-block .yellow-circle,
  .order-block .yellow-circle {
    top: 60%; }
  .callback-block .menu-block__content,
  .order-block .menu-block__content {
    max-width: 560px; }
    .callback-block .menu-block__content form,
    .order-block .menu-block__content form {
      width: 100%; }
    .callback-block .menu-block__content .social,
    .order-block .menu-block__content .social {
      margin-top: 3em; }
      .callback-block .menu-block__content .social li a:hover,
      .order-block .menu-block__content .social li a:hover {
        background-color: #fff; }
  .callback-block .btn,
  .order-block .btn {
    padding: 1.2em 4em; }
  .callback-block .agree,
  .order-block .agree {
    color: var(--black);
    padding-top: 0;
    margin-bottom: 2em; }

.callback-form__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 20px; }

/*case*/
.case {
  padding-top: 2em; }
  .case--padding {
    padding: 6.5em 0; }

.case-slider-arrows {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 6.25em; }

.case-slider {
  width: 75%; }
  .case-slider .slick-list {
    padding-bottom: 6.25em; }

.slick-slide {
  outline: none; }

.case-slider__item {
  width: 22em;
  height: 29.6875em;
  padding: 4.2857em 0 4.2857em 3em;
  position: relative;
  margin-right: 1.25em;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .case-slider__item--lg {
    width: 42em; }
    .case-slider__item--lg .slider-img {
      top: 0;
      height: 100%;
      max-height: none;
      -o-object-fit: contain;
         object-fit: contain; }
  .case-slider__item:hover {
    -webkit-box-shadow: 0px 30px 30px -20px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 30px 30px -20px rgba(0, 0, 0, 0.3); }
  .case-slider__item .date {
    font-size: 1rem;
    color: #818181;
    margin-bottom: 2em; }
    .case-slider__item .date::before {
      content: 'Год:';
      display: inline-block;
      padding-right: 3px; }

.case-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  overflow: hidden; }

.slider-img {
  position: absolute;
  right: 0;
  top: 2em;
  max-height: 60%;
  -o-object-fit: contain;
     object-fit: contain; }

.case-slider__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2; }

.case-slider__title {
  font-size: 1.875em;
  font-weight: 300;
  line-height: 1.2; }

.arrow {
  width: 2.9375em;
  height: 2.9375em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .arrow--white {
    background-color: #fff; }
  .arrow--blue {
    background-color: var(--blue); }

/*banner*/
.banner-block {
  background-color: var(--grey-bg);
  position: relative;
  overflow: hidden; }
  .banner-block:hover .container::after {
    background-color: #ffdd55; }
  .banner-block .container {
    background: transparent url("../img/bg/banner-text.png") 10% top no-repeat;
    background-size: contain;
    padding: 8.125em 20px;
    position: relative; }
    .banner-block .container::after {
      content: '';
      width: 15em;
      height: 15em;
      border-radius: 50%;
      background-color: #f5959f;
      -webkit-filter: blur(30px);
              filter: blur(30px);
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 60%);
              transform: translate(-50%, 60%);
      -webkit-transition: all .3s;
      transition: all .3s; }

.banner__title {
  font-size: 4.5rem;
  font-weight: 300;
  margin-bottom: .5em; }

.banner__subtitle {
  font-size: 4.3rem;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 1.5em;
  position: relative; }
  .banner__subtitle::before {
    content: '';
    width: 2.3em;
    height: 2.3em;
    border-radius: 50%;
    background-color: #ffdd55;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    position: absolute;
    top: 50%;
    right: 12%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 0; }
  .banner__subtitle .h3 {
    margin-bottom: 0;
    font-size: 1em;
    position: relative;
    z-index: 1; }

/*clients*/
.clients {
  position: relative;
  padding: 6.25em 0;
  overflow: hidden; }
  .clients:hover .clients-img {
    -webkit-filter: drop-shadow(0 0 10px rgba(255, 221, 85, 0.5));
            filter: drop-shadow(0 0 10px rgba(255, 221, 85, 0.5)); }
  .clients .container {
    position: relative;
    z-index: 1; }

.clients-slider {
  position: relative;
  z-index: 2; }
  .clients-slider .slick-track > .slick-slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.clients-slider__item {
  margin-bottom: 6.25em; }
  .clients-slider__item:hover img {
    -webkit-filter: blur(1px);
            filter: blur(1px); }
  .clients-slider__item img {
    margin: 0 auto;
    -webkit-transition: all .3s;
    transition: all .3s; }

.clients-slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2; }
  .clients-slider-arrows .prev-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .clients-slider-arrows .next-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

.clients-img {
  position: absolute;
  right: 30px;
  bottom: -6.25em;
  z-index: 0;
  -webkit-transition: all .3s;
  transition: all .3s; }

.service {
  position: relative;
  padding: 6.25em 0 6.5em;
  background: #101010 url("../img/bg/service-bg.png") 100% 100% no-repeat;
  color: #fff;
  overflow: hidden; }
  .service .title {
    margin-bottom: 0; }
  .service .decor-line {
    width: 100%;
    max-width: 1440px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    .service .decor-line::before {
      content: '';
      width: 33.333%;
      height: 1.25em;
      background-color: #ffdd55;
      position: absolute;
      bottom: 0; }
  .service .column {
    border-color: rgba(255, 255, 255, 0.1);
    position: relative; }
    .service .column::after {
      content: '';
      width: 8em;
      height: 8em;
      border-radius: 50%;
      background: rgba(255, 221, 85, 0.3);
      -webkit-filter: blur(30px);
              filter: blur(30px);
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transform: translate(0, -100%);
              transform: translate(0, -100%);
      -webkit-animation: moveDown infinite 10s linear;
              animation: moveDown infinite 10s linear; }
    .service .column:nth-child(2)::after {
      -webkit-animation-delay: 6s;
              animation-delay: 6s; }
    .service .column:nth-child(3)::after {
      -webkit-animation-delay: 2.5s;
              animation-delay: 2.5s; }
    .service .column:nth-child(4)::after {
      -webkit-animation-delay: 3s;
              animation-delay: 3s; }
    .service .column:nth-child(5)::after {
      -webkit-animation-delay: 5.2s;
              animation-delay: 5.2s; }
  .service .container--top {
    position: relative;
    z-index: 2; }

.top-title {
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 1.5em; }

.title-row {
  margin-bottom: 6.25em; }

.service-slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10em; }
  .service-slider-arrows .slick-arrow {
    margin-bottom: 0; }
    .service-slider-arrows .slick-arrow:not(:last-child) {
      margin-right: 1.25em; }

.service-slider .slick-list {
  height: 30.625em !important;
  margin-top: -6.25em; }
.service-slider .slick-track {
  height: 100%; }

.service-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%; }

.service-slider__descr {
  width: 60%; }
  .service-slider__descr h3 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: .8em; }
  .service-slider__descr p {
    font-size: 1.5rem;
    line-height: 1.5; }
  .service-slider__descr .price span {
    display: inline-block; }
    .service-slider__descr .price span::before {
      content: '';
      width: .3em;
      height: .3em;
      border-radius: 50%;
      background-color: #ffdd55;
      display: inline-block;
      vertical-align: middle;
      margin-right: .2em;
      -webkit-transform: translateY(-1px);
              transform: translateY(-1px); }

.service-slider__btns {
  margin-top: 2.2em; }
  .service-slider__btns .btn:not(:last-child) {
    margin-right: .833em; }

.service-slider__img {
  width: 40%;
  position: relative; }
  .service-slider__img img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30.625em;
    -o-object-fit: cover;
       object-fit: cover; }

/*statistic*/
.statistic {
  padding: 6.25em 0 0 0;
  background: transparent url("../img/bg/dots.png") -235px 80% no-repeat;
  background-attachment: fixed; }
  .statistic .title {
    margin-bottom: 8.75em; }

.statistic-list {
  border-bottom: 1px solid #edf0f5;
  margin-bottom: 4.375em; }
  .statistic-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-bottom: 1.5625em;
    position: relative; }
    .statistic-list li::after {
      content: '';
      width: 40px;
      height: 1px;
      background-color: #ffdd55;
      position: absolute;
      left: 0;
      bottom: -1px; }
  .statistic-list .text {
    font-size: 1.125rem;
    color: var(--grey);
    margin-bottom: 1em; }
  .statistic-list .count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 4.5rem;
    color: var(--yellow);
    font-weight: 700; }
    .statistic-list .count::after {
      content: '+';
      color: #101010; }

.statistic__descr,
.statistic__img {
  width: 43%; }

.statistic__descr {
  padding-bottom: 4em; }
  .statistic__descr h2 {
    font-size: 3.75rem;
    font-weight: 200;
    line-height: 1.3;
    margin-bottom: .75em; }
  .statistic__descr p {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 2em; }

.text-popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  top: 0;
  left: 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5em 20px;
  color: var(--black);
  -webkit-transform: scale(2);
          transform: scale(2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 10; }
  .text-popup.active {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .text-popup h2, .text-popup h3 {
    margin-bottom: .5em; }
  .text-popup p {
    font-size: 1.5rem;
    line-height: 1.5; }
    .text-popup p:not(:last-child) {
      margin-bottom: 1em; }

.text-popup__content {
  width: 90%;
  margin: auto; }

.close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 30px;
  right: 30px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .close:hover::after, .close:hover::before {
    background-color: #f5939d; }
  .close::after, .close::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #101010;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

/*features*/
.features {
  position: relative;
  background-color: var(--grey-bg);
  padding: 6.25em 0; }
  .features .container {
    position: relative;
    z-index: 1; }

.features__list {
  border-top: 1px solid #f3f3f3; }
  .features__list li {
    width: 33.3333%;
    height: 13.125em;
    border-bottom: 1px solid #f3f3f3;
    -webkit-transition: all .3s;
    transition: all .3s; }
    .features__list li:hover {
      z-index: 1;
      -webkit-box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.1);
              box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.1); }
    .features__list li:nth-child(odd) {
      background-color: #fff; }
    .features__list li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 100%; }

/*contact*/
.contact-block {
  padding: 6.25em 0;
  background: #101010 url("../img/bg/contact_bg.jpg") center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  position: relative;
  overflow: hidden; }
  .contact-block .container {
    position: relative;
    z-index: 2; }

.orbit {
  position: absolute;
  width: 50em;
  height: 50em;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 50%;
  border: 1px dashed #2a2a2a;
  -webkit-animation: rotate 60s infinite linear;
          animation: rotate 60s infinite linear;
  z-index: 0; }
  .orbit::before {
    content: '';
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background-color: #ffdd55;
    -webkit-filter: blur(30px);
            filter: blur(30px);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(400%, 50%);
            transform: translate(400%, 50%); }

.contact__title {
  font-size: 3rem;
  margin-bottom: 1.5em; }
  .contact__title span {
    display: block;
    color: rgba(255, 255, 255, 0.34);
    font-size: .5em;
    display: block;
    margin-bottom: 2em;
    font-weight: 200; }
  .contact__title .h3 {
    font-size: 1em;
    font-weight: 500; }

.contact-form {
  max-width: 950px;
  margin: 0 auto; }
  .contact-form .btn {
    padding: 1em 5em; }
  .contact-form .btn-container {
    margin-top: 4em; }

/*about-top*/
.about-top {
  position: relative;
  margin-bottom: 13em;
  z-index: 2; }
  .about-top .container--fluid {
    width: 90%;
    margin: 0 auto; }

.about-top__body {
  background-color: var(--red);
  line-height: 0;
  padding: 0 3.5em;
  height: 37em;
  position: relative; }

.about-top__descr {
  width: 45%;
  position: absolute;
  line-height: 1.3;
  padding-top: 4.375em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: translateY(0.5%);
          transform: translateY(0.5%);
  height: 100%; }
  .about-top__descr .h4 {
    display: block;
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 2em; }
  .about-top__descr .h1 {
    font-size: 10rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    background: url("../img/bg/text-bg.jpg") 12% 20% no-repeat;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    z-index: 3; }

.about-top__img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .about-top__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.about-descr .title-row {
  margin-bottom: 3em; }

.subtitle-text {
  font-size: 1.5rem;
  line-height: 1.4;
  max-width: 18.75em;
  font-weight: 200;
  margin-bottom: 4em; }

.about-descr__list {
  margin: 0 -3.75em;
  counter-reset: number; }
  .about-descr__list li {
    padding: 0 3.75em;
    width: 33.3333%;
    margin-bottom: 7.5em; }

.about-descr__content .h4 {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .about-descr__content .h4::before {
    content: "0" counter(number);
    counter-increment: number;
    font-size: .4em;
    font-weight: 300;
    color: #f5939d;
    -ms-flex-item-align: end;
        align-self: flex-end; }
.about-descr__content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7; }

/*team*/
.team {
  padding-bottom: 6.25em; }

.team__body {
  background-color: var(--grey-bg);
  padding: 6.25em 0 2em; }

.team__list {
  margin: 0 -.8em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .team__list li {
    padding: 0 .8em;
    width: 20%;
    height: 21em; }

.team__item {
  height: 16em;
  overflow: hidden;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .team__item:hover {
    height: 21em;
    -webkit-box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.3);
            box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.3); }
    .team__item:hover .member-descr {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      visibility: visible; }
  .team__item img {
    width: 100%;
    height: 21em;
    -o-object-fit: cover;
       object-fit: cover; }

.member-descr {
  text-align: center;
  padding: 1em;
  line-height: 1.4;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 2; }
  .member-descr .name {
    font-size: 1.5em;
    font-weight: 500; }

/*advantages*/
.advantages {
  padding: 6.25em;
  color: #fff;
  background: #101010 url("../img/bg/advantage_bg.jpg") left top no-repeat;
  background-size: cover;
  position: relative; }
  .advantages .container {
    position: relative;
    z-index: 2; }
  .advantages .column {
    border-color: rgba(255, 255, 255, 0.05); }

.advantages-slider {
  counter-reset: number; }

.advantage-slider__content {
  padding: 4.375em 1em;
  position: relative; }
  .advantage-slider__content::after {
    content: '';
    width: 12.5em;
    height: 12.5em;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(20%, transparent), to(rgba(255, 221, 85, 0.5)));
    background: linear-gradient(to right bottom, transparent 20%, rgba(255, 221, 85, 0.5));
    position: absolute;
    left: 40%;
    top: 50%;
    -webkit-transform: translate(-40%, -40%);
            transform: translate(-40%, -40%);
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .advantage-slider__content:hover::after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .advantage-slider__content:hover::after,
  .advantage-slider__content:hover h4::after {
    opacity: 1; }
  .advantage-slider__content .h4 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: .5em;
    position: relative; }
    .advantage-slider__content .h4::before {
      content: "0" counter(number);
      counter-increment: number;
      font-size: .4em;
      font-weight: 300;
      color: #f5939d;
      -ms-flex-item-align: end;
          align-self: flex-end; }
    .advantage-slider__content .h4::after {
      content: counter(number);
      font-size: 9rem;
      font-weight: 900;
      background: url("../img/bg/text-bg.jpg") 60% 60% no-repeat;
      -webkit-background-clip: text;
      -o-background-clip: text;
      -moz-background-clip: text;
      -ms-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      opacity: 0;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
    .advantage-slider__content .h4 span {
      position: relative;
      z-index: 1; }
  .advantage-slider__content p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    z-index: 2; }

.advantages-slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3em; }
  .advantages-slider-arrows .slick-arrow {
    margin: 0 10px; }

/*reviews*/
.reviews {
  background: #f7f8f9 url("../img/bg/angle_circles.png") left 100% no-repeat;
  background-size: 350px;
  padding: 6.25em 0; }
  .reviews .btn--yellow:hover {
    color: var(--black) !important; }

.reviews__list {
  margin: 0 -.8em 4em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .reviews__list li {
    width: 20%;
    min-width: 180px;
    padding: 0 .8em;
    margin-bottom: 1.6em; }

.reviews__item {
  display: block;
  background-color: #fff;
  position: relative; }
  .reviews__item::after {
    content: '';
    width: 100%;
    height: 2em;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .reviews__item:hover {
    -webkit-box-shadow: -20px 30px 40px rgba(0, 0, 0, 0.2);
            box-shadow: -20px 30px 40px rgba(0, 0, 0, 0.2); }
    .reviews__item:hover::after {
      max-height: 2em; }
  .reviews__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

/*inner-top*/
.inner-top {
  margin: 0 0 4.375em; }

.inner-top__content {
  height: 14.5em;
  padding-left: 4.375em;
  position: relative; }
  .inner-top__content .h1 {
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    background: url("../img/bg/text-bg.jpg") 40% 80% no-repeat;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
    z-index: 3; }

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

/*calculator*/
.calculator__price {
  padding: 4.375em 0;
  background-color: var(--grey-bg);
  counter-reset: number; }

.calculator__price__item {
  width: 49%; }

.accordeon {
  position: relative; }
  .accordeon.active .accordeon__title__icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0); }
  .accordeon--tip .accordeon__title {
    border: 1px solid var(--black); }
  .accordeon--tip .accordeon__title__text::before {
    display: none; }
  .accordeon--tip .accordeon__title__icon {
    background-color: var(--yellow); }
    .accordeon--tip .accordeon__title__icon::before, .accordeon--tip .accordeon__title__icon::after {
      background-color: #101010; }

.accordeon__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 36px;
  font-size: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
  cursor: pointer; }

.accordeon__title__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .accordeon__title__text::before {
    content: counter(number) ".";
    counter-increment: number;
    margin-top: -.1em;
    margin-right: .3em; }

.accordeon__title__icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 2.666em;
  height: 2.666em;
  border-radius: 50%;
  background-color: #101010;
  position: relative; }
  .accordeon__title__icon::before, .accordeon__title__icon::after {
    content: '';
    width: 1.25em;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s; }
  .accordeon__title__icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg); }

.accordeon__content {
  display: none; }
  .accordeon__content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    line-height: 1.5;
    padding: 0 1.5em; }
    .accordeon__content p a {
      color: var(--red); }
      .accordeon__content p a:hover {
        color: var(--black); }

.calculator__inputs {
  padding: 3.125em 4.375em 5em;
  background: #101010 url("../img/bg/contact_bg.jpg") 100% top no-repeat;
  background-size: cover;
  color: #fff;
  width: 66%; }

.calculator__form__title .h3,
.calculator__form__title .notice,
.calculator__form__content__left,
.calculator__form__content__right {
  width: calc(50% - 1em); }

.calculator__form__title {
  margin-bottom: 2em; }

.calculator__form__title .h3 {
  font-size: 1.8rem;
  font-weight: 700; }

.notice {
  font-size: .8em;
  line-height: 1.6;
  font-weight: 300;
  background: transparent url("../img/icons/check_lg.png") 0 center no-repeat;
  background-size: contain; }

.calculator__form__content__left .input {
  margin-bottom: 1em; }
  .calculator__form__content__left .input:last-child {
    margin-bottom: 0; }

.calculator__form__content__right .input-wrapper {
  -webkit-transform: translateY(2.3em);
          transform: translateY(2.3em); }

.input-wrapper span {
  display: block;
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: .75em; }

.textarea-wrapper {
  position: relative; }
  .textarea-wrapper::after {
    content: '';
    width: 100px;
    height: 1px;
    background-color: #ffdd55;
    position: absolute;
    left: 0;
    bottom: 0; }

.textarea {
  display: block;
  width: 100%;
  height: 12.9em;
  border: 1px solid #424242;
  padding-top: .5em;
  padding-left: 1em;
  background-color: transparent;
  color: #fff;
  font-size: 1rem;
  border-radius: 0;
  resize: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .textarea:focus {
    border-color: var(--yellow); }

.calculator__total {
  width: 34%;
  background-color: var(--yellow);
  padding: 3.125em 4.375em 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.calculator__total__top {
  margin-bottom: 4.365em;
  padding-top: 1em; }

.calculator__total__title {
  font-size: 1.8rem;
  margin-bottom: .3em;
  font-weight: 200;
  display: block; }

.calculator__total__summa {
  font-size: 3rem;
  font-weight: 200; }
  .calculator__total__summa::after {
    content: 'Руб.';
    display: inline-block;
    padding-left: .2em; }

/*individual*/
.individual {
  padding: 0 0 6.25em; }
  .individual .container--fluid {
    position: relative;
    padding-top: 6.25em; }
    .individual .container--fluid::after {
      content: '';
      width: 100%;
      height: 80%;
      background-color: #f7f8f9;
      position: absolute;
      top: 0;
      left: 0; }
    .individual .container--fluid > div {
      position: relative;
      z-index: 1; }

.individual-slider {
  margin: 0 -1em 3em; }

.individual-slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .individual-slider__arrows .slick-arrow {
    margin-bottom: 0;
    margin: 0 .5em; }

.individual__item {
  padding: 0 1em; }

.individual__content {
  position: relative;
  height: 28em; }

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

.individual__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em 4.375em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden; }
  .individual__descr::after {
    content: '';
    width: 10em;
    height: 10em;
    background-color: #4198f9;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%); }
  .individual__descr h4 {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1em; }
  .individual__descr p {
    font-weight: 300;
    line-height: 1.5; }

/*individual-descr*/
.individual-descr {
  padding: 4em 0; }

.individual-descr {
  margin: 0 -4.375em; }
  .individual-descr li {
    width: 33.3333%;
    padding: 0 4.375em;
    margin-bottom: 4.375em; }

.individual-descr__item:hover .first-letter::after {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg); }
.individual-descr__item h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: .4em; }
.individual-descr__item p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5; }

.first-let {
  display: inline-block;
  font-size: 7rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  background: url(../img/bg/text-bg.jpg) 48% 60% no-repeat;
  -webkit-background-clip: text;
  -o-background-clip: text;
  -moz-background-clip: text;
  -ms-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative; }
  .first-let::after {
    content: '';
    width: 1.8em;
    height: 1.8em;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(20%, transparent), to(#ffdd55));
    background: linear-gradient(to bottom right, transparent 20%, #ffdd55);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all 5s;
    transition: all 5s; }

/*difference*/
.difference {
  background: #101010 url("../img/bg/difference_bg.png") left top no-repeat;
  background-size: cover;
  padding: 6.25em 0 4em;
  margin-bottom: 3em;
  color: #fff; }

.difference__descr {
  width: 49%; }
  .difference__descr h2 {
    line-height: 1;
    margin-bottom: .5em; }
  .difference__descr p {
    line-height: 1.5;
    font-weight: 300;
    font-size: 1.125em; }
    .difference__descr p:not(:last-child) {
      margin-bottom: 2em; }

.difference__img {
  width: 49%;
  -webkit-transform: translateY(7.2em);
          transform: translateY(7.2em); }
  .difference__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

/*tip-block*/
.tip-block {
  margin-top: 6.25em;
  padding: 6.25em 0 3.125em;
  position: relative;
  background-color: var(--grey-bg); }
  .tip-block .container--fluid {
    position: relative;
    z-index: 1; }

.order-list {
  font-size: 1.125rem;
  margin: 0 -3em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  counter-reset: number; }
  .order-list li {
    width: 33.333%;
    padding: 0 3em;
    margin-bottom: 3em;
    line-height: 1.4;
    font-weight: 300; }
    .order-list li::before {
      content: "0" counter(number);
      counter-increment: number;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 3.33em;
      border-radius: 50%;
      width: 1.5em;
      height: 1.5em;
      background: -webkit-gradient(linear, left top, right top, color-stop(10%, transparent), to(#ffdd55));
      background: linear-gradient(to right, transparent 10%, #ffdd55);
      background-position: center; }
    .order-list li p {
      margin-top: 1em; }

/*about-us*/
.about-us {
  padding: 6.25em 0 3.125em; }

.about-us__list {
  counter-reset: number; }
  .about-us__list li {
    width: 49%;
    font-size: 1.125em;
    font-weight: 300;
    line-height: 1.5;
    padding: 3.88em 0 1.5em 7.222em;
    margin-bottom: 3.88em;
    position: relative; }
    .about-us__list li::before {
      content: "0" counter(number);
      counter-increment: number;
      display: block;
      margin-bottom: 1em; }
    .about-us__list li:last-child {
      padding: 0; }
      .about-us__list li:last-child::before {
        content: '';
        display: none; }

.about-us--blue::before {
  color: #4198f9; }
.about-us--blue .about-us__decor::before {
  background-color: #4198f9; }

.about-us--red::before {
  color: #f5939d; }
.about-us--red .about-us__decor::before {
  background-color: #f5939d; }

.about-us--yellow::before {
  color: #ffdd55; }
.about-us--yellow .about-us__decor::before {
  background-color: #ffdd55; }

.about-us__decor {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 33%;
  background-color: var(--grey-bg);
  overflow: hidden;
  z-index: -1; }
  .about-us__decor::before {
    content: '';
    width: 10em;
    height: 10em;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.about-us__notice {
  background: #f5939d url("../img/bg/hand.png") 80% 100% no-repeat;
  font-size: 1.66em;
  color: #fff;
  padding: 1.666em 3.333em;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em); }

/*rates*/
.rates {
  position: relative;
  padding-top: 6.25em; }
  .rates::after {
    content: '';
    width: 100%;
    height: 79.7%;
    background-color: #f7f8f9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; }

.rates-group {
  max-width: 1170px;
  margin: 0 auto;
  padding-bottom: 1em; }

.rate-block {
  width: 33.3333%; }
  .rate-block:first-child .rate-block__body {
    border-left: 1px solid #f0f1f2; }
  .rate-block .rate-block__body {
    border-right: 1px solid #f0f1f2; }

.rate__title {
  background-color: var(--blue);
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  padding: 1.66em .5em;
  color: #fff; }
  .rate__title--yellow {
    font-weight: 500;
    color: var(--black);
    background-color: var(--yellow); }

.rate-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.3em .3em;
  background-color: rgba(65, 152, 249, 0.09); }
  .rate-price .old-price,
  .rate-price .current-price {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 300; }
  .rate-price .old-price {
    color: #a0a0a0;
    margin-right: 1em;
    position: relative; }
    .rate-price .old-price::before {
      content: '';
      width: 110%;
      height: 1px;
      background-color: rgba(160, 160, 160, 0.5);
      position: absolute;
      left: -5%;
      top: 50%; }

.ruble::after {
  content: 'Р';
  display: inline-block;
  padding-left: .1em; }

.rate__list {
  background-color: #fff; }
  .rate__list li {
    border-bottom: 1px solid #f0f1f2;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    padding: 1em .5em; }

.rate-warranty {
  height: 4.8125em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #eef6fe;
  font-size: 1rem;
  color: var(--blue);
  font-weight: 500;
  text-align: center;
  padding: 1.8em .5em; }

.rate-btn {
  text-align: center;
  padding: 1.8em 0; }
  .rate-btn .btn {
    padding: .75em 2.5em; }

/*text-tip*/
.text-tip {
  padding: 3em 0 0; }
  .text-tip .container {
    max-width: 1170px; }
  .text-tip .title {
    margin-bottom: 3em; }

/*portfolio*/
.portfolio {
  padding-bottom: 6.25em; }

.sort li {
  margin-right: 2px;
  margin-bottom: 2.5em; }
  .sort li a {
    display: block;
    font-size: 1.125em;
    font-weight: 200;
    padding: 1.111em 2.22em;
    border-radius: 31px;
    border: 2px solid transparent; }
    .sort li a.active {
      background-color: var(--yellow); }
    .sort li a:hover {
      border-color: var(--yellow); }

.portfolio__list {
  margin: 0 -1em 4em; }

.portfolio__item {
  width: 25%;
  padding: 0 .5em;
  margin-bottom: 1em; }
  .portfolio__item--md {
    width: 50%; }
  .portfolio__item--full {
    width: 100%; }
  .portfolio__item .case-slider__item {
    width: 100%;
    margin-right: 0; }

.case-slider__item--long {
  width: 88em; }

.slider-img--center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

/*articles*/
.articles {
  padding-top: 20px;
  padding-bottom: 6.25em; }

.articles-block {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .articles-block .content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 1.5625em; }
  .articles-block .aside {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 21.875em;
    padding: 1.5625em;
    border: 2px solid #f7f8f9; }

.articles__list {
  margin: 0 -1em; }

.article-item {
  width: 33.3333%;
  padding: 0 1em;
  margin-bottom: 2em; }

.article__body {
  background-color: var(--grey-bg);
  -webkit-transition: all .3s;
  transition: all .3s; }
  .article__body:hover {
    -webkit-box-shadow: 0 40px 50px -20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 40px 50px -20px rgba(0, 0, 0, 0.2); }

.article__img {
  height: 17.5em; }
  .article__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.article__descr {
  padding: 1.5625em 1.8em; }

.article__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  height: 4.2em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .3em; }
  .article__title:hover {
    color: var(--red); }

.article__data .date {
  font-size: .875em;
  font-weight: 300; }
.article__data .btn {
  font-size: .875em;
  padding: 1em 2em; }

.aside__item {
  margin-bottom: 1.6em; }

.aside__title {
  font-size: 1.125em;
  font-weight: 500;
  padding-bottom: 1.4em;
  margin-bottom: 1.4em;
  border-bottom: 1px solid  #f7f8f9; }

.search {
  position: relative; }

.search-input {
  display: block;
  width: 100%;
  height: 60px;
  padding-left: 15px;
  font-size: 16px;
  background-color: var(--grey-bg);
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

.search-submit {
  display: block;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent url("../img/icons/search_red.svg") center no-repeat;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

.aside__menu {
  font-size: 1.125em;
  font-weight: 300; }
  .aside__menu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.6em; }
    .aside__menu li::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: #f5939d;
      margin-right: .8em; }
    .aside__menu li a:hover {
      color: var(--red); }

.tags__title {
  font-size: 1.125em;
  font-weight: 500;
  margin-right: 10px;
  padding-top: 10px; }

.tags__list li {
  margin: 0 3px 5px 0; }
  .tags__list li a {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    padding: .75em 1.3em;
    border-radius: 30px;
    border: 2px solid transparent; }
    .tags__list li a:hover {
      border-color: var(--yellow); }

.article-top__content {
  background-color: var(--blue);
  color: #fff;
  padding: 4.375em 0 13.75em; }
  .article-top__content h1 {
    font-size: 2.25em;
    font-weight: 400;
    line-height: 1.4;
    max-width: 60%; }
  .article-top__content .date {
    -webkit-transform: translateY(20%);
            transform: translateY(20%); }

.article-top__img {
  margin-top: -10em;
  margin-bottom: 30px; }

.article-body p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.7em;
  font-weight: 300; }
.article-body ol {
  counter-reset: number;
  margin: 2em 0; }
  .article-body ol li {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .article-body ol li::before {
      content: "0" counter(number);
      counter-increment: number;
      color: var(--blue);
      font-size: .85em;
      margin-right: .5em; }
.article-body ul {
  margin: 2em 0;
  list-style-type: disc;
  padding-left: 1em; }
  .article-body ul li {
    list-style-type: disc;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1em; }

.quote {
  background-color: var(--grey-bg);
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 500;
  color: #787878;
  padding: 2em 2.5em 2em 2.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3em 0; }
  .quote::before {
    content: '';
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 2.333em;
    height: 1.88em;
    background: transparent url("../img/icons/quote.png") left top no-repeat;
    background-size: contain;
    margin-right: 2.5em; }
  .quote p {
    font-size: 1.125em;
    line-height: 1.5;
    font-weight: 500;
    color: #787878;
    margin-bottom: 0; }

.notice-lg {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 1.333em 0 1em;
  margin: 2em 0 2em;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black); }

.releated-articles .title {
  margin-bottom: 2em; }

/*paginator*/
.paginator {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3em 0 0; }
  .paginator li {
    color: var(--red);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 3.75em;
    height: 3.75em; }
    .paginator li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      font-size: 1rem;
      font-weight: 300;
      border: 2px solid transparent; }
      .paginator li a.active, .paginator li a:hover {
        border-color: #edf0f5; }

.prev-page,
.next-page {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center; }

.prev-page {
  background-image: url("../img/icons/arrow_left.png");
  -webkit-transform: translateX(-1em);
          transform: translateX(-1em); }

.next-page {
  background-image: url("../img/icons/arrow_right.png");
  -webkit-transform: translateX(1em);
          transform: translateX(1em); }

/*choose-service*/
.choose-service {
  padding-bottom: 4em; }

.service__list {
  margin: 0 -1em; }
  .service__list li {
    width: 33.3333%;
    padding: 0 1em;
    margin-bottom: 2em; }

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.5em;
  position: relative;
  background-color: var(--grey-bg); }
  .service__item:hover {
    -webkit-box-shadow: 0 40px 50px -20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 40px 50px -20px rgba(0, 0, 0, 0.2); }
  .service__item.yellow-bg {
    background-color: var(--yellow); }
  .service__item.blue-bg {
    background-color: var(--blue);
    color: #fff; }

.service__item__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 300;
  z-index: 1; }

.service__item__title {
  font-size: 2em;
  font-weight: 300;
  line-height: 1.1;
  height: 2.2em;
  overflow: hidden;
  margin-bottom: 1em; }

.service__item__descr {
  font-size: 1rem;
  width: 75%;
  line-height: 1.7;
  height: 5.1em;
  overflow: hidden;
  margin-bottom: 1em; }

.service__item__data {
  line-height: 1.3; }

.service__item__img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 40%;
  max-height: 70%; }

/*our-contact*/
.our-contact {
  padding: 20px 0 6.25em; }

.address-block {
  width: 30%;
  background: #f5939d url("../img/bg/envelop.png") 100% 100% no-repeat;
  background-size: 50%;
  padding: 3em;
  color: #fff; }
  .address-block .h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5em; }

.studio-name {
  font-weight: 300;
  font-size: 1.125rem;
  margin-bottom: 1.5em; }

.address-block__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: .7em; }
  .address-block__line:not(:last-child) {
    margin-bottom: 2em; }
  .address-block__line a {
    color: #fff; }
    .address-block__line a:hover {
      color: var(--black); }

.address-block__title {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 1.125em;
  margin-bottom: .5em; }
  .address-block__title::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: .4em;
    left: -.8em; }

.address-block__content {
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 1.4; }

.feedback {
  width: 70%;
  background-color: var(--grey-bg); }
  .feedback .calculator__inputs {
    background: none;
    width: 100%;
    padding: 3em; }
  .feedback .input {
    margin-bottom: 20px; }
  .feedback .calculator__inputs,
  .feedback .input__field--hoshi,
  .feedback .input__label {
    color: var(--black); }
  .feedback .input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi, .feedback .input--filled + .input__label--hoshi .input__label-content--hoshi {
    color: rgba(0, 0, 0, 0.7); }
  .feedback .textarea {
    height: 214px;
    color: #000; }

.feedback__bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .feedback__bottom .btn--black {
    border-color: transparent;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
    .feedback__bottom .btn--black:hover {
      border-color: #000; }

.map {
  padding: 20px 0 4em; }

/*project-preview*/
.project-preview {
  padding-bottom: 6.25em; }

.project-preview__top {
  position: relative;
  line-height: 0;
  margin-bottom: 3.5em; }
  .project-preview__top::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4); }
  .project-preview__top .container {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 6em;
    z-index: 2; }

.difference__descr__title {
  font-size: 3rem;
  font-weight: 500; }

.project-preview__top__title {
  color: #fff;
  line-height: 1.3;
  font-weight: 300;
  z-index: 2; }
  .project-preview__top__title h2 {
    font-size: 2.25em; }

.project-preview__item {
  max-width: 860px;
  margin: 0 auto 3em; }
  .project-preview__item h3 {
    font-weight: 300;
    font-size: 1.8rem;
    margin-bottom: 1em; }
  .project-preview__item p {
    font-size: 1.125em;
    line-height: 2;
    font-weight: 300; }

.project__options__title {
  color: #909090;
  font-size: .875em;
  margin-bottom: .5em;
  font-weight: 300; }

.project__options__name {
  font-size: 1.125em;
  font-weight: 300; }
  .project__options__name a {
    color: var(--red); }
    .project__options__name a:hover {
      color: var(--black); }
  .project__options__name li {
    display: inline-block;
    margin-right: .3em; }
    .project__options__name li:not(:first-child)::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #ffdd55;
      display: inline-block;
      vertical-align: middle;
      margin-right: .5em; }

/*Footer*/
.footer {
  background-color: #191919;
  color: #fff; }
  .footer .social li a:hover {
    background-color: #000;
    border-color: #000; }

.footer__content {
  padding: 6em 0; }

.footer__content__item--full {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 7em; }

.footer__descr .logo {
  margin-bottom: 1.6em;
  color: #fff; }
.footer__descr p {
  color: rgba(254, 254, 254, 0.3);
  font-size: .75em;
  font-weight: 300;
  line-height: 1.5;
  max-width: 19em; }

.footer-menu,
.footer__address {
  font-size: .875em;
  font-weight: 300;
  line-height: 2.5; }
  .footer-menu a,
  .footer__address a {
    color: #fff; }
    .footer-menu a:hover,
    .footer__address a:hover {
      color: var(--yellow); }

.footer__bottom {
  background-color: #101010;
  padding: .875rem;
  padding: 2.5em 0;
  color: rgba(254, 254, 254, 0.3);
  line-height: 1.5; }
  .footer__bottom a {
    color: rgba(254, 254, 254, 0.3); }
    .footer__bottom a:hover {
      color: var(--yellow); }
  .footer__bottom .policy::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #de5558;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px; }

/*media*/
@media (max-width: 1600px) {
  .container--fluid.no-padding {
    width: 100%;
    padding: 0 20px; }
    .container--fluid.no-padding .container--lg {
      padding-left: 0;
      padding-right: 0; }

  .individual .container--fluid {
    padding-top: 6.25em; }

  .individual-descr {
    margin: 0 -10px; }
    .individual-descr li {
      padding-left: 20px;
      padding-right: 20px; } }
@media (max-width: 1400px) {
  html {
    font-size: .8vw; }

  .header {
    width: 100%;
    padding: 30px 0; }
    .header .container {
      padding: 0 20px; }

  .pink-circle {
    width: 75em;
    height: 75em; }

  .menu-block .container {
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

  .case-slider-arrows {
    width: 15%; }

  .case-slider {
    width: 85%; }

  .prev-arrow, .next-arrow {
    width: 40px;
    height: 40px; }

  .arrow {
    width: 30px;
    height: 30px; }

  .service-slider .slick-list {
    height: 400px !important;
    margin-top: -150px; }

  .service-slider__img img {
    height: 400px;
    -o-object-fit: contain;
       object-fit: contain; }

  .statistic {
    background-image: none; }

  .features__list li {
    height: 22em; }

  .features {
    padding: 50px 0; }

  .input__label {
    font-size: 18px; }

  .contact-block {
    padding: 50px 0; }

  .contact__title {
    font-size: 4rem; }

  .input-wrapper span {
    font-size: 18px;
    margin-bottom: 5px; }

  .calculator__form__content__right .input-wrapper {
    -webkit-transform: translateY(57px);
            transform: translateY(57px); }

  .textarea {
    height: 193px;
    font-size: 16px; }

  .calculator__total {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

  .calculator__total__title,
  .rate__title,
  .rate-price .old-price, .rate-price .current-price {
    font-size: 2.2rem; }

  .calculator__total__summa {
    font-size: 3.5rem; }

  .agree label,
  .notice {
    font-size: 1.1rem; }

  .individual__descr p,
  .order-list,
  .about-us__list li,
  .rate__list li,
  .rate-warranty,
  .difference__descr p {
    font-size: 1.5rem; }

  .difference__descr p {
    line-height: 2; }

  .rate-btn .btn {
    font-size: 16px; }

  .text-popup h2 {
    font-size: 34px; }

  .text-popup h3 {
    font-size: 28px; }

  .text-popup p {
    font-size: 16px; } }
/*1400*/
@media (max-width: 1360px) {
  .main-screen {
    height: auto;
    padding: 150px 0;
    position: relative; }

  .main-screen__img {
    top: 0; }
    .main-screen__img img {
      height: 35vh; }

  .main-screen__bottom {
    position: absolute;
    bottom: 30px;
    width: 90%;
    left: 5%;
    right: 0; }

  .main-screen__contact a {
    font-size: 1.5rem; }

  .main-screen__contact a:not(:last-child) {
    margin-right: 3em; }

  .main-screen__title .h1 {
    font-size: 5rem; }
  .main-screen__title .h2 {
    font-size: 4rem; }

  .main-screen__title .circles {
    width: 400px;
    left: 0; }

  .main-screen__title .dots {
    width: 200px; }

  .drop-li.active {
    color: var(--red); }
    .drop-li.active::after {
      opacity: 1; }
    .drop-li.active .submenu {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
      visibility: visible; }

  .btn {
    font-size: 14px; }

  .clients-img {
    width: 200px; }

  .service-slider__descr h3 {
    font-size: 3.5rem; }

  .service-slider__descr p {
    font-size: 2rem; }

  .statistic__descr, .statistic__img {
    width: 50%; }

  .statistic__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .statistic__img img {
      max-width: 300px;
      -webkit-transform: translateY(4em);
              transform: translateY(4em); }

  .contact__title {
    font-size: 30px;
    margin-bottom: 40px; }

  .contact__title span {
    font-size: 18px;
    margin-bottom: 1em; }

  .contact-form .btn {
    font-size: 16px; }

  .title-row .mouse {
    display: none; }

  .team__item {
    height: auto; }

  .team__item img {
    height: 100%; }

  .member-descr {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible; }

  .reviews-container {
    overflow-y: auto; }

  .reviews__list {
    min-width: 1000px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }

  .radio label, .checkbox label,
  .sort li a,
  .aside__menu,
  .aside__title {
    font-size: 1.5rem; }

  .accordeon__title {
    font-size: 1.7rem; }

  .title h4, .title .h4 {
    max-width: 100%; }

  .articles-block .aside {
    width: 250px; }

  .tags__list li a {
    font-size: 1.1rem; }

  .article-body ol,
  .article-body ul {
    margin: 30px 0; }

  .article-body p,
  .article-body ol li,
  .article-body ul li {
    font-size: 16px; }

  .quote,
  .quote p {
    font-size: 18px; }

  .notice-lg {
    font-size: 22px; }

  .project-preview__top__title {
    font-size: 30px; }

  .project__options__title {
    font-size: 12px; }

  .project__options__name {
    font-size: 14px; }

  .project-preview__item h3 {
    font-size: 24px; }

  .project-preview__item p {
    font-size: 16px; }

  .about-top__img {
    height: 100%; }

  .feedback__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }
/*1360*/
@media (max-width: 1024px) {
  .menu-block .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

  .menu-block__content {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

  .main-menu {
    width: 300px; }

  .main-menu > li {
    font-size: 20px; }

  .social--border li a {
    width: 50px;
    height: 50px; }

  .submenu {
    padding-top: 2px; }
    .submenu li a {
      font-size: 16px; }

  .menu-block__decor {
    width: 100%; }

  .menu__title {
    text-align: center; }
    .menu__title br {
      display: none; }

  .case {
    padding-top: 60px; }

  .case-slider .slick-list {
    padding-bottom: 60px; }

  .title .h2,
  .statistic__descr h2 {
    font-size: 4rem; }

  .statistic__descr p {
    font-size: 16px; }

  .input {
    margin-bottom: 30px; }

  .footer-menu, .footer__address {
    font-size: 1.5rem; }

  .footer__descr p {
    font-size: 1.2rem; }

  .footer__content .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .footer__content .footer__content__item:last-of-type {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px; }

  .footer__bottom,
  .about-descr__content p {
    font-size: 1.4rem; }

  .subtitle-text {
    font-size: 2rem;
    margin-bottom: 2em; }

  .about-descr__content .h4 {
    font-size: 2.4rem; }
    .about-descr__content .h4::before {
      font-size: .75em; }

  .title p {
    font-size: 2rem; }

  .advantage-slider__content::after {
    display: none; }

  .advantage-slider__content .h4 {
    font-size: 18px; }
    .advantage-slider__content .h4::before {
      font-size: .75em; }
    .advantage-slider__content .h4::after {
      display: none; }

  .advantage-slider__content p {
    font-size: 12px; }

  .title h4, .title .h4 {
    font-size: 2rem; }

  .accordeon__title {
    font-size: 1.9rem; }

  .radio label, .checkbox label,
  .accordeon__content p {
    font-size: 1.7rem; }

  .calculator__form__content,
  .calculator__form__title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }

  .calculator__form__title .h3, .calculator__form__title .notice, .calculator__form__content__left, .calculator__form__content__right,
  .address-block,
  .feedback {
    width: 100%; }

  .calculator__form__content__left {
    margin-bottom: 30px; }

  .calculator__form__content__right .input-wrapper {
    -webkit-transform: translateY(0);
            transform: translateY(0); }

  .calculator__form__title {
    text-align: center; }
    .calculator__form__title .h3 {
      font-size: 18px;
      margin-bottom: 10px; }

  .notice,
  .address-block__title {
    font-size: 14px; }

  .agree label {
    font-size: 12px; }

  .calculator__total__summa {
    font-weight: 500; }

  .individual-descr__item h4,
  .service__item__title,
  .address-block .h4 {
    font-size: 2.4rem; }

  .individual-descr__item p,
  .studio-name {
    font-size: 2rem; }

  .difference__descr h2 {
    font-size: 4rem; }

  .difference__descr p,
  .sort li a {
    font-size: 1.8rem; }

  .service__item__descr,
  .service__item__data {
    font-size: 1.2rem; }

  .address-block__content {
    font-size: 18px; }

  .address-block {
    margin-bottom: 40px; }

  .feedback .calculator__inputs {
    padding: 20px; }

  .order-block .menu-block__decor,
  .callback-block .menu-block__decor {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }

  .order-block .pink-circle,
  .callback-block .pink-circle {
    width: 50em;
    height: 50em; }

  .order-block .yellow-circle,
  .callback-block .yellow-circle {
    top: 70%; }

  .order-block .menu__title,
  .callback-block .menu__title {
    text-align: right; }

  .order-block .menu__title br,
  .callback-block .menu__title br {
    display: block; }

  .text-popup {
    padding: 40px 20px; }

  .text-popup .close {
    width: 20px;
    height: 20px;
    top: 10px;
    right: 10px; }

  .service-slider__img img {
    height: 280px; } }
/*1024*/
@media (max-width: 990px) {
  .article-item {
    width: 50%; }

  .article__title {
    font-size: 2rem; }

  .article__data .date,
  .article__data .btn {
    font-size: 1.5rem; }

  .paginator li {
    width: 35px;
    height: 35px; }
    .paginator li a {
      font-size: 12px; }

  .order-block .yellow-circle,
  .callback-block .yellow-circle {
    display: none; } }
/*990*/
@media (max-width: 768px) {
  .main-screen__title .h1 {
    font-size: 6.5rem; }
  .main-screen__title .h2 {
    font-size: 5rem; }

  .main-screen__img img {
    height: 25vh; }

  .case-slider__item {
    width: 30em;
    height: 40em; }
    .case-slider__item--lg {
      width: 50em; }

  .case-slider__item .date {
    font-size: 1.5rem;
    margin-bottom: 1em; }

  .case-slider__title {
    font-size: 2.4rem; }

  .title .h2 {
    font-size: 5rem; }

  .banner__title {
    font-size: 6.5rem; }

  .banner__subtitle .h3 {
    font-size: 4.5rem; }

  .btn {
    font-weight: 400; }

  .clients-slider__item {
    margin-bottom: 30px; }

  .clients-slider__item img {
    max-width: 60%; }

  .service-slider .slick-list {
    margin-top: -120px; }

  .calculator__price > .container--lg {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }

  .calculator__price__item,
  .calculator__inputs,
  .calculator__total,
  .difference__descr,
  .difference__img,
  .order-list li,
  .rate-block {
    width: 100%; }

  .accordeon__title {
    font-size: 18px; }

  .radio label, .checkbox label,
  .accordeon__content p {
    font-size: 15px; }

  .calculator__form,
  .difference__content,
  .callback-block .container,
  .order-block .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

  .calculator__total__title {
    font-size: 16px; }

  .calculator__total__summa {
    font-size: 30px; }

  .calculator__inputs,
  .calculator__total {
    padding: 30px 15px; }

  .individual__content {
    height: 48em; }

  .individual__descr h4 {
    font-size: 3rem; }

  .individual__descr p {
    font-size: 2.4rem;
    font-weight: 400; }

  .difference__descr h2 {
    font-size: 6rem; }

  .difference__descr p,
  .order-list {
    font-size: 15px; }

  .order-list li {
    text-align: center; }

  .about-us__list li {
    font-size: 2.4rem;
    padding: 2em 1em 1em 3em; }

  .about-us__notice {
    font-size: 1.8em;
    padding: 1em; }
    .about-us__notice br {
      display: none; }

  .about-us__decor::before {
    width: 6em;
    height: 6em; }

  .rate-block {
    margin-bottom: 30px; }

  .rate__title {
    font-size: 30px;
    padding: .75em .5em; }

  .title p {
    font-size: 3rem; }

  .rate-price {
    padding: 25px 15px; }

  .rate-price .old-price, .rate-price .current-price {
    font-size: 30px;
    font-weight: 400; }

  .rate__list li,
  .rate-warranty,
  .rate-btn .btn {
    font-size: 18px; }

  .rate-btn {
    padding: 30px 0; }

  .rate__title--yellow {
    font-size: 40px; }

  .portfolio {
    padding-top: 30px; }

  .sort li a {
    font-size: 12px;
    padding: 8px 15px;
    border-color: var(--yellow); }

  .service__list li {
    width: 50%; }

  .service__item {
    padding: 3.5em; }

  .service__item__title,
  .article-top__content h1 {
    font-size: 4rem; }

  .service__item__descr, .service__item__data,
  .article-top__content .date {
    font-size: 2.4rem; }

  .order-block .menu-block__decor,
  .callback-block .menu-block__decor {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

  .order-block .menu__title,
  .callback-block .menu__title {
    font-size: 8rem; }
    .order-block .menu__title br,
    .callback-block .menu__title br {
      display: none; }

  .order-block,
  .callback-block {
    overflow-y: auto;
    padding-top: 100px; }

  .order-block .menu-block__content,
  .callback-block .menu-block__content {
    margin-bottom: 10px; } }
/*768*/
@media (max-width: 767px) {
  html {
    font-size: .9vw; }

  .callback {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #de5558 url("../img/icons/callback.svg") center no-repeat;
    background-size: 14px;
    position: relative; }
    .callback span {
      display: none; }
    .callback::before, .callback::after {
      content: '';
      width: 100%;
      height: 1px;
      background-color: #de5558;
      margin: 0;
      border-radius: 0;
      position: absolute;
      top: 50%;
      left: 0;
      opacity: 0; }
    .callback::before {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .callback::after {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .callback.active {
      background: none; }
      .callback.active::before, .callback.active::after {
        opacity: 1; }

  .menu-btn,
  .header__options .social {
    margin-left: 10px; }

  .logo {
    text-align: center;
    font-size: 12px; }
    .logo::before {
      width: 5px;
      height: 5px;
      margin-right: 5px; }
    .logo span {
      padding: 0 1px; }

  .header__options .social,
  .main-screen__img img,
  .mouse,
  .drop-li::after,
  .pink-circle {
    display: none; }

  .main-screen__title {
    text-align: center; }
    .main-screen__title .circles {
      width: 50%;
      left: 30%;
      -webkit-transform: translateX(-50%, -50%);
              transform: translateX(-50%, -50%); }
    .main-screen__title .dots {
      width: 40em;
      left: 30%; }

  .main-screen__contact a {
    font-size: 2rem; }

  .main-menu {
    width: 100%;
    text-align: center; }
    .main-menu .drop-li {
      display: block; }
      .main-menu .drop-li.active .submenu {
        display: block; }

  .submenu {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    left: 0;
    padding: 30px 0 0;
    display: none; }

  .menu-block {
    overflow-y: auto;
    padding: 100px 0; }
    .menu-block .container {
      min-height: 100%;
      height: auto; }

  .menu-block__content {
    margin-bottom: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

  .case-row,
  .statistic__content,
  .articles-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

  .case-slider-arrows,
  .case-slider,
  .service-slider__descr,
  .service-slider__img,
  .statistic__descr,
  .statistic__img {
    width: 100%; }

  .case-slider-arrows {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    .case-slider-arrows .prev-arrow, .case-slider-arrows .next-arrow {
      margin: 0 10px; }

  .case-slider__item {
    width: 45em;
    height: 50em; }
    .case-slider__item--lg {
      width: 65em; }

  .case-slider__item .date {
    font-size: 12px; }

  .case-slider__title {
    font-size: 14px; }

  .banner-btn-container.text-right,
  .statistic__descr {
    text-align: center; }

  .btn {
    padding: 1.3em 2.5em 1.2em; }

  .banner-block .container {
    padding: 50px 20px; }

  .title {
    margin-bottom: 40px; }
    .title .h2 {
      font-size: 24px; }

  .clients-img {
    width: 120px; }

  .clients-slider-arrows {
    margin-top: 40px; }

  .service-slider__img img {
    height: auto;
    position: relative; }

  .service-slider .slick-list {
    height: auto !important;
    margin-top: 0; }

  .service-slider__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }

  .service-slider__img img {
    max-height: 200px;
    margin: 0 auto; }

  .title-row {
    margin-bottom: 40px; }

  .service-slider__descr {
    text-align: center; }
    .service-slider__descr h3 {
      font-size: 20px; }
    .service-slider__descr p {
      font-size: 14px; }

  .service-slider__descr .price {
    text-align: center;
    padding: 15px 0; }

  .statistic__descr h2 {
    font-size: 24px; }

  .statistic__img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

  .statistic__descr {
    padding-bottom: 0;
    margin-bottom: 40px; }

  .statistic__img img {
    max-height: 120px;
    -webkit-transform: translateY(0);
            transform: translateY(0); }

  .statistic-list {
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .statistic-list li {
      width: 50%;
      text-align: center;
      margin-bottom: 30px; }
      .statistic-list li::after {
        left: 50%;
        margin-left: -20px; }
      .statistic-list li .text {
        font-size: 12px; }
      .statistic-list li .count {
        font-size: 30px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }

  .statistic {
    padding: 50px 0 0 0; }

  .features__list {
    border-left: 1px solid #f3f3f3; }

  .features__list li {
    width: 50%;
    border-right: 1px solid #f3f3f3;
    background-color: #fff; }

  .footer__content__item:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-bottom: 40px; }

  .footer__descr .logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

  .footer__descr p {
    font-size: 10px; }

  .footer__content__item--full {
    width: 100%;
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around; }

  .footer-menu {
    font-size: 10px;
    text-align: center; }

  .footer__address {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    font-size: 14px; }

  .footer__bottom {
    font-size: 10px;
    text-align: center; }
    .footer__bottom .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }

  .footer__bottom__item:not(:last-child) {
    margin-bottom: 20px; }

  .social--border li {
    padding: 0 5px; }

  .about-top__descr .h4 {
    font-size: 2.5rem;
    margin-bottom: 1em; }

  .subtitle-text {
    font-size: 3.4rem; }

  .about-descr__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .about-descr__list li {
      width: 100%;
      text-align: center; }

  .about-descr__content .h4 {
    font-size: 18px; }

  .about-descr__content p {
    font-size: 14px; }

  .about-descr .title-row {
    margin-bottom: 20px; }

  .member-descr .name {
    font-size: 1.8rem; }

  .member-descr .post {
    font-size: 1.5rem; }

  .team__list li {
    width: 33.333%;
    height: 200px;
    margin-bottom: 10px; }

  .team__item {
    height: 100%; }

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

  .advantage-slider__content .h4::before {
    -ms-flex-item-align: center;
        align-self: center;
    margin-bottom: 4px; }

  .title p {
    font-size: 14px;
    line-height: 1.4; }

  .advantages-slider-arrows {
    margin-top: 40px; }

  .title h4, .title .h4 {
    font-size: 18px; }
    .title h4 br, .title .h4 br {
      display: none; }

  .accordeon--tip .accordeon__title__text {
    text-align: center; }

  .accordeon__title {
    font-size: 16px; }

  .radio label, .checkbox label,
  .accordeon__content p {
    font-size: 14px; }

  .inner-top__content {
    height: 24em; }
    .inner-top__content .h1 {
      font-size: 6.5rem; }

  .individual-descr {
    margin: 0; }
    .individual-descr li {
      padding: 0 5px; }

  .individual-descr__item h4 {
    font-size: 3rem; }

  .individual-descr__item p {
    font-size: 2.7rem; }

  .individual-slider {
    margin-bottom: 20px; }

  .about-us {
    padding: 40px 0; }

  .rate-price {
    padding: 20px 15px; }

  .rate-price .old-price, .rate-price .current-price,
  .difference__descr__title {
    font-size: 24px; }

  .rate__list li,
  .rate-warranty,
  .rate-btn .btn {
    font-size: 16px; }

  .rate-btn {
    padding: 20px 0; }

  .rate__title--yellow {
    font-size: 30px; }

  .portfolio__item {
    width: 50%; }
    .portfolio__item--md {
      width: 100%; }

  .portfolio__list {
    margin-bottom: 40px; }

  .portfolio {
    padding-bottom: 40px; }

  .article-item,
  .articles-block .aside {
    width: 100%; }

  .article__img {
    height: 160px; }

  .article__descr {
    padding: 10px; }

  .article__title {
    font-size: 18px;
    margin-bottom: 10px; }

  .article__data .date, .article__data .btn,
  .tags__title {
    font-size: 13px; }

  .articles-block .aside {
    padding: 15px;
    margin-top: 40px; }

  .aside__title,
  .aside__menu,
  .studio-name {
    font-size: 15px; }

  .aside__item {
    margin-bottom: 25px; }

  .tags__list li a {
    font-size: 12px; }

  .our-contact {
    padding-top: 0; }

  .address-block {
    padding: 20px; }
    .address-block .h4 {
      font-size: 24px;
      margin-bottom: 15px; }

  .address-block__content {
    font-weight: 300; }

  .address-block__line:not(:last-child) {
    margin-bottom: 20px; }

  .map iframe {
    height: 200px !important; }

  .feedback__bottom {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .feedback__bottom .btn--black {
      -webkit-transform: translateY(50%);
              transform: translateY(50%); }

  .quote {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px; }
    .quote::before {
      width: 30px;
      height: 30px;
      margin: 0 0 15px 0; }

  .releated-articles .title {
    margin-bottom: 20px; }

  .article-top__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }

  .article-top__content .date {
    font-size: 14px;
    margin-bottom: 20px; }

  .article-top__content h1 {
    font-size: 24px;
    max-width: 100%; }

  .project__options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }

  .project__options__item {
    margin-bottom: 20px; }

  .project__options__title {
    font-size: 14px; }

  .project__options__name {
    font-size: 16px; }

  .project-preview__top__title {
    font-size: 6rem; }

  .project__options__name li {
    line-height: 1.5; }

  .project-preview__item {
    margin-bottom: 30px; }

  .mobile {
    display: block; }

  .order-block, .callback-block {
    padding-bottom: 50px; }

  .accordeon__title {
    padding: 5px; }

  .our-contact-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

  .callback-block .agree, .order-block .agree {
    margin-bottom: 15px; }

  .input__field--hoshi {
    margin-top: 0; }

  .input {
    margin-bottom: 20px; }

  .social img {
    max-width: 100%;
    width: 18px; } }
/*767*/
@media (max-width: 420px) {
  .main-screen {
    padding: 120px 0; }

  .main-screen__title {
    padding: 0; }
    .main-screen__title .h1 {
      font-size: 10rem;
      margin-bottom: 20px; }
    .main-screen__title .h2 {
      font-size: 8rem; }

  .main-screen__contact a {
    font-size: 12px; }

  .main-screen__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .main-screen__bottom .social {
      margin-top: 20px; }

  .case-slider__item {
    width: 55em;
    height: 65em; }
    .case-slider__item--lg {
      width: 85em; }

  .banner__title {
    font-size: 10rem; }

  .banner__subtitle .h3 {
    font-size: 7rem; }

  .features__list li {
    height: 120px; }
    .features__list li img {
      width: 60%; }

  .team__list li {
    width: 50%;
    height: 200px; }

  .member-descr .name {
    font-size: 14px; }

  .member-descr .post {
    font-size: 10px; }

  .individual__content {
    height: 60em; }

  .individual__descr h4 {
    font-size: 4rem; }

  .individual__descr p {
    font-size: 3rem; }

  .difference__descr h2 {
    font-size: 8rem; }

  .about-us__list li,
  .service__list li {
    width: 100%; }

  .about-us__list li {
    font-size: 4rem; }

  .inner-top__content .h1,
  .service__item__title {
    font-size: 7rem; }

  .portfolio__item {
    width: 100%; }
    .portfolio__item .slider-img {
      max-height: 90%; }

  .case-slider__item--lg .slider-img {
    max-height: none; }

  .service__item {
    padding: 4.5em; }

  .service__item__title {
    margin-bottom: .5em; }

  .service__item__descr, .service__item__data {
    font-size: 3.8rem; }

  .choose-service {
    padding-top: 30px; } }
/*420*/
@media (max-width: 360px) {
  .submenu li a {
    font-size: 14px; }

  .service-slider__btns {
    margin-top: 20px; }
    .service-slider__btns .btn {
      display: block; }
      .service-slider__btns .btn:not(:last-child) {
        margin-bottom: 20px; }

  .team__list li {
    width: 100%;
    height: 240px; }

  .individual__content {
    height: 70em; }

  .individual__descr h4 {
    font-size: 5rem; }

  .individual__descr p {
    font-size: 4rem; }

  .individual-descr li {
    width: 100%;
    text-align: center;
    margin-bottom: 30px; }

  .first-let {
    font-size: 10rem; }

  .individual-descr__item h4 {
    font-size: 4rem; }

  .individual-descr__item p {
    font-size: 3rem; }

  .about-us__list li {
    font-size: 5rem; }

  .noscroll .header {
    background-color: var(--grey-bg); } }
/*360px*/

/*# sourceMappingURL=style.css.map */