@charset "UTF-8";
/* font family */
/*images*/
/*=======================START-MEDIA=====================*/
/*=======================END-MEDIA=====================*/
/* media breakpoint mixin */
/* Single property transition mixin */
/*--------- font-face ---------*/
/* roboto-regular - latin-cyrillic */
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto/roboto.woff") format("woff"), url("../fonts/Roboto/roboto.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* roboto-700 - latin-cyrillic */
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto/roboto-700.woff") format("woff"), url("../fonts/Roboto/roboto-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

/* montserrat-regular - latin_cyrillic */
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat/montserrat.woff") format("woff"), url("../fonts/Montserrat/montserrat.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat/montserrat-500.woff") format("woff"), url("../fonts/Montserrat/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat/montserrat-600.woff") format("woff"), url("../fonts/Montserrat/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat/montserrat-700.woff") format("woff"), url("../fonts/Montserrat/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

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

body {
  margin: 0;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

html, body {
  height: 100%;
}

audio,
video {
  display: block;
}

section {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a img {
  border: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  display: block;
  border-style: none;
}

input,
textarea,
select {
  vertical-align: middle;
}

form, fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
  width: 100%;
}

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

input[type="email"] {
  box-shadow: none;
  -webkit-box-shadow: none;
}

input[type="image"] {
  padding: 0;
  border: none;
}

input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

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

input[type="submit"]:focus,
input[type="button"]:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button,
input[type=email]::-webkit-inner-spin-button,
input[type=email]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

button:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

p, span, label, h1, h2, h3, h4, h5, h6, b, strong, i, em {
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  margin: 0;
}

div {
  word-wrap: break-word;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

iframe {
  border: none;
}

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

.btn--full-reset {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.text-clip {
  white-space: nowrap;
  /* Отменяем перенос текста */
  overflow: hidden;
  /* Обрезаем содержимое */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

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

.grid {
  display: grid;
}

.grid__col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid__col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid__col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid__col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.bg-cover-center__mod {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flex-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

.disable {
  pointer-events: none !important;
}

.hand {
  cursor: pointer !important;
}

.tac {
  text-align: center;
}

.noscript {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  font-size: 14px;
  color: #8e1f1f;
  background-color: #efafaf;
  text-align: center;
  z-index: 77777;
}

.noscript a {
  margin-left: 3px;
  margin-right: 3px;
  color: #630303;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .noscript a:hover {
    text-decoration: none;
  }
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: currentColor;
  line-height: 1em;
}

@font-face {
  font-family: "Icons";
  src: url("../fonts/Icons.eot");
  src: url("../fonts/Icons.eot?#iefix") format("eot"), url("../fonts/Icons.woff") format("woff"), url("../fonts/Icons.ttf") format("truetype"), url("../fonts/Icons.svg#Icons") format("svg");
}

.icon-bookmark:before,
.icon-heart:before {
  font-family: "Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-bookmark:before {
  content: '\E001';
}


.icon-heart:before {
  content: '\E002';
}

body {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 18px;
  font-size: calc(16px + (18 - 16) * ((100vw - 1200px) / (1920 - 1200)));
  line-height: 100%;
  background: #121225;
  color: #fff;
}

@media (max-width: 1200px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  body {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1200px) {
  body {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

.container {
  max-width: calc(1669px + 62px * 2);
  padding-left: 62px;
  padding-right: 62px;
  margin: auto;
  height: 100%;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.content {
  padding: 70px 50px 100px;
  max-width: calc(1450px + 100px);
  margin: auto;
}

@media only screen and (max-width: 1000px) {
  .content {
    padding: 30px 0px 50px;
  }
}

.content img {
  display: block;
  margin: 0 auto 46px;
}

.content p {
  font-size: 16px;
  line-height: 120%;
}

.content p:not(:last-child) {
  margin-bottom: 15px;
}

.content a {
  display: inline-block;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  color: #fff;
}

@media (any-hover: hover) {
  .content a {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .content a:hover {
    color: #0B78FF;
  }
  .content a:hover:after {
    width: 0px;
  }
}

.content a:after {
  content: '';
  background: #0B78FF;
  height: 1px;
  width: 100%;
  display: block;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.content h1 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1000px) {
  .content h1 {
    margin-bottom: 20px;
  }
}

.content h2 {
  margin-bottom: 16px;
  margin-top: 30px;
}

.content h4, .content h3 {
  margin-bottom: 17px;
  margin-top: 25px;
}

.content h6, .content h5 {
  margin-bottom: 14px;
}

.content ol,
.content ul {
  margin-bottom: 32px;
}

.content li {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 20px;
}

.content ul li {
  position: relative;
  padding-left: 18px;
  margin-left: 30px;
}

.content ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #0B78FF;
  border-radius: 2px;
}

.content ol {
  counter-reset: myCounter;
}

.content ol li {
  position: relative;
  padding-left: 20px;
}

.content ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

blockquote {
  border-left: 8px solid #121314;
  background-color: #F3F4FF;
  padding: 16px 24px 16px 22px;
  margin: 0 0 24px;
}

*:focus {
  outline: none !important;
}

h1, h2, h3, h4, h4, h6, .h1-title, .h2-title, .h3-title, .h4-title, .h5-title, .h6-title {
  display: block;
  font-family: 'Montserrat';
  font-weight: 700;
}

h1, .h1-title {
  font-size: 48px;
  font-size: calc(36px + (48 - 36) * ((100vw - 1200px) / (1920 - 1200)));
  line-height: 110%;
}

@media (max-width: 1200px) {
  h1, .h1-title {
    font-size: 36px;
  }
}

@media (min-width: 1920px) {
  h1, .h1-title {
    font-size: 48px;
  }
}

@media only screen and (max-width: 1200px) {
  h1, .h1-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 1000px) {
  h1, .h1-title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  h1, .h1-title {
    font-size: 18px;
  }
}

h2, .h2-title {
  font-size: 36px;
  font-size: calc(24px + (36 - 24) * ((100vw - 1200px) / (1920 - 1200)));
  line-height: 34px;
  line-height: 100%;
}

@media (max-width: 1200px) {
  h2, .h2-title {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  h2, .h2-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 1200px) {
  h2, .h2-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  h2, .h2-title {
    font-size: 18px;
  }
}

h3, .h3-title {
  font-size: 24px;
  font-size: calc(20px + (24 - 20) * ((100vw - 1200px) / (1920 - 1200)));
  line-height: 34px;
  line-height: 100%;
}

@media (max-width: 1200px) {
  h3, .h3-title {
    font-size: 20px;
  }
}

@media (min-width: 1920px) {
  h3, .h3-title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  h3, .h3-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  h3, .h3-title {
    font-size: 16px;
  }
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  position: relative;
}

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

.main__home section {
  min-height: calc(var(--vh, 1vh) * 100);
}

@media only screen and (max-width: 767px) {
  .main__home section {
    min-height: auto;
  }
}

section {
  min-height: calc(100vh - 150px - 55px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 767px) {
  section {
    min-height: calc(100vh - 48px - 51px);
  }
}

.section__fullpage {
  min-height: 100vh;
}

.right {
  right: 0px;
}

.gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#0B78FF), to(#fff)), -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff));
  background: -o-linear-gradient(top, #0B78FF 0%, #fff 100%), -o-linear-gradient(bottom, #fff, #fff);
  background: linear-gradient(180deg, #0B78FF 0%, #fff 100%), linear-gradient(0deg, #fff, #fff);
  background-clip: border-box, border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.background {
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  padding: 5px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .arrow {
    display: none;
  }
}

@media (any-hover: hover) {
  .arrow {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: fill;
    -o-transition-property: fill;
    transition-property: fill;
  }
  .arrow:hover .icon {
    fill: #0B78FF;
  }
}

.arrow__left {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.arrow__right {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.arrow .icon {
  font-size: 50px;
  width: 55px;
  height: 35px;
  fill: #fff;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.swiper {
  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;
}

@supports (row-gap: 58px) {
  .swiper {
    row-gap: 58px;
  }
}

@supports not (row-gap: 58px) {
  .swiper {
    margin-bottom: -58px;
  }
  .swiper > * {
    margin-bottom: 58px;
  }
}

@media only screen and (max-width: 767px) {
  @supports (row-gap: 18px) {
    .swiper {
      row-gap: 18px;
    }
  }
  @supports not (row-gap: 18px) {
    .swiper {
      margin-bottom: -18px;
    }
    .swiper > * {
      margin-bottom: 18px;
    }
  }
}

@media only screen and (max-width: 576px) {
  @supports (row-gap: 40px) {
    .swiper {
      row-gap: 40px;
    }
  }
  @supports not (row-gap: 40px) {
    .swiper {
      margin-bottom: -40px;
    }
    .swiper > * {
      margin-bottom: 40px;
    }
  }
}

.swiper .swiper-slide {
  height: auto;
}

.swiper .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 22px;
  position: static !important;
  -webkit-transform: translate(0px) !important;
      -ms-transform: translate(0px) !important;
          transform: translate(0px) !important;
  padding: 0px 5px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0px;
  min-width: 10px;
  min-height: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  opacity: 1 !important;
  -webkit-transform: scale(1) !important;
      -ms-transform: scale(1) !important;
          transform: scale(1) !important;
}

.swiper .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper .swiper-pagination .swiper-pagination-bullet:before {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1201px) {
  .swiper .swiper-pagination .swiper-pagination-bullet:before {
    -webkit-transition: 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  }
}

.swiper .swiper-pagination .swiper-pagination-bullet:after {
  content: '';
  width: 1px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: inherit;
}

@media only screen and (min-width: 1201px) {
  .swiper .swiper-pagination .swiper-pagination-bullet:after {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
}

.swiper .swiper-pagination .swiper-pagination-bullet-active-prev:before,
.swiper .swiper-pagination .swiper-pagination-bullet-active-next:before {
  width: 15px;
  height: 15px;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active:before {
  width: 22px;
  height: 22px;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active:after {
  width: 12px;
  height: 12px;
  background: #0B78FF;
}

.semibold {
  font-weight: 600;
}

.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

input:not([type="checkbox"]),
textarea {
  padding: 22px 43px 21px;
  background: rgba(255, 255, 255, 0);
  border: 3px solid #fff;
  border-radius: 40px;
  font-size: 24px;
  font-size: calc(18px + (24 - 18) * ((100vw - 767px) / (1920 - 767)));
  line-height: 110.69%;
  font-weight: 500;
  color: rgba(207, 207, 207, 0.698039);
  background: #000;
}

@media (max-width: 767px) {
  input:not([type="checkbox"]),
  textarea {
    font-size: 18px;
  }
}

@media (min-width: 1920px) {
  input:not([type="checkbox"]),
  textarea {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1550px) {
  input:not([type="checkbox"]),
  textarea {
    padding: 16px 33px 15px;
  }
}

@media only screen and (max-width: 1200px) {
  input:not([type="checkbox"]),
  textarea {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 27px;
    padding-right: 27px;
    border-width: 2px;
  }
}

@media only screen and (max-width: 1000px) {
  input:not([type="checkbox"]),
  textarea {
    padding: 22px 43px 21px;
  }
}

@media only screen and (max-width: 767px) {
  input:not([type="checkbox"]),
  textarea {
    font-size: 14px;
    padding: 10px 43px;
  }
}

textarea {
  min-height: 106px;
}

@media only screen and (max-width: 1550px) {
  textarea {
    min-height: 86px;
  }
}

.cookies {
  position: fixed;
  bottom: 0px;
  width: 100%;
  padding: 10px;
  background: rgba(18, 18, 37, 0.8);
  z-index: 999;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

.cookies.open {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.cookies.hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.cookies p {
  margin-right: 10px;
}

@media only screen and (max-width: 1000px) {
  .cookies p {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 576px) {
  .cookies p {
    width: 100%;
  }
}

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

@supports ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .cookies__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

@supports not ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .cookies__wrapper {
    margin-right: calc( 0px - (20px / 2));
    margin-left: calc( 0px - (20px / 2));
  }
  .cookies__wrapper > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
  .cookies__wrapper > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
}

@media only screen and (max-width: 767px) {
  .cookies__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  @supports (row-gap: 10px) {
    .cookies__wrapper {
      row-gap: 10px;
    }
  }
  @supports not (row-gap: 10px) {
    .cookies__wrapper {
      margin-bottom: -10px;
    }
    .cookies__wrapper > * {
      margin-bottom: 10px;
    }
  }
}

.cookies .btn {
  font-size: 18px;
  padding: 8px 15px;
  line-height: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

body::-webkit-scrollbar {
  width: 13px;
  /* width of the entire scrollbar */
  border-radius: 20px;
}

body::-webkit-scrollbar-track {
  background: #121225;
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: silver;
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 5px solid #121225;
  /* creates padding around scroll thumb */
}

.form,
.form.dark-block {
  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;
  max-width: 41%;
  padding: 2.8% calc(8% - 7px) 2.8% 8%;
  max-height: 100%;
}

@media only screen and (max-width: 1200px) {
  .form,
  .form.dark-block {
    max-width: 417px;
    padding: 18px 59px 37px 67px;
  }
}

@media only screen and (max-width: 1000px) {
  .form,
  .form.dark-block {
    max-width: 100%;
  }
}

.form .h2-title,
.form.dark-block .h2-title {
  margin-bottom: 25px;
}

@media only screen and (max-width: 1200px) {
  .form .h2-title,
  .form.dark-block .h2-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .form__sub-title,
  .form.dark-block__sub-title {
    font-size: 14px;
  }
}

.form__sub-title:not(:last-child),
.form.dark-block__sub-title:not(:last-child) {
  margin-bottom: 7.7%;
}

.form__center,
.form.dark-block__center {
  width: 100%;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 7px;
}

.form__center:not(:last-child),
.form.dark-block__center:not(:last-child) {
  margin-bottom: 8.9%;
}

.form__center .swiper-scrollbar,
.form.dark-block__center .swiper-scrollbar {
  right: 0px;
  background: #fff;
  width: 5px;
}

.form__center .swiper-scrollbar .swiper-scrollbar-drag,
.form.dark-block__center .swiper-scrollbar .swiper-scrollbar-drag {
  background: #0B78FF;
}

.form__input,
.form.dark-block__input {
  width: 100%;
  position: relative;
}

.form__input input,
.form.dark-block__input input {
  width: 100%;
}

.form__input:not(:last-child),
.form.dark-block__input:not(:last-child) {
  margin-bottom: 12.5%;
}

@media only screen and (max-width: 1200px) {
  .form__input:not(:last-child),
  .form.dark-block__input:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1000px) {
  .form__input:not(:last-child),
  .form.dark-block__input:not(:last-child) {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 576px) {
  .form__input:not(:last-child),
  .form.dark-block__input:not(:last-child) {
    margin-bottom: 30px;
  }
}

.form__input .error,
.form.dark-block__input .error {
  position: absolute;
  top: 0px;
  text-align: center;
  -webkit-transform: translateY(calc(-100%));
      -ms-transform: translateY(calc(-100%));
          transform: translateY(calc(-100%));
  line-height: 120%;
  color: #fff;
  font-size: 22px;
  font-size: calc(12px + (22 - 12) * ((100vw - 1200px) / (1920 - 1200)));
  font-weight: 700;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 1200px) {
  .form__input .error,
  .form.dark-block__input .error {
    font-size: 12px;
  }
}

@media (min-width: 1920px) {
  .form__input .error,
  .form.dark-block__input .error {
    font-size: 22px;
  }
}

.form__text,
.form.dark-block__text {
  min-height: 106px;
  position: relative;
  width: 100%;
}

.form__text:not(:last-child),
.form.dark-block__text:not(:last-child) {
  margin-bottom: 8.9%;
}

.form__text textarea,
.form.dark-block__text textarea {
  min-height: 100%;
  width: 100%;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  resize: vertical;
}

.form .btn,
.form.dark-block .btn {
  width: 100%;
}

.form .btn:not(:last-child),
.form.dark-block .btn:not(:last-child) {
  margin-bottom: 2.9%;
}

@media only screen and (max-width: 1200px) {
  .form .btn,
  .form.dark-block .btn {
    margin-bottom: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 1000px) {
  .form .btn,
  .form.dark-block .btn {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .form .btn,
  .form.dark-block .btn {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 8px !important;
  }
}

.form__attention,
.form.dark-block__attention {
  font-size: 12px;
  max-width: 275px;
  text-align: center;
}

.form__attention a,
.form.dark-block__attention a {
  position: relative;
  color: #0B78FF;
}

.form__attention a:after,
.form.dark-block__attention a:after {
  content: '';
  height: 1px;
  position: absolute;
  display: block;
  bottom: 0px;
  width: 0px;
  left: 0px;
  background: #0B78FF;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

@media (any-hover: hover) {
  .form__attention a,
  .form.dark-block__attention a {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .form__attention a:hover:after,
  .form.dark-block__attention a:hover:after {
    width: 100%;
  }
}

.header {
  padding-top: 5.2%;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.header__fixed {
  position: fixed;
}

@media only screen and (max-width: 1200px) {
  .header {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding-top: 12px;
    padding-bottom: 12px;
    background: #16376D;
  }
}

.header .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .header .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header .logo {
  cursor: pointer;
  max-width: 250px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 1200px) {
  .header .logo {
    max-width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .header .logo {
    max-width: 117px;
  }
}

.header.active {
  padding-top: 1%;
  padding-bottom: 0.5%;
}

.header.active:before {
  background: rgba(18, 18, 37, 0.8);
}

.header.active .logo {
  max-width: 200px;
}

@media only screen and (max-width: 767px) {
  .header .menu {
    display: none;
  }
}

.header .dropdown {
  padding-top: 6px;
}

@media only screen and (max-width: 767px) {
  .header .dropdown {
    display: none;
  }
}

.header .burger {
  width: 18px;
  display: none;
  position: relative;
  height: 12px;
}

@media only screen and (max-width: 767px) {
  .header .burger {
    display: block;
  }
}

.header .burger:before, .header .burger:after {
  content: '';
}

.header .burger:before, .header .burger:after,
.header .burger span {
  position: absolute;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  z-index: 2;
}

.header .burger:before {
  top: 0px;
}

.header .burger:after {
  bottom: 0px;
}

.header .burger span {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .burger.active:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 5px;
}

.header .burger.active:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 5px;
}

.header .burger.active span {
  width: 0px;
}

.header__mobile {
  display: none;
  position: absolute;
  background: #16376D;
  min-height: 100vh;
  top: 0px;
  right: 0px;
  min-width: 304px;
  padding: 62px 18px 41px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.header__mobile .menu {
  display: block;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .header__mobile {
    display: block;
  }
}

.header__mobile.open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@supports ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .header__lang {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

@supports not ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .header__lang {
    margin-right: calc( 0px - (20px / 2));
    margin-left: calc( 0px - (20px / 2));
  }
  .header__lang > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
  .header__lang > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@supports ((-moz-column-gap: 90px) or (column-gap: 90px)) {
  .menu__list {
    -webkit-column-gap: 90px;
       -moz-column-gap: 90px;
            column-gap: 90px;
  }
}

@supports not ((-moz-column-gap: 90px) or (column-gap: 90px)) {
  .menu__list {
    margin-right: calc( 0px - (90px / 2));
    margin-left: calc( 0px - (90px / 2));
  }
  .menu__list > * {
    margin-right: calc(90px / 2);
    margin-left: calc(90px / 2);
  }
  .menu__list > * {
    margin-right: calc(90px / 2);
    margin-left: calc(90px / 2);
  }
}

@media only screen and (max-width: 1200px) {
  @supports ((-moz-column-gap: 20px) or (column-gap: 20px)) {
    .menu__list {
      -webkit-column-gap: 20px;
         -moz-column-gap: 20px;
              column-gap: 20px;
    }
  }
  @supports not ((-moz-column-gap: 20px) or (column-gap: 20px)) {
    .menu__list {
      margin-right: calc( 0px - (20px / 2));
      margin-left: calc( 0px - (20px / 2));
    }
    .menu__list > * {
      margin-right: calc(20px / 2);
      margin-left: calc(20px / 2);
    }
    .menu__list > * {
      margin-right: calc(20px / 2);
      margin-left: calc(20px / 2);
    }
  }
}

@media only screen and (max-width: 1000px) {
  @supports ((-moz-column-gap: 10px) or (column-gap: 10px)) {
    .menu__list {
      -webkit-column-gap: 10px;
         -moz-column-gap: 10px;
              column-gap: 10px;
    }
  }
  @supports not ((-moz-column-gap: 10px) or (column-gap: 10px)) {
    .menu__list {
      margin-right: calc( 0px - (10px / 2));
      margin-left: calc( 0px - (10px / 2));
    }
    .menu__list > * {
      margin-right: calc(10px / 2);
      margin-left: calc(10px / 2);
    }
    .menu__list > * {
      margin-right: calc(10px / 2);
      margin-left: calc(10px / 2);
    }
  }
}

@media only screen and (max-width: 767px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  @supports (row-gap: 15px) {
    .menu__list {
      row-gap: 15px;
    }
  }
  @supports not (row-gap: 15px) {
    .menu__list {
      margin-bottom: -15px;
    }
    .menu__list > * {
      margin-bottom: 15px;
    }
  }
}

.menu__item {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .menu__item {
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.menu__item.active > .menu__link {
  color: #0B78FF;
  cursor: auto;
}

.menu__item.active > .menu__link:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

@media (any-hover: hover) {
  .menu__item {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .menu__item:hover > .menu__sub {
    opacity: 1;
    visibility: visible;
  }
}

.menu__link {
  position: relative;
  padding: 6px 13px;
  color: #fff;
  font-weight: bold;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  display: inline-block;
}

@media only screen and (max-width: 1200px) {
  .menu__link {
    font-size: 14px;
  }
}

.menu__link:after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0px;
  width: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  height: 1px;
  background: #0B78FF;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

@media (any-hover: hover) {
  .menu__link {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .menu__link:hover {
    color: #0B78FF;
  }
  .menu__link:hover:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

.menu__sub {
  position: absolute;
  bottom: 0px;
  -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  min-width: 130px;
  left: 50%;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 4px 10px 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
  .menu__sub {
    border-top: 1px solid #fff;
    border-radius: 0px;
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    background: rgba(255, 255, 255, 0);
    padding-left: 0px;
    padding-right: 5px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
  .menu__sub .menu__item:not(:last-child) {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .menu__sub .menu__link {
    font-size: 14px;
  }
}

.dropdown {
  min-width: 70px;
  position: relative;
}

.dropdown__inner {
  position: absolute;
}

.dropdown__inner:before {
  content: '';
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

@media only screen and (min-width: 1201px) {
  .dropdown__inner:before {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
}

.dropdown__inner.active:before {
  -webkit-box-shadow: 0px 0px 50px 3px rgba(163, 163, 163, 0.3);
          box-shadow: 0px 0px 50px 3px rgba(163, 163, 163, 0.3);
}

@media only screen and (min-width: 1201px) {
  .dropdown__inner.active:before {
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
}

.dropdown__inner.active .dropdown__parent {
  background: #000;
}

.dropdown__inner.active .dropdown__parent .icon {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}

.dropdown__inner.active .dropdown__list {
  background: #000;
  visibility: visible;
  opacity: 1;
}

.dropdown__item {
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  line-height: 100%;
  padding: 3px 9px 3px 13px;
  color: #fff;
}

.dropdown__item a {
  color: inherit;
}

@media (any-hover: hover) {
  .dropdown__item a {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .dropdown__item a:hover {
    text-shadow: 2px 1px 3px #fff;
  }
}

.dropdown__parent {
  border-radius: 5px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px 2px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

@supports ((-moz-column-gap: 8px) or (column-gap: 8px)) {
  .dropdown__parent {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}

@supports not ((-moz-column-gap: 8px) or (column-gap: 8px)) {
  .dropdown__parent {
    margin-right: calc( 0px - (8px / 2));
    margin-left: calc( 0px - (8px / 2));
  }
  .dropdown__parent > * {
    margin-right: calc(8px / 2);
    margin-left: calc(8px / 2);
  }
  .dropdown__parent > * {
    margin-right: calc(8px / 2);
    margin-left: calc(8px / 2);
  }
}

@media only screen and (min-width: 1201px) {
  .dropdown__parent {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
}

.dropdown__parent .icon {
  font-size: 13px;
  width: 9px;
  height: 6px;
  fill: #0B78FF;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media (any-hover: hover) {
  .dropdown__parent {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .dropdown__parent:hover {
    text-shadow: 2px 1px 3px #fff;
  }
  .dropdown__parent:hover .icon {
    fill: rgba(11, 120, 255, 0.4);
  }
}

.dropdown__list {
  padding-top: 4px;
  padding-bottom: 7px;
  opacity: 0;
  border-radius: 0px 0px 5px 5px;
  visibility: hidden;
  z-index: 2;
  position: relative;
}

@media only screen and (min-width: 1201px) {
  .dropdown__list {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
}

.footer {
  position: relative;
  background: #000;
  padding: 10px 0px;
}

.footer__main {
  position: absolute;
  width: 100%;
  bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .footer__main {
    position: relative;
  }
}

.footer .logo {
  max-width: 175px;
}

@media only screen and (max-width: 1200px) {
  .footer .logo {
    max-width: 150px;
  }
}

@media only screen and (max-width: 576px) {
  .footer .row {
    -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;
  }
  @supports (row-gap: 15px) {
    .footer .row {
      row-gap: 15px;
    }
  }
  @supports not (row-gap: 15px) {
    .footer .row {
      margin-bottom: -15px;
    }
    .footer .row > * {
      margin-bottom: 15px;
    }
  }
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@supports ((-moz-column-gap: 70px) or (column-gap: 70px)) {
  .footer__right {
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
  }
}

@supports not ((-moz-column-gap: 70px) or (column-gap: 70px)) {
  .footer__right {
    margin-right: calc( 0px - (70px / 2));
    margin-left: calc( 0px - (70px / 2));
  }
  .footer__right > * {
    margin-right: calc(70px / 2);
    margin-left: calc(70px / 2);
  }
  .footer__right > * {
    margin-right: calc(70px / 2);
    margin-left: calc(70px / 2);
  }
}

@media only screen and (max-width: 1200px) {
  @supports ((-moz-column-gap: 50px) or (column-gap: 50px)) {
    .footer__right {
      -webkit-column-gap: 50px;
         -moz-column-gap: 50px;
              column-gap: 50px;
    }
  }
  @supports not ((-moz-column-gap: 50px) or (column-gap: 50px)) {
    .footer__right {
      margin-right: calc( 0px - (50px / 2));
      margin-left: calc( 0px - (50px / 2));
    }
    .footer__right > * {
      margin-right: calc(50px / 2);
      margin-left: calc(50px / 2);
    }
    .footer__right > * {
      margin-right: calc(50px / 2);
      margin-left: calc(50px / 2);
    }
  }
}

@media only screen and (max-width: 1000px) {
  @supports ((-moz-column-gap: 30px) or (column-gap: 30px)) {
    .footer__right {
      -webkit-column-gap: 30px;
         -moz-column-gap: 30px;
              column-gap: 30px;
    }
  }
  @supports not ((-moz-column-gap: 30px) or (column-gap: 30px)) {
    .footer__right {
      margin-right: calc( 0px - (30px / 2));
      margin-left: calc( 0px - (30px / 2));
    }
    .footer__right > * {
      margin-right: calc(30px / 2);
      margin-left: calc(30px / 2);
    }
    .footer__right > * {
      margin-right: calc(30px / 2);
      margin-left: calc(30px / 2);
    }
  }
}

@media only screen and (max-width: 576px) {
  .footer__right {
    -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;
  }
  @supports (row-gap: 10px) {
    .footer__right {
      row-gap: 10px;
    }
  }
  @supports not (row-gap: 10px) {
    .footer__right {
      margin-bottom: -10px;
    }
    .footer__right > * {
      margin-bottom: 10px;
    }
  }
}

.footer__item {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

@supports ((-moz-column-gap: 19px) or (column-gap: 19px)) {
  .footer__item {
    -webkit-column-gap: 19px;
       -moz-column-gap: 19px;
            column-gap: 19px;
  }
}

@supports not ((-moz-column-gap: 19px) or (column-gap: 19px)) {
  .footer__item {
    margin-right: calc( 0px - (19px / 2));
    margin-left: calc( 0px - (19px / 2));
  }
  .footer__item > * {
    margin-right: calc(19px / 2);
    margin-left: calc(19px / 2);
  }
  .footer__item > * {
    margin-right: calc(19px / 2);
    margin-left: calc(19px / 2);
  }
}

@media (any-hover: hover) {
  .footer__item {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .footer__item:hover {
    color: #0B78FF;
  }
  .footer__item:hover .icon {
    fill: #0B78FF;
  }
}

@media only screen and (max-width: 1200px) {
  .footer__item {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1000px) {
  @supports ((-moz-column-gap: 15px) or (column-gap: 15px)) {
    .footer__item {
      -webkit-column-gap: 15px;
         -moz-column-gap: 15px;
              column-gap: 15px;
    }
  }
  @supports not ((-moz-column-gap: 15px) or (column-gap: 15px)) {
    .footer__item {
      margin-right: calc( 0px - (15px / 2));
      margin-left: calc( 0px - (15px / 2));
    }
    .footer__item > * {
      margin-right: calc(15px / 2);
      margin-left: calc(15px / 2);
    }
    .footer__item > * {
      margin-right: calc(15px / 2);
      margin-left: calc(15px / 2);
    }
  }
}

.footer__item .icon {
  fill: white;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  width: 32px;
  height: 25px;
  font-size: 32px;
}

@media only screen and (max-width: 1200px) {
  .footer__item .icon {
    font-size: 25px;
    width: 25px;
    height: 20px;
  }
}

.btn {
  padding: 18px 48px;
  border-radius: 51px;
  background: #0B78FF;
  border: 2px solid #0B78FF !important;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

@media (any-hover: hover) {
  .btn {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
  }
  .btn:hover {
    color: #0B78FF;
    background: transparent;
  }
}

.btn__small {
  padding: 10px 35px;
}

body .modal {
  display: none;
  max-width: 591px;
  margin: 0 auto;
  padding: 40px 50px 40px 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media only screen and (max-width: 576px) {
  body .modal {
    padding: 33px 25px;
  }
}

body .modal img {
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  body .modal img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}

body .modal .h3-title {
  font-weight: 400;
  margin-bottom: 17px;
}

body .modal__text {
  margin-bottom: 30px;
}

body .modal__text p {
  line-height: 120%;
}

@media only screen and (max-width: 767px) {
  body .modal__text {
    margin-bottom: 10px;
  }
}

body .modal .btn {
  max-width: 278px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

@media only screen and (max-width: 576px) {
  body .modal .btn {
    font-size: 18px;
    font-weight: normal;
    color: #000;
  }
}

body .modal__feedback p {
  line-height: 22px;
}

.fancybox-fx-slide-in-out.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-out.fancybox-slide--next {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-out.fancybox-slide--current {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.last {
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .main-page {
    min-height: auto !important;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.main-page .h1-title {
  margin-bottom: 33px;
}

@media only screen and (max-width: 1000px) {
  .main-page .h1-title {
    text-align: center;
    margin-bottom: 10px;
  }
}

.main-page__inner {
  background-image: url("../images/door.png");
  background-position: 80% bottom;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  background-repeat: no-repeat;
  background-size: auto calc(100% - 151px);
}

@media only screen and (max-width: 1200px) {
  .main-page__inner {
    background-position: 90% calc(100% - 50px);
    background-size: auto calc(100% - 200px) !important;
  }
}

@media only screen and (max-width: 1000px) {
  .main-page__inner {
    background-position: 25% 140px;
    background-size: auto 60% !important;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media only screen and (max-width: 767px) {
  .main-page__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 80px;
    background-position: calc(70% + 50px) calc(50% + 30px);
    background-size: 45% auto !important;
  }
}

.main-page__right {
  max-width: 559px;
}

@media only screen and (max-width: 1200px) {
  .main-page__right {
    max-width: 458px;
  }
}

@media only screen and (max-width: 1000px) {
  .main-page__right {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .main-page__right {
    max-width: 301px;
    margin-right: 40%;
    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;
  }
}

.main-page__description {
  margin-bottom: 45px;
}

@media only screen and (max-width: 1000px) {
  .main-page__description {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-page__description {
    margin-bottom: 30px;
  }
}

.main-page__description p {
  font-size: 24px;
  font-size: calc(18px + (24 - 18) * ((100vw - 1200px) / (1900 - 1200)));
  line-height: 132%;
}

@media (max-width: 1200px) {
  .main-page__description p {
    font-size: 18px;
  }
}

@media (min-width: 1900px) {
  .main-page__description p {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .main-page__description p {
    font-size: 12px;
  }
}

.main-page__description p:not(:last-child) {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {
  .main-page .btn {
    width: 100%;
    text-align: center;
    font-size: 24px;
    padding-top: 21px;
    padding-bottom: 21px;
    margin-bottom: 61px;
    display: block;
    line-height: 140%;
  }
}

@media only screen and (max-width: 767px) {
  .main-page .btn {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 37px;
    padding-right: 37px;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.our-results {
  background-image: url("../images/laptop.png");
  background-size: auto 100%;
  background-position: 93% bottom;
  background-repeat: no-repeat;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 1200px) {
  .our-results {
    background-size: auto 90%;
    background-position: calc(100% + 200px) center;
  }
}

@media only screen and (max-width: 1000px) {
  .our-results {
    background-position: 75% 0px;
    background-size: auto 80%;
  }
}

@media only screen and (max-width: 767px) {
  .our-results {
    background: none;
  }
}

.our-results .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1000px) {
  .our-results .inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.our-results__left {
  max-width: 700px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .our-results__left {
    max-width: 363px;
  }
}

@media only screen and (max-width: 1000px) {
  .our-results__left {
    margin-bottom: 43px;
    max-width: 100%;
    border-radius: 23px;
    background: #000;
    padding: 25px 51px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .our-results__left {
    padding: 40px 44px 37px;
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 576px) {
  .our-results__left {
    padding: 25px 40px;
    margin-bottom: 16px;
  }
}

.our-results h2,
.our-results .h1-title {
  margin-bottom: 33px;
}

@media only screen and (min-width: 1201px) {
  .our-results h2,
  .our-results .h1-title {
    font-size: 64px;
    font-size: calc(36px + (64 - 36) * ((100vw - 1200px) / (1920 - 1200)));
  }
}

@media only screen and (min-width: 1201px) and (max-width: 1200px) {
  .our-results h2,
  .our-results .h1-title {
    font-size: 36px;
  }
}

@media only screen and (min-width: 1201px) and (min-width: 1920px) {
  .our-results h2,
  .our-results .h1-title {
    font-size: 64px;
  }
}

@media only screen and (max-width: 1000px) {
  .our-results h2,
  .our-results .h1-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .our-results h2,
  .our-results .h1-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .our-results h2,
  .our-results .h1-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

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

@supports ((-moz-column-gap: 21px) or (column-gap: 21px)) {
  .our-results .row {
    -webkit-column-gap: 21px;
       -moz-column-gap: 21px;
            column-gap: 21px;
  }
}

@supports not ((-moz-column-gap: 21px) or (column-gap: 21px)) {
  .our-results .row {
    margin-right: calc( 0px - (21px / 2));
    margin-left: calc( 0px - (21px / 2));
  }
  .our-results .row > * {
    margin-right: calc(21px / 2);
    margin-left: calc(21px / 2);
  }
  .our-results .row > * {
    margin-right: calc(21px / 2);
    margin-left: calc(21px / 2);
  }
}

.our-results .row:not(:last-child) {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1200px) {
  .our-results .row:not(:last-child) {
    margin-bottom: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .our-results .row:not(:last-child) {
    margin-bottom: 8px;
  }
}

.our-results .row span {
  font-size: 48px;
  font-size: calc(24px + (48 - 24) * ((100vw - 1200px) / (1920 - 1200)));
  font-family: 'Roboto';
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 1200px) {
  .our-results .row span {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .our-results .row span {
    font-size: 48px;
  }
}

@media only screen and (max-width: 576px) {
  .our-results .row span {
    font-size: 18px;
  }
}

.our-results__number {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 96px;
  font-size: calc(64px + (96 - 64) * ((100vw - 1200px) / (1920 - 1200)));
  line-height: 100%;
}

@media (max-width: 1200px) {
  .our-results__number {
    font-size: 64px;
  }
}

@media (min-width: 1920px) {
  .our-results__number {
    font-size: 96px;
  }
}

@media only screen and (max-width: 767px) {
  .our-results__number {
    font-size: 48px;
  }
}

@media only screen and (max-width: 576px) {
  .our-results__number {
    font-size: 36px;
  }
}

.structure {
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .structure {
    padding-top: 0px;
  }
}

.structure .container {
  height: 100%;
}

.structure .row {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@supports ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .structure .row {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

@supports not ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .structure .row {
    margin-right: calc( 0px - (20px / 2));
    margin-left: calc( 0px - (20px / 2));
  }
  .structure .row > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
  .structure .row > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
}

@media only screen and (max-width: 1200px) {
  @supports ((-moz-column-gap: 80px) or (column-gap: 80px)) {
    .structure .row {
      -webkit-column-gap: 80px;
         -moz-column-gap: 80px;
              column-gap: 80px;
    }
  }
  @supports not ((-moz-column-gap: 80px) or (column-gap: 80px)) {
    .structure .row {
      margin-right: calc( 0px - (80px / 2));
      margin-left: calc( 0px - (80px / 2));
    }
    .structure .row > * {
      margin-right: calc(80px / 2);
      margin-left: calc(80px / 2);
    }
    .structure .row > * {
      margin-right: calc(80px / 2);
      margin-left: calc(80px / 2);
    }
  }
}

@media only screen and (max-width: 1000px) {
  .structure .row {
    -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;
    padding-top: 50px;
    padding-bottom: 70px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media only screen and (max-width: 767px) {
  .structure .row {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 22px;
  }
}

.structure .h2-title {
  margin-bottom: 15px;
}

.structure__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 704px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 1000px) {
  .structure__left {
    padding: 30px 65px !important;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}

@media only screen and (max-width: 767px) {
  .structure__left {
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 576px) {
  .structure__left {
    padding: 25px 40px !important;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 1200px) {
  .structure__left .h2-title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .structure__left .h2-title {
    font-size: 18px;
  }
}

.structure__description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 1000px) {
  .structure__description {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-height: 230px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
  }
}

@media only screen and (max-width: 576px) {
  .structure__description {
    max-height: none;
  }
}

@media only screen and (min-width: 1200px) {
  .structure__description_big p {
    font-size: 22px;
    font-size: calc(16px + (22 - 16) * ((100vw - 1200px) / (1920 - 1200)));
    line-height: 166%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1200px) {
  .structure__description_big p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1200px) and (min-width: 1920px) {
  .structure__description_big p {
    font-size: 22px;
  }
}

.structure__description p {
  line-height: 125%;
}

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

@media only screen and (max-width: 1000px) {
  .structure__description p:not(:last-child) {
    margin-bottom: 10px;
  }
}

.structure__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@supports ((-moz-column-gap: 6%) or (column-gap: 6%)) {
  .structure__row {
    -webkit-column-gap: 6%;
       -moz-column-gap: 6%;
            column-gap: 6%;
  }
}

@supports not ((-moz-column-gap: 6%) or (column-gap: 6%)) {
  .structure__row {
    margin-right: calc( 0px - (6% / 2));
    margin-left: calc( 0px - (6% / 2));
  }
  .structure__row > * {
    margin-right: calc(6% / 2);
    margin-left: calc(6% / 2);
  }
  .structure__row > * {
    margin-right: calc(6% / 2);
    margin-left: calc(6% / 2);
  }
}

@media only screen and (max-width: 1000px) {
  .structure__row:not(:last-child) {
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 576px) {
  .structure__row:not(:last-child) {
    margin-bottom: 15px;
  }
}

.structure__row p {
  line-height: 125%;
}

.structure__row .h3-title {
  margin-bottom: 3px;
}

@media only screen and (max-width: 576px) {
  .structure__row .h3-title {
    font-size: 18px;
    font-weight: 400;
  }
}

.structure__row_end {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.structure__services {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 825px;
}

@media only screen and (max-width: 576px) {
  .structure__services {
    padding: 25px 40px !important;
  }
}

.structure__services .h2-title {
  margin-left: 90px;
  margin-right: 90px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 576px) {
  .structure__services .h2-title {
    margin-left: 0px;
    margin-right: 0px;
    font-size: 18px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 1000px) {
  .structure__services {
    max-width: 100%;
    width: 100%;
    padding-top: 50px 12px 37px;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}

.structure__service {
  max-width: 329px;
}

.structure__img {
  width: 234px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .structure__img {
    width: 150px;
  }
}

@media only screen and (max-width: 576px) {
  .structure__img {
    display: none;
  }
}

.dark-block {
  padding: 4.1%;
  background: rgba(0, 0, 0, 0.88);
  -webkit-box-shadow: 0px 0px 100px 3px rgba(163, 163, 163, 0.26);
          box-shadow: 0px 0px 100px 3px rgba(163, 163, 163, 0.26);
  border-radius: 23px;
}

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

.review__slider {
  max-width: 1146px;
  padding: 98px 148px 65px;
}

@media only screen and (max-width: 1200px) {
  .review__slider {
    max-width: 794px;
    padding: 68px 90px 20px;
  }
}

@media only screen and (max-width: 1000px) {
  .review__slider {
    max-width: 100%;
    padding: 68px 71px 45px 85px;
  }
}

@media only screen and (max-width: 767px) {
  .review__slider {
    padding: 50px 33px 45px;
  }
}

@media only screen and (max-width: 576px) {
  .review__slider {
    padding: 32px 32px;
  }
}

.review__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 21px;
  margin-bottom: 9px;
  border-bottom: 1px solid #0B78FF;
}

@supports ((-moz-column-gap: 21px) or (column-gap: 21px)) {
  .review__head {
    -webkit-column-gap: 21px;
       -moz-column-gap: 21px;
            column-gap: 21px;
  }
}

@supports not ((-moz-column-gap: 21px) or (column-gap: 21px)) {
  .review__head {
    margin-right: calc( 0px - (21px / 2));
    margin-left: calc( 0px - (21px / 2));
  }
  .review__head > * {
    margin-right: calc(21px / 2);
    margin-left: calc(21px / 2);
  }
  .review__head > * {
    margin-right: calc(21px / 2);
    margin-left: calc(21px / 2);
  }
}

@media only screen and (max-width: 1000px) {
  .review__head {
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  @supports ((-moz-column-gap: 12px) or (column-gap: 12px)) {
    .review__head {
      -webkit-column-gap: 12px;
         -moz-column-gap: 12px;
              column-gap: 12px;
    }
  }
  @supports not ((-moz-column-gap: 12px) or (column-gap: 12px)) {
    .review__head {
      margin-right: calc( 0px - (12px / 2));
      margin-left: calc( 0px - (12px / 2));
    }
    .review__head > * {
      margin-right: calc(12px / 2);
      margin-left: calc(12px / 2);
    }
    .review__head > * {
      margin-right: calc(12px / 2);
      margin-left: calc(12px / 2);
    }
  }
}

@media only screen and (max-width: 767px) {
  .review__head {
    padding-bottom: 16px;
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 576px) {
  .review__head {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}

.review__head img {
  border-radius: 5px;
  width: 84px;
  height: 84px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .review__head img {
    width: 60px;
    height: 60px;
  }
}

.review__pro {
  margin-top: 21px;
}

@media only screen and (max-width: 576px) {
  .review__pro {
    margin-top: 11px;
  }
}

.review__pro .semibold {
  font-size: 18px;
}

.review__pro p {
  font-size: 14px;
}

.review__pro *:not(:last-child) {
  margin-bottom: 2px;
}

@media only screen and (max-width: 576px) {
  .review__pro *:not(:last-child) {
    margin-bottom: 8px;
  }
}

.review__bottom {
  height: 100%;
  overflow: hidden;
}

.review__bottom p:not(:last-child) {
  margin-bottom: 10px;
}

.portfolio {
  background-image: url("../images/portfolio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .portfolio {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}

.carousel {
  position: relative;
  z-index: 1;
}

.carousel__wrapper {
  padding: 75px 0px;
  position: static;
}

.carousel__item {
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0px 0px 20px 3px rgba(163, 163, 163, 0.26);
          box-shadow: 0px 0px 20px 3px rgba(163, 163, 163, 0.26);
  border-radius: 23px;
  position: relative;
  overflow: visible !important;
}

.carousel__item:not(.swiper-slide-active) {
  cursor: pointer;
}

@media only screen and (min-width: 1201px) {
  .carousel__item {
    -webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

.carousel__item:after {
  content: '';
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(103, 109, 170, 0.4)), to(rgba(103, 109, 170, 0.4)));
  background: -o-linear-gradient(bottom, rgba(103, 109, 170, 0.4), rgba(103, 109, 170, 0.4));
  background: linear-gradient(0deg, rgba(103, 109, 170, 0.4), rgba(103, 109, 170, 0.4));
  width: 100%;
  height: 100%;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  border-radius: inherit;
  top: 0px;
  left: 0px;
  visibility: visible;
}

.carousel__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  position: relative;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.carousel__item.swiper-slide-active {
  z-index: 4;
}

.carousel__item.swiper-slide-active img, .carousel__item.swiper-slide-active:after {
  -webkit-transform: scale(1.45);
      -ms-transform: scale(1.45);
          transform: scale(1.45);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

@media only screen and (max-width: 1000px) {
  .carousel__item.swiper-slide-active img, .carousel__item.swiper-slide-active:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

.carousel__item.swiper-slide-active:after {
  opacity: 0;
  visibility: hidden;
}

.carousel__item.swiper-slide-prev {
  z-index: 2;
}

.carousel__item.swiper-slide-prev img, .carousel__item.swiper-slide-prev:after {
  -webkit-transform: scale(1.174);
      -ms-transform: scale(1.174);
          transform: scale(1.174);
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
}

@media only screen and (max-width: 1000px) {
  .carousel__item.swiper-slide-prev img, .carousel__item.swiper-slide-prev:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

.carousel__item.swiper-slide-next {
  z-index: 2;
}

.carousel__item.swiper-slide-next img, .carousel__item.swiper-slide-next:after {
  -webkit-transform: scale(1.174);
      -ms-transform: scale(1.174);
          transform: scale(1.174);
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
}

@media only screen and (max-width: 1000px) {
  .carousel__item.swiper-slide-next img, .carousel__item.swiper-slide-next:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

.carousel__item.animate img, .carousel__item.animate:after {
  width: calc(100% + 5px);
  height: calc(100% + 5px);
}

@media only screen and (max-width: 1200px) {
  .carousel__item.animate img, .carousel__item.animate:after {
    width: 100%;
    height: auto;
  }
}

.contact {
  background-image: url("../images/phone.png");
  background-size: 64%;
  background-repeat: no-repeat;
  background-position: 2.5% 82%;
  padding: 32px 0px;
}

@media only screen and (max-width: 1200px) {
  .contact {
    background-size: 62%;
    background-repeat: no-repeat;
    background-position: 0% center;
  }
}

@media only screen and (max-width: 1000px) {
  .contact {
    background: none;
  }
}

.contact__inner {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
  .contact__inner {
    max-width: 502px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact .form.dark-block {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact .icon__mouse {
  fill: white;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 40px;
  opacity: 1;
}

@media only screen and (min-width: 1201px) {
  .contact .icon__mouse {
    -webkit-animation-name: down;
            animation-name: down;
    -webkit-animation-duration: 1.2s;
            animation-duration: 1.2s;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
}

@media only screen and (max-width: 767px) {
  .contact .icon__mouse {
    display: none;
  }
}

.contact .icon__mouse.hide {
  opacity: 0;
}

.contact .container {
  position: relative;
}

@-webkit-keyframes down {
  0% {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
  50% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
}

@keyframes down {
  0% {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
  50% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
}

.message {
  padding: 10px 15px;
  position: fixed;
  background: rgba(18, 18, 37, 0.8);
  border: 1px solid #0B78FF;
  border-radius: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 20px;
  left: 40px;
  max-width: 850px;
  z-index: 99;
}

@supports ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .message {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

@supports not ((-moz-column-gap: 20px) or (column-gap: 20px)) {
  .message {
    margin-right: calc( 0px - (20px / 2));
    margin-left: calc( 0px - (20px / 2));
  }
  .message > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
  .message > * {
    margin-right: calc(20px / 2);
    margin-left: calc(20px / 2);
  }
}

@media only screen and (min-width: 1201px) {
  .message {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
}

@media only screen and (max-width: 1000px) {
  .message {
    display: none;
  }
}

.message.hide {
  opacity: 0;
}

.message .icon {
  fill: #0B78FF;
  font-size: 51px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.message img {
  width: 120px;
  border-radius: 4px;
}

.message p {
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.message p span {
  margin-top: 5px;
  display: block;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .section-about {
    background-image: url("../images/background-mobile.jpg");
    background-size: cover calc(100% + 5px);
    background-position: center;
    padding-bottom: 82px;
    padding-top: 94px;
  }
}

@media only screen and (max-width: 576px) {
  .section-about {
    padding-top: 33px;
    padding-bottom: 33px;
  }
}

@media only screen and (max-width: 767px) {
  .section-about section {
    background-image: none;
    max-width: 502px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.project {
  padding: 70px 0px;
}

@media only screen and (max-width: 1200px) {
  .project {
    padding: 45px 0px 70px;
  }
}

@media only screen and (max-width: 1000px) {
  .project {
    max-width: 558px;
    margin: auto;
    padding: 70px 0px 60px;
  }
}

@media only screen and (max-width: 767px) {
  .project {
    max-width: 446px;
    padding: 21px 0px 45px;
  }
}

@media only screen and (max-width: 576px) {
  .project {
    max-width: 100%;
    padding: 7px 0px 32px;
  }
}

.project h1 {
  margin-bottom: 32px;
}

@media only screen and (max-width: 576px) {
  .project h1 {
    margin-bottom: 10px;
  }
}

@supports ((-moz-column-gap: 18px) or (column-gap: 18px)) {
  .project .grid {
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
  }
}

@supports not ((-moz-column-gap: 18px) or (column-gap: 18px)) {
  .project .grid {
    margin-right: calc( 0px - (18px / 2));
    margin-left: calc( 0px - (18px / 2));
  }
  .project .grid > * {
    margin-right: calc(18px / 2);
    margin-left: calc(18px / 2);
  }
  .project .grid > * {
    margin-right: calc(18px / 2);
    margin-left: calc(18px / 2);
  }
}

@supports (row-gap: 32px) {
  .project .grid {
    row-gap: 32px;
  }
}

@supports not (row-gap: 32px) {
  .project .grid {
    margin-bottom: -32px;
  }
  .project .grid > * {
    margin-bottom: 32px;
  }
}

@media only screen and (max-width: 1200px) {
  .project .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  @supports ((-moz-column-gap: 42px) or (column-gap: 42px)) {
    .project .grid {
      -webkit-column-gap: 42px;
         -moz-column-gap: 42px;
              column-gap: 42px;
    }
  }
  @supports not ((-moz-column-gap: 42px) or (column-gap: 42px)) {
    .project .grid {
      margin-right: calc( 0px - (42px / 2));
      margin-left: calc( 0px - (42px / 2));
    }
    .project .grid > * {
      margin-right: calc(42px / 2);
      margin-left: calc(42px / 2);
    }
    .project .grid > * {
      margin-right: calc(42px / 2);
      margin-left: calc(42px / 2);
    }
  }
  @supports (row-gap: 30px) {
    .project .grid {
      row-gap: 30px;
    }
  }
  @supports not (row-gap: 30px) {
    .project .grid {
      margin-bottom: -30px;
    }
    .project .grid > * {
      margin-bottom: 30px;
    }
  }
}

@media only screen and (max-width: 1000px) {
  .project .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  @supports (row-gap: 27px) {
    .project .grid {
      row-gap: 27px;
    }
  }
  @supports not (row-gap: 27px) {
    .project .grid {
      margin-bottom: -27px;
    }
    .project .grid > * {
      margin-bottom: 27px;
    }
  }
}

@media only screen and (max-width: 767px) {
  @supports (row-gap: 21px) {
    .project .grid {
      row-gap: 21px;
    }
  }
  @supports not (row-gap: 21px) {
    .project .grid {
      margin-bottom: -21px;
    }
    .project .grid > * {
      margin-bottom: 21px;
    }
  }
}

@media only screen and (max-width: 576px) {
  @supports (row-gap: 16px) {
    .project .grid {
      row-gap: 16px;
    }
  }
  @supports not (row-gap: 16px) {
    .project .grid {
      margin-bottom: -16px;
    }
    .project .grid > * {
      margin-bottom: 16px;
    }
  }
}

.project__card {
  position: relative;
  border-radius: 23px;
  overflow: hidden;
  cursor: pointer;
}

@media (any-hover: hover) {
  .project__card {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
  }
  .project__card:hover .project__inner {
    opacity: 1;
  }
}

.project__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.project__img {
  padding-bottom: 56.3%;
}

@media only screen and (max-width: 1200px) {
  .project__img {
    position: relative;
  }
}

.project__inner {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 8.4% 5.5% 4.6% 7.4%;
  background: rgba(16, 16, 37, 0.8);
}

@media only screen and (max-width: 1200px) {
  .project__inner {
    margin-top: -2px;
    position: static;
    opacity: 1;
    background: #000;
    height: auto;
    bottom: 0px;
    padding: 10px 10px 20px 20px;
    top: auto;
  }
  .project__inner p {
    font-size: 8px;
    font-weight: 500;
    line-height: 1.107;
    display: inline;
  }
  .project__inner .btn {
    display: none;
  }
}

.project__text {
  max-height: 110px;
  overflow: hidden;
}

.project__text p {
  line-height: 120%;
}

@media only screen and (max-width: 1200px) {
  .project__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  @supports ((-moz-column-gap: 10px) or (column-gap: 10px)) {
    .project__text {
      -webkit-column-gap: 10px;
         -moz-column-gap: 10px;
              column-gap: 10px;
    }
  }
  @supports not ((-moz-column-gap: 10px) or (column-gap: 10px)) {
    .project__text {
      margin-right: calc( 0px - (10px / 2));
      margin-left: calc( 0px - (10px / 2));
    }
    .project__text > * {
      margin-right: calc(10px / 2);
      margin-left: calc(10px / 2);
    }
    .project__text > * {
      margin-right: calc(10px / 2);
      margin-left: calc(10px / 2);
    }
  }
  .project__text:after {
    content: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.05606 0.560059C4.86938 0.560059 3.70934 0.911952 2.72264 1.57124C1.73595 2.23053 0.966912 3.1676 0.512786 4.26396C0.0586605 5.36031 -0.0601595 6.56671 0.171352 7.7306C0.402863 8.89449 0.974308 9.96358 1.81342 10.8027C2.65254 11.6418 3.72164 12.2133 4.88552 12.4448C6.04941 12.6763 7.25581 12.5575 8.35216 12.1033C9.44852 11.6492 10.3856 10.8802 11.0449 9.89348C11.7042 8.90678 12.0561 7.74675 12.0561 6.56006C12.0561 5.77213 11.9009 4.99191 11.5993 4.26396C11.2978 3.536 10.8559 2.87457 10.2987 2.31742C9.74155 1.76027 9.08012 1.31831 8.35216 1.01678C7.62421 0.715253 6.84399 0.560059 6.05606 0.560059ZM6.05606 11.3601C5.10671 11.3601 4.17868 11.0785 3.38933 10.5511C2.59997 10.0237 1.98474 9.27402 1.62144 8.39694C1.25814 7.51985 1.16309 6.55473 1.34829 5.62362C1.5335 4.69252 1.99066 3.83724 2.66195 3.16595C3.33324 2.49465 4.18852 2.0375 5.11963 1.85229C6.05074 1.66708 7.01586 1.76214 7.89294 2.12544C8.77003 2.48874 9.51968 3.10397 10.0471 3.89332C10.5745 4.68268 10.8561 5.61071 10.8561 6.56006C10.8561 7.8331 10.3503 9.054 9.45018 9.95417C8.55 10.8543 7.3291 11.3601 6.05606 11.3601Z' fill='%23CEC3BD'/%3E%3Cpath d='M6.05609 4.76006C6.38746 4.76006 6.65608 4.49143 6.65608 4.16006C6.65608 3.82869 6.38746 3.56006 6.05609 3.56006C5.72471 3.56006 5.45609 3.82869 5.45609 4.16006C5.45609 4.49143 5.72471 4.76006 6.05609 4.76006Z' fill='%23CEC3BD'/%3E%3Cpath d='M6.05609 5.36011C5.89696 5.36011 5.74434 5.42332 5.63182 5.53584C5.5193 5.64837 5.45609 5.80098 5.45609 5.96011V8.96011C5.45609 9.11924 5.5193 9.27185 5.63182 9.38437C5.74434 9.49689 5.89696 9.56011 6.05609 9.56011C6.21521 9.56011 6.36783 9.49689 6.48035 9.38437C6.59287 9.27185 6.65608 9.11924 6.65608 8.96011V5.96011C6.65608 5.80098 6.59287 5.64837 6.48035 5.53584C6.36783 5.42332 6.21521 5.36011 6.05609 5.36011Z' fill='%23CEC3BD'/%3E%3C/svg%3E");
  }
}

@media only screen and (max-width: 576px) {
  .project__text p {
    font-size: 9px;
    font-weight: 700;
  }
}

.project__text p:not(:last-child) {
  padding: 5px;
}

.error-404__left {
  max-width: 684px;
}

@media only screen and (max-width: 1200px) {
  .error-404__left {
    max-width: 363px;
  }
}

@media only screen and (max-width: 1000px) {
  .error-404__left {
    max-width: 100%;
  }
}

.error-404__left .h1-title {
  margin-bottom: 25px;
}

@media only screen and (max-width: 1000px) {
  .error-404__left .h1-title {
    text-align: center;
  }
}

@media only screen and (max-width: 576px) {
  .error-404__left .h1-title {
    margin-bottom: 16px;
  }
}

.error-404__text {
  margin-bottom: 40px;
}

.error-404__text p {
  font-size: 24px;
  line-height: 100.69%;
}

@media only screen and (max-width: 767px) {
  .error-404__text p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1000px) {
  .error-404__text {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .error-404__text {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .error-404__text {
    margin-bottom: 16px;
  }
}

.error-404__inner {
  position: relative;
  background-image: url("../images/404.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1200px) {
  .error-404__inner {
    background-size: auto 76%;
  }
}

@media only screen and (max-width: 1000px) {
  .error-404__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    background-size: 100% auto;
    background-position: 100% 50px;
  }
}

@media only screen and (max-width: 576px) {
  .error-404__inner {
    background-position: 100% 30%;
  }
}

@media only screen and (max-width: 1000px) {
  .error-404 .btn {
    width: 100%;
    text-align: center;
    padding-top: 31px;
    padding-bottom: 31px;
  }
}

@media only screen and (max-width: 767px) {
  .error-404 .btn {
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 576px) {
  .error-404 .btn {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 14px;
    margin-bottom: 47px;
  }
}
