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

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

a {
  display: inline-block;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#about,
#services,
#contacts {
  position: relative;
  top: -109px;
}

/* preloader */
.preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}

.preloader span {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  position: relative;
  display: block;
  text-align: center;
  margin-top: 50px;
  font-size: 24px;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -35%);
      -ms-transform: translate(-50%, -35%);
          transform: translate(-50%, -35%);
  text-align: center;
}

.preloader__image path {
  stroke-dasharray: 99.47578430175781;
  stroke-dashoffset: -99.47578430175781;
  fill: transparent;
}

@-webkit-keyframes preloader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes preloader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loaded_hiding .preloader {
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  opacity: 1;
  visibility: visible;
}

.loaded .preloader span {
  -webkit-animation: 1.7s ease forwards visible;
          animation: 1.7s ease forwards visible;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.loaded .preloader__image path {
  -webkit-animation: 1.7s ease forwards draw;
          animation: 1.7s ease forwards draw;
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes visible {
  100% {
    opacity: 1;
  }
}

@keyframes visible {
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes draw {
  0% {
    opacity: 1;
    stroke-dashoffset: -99.47578430175781;
    fill: transparent;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  35% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  60% {
    fill: #3da35a;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    fill: #3da35a;
    stroke-dashoffset: 0;
    opacity: 1;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes draw {
  0% {
    opacity: 1;
    stroke-dashoffset: -99.47578430175781;
    fill: transparent;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  35% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  60% {
    fill: #3da35a;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    fill: #3da35a;
    stroke-dashoffset: 0;
    opacity: 1;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/* END preloader */
/* block */
.header {
  background-color: #040404;
  color: #fff;
  padding-bottom: 126px;
  margin-bottom: 46px;
  padding-top: 108px;
}

.header__list li {
  display: inline-block;
}

.header__list li a {
  padding: 16px;
}

.nav-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}

.container {
  max-width: 1472px;
  padding: 0 16px;
  margin: 0 auto;
}

.header__fixed {
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  position: fixed;
  background-color: #040404;
  z-index: 10;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1472px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.contact {
  border: 2px solid #FFFFFF;
  padding: 18px 20px 17px;
  width: 164px;
  text-align: center;
}

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

.header__info {
  width: 682px;
  margin-right: 50px;
}

.header__info-img {
  width: 639px;
}

.header__title {
  font-weight: 900;
  font-size: 96px;
  line-height: 117px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.header__title span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.header__info-text {
  font-size: 24px;
  line-height: 36px;
}

.burger-btn {
  display: none;
  cursor: pointer;
}

.nav-mobile {
  overflow: auto;
  display: none;
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #000000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  z-index: 10;
  position: fixed;
  left: 0;
  top: -150vh;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: .95;
}

.nav-mobile.active {
  top: 0;
  bottom: 0;
}

.close-btn {
  position: absolute;
  right: 8px;
  top: 16px;
  cursor: pointer;
}

.fixed-page {
  overflow: hidden;
}

.logo-mobile {
  margin-bottom: 115px;
}

.logo-mobile img {
  width: 100%;
}

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

.nav-mobile__list li {
  margin-bottom: 15px;
}

.nav-mobile__list a {
  font-size: 24px;
  line-height: 29px;
  padding: 15px;
}

.nav-mobile__contact {
  margin-top: 40px;
  color: #fff;
}

.copyright {
  margin-top: auto;
  height: 15px;
  font-size: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: #fff;
}

@media (min-width: 768px) {
  body {
    overflow: visible !important;
  }
}

@media (max-width: 992px) {
  .header__content {
    margin-top: 60px;
  }
  .header__title {
    font-size: 60px;
    line-height: 78px;
  }
}

@media (max-width: 768px) {
  .nav-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header {
    padding-bottom: 80px;
    margin-bottom: 40px;
  }
  .header__info-img {
    width: 450px;
  }
  .header__info {
    width: 100%;
    margin-right: 0;
  }
  .header__content {
    -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;
  }
  .header__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .burger-btn {
    display: block;
  }
  .hide-sm {
    display: none;
  }
}

@media (max-width: 576px) {
  .header__info-img {
    margin-top: 10px;
    width: 247px;
  }
  .header__info-img img {
    width: 100%;
  }
  .header__info-text {
    font-size: 18px;
    line-height: 27px;
  }
  .header__info {
    text-align: center;
  }
  .header__title {
    font-size: 44px;
    line-height: 54px;
  }
  .logo {
    width: 82px;
  }
  .logo img {
    width: 100%;
  }
  .logo-mobile {
    width: 142px;
  }
}

/* END block */
/* block */
.about-section {
  margin-bottom: 50px;
}

.about {
  background: url(../image/bg-about-left.png) top left no-repeat, url(../image/bg-about-right.png) bottom right no-repeat;
  background-size: auto, contain;
  background-color: #F46275;
  padding: 32px 48px;
  color: #fff;
}

.topic {
  font-size: 40px;
  line-height: 49px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__title {
  margin-bottom: 24px;
}

.about__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}

.services-section {
  background: #F5F9FF;
  padding-top: 80px;
  padding-bottom: 70px;
}

.services__title {
  margin-bottom: 40px;
}

.services__cat {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
}

.services__about {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 40px;
}

.services__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.item {
  width: calc(33.3% - 24px);
  margin-left: 24px;
  padding: 56px 33px 40px;
  background-color: #fff;
  margin-bottom: 32px;
}

.item_width {
  width: calc(50% - 24px);
}

.item__img {
  width: 168px;
  margin: 0 auto 32px;
}

.item__img img {
  width: 100%;
  display: block;
}

.item__title {
  letter-spacing: 0;
  margin-bottom: 24px;
  text-transform: none;
}

.item__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -18px;
  margin-bottom: 22px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.social-box {
  margin-left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.social-box span {
  margin-left: 12px;
}

.item__text,
.item__list {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}

.item__text {
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .item {
    width: calc(50% - 24px);
  }
}

@media (max-width: 992px) {
  .item__text, .item__list {
    font-size: 18px;
    line-height: 30px;
  }
  .topic {
    font-size: 32px;
    line-height: 39px;
  }
  .item__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 24px;
  }
  .services__about {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .services__cat {
    font-size: 24px;
    line-height: 36px;
  }
  .about {
    padding: 24px;
  }
  .about__text {
    font-size: 18px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .item {
    padding: 39px 20px 24px;
  }
  .services__title {
    margin-bottom: 32px;
  }
  .about-section {
    margin-bottom: 40px;
  }
  .about {
    padding: 24px;
    background: url(../image/bg-about-left.png) top left no-repeat, none;
    background-color: #F46275;
  }
  .services-section {
    padding: 50px 0 0;
  }
}

@media (max-width: 576px) {
  .item {
    width: calc(100% - 24px);
  }
  .about {
    padding: 24px 16px;
    background-size: contain;
  }
}

/* END block */
/* block */
.count-section {
  padding: 70px 0;
  background-color: #000000;
  color: #fff;
}

.count__title {
  margin-bottom: 45px;
}

.count__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: -45px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -64px;
}

.count__item {
  margin-left: 45px;
  margin-bottom: 64px;
}

.count__item-number {
  color: #ED5D2F;
  font-weight: bold;
  font-size: 96px;
  line-height: 133.9%;
  letter-spacing: 0.255em;
  text-transform: uppercase;
}

.count__item-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.1em;
}

@media (max-width: 992px) {
  .count-section {
    padding-top: 40px;
    padding-bottom: 90px;
  }
  .count__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .count__item-number {
    font-size: 64px;
    line-height: 78px;
    text-align: center;
  }
  .count__item-text {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 556px) {
  .count__title {
    font-size: 24px;
    line-height: 29px;
  }
  .count__item-number {
    margin-bottom: 8px;
  }
}

/* END block */
/* block */
.submit-section {
  padding: 130px 0;
  max-width: 1920px;
  margin: 0 auto;
  background: url(../image/astronaut.png) no-repeat;
  background-position: 100% 100%;
}

.submit__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.submit__box {
  width: 490px;
  margin-right: 30px;
}

.submit__title {
  margin-bottom: 24px;
  max-width: 243px;
}

.submit__form {
  width: 600px;
  position: relative;
}

.submit__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}

.submit__form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}

.submit__input {
  width: calc(50% - 16px);
  margin-left: 16px;
  margin-bottom: 16px;
}

.submit__input input {
  width: 100%;
  display: block;
  border: none;
  background: #F8F8F8;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  padding: 20px 32px 19px;
}

.submit__input input._error {
  -webkit-box-shadow: 0 0 3px red;
          box-shadow: 0 0 3px red;
}

.submit__input input::-webkit-input-placeholder {
  color: #A6A6A6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.submit__input input::-moz-placeholder {
  color: #A6A6A6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.submit__input input:-ms-input-placeholder {
  color: #A6A6A6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.submit__input input::-ms-input-placeholder {
  color: #A6A6A6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.submit__input input::placeholder {
  color: #A6A6A6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.submit__email {
  width: calc(100% - 16px);
}

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

.submit__form-text {
  width: 200px;
  margin-right: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
}

.submit__form-text span {
  color: #FFB800;
}

.submit__form-btn {
  font-weight: bold;
  width: 206px;
  font-size: 14px;
  line-height: 17px;
  border: 2px solid #000000;
  text-align: center;
  padding: 20px 22px 19px;
  background-color: #fff;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .submit__text {
    font-size: 18px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .submit-section {
    background: url(../image/astronaut-mobile.png) center no-repeat;
    background-position-y: -75px;
    padding-top: 350px;
    padding-bottom: 40px;
  }
  .submit__title {
    max-width: none;
  }
  .submit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .submit__form {
    width: 100%;
  }
  .submit__box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .submit__form-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .submit__form-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-right: 0;
  }
  .submit__form-btn {
    width: 100%;
    margin-bottom: 16px;
  }
  .submit__input {
    width: calc(100% - 16px);
  }
}

/* END block */
/* block */
.footer {
  padding: 46px 0 16px;
  background: -o-linear-gradient(0.01deg, #062440 2.4%, #09060D 100.59%);
  background: linear-gradient(89.99deg, #062440 2.4%, #09060D 100.59%);
  color: #fff;
}

.footer__logo {
  width: 115px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.footer__list li {
  display: inline-block;
}

.footer__list li a {
  padding: 16px;
}

.footer__contact {
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.tel {
  font-weight: bold;
  font-size: 24px;
  line-height: 145.9%;
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.mail {
  font-weight: 600;
  font-size: 16px;
  line-height: 145.9%;
  display: block;
  color: #fff;
}

.footer__copy {
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-align: right;
}

@media (max-width: 768px) {
  .footer__copy {
    text-align: center;
  }
  .footer-logo-branch {
    margin-bottom: 40px;
  }
  .tel {
    margin-bottom: 12px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 28px;
  }
  .footer__logo {
    margin-bottom: 35px;
  }
  .footer__list {
    margin-bottom: 35px;
  }
  .footer__list li {
    display: block;
  }
}

@media (max-width: 575px) {
  .mail {
    font-size: 14px;
    text-align: center;
  }
}

/* END block */
/* popup */
.fixed-body {
  overflow: hidden !important;
}

.popup-box .submit__box,
.popup-box .submit__form {
  width: 100%;
}

.popup-box .submit__title {
  max-width: none;
  font-size: 32px;
  line-height: 39px;
}

.popup-box .submit__text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 24px;
}

.popup-box .submit__input {
  width: calc(100% - 16px);
}

.popup-box .submit__form-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup-box .submit__form-text {
  width: 100%;
  margin-right: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.popup-box .submit__form-btn {
  width: 100%;
  margin-bottom: 15px;
}

.popup-fade {
  display: none;
}

.popup-fade:before {
  content: '';
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 9999;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding: 84px 48px;
  max-width: 430px;
  background: #fff;
  z-index: 99999;
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
}

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

@media (max-width: 576px) {
  .popup {
    padding: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: none;
  }
}

@media (max-height: 500px) {
  .popup {
    overflow: auto;
    height: 300px;
  }
}

/* END popup */
