.top-nav {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 990;
  transition: background-color 0.3s linear;
  height: 50px;
}

.top-nav__container {
  width: 100%;
  height: 50px;
  display: table;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.top-nav__center {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  width: 100%;
}

.top-nav__pad {
  width: 20px;
}

.top-nav__list {
  list-style-type: none;
  margin: 0;
  padding: 0 !important;
}

.top-nav__item {
  clear: both;
  font-size: 16px;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  white-space: nowrap;
  color: #595959;
  font-family: 'PT Sans', Arial, sans-serif;
}

.top-nav__link,
.site-nav__link {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.top-nav__link_active,
.site-nav__link_active {
  color: #ffffff !important;
  font-weight: 400 !important;
  opacity: 1 !important;
  border-top: 1px solid white;
}

@media screen and (max-width: 980px) {
  .top-nav {
    position: static;
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
    height: auto !important;
    background-color: #ffffff !important;
  }

  .top-nav__center {
    display: block;
    text-align: center;
    float: none;
    padding: 20px 0;
  }

  .top-nav__pad {
    display: none;
  }

  .top-nav .top-nav__item {
    display: block;
    text-align: center;
    padding: 12px 10px !important;
    white-space: normal;
  }
}

.mobile-bar {
  background-color: #111;
  display: none;
  width: 100%;
  top: 0;
  z-index: 990;
}

.mobile-bar__container {
  min-height: 64px;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-bar__text {
  color: #fff;
}

.burger {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  transform: rotate(0deg);
  transition: transform .5s ease-in-out;
  cursor: pointer;
  z-index: 999;
}

.burger span {
  display: block;
  position: absolute;
  width: 100%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
  height: 3px;
  background-color: #000000;
}

.burger span:nth-child(1) {
  top: 0px;
}

.burger span:nth-child(2),
.burger span:nth-child(3) {
  top: 8px;
}

.burger span:nth-child(4) {
  top: 16px;
}

.burger_opened span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.burger_opened span:nth-child(2) {
  transform: rotate(45deg);
}

.burger_opened span:nth-child(3) {
  transform: rotate(-45deg);
}

.burger_opened span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

@media (hover) {
  .burger:hover span:nth-child(1) {
    transform: translateY(1px);
  }

  .burger:hover span:nth-child(4) {
    transform: translateY(-1px);
  }
}

@media screen and (max-width: 980px) {
  .mobile-bar {
    display: block;
  }

  .burger {
    order: 1;
  }
}

.site-nav {
  width: 100%;
  height: 80px;
  z-index: 2000;
  position: fixed;
  top: 0;
  transition: background-color 0.3s linear;
}

.site-nav_hidden {
  visibility: hidden;
}

.site-nav__container {
  position: relative;
  display: table;
  width: 100%;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-nav__pad {
  width: 20px;
}

.site-nav__left {
  display: table-cell;
  vertical-align: middle;
}

.site-nav__left-container {
  display: inline-block;
}

.site-nav__left-container a {
  color: #1d82be;
}

.site-nav__logo-wrap {
  display: inline-block;
}

.site-nav__logo {
  margin-right: 30px;
  vertical-align: middle;
}

.site-nav__center {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  width: 100%;
}

.site-nav__right {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.site-nav__list {
  font-size: 0;
  transition: opacity ease-in-out 0.2s;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.site-nav__item {
  clear: both;
  font-family: 'PT Sans', Arial, sans-serif;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  color: #595959;
  white-space: nowrap;
}

.site-nav__item:first-child {
  padding-left: 0;
}

.site-nav__item:last-child {
  padding-right: 0;
}

@media screen and (max-width: 1200px) {
  .site-nav__logo {
    margin-right: 15px;
  }
}

@media screen and (max-width: 980px) {
  .site-nav {
    position: static;
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
    height: auto !important;
    background-color: #1d82be !important;
  }

  .site-nav_menu-hidden {
    display: none;
    height: 100%;
  }

  .site-nav__container {
    height: auto !important;
    display: block;
  }

  .site-nav__left,
  .site-nav__right,
  .site-nav__center {
    display: block;
    text-align: center;
    float: none;
  }

  .site-nav__left-container,
  .site-nav__center-container {
    padding: 20px 0;
  }

  .site-nav__left-container {
    padding: 20px;
  }

  .site-nav__logo {
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
    padding: 20px 0;
    margin: 0 auto;
    float: inherit;
  }

  .site-nav__pad {
    display: none;
  }

  .site-nav .site-nav__item {
    display: block;
    text-align: center;
    padding: 10px !important;
    white-space: normal;
  }

  .site-nav__link {
    display: inline-block;
  }
}

.cover-content__wrapper {
  position: relative;
  z-index: 1;
  padding-top: 42px;
  padding-bottom: 42px;
}

.cover-content__logo-block {
  padding-top: 30px;
  padding-bottom: 30px;
}

.cover-content__logo-link {
  display: inline-block;
}

.cover-content__logo {
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

.cover-content__title {
  padding: 24px 0 38px;
  letter-spacing: .5px;
  color: #fff;
}

.hero .cover-content__title {
  padding-top: 200px;
}

@media screen and (min-width: 900px) {
  .cover-content__title {
    font-size: 50px;
  }
}

@media screen and (max-width: 640px) {
  .cover-content__title {
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
  }
}

.cover-logo__table {
  position: relative;
  z-index: 1;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

.cover-logo__cell {
  display: table-cell;
  vertical-align: middle;
}

.cover-logo__img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

@media screen and (max-width: 960px) {
  .cover-logo__cell {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.artboard {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #dadada;
  -webkit-text-size-adjust: 100%;
}

.artboard__elem {
  position: absolute;
  box-sizing: border-box;
  display: table;
  height: auto;
}

.artboard__atom {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.artboard__img {
  width: 100%;
  display: block;
}

.intro {
  height: 560px;
}

.intro__title {
  color: #595959;
  z-index: 1;
  top: 130px;
  left: calc(50% - 600px + 420px);
  width: 800px;
}

.intro__title .artboard__atom {
  color: #595959;
  font-size: 30px;
  font-family: 'PT Sans', Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
}

.intro__text {
  color: #595959;
  z-index: 2;
  top: 300px;
  left: calc(50% - 600px + 420px);
  width: 700px;
}

.intro__text .artboard__atom {
  color: #595959;
  font-size: 24px;
  font-family: 'Arial', Arial, sans-serif;
  line-height: 1.75;
  font-weight: 300;
}

.intro__logo {
  z-index: 3;
  top: 140px;
  left: calc(50% - 600px + 120px);
  width: 160px;
}

@media screen and (max-width: 1199px) {
  .intro__title {
    top: 130px;
    left: calc(50% - 480px + 330px);
    width: 620px;
  }

  .intro__text {
    top: 300px;
    left: calc(50% - 480px + 330px);
  }

  .intro__logo {
    top: 140px;
    left: calc(50% - 480px + 90px);
  }
}

@media screen and (max-width: 959px) {
  .intro {
    height: 790px;
  }

  .intro__title {
    top: 370px;
    left: calc(50% - 320px + 10px);
    width: 600px;
  }

  .intro__text {
    top: 540px;
    left: calc(50% - 320px + 10px);
    width: 610px;
  }

  .intro__logo {
    top: 100px;
    left: calc(50% - 320px + 250px);
  }
}

@media screen and (max-width: 639px) {
  .intro {
    height: 850px;
  }

  .intro__title {
    top: 280px;
    left: calc(50% - 240px + 70px);
    width: 460px;
  }

  .intro__text {
    top: 530px;
    left: calc(50% - 240px + 70px);
    width: 400px;
  }

  .intro__logo {
    top: 50px;
    left: calc(50% - 240px + 170px);
  }
}

@media screen and (max-width: 479px) {
  .intro {
    height: 1070px;
  }

  .intro__title {
    top: 280px;
    left: calc(50% - 160px + 10px);
    width: 300px;
  }

  .intro__text {
    top: 670px;
    left: calc(50% - 160px + 10px);
    width: 300px;
  }

  .intro__logo {
    top: 40px;
    left: calc(50% - 160px + 90px);
  }
}

.map {
  height: 270px;
}

.map__image-wrap {
  z-index: 3;
  top: 2px;
  left: calc(50% - 600px + 120px);
  width: 260px;
}

.map__image {
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .map__image-wrap {
    left: calc(50% - 480px + 120px);
  }
}

@media screen and (max-width: 959px) {
  .map__image-wrap {
    left: calc(50% - 320px + 120px);
  }
}

@media screen and (max-width: 639px) {
  .map__image-wrap {
    left: calc(50% - 240px + 120px);
  }
}

@media screen and (max-width: 479px) {
  .map__image-wrap {
    left: calc(50% - 160px + 120px);
  }
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.section-heading__title {
  padding-top: 2px;
  padding-bottom: 0;
}

.page-heading__title {
  padding-top: 8px;
  padding-bottom: 3px;
}

.preface__text {
  color: #000;
  font-size: 30px;
  line-height: 1.35;
  opacity: 0.7;
}

@media screen and (min-width: 960px) {
  .preface__text {
    margin-top: -1px;
  }
}

@media screen and (max-width: 640px) {
  .preface__text {
    font-size: 22px;
  }
}

.text-block {
  padding-top: 8px;
  padding-bottom: 6px;
  position: relative;
}

.text-block_large .text {
  font-size: 24px;
}

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

.section-descr {
  margin-bottom: 105px;
}

@media screen and (max-width: 960px) {
  .section-title {
    margin-bottom: 20px;
  }

  .section-descr {
    margin-bottom: 45px;
  }
}

.cards__list {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.cards__item {
  margin-top: 70px;
}

.cards__list_inrow1 .cards__item:first-child,
.cards__list_inrow2 .cards__item:nth-child(-n+2) {
  margin-top: 0 !important;
}

.cards__img {
  width: 100px;
  height: auto;
  max-width: 100%;
}

.cards__title {
  margin-top: 23px;
}

.cards__descr {
  width: 100%;
  margin-top: 20px;
  font-size: 24px;
}

@media screen and (min-width: 900px) {
  .cards__title {
    font-size: 32px;
  }
}

@media screen and (max-width: 960px) {
  .cards__item,
  .cards__list_inrow2 .cards__item:nth-child(-n+2) {
    margin-top: 40px !important;
  }

  .cards__list_inrow1 .cards__item:first-child,
  .cards__list_inrow2 .cards__item:first-child {
    margin-top: 0 !important;
  }
}

.partners .section-title {
  margin-bottom: 105px;
}

.partners__container::before {
  display: none;
}

.partners__container {
  text-align: center;
  flex-wrap: wrap;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.partners__item {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0;
}

.partners__item_3-in-row {
  width: 33.333%;
}

.partners__link {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  color: inherit !important;
}

.partners__img {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

.partners__bottom {
  margin-top: 105px;
}

.partners .partners__button {
  color: #595959;
  background-color: #d3f590;
  --border-width: 0px;
  border-style: none !important;
  border-radius: 0px;
  box-shadow: none !important;
  font-weight: 400;
  transition-duration: 0.2s;
  transition-property: background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
}

@media (hover: hover) {
  .partners .partners__button:not(.animate_no-hover):hover,
  .partners .partners__button:not(.animate_no-hover):focus-visible {
    color: #ffffff !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6) !important;
    background-color: #7ab800 !important;
  }
}

@media screen and (max-width: 1200px) {
  .partners__item {
    padding: 10px;
  }
}

@media screen and (max-width: 960px) {
  .partners .section-title {
    margin-bottom: 45px;
  }

  .partners__bottom {
    margin-top: 45px;
  }
}

@media screen and (max-width: 640px) {
  .partners__container {
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 440px) {
  .partners__item_3-in-row {
    width: 50%;
  }
}

.features__container {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 90px;
}

.features__col {
  float: none;
}

.features__wrapper {
  padding-right: 20px;
  padding-left: 20px;
}

.features__img {
  width: 100px;
  height: auto;
  max-width: 100%;
  margin-bottom: 25px;
}

.features__title {
  margin-top: 12px;
  margin-bottom: 25px;
}

.features__title,
.features__descr {
  overflow-wrap: break-word;
}

@media screen and (max-width: 960px) {
  .features__col {
    margin-bottom: 45px;
  }
}

.contacts .section-title {
  margin-bottom: 75px;
}

.contacts__text {
  color: #000000;
}

@media screen and (max-width: 960px) {
  .contacts .section-title {
    margin-bottom: 45px;
  }
}

.site-footer__descr ul {
  padding: 0 !important;
  margin: 0;
}

.site-footer__descr li {
  display: block;
  margin-bottom: 10px;
}

.site-footer__descr li:last-child {
  margin-bottom: 0;
}

.site-footer__title {
  margin-bottom: 14px;
  letter-spacing: 1px;
  font-size: 24px;
  color: #595959;
}

.site-footer__descr {
  font-size: 16px;
  color: #dadada;
}

.site-footer__spacer {
  display: none;
}

.site-footer__logo-link {
  display: inline-block;
}

.site-footer__logo {
  display: block;
  max-width: 120px;
  width: 100%;
  text-transform: uppercase;
}

.site-footer__text {
  color: #525252;
  margin-top: 40px;
}

@media screen and (max-width: 960px) {
  .site-footer__col {
    max-width: 320px;
    display: inline;
    float: left;
    margin-bottom: 30px;
  }

  .site-footer__spacer {
    display: block;
    width: 100%;
    content: ' ';
    clear: both;
  }
}

@media screen and (max-width: 640px) {
  .site-footer__col {
    max-width: 50%;
    width: 100%;
  }
}

@media screen and (max-width: 464px) {
  .site-footer__col {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 980px) {
  .animate[data-animate-style=fadeinup],
  .animate[data-animate-style=fadeinright],
  .animate[data-animate-style=zoomin] {
    backface-visibility: hidden;
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  }

  .title.animate {
    transition-duration: 1.2s;
  }

  .item.animate {
    transition-duration: .5s;
  }

  .animate[data-animate-style=fadeinup] {
    transform: translateY(100px);
  }

  .animate[data-animate-style=fadeinright] {
    transform: translate(-100px);
  }

  .animate[data-animate-style=zoomin] {
    transform: scale(.9);
  }

  .animate_started[data-animate-style=fadeinup],
  .animate_started[data-animate-style=fadeinright] {
    opacity: 1;
    transform: none;
  }

  .animate_started[data-animate-style=zoomin] {
    opacity: 1;
    transform: scale(1);
  }
}
