:root {
  --font-family: "din2014", sans-serif;
  --color: rgba(69, 154, 233, 0.1); }

.header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: 0.3s;
  background-color: #fff;
  padding: 5px; }
  .header.scrolled {
    height: auto; }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__logo img {
    width: 79px; }
    @media (max-width: 1100px) {
    .header__logo img {
      width: 60px; } }
  @media (max-width: 480px) {
    .header .menu-btn {
      margin-left: 15px; } }
  @media (max-width: 1100px) {
    .header__content {
      display: none; } }
  .header__mobile {
    display: none; }
    @media (max-width: 1100px) {
  .header__mobile {
    display: flex;
    align-items: center; } }
  .header__contacts {
    display: flex;
    align-items: center;
    column-gap: 38px;
    justify-content: flex-end; }
  .header__contact {
    display: flex;
    align-items: center;
    column-gap: 9px; }
    .header__contact span {
      font-family: var(--font-family);
      font-weight: 600;
      font-size: 16px;
      line-height: 125%;
      color: #151515; }
  .header__bottom {
    display: flex;
    align-items: center;
    column-gap: 30px; }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 30px; }
  .header__item {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #151515; }
  .header__langs {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #151515;
    appearance: none;
    padding: 0;
    border-bottom: 0;
    margin-top: -1.7px;
    display: block;
    border: 0.5px solid #cfcfcf;
    border-radius: 3px;
    width: 61px;
    height: 29px;
    display: flex;
    align-items: center;
    padding-left: 14px;
    background: url("../themes/demo/assets/images/header/arrow.svg") calc(100% - 13px) center / 8px no-repeat; }
  .header__button {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 32px;
    border-radius: 5px;
    background: #16253f;
    transition: 0.5s; }
    .header__button:hover {
      box-shadow: 0 0 20px #16253f; }

.header-hover {
  position: relative;
  overflow: hidden; }
  .header-hover:hover {
    overflow: visible; }
    .header-hover:hover .header-hover__hidden {
      opacity: 1; }
  .header-hover__title {
    display: flex;
    align-items: center;
    column-gap: 6px; }
    .header-hover__title:hover {
      cursor: pointer; }
    .header-hover__title span {
      font-family: var(--font-family);
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      color: #16253f; }
  .header-hover__hidden {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    transition: 0.5s;
    opacity: 0; }
  .header-hover__items {
    border-radius: 10px;
    width: 171px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding: 20px;
    margin-top: 10px; }
  .header-hover__item {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 128%;
    color: #535353; }
    .header-hover__item:not(:last-child) {
      border-bottom: 0.5px solid #c9c9c9;
      padding-bottom: 5px; }

.menu-hover {
  position: relative;
  overflow: hidden; }
  .menu-hover__title {
    display: flex;
    align-items: center;
    column-gap: 6px; }
    .menu-hover__title:hover {
      cursor: pointer; }
    .menu-hover__title span {
      font-family: var(--font-family);
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      color: #16253f; }
  .menu-hover__hidden {
    display: none; }
  .menu-hover__items {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    margin-top: 10px; }
  .menu-hover__item {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 128%;
    color: #535353; }

.banner-slider {
  position: relative; }
  .banner-slider__prev, .banner-slider__next {
    position: absolute;
    z-index: 1;
    cursor: pointer;
    bottom: 150px;
    transition: 0.4s; }
    .banner-slider__prev.swiper-button-disabled, .banner-slider__next.swiper-button-disabled {
      opacity: 0.5; }
    @media (max-width: 992px) {
  .banner-slider__prev, .banner-slider__next {
    bottom: 100px; } }
    @media (max-width: 480px) {
  .banner-slider__prev, .banner-slider__next {
    bottom: 80px; } }
  .banner-slider__prev {
    right: 145px; }
    @media (max-width: 767px) {
  .banner-slider__prev {
    right: 80px; } }
  .banner-slider__next {
    right: 75px; }
    @media (max-width: 767px) {
  .banner-slider__next {
    right: 15px; } }

.hero_content button {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #16253f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 64px;
  background: #fff;
  border-radius: 5px;
  transition: box-shadow 0.5s !important; }
  .hero_content button:hover {
    box-shadow: 0 0 20px #fff; }

.services {
  margin-top: 90px; }
  @media (max-width: 480px) {
  .services {
    margin-top: 60px; } }
  .services__items-wrapper {
    position: relative; }
  .numbers {
    margin-top: 90px; }
  @media (max-width: 480px) {
  .numbers {
    margin-top: 60px; } }
  .numbers__body {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 130px; }
    @media (max-width: 1150px) {
  .numbers__body {
    grid-template-columns: 1fr; } }
  .numbers__title {
    max-width: 220px; }
  .numbers__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    column-gap: 146px;
    padding-left: 58px;
    border-left: 0.5px solid #c9c9c9;
    position: relative; }
    @media (max-width: 1150px) {
  .numbers__items {
    border-left: 0;
    padding-left: 0; } }
    @media (max-width: 767px) {
  .numbers__items {
    grid-template-columns: 1fr;
    row-gap: 30px; } }
    .numbers__items::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 53%;
      transform: translateX(-50%);
      width: 0.5px;
      background-color: #c9c9c9; }
    @media (max-width: 767px) {
    .numbers__items::after {
      display: none; } }
  .item-numbers {
    display: flex;
    flex-direction: column;
    position: relative; }
  .item-numbers:first-child::after, .item-numbers:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
    height: 0.5px;
    background-color: #c9c9c9; }
    @media (max-width: 767px) {
    .item-numbers:first-child::after, .item-numbers:nth-child(2)::after {
      display: none; } }
  .item-numbers__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #777;
    margin-bottom: 55px;
    flex-grow: 1; }
    @media (max-width: 767px) {
  .item-numbers__text {
    margin-bottom: 10px; } }
    @media (max-width: 480px) {
  .item-numbers__text {
    font-size: 16px; } }
  .item-numbers__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 50px;
    line-height: 104%;
    color: #16253f;
    white-space: nowrap; }
    @media (max-width: 480px) {
  .item-numbers__title {
    font-size: 32px; } }

.docs__body {
  padding: 80px 85px 130px;
  background: #f4f6f8;
  border-radius: 20px;
  position: relative; }
  @media (max-width: 1070px) {
    .docs__body {
      padding: 60px 40px 40px; } }
  @media (max-width: 992px) {
    .docs__body {
      padding-bottom: 0; } }
  @media (max-width: 480px) {
    .docs__body {
      border-radius: 0;
      padding: 40px 15px 0;
      margin: 0 -15px; } }
  .docs__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 45px;
    line-height: 116%;
    color: #151515;
    margin-bottom: 44px;
    max-width: 600px; }
  @media (max-width: 480px) {
    .docs__title {
      font-size: 28px;
      margin-bottom: 20px; } }
  .docs__items {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    max-width: 440px; }
  @media (max-width: 992px) {
    .docs__items {
      margin-bottom: 30px; } }
  @media (max-width: 480px) {
    .docs__items {
      row-gap: 20px; } }
  .docs__item {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 14px;
    padding: 30px 66px;
    border-radius: 5px;
    background: #16253f;
    cursor: pointer;
    transition: 0.4s; }
  @media (max-width: 992px) {
    .docs__item {
      padding: 20px 20px; } }
  .docs__item:hover {
    box-shadow: 0 0 20px #16253f; }
  .docs__item span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    color: #fff; }
  @media (max-width: 992px) {
      .docs__item span {
        font-size: 18px; } }
  .docs__image {
    position: absolute;
    right: -35px;
    bottom: 0; }
  @media (max-width: 992px) {
    .docs__image {
      position: initial; }
      .docs__image img {
        max-width: 100%; } }

.slick-dots li.slick-active button {
  background: #16253f; }

.services__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .services__items {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .item-services {
    height: 343px;
    position: relative;
    border-radius: 20px;
    overflow: hidden; }
  .item-services:hover .item-services__hidden {
    opacity: 1; }
  .item-services__image {
    height: 100%;
    position: relative; }
  .item-services__image::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); }
  .item-services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-services__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 121%;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    left: 20px;
    bottom: 20px; }
  .item-services__hidden {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 40px 35px;
    background: #16253f;
    overflow-y: auto;
    opacity: 0;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .item-services__hidden {
      padding: 20px 15px; } }
  .item-services__hidden-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 121%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    max-width: 70%; }
  @media (max-width: 480px) {
    .item-services__hidden-title {
      font-size: 20px; } }
  .item-services__hidden-icon {
    position: absolute;
    top: 30px;
    right: 25px; }
  @media (max-width: 480px) {
    .item-services__hidden-icon {
      display: none; } }
  .item-services__hidden-items {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 10px;
    column-gap: 20px;
    margin-bottom: 30px; }
  .item-services__hidden-item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    position: relative;
    padding-left: 13px; }
  .item-services__hidden-item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff; }
  .item-services__hidden-buttons {
    display: flex;
    align-items: center;
    column-gap: 20px; }
  .item-services__hidden-button {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #16253f;
    padding: 9px 64px 12px;
    background: #fff;
    border-radius: 5px;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .item-services__hidden-button {
      padding: 9px 30px 12px; } }
  .item-services__hidden-button:hover {
    box-shadow: 0 0 20px #fff; }

@media (max-width: 480px) {
    .links {
      margin-top: 0; } }
  .links__items {
    display: flex;
    column-gap: 35px;
    flex-wrap: wrap;
    row-gap: 15px; }
  @media (max-width: 992px) {
    .links__items {
      column-gap: 20px; } }
  @media (max-width: 480px) {
    .links__items {
      gap: 10px; } }
  .links__item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    text-align: center;
    color: #535353;
    white-space: nowrap;
    padding: 12px 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid rgba(83, 83, 83, 0.5);
    border-radius: 5px;
    transition: 0.5s; }
  @media (max-width: 992px) {
    .links__item {
      font-size: 20px; } }
  @media (max-width: 480px) {
    .links__item {
      font-size: 16px;
      padding: 6px 10px 8px; } }
  .links__item.active {
    color: #fff;
    background: #16253f;
    border: 1px solid transparent; }

.team__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 45px;
  row-gap: 55px; }
  @media (max-width: 992px) {
    .team__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) {
    .team__items {
      grid-template-columns: 1fr;
      row-gap: 30px; } }
  .item-team__image {
    position: relative;
    padding-bottom: 110%;
    overflow: hidden;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .item-team__image {
      margin-bottom: 10px; } }
  .item-team__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-team__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 30px;
    line-height: 133%;
    color: #151515;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .item-team__title {
      font-size: 22px;
      margin-bottom: 5px; } }
  .item-team__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 23px;
    line-height: 140%;
    color: #535353; }
  @media (max-width: 480px) {
    .item-team__text {
      font-size: 16px; } }

.partners__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .partners__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 650px) {
    .partners__items {
      grid-template-columns: 1fr 1fr; } }
  .partners__item {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 0.5px solid rgba(83, 83, 83, 0.5);
    border-radius: 5px; }
  @media (max-width: 480px) {
    .partners__item {
      height: 100px; } }
  .partners__item img {
    max-width: 100%;
    max-height: 100%; }

.news-page__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .news-page__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 640px) {
    .news-page__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 450px) {
    .news-page__items {
      grid-template-columns: 1fr; } }

.news-slide-content {
  width: 100%; }

.vacancies__body {
  display: grid;
  grid-template-columns: 1fr 365px;
  gap: 27px;
  align-items: start; }
  @media (max-width: 992px) {
    .vacancies__body {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .vacancies__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .vacancy {
    padding: 30px;
    border: 1px solid #d9d9d9;
    border-radius: 15px;
    cursor: pointer; }
  @media (max-width: 480px) {
  .vacancy {
    padding: 30px 20px; } }
  .vacancy__top {
    display: flex;
    align-items: start;
    justify-content: space-between; }
  @media (max-width: 767px) {
    .vacancy__top {
      flex-direction: column;
      align-items: start;
      row-gap: 20px; } }
  .vacancy__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #151515;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .vacancy__title {
      font-size: 22px; } }
  .vacancy__zp {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #666; }
  .vacancy__right {
    display: flex;
    align-items: center;
    column-gap: 20px; }
  .vacancy__polny {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #151515; }
  .vacancy__opyt {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    background: #16253f;
    display: flex;
    align-items: center;
    justify-content: center; }
  .vacancy__hidden {
    display: none; }
  .vacancy__items {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #ededed; }
  .vacancy__item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #151515;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .vacancy__item-title {
      font-size: 18px; } }
  .vacancy__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #666;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .vacancy__item-text {
      font-size: 14px; } }

.form-vacancies {
  padding: 30px 30px;
  border: 1px solid #d9d9d9;
  border-radius: 15px; }
  @media (max-width: 480px) {
  .form-vacancies {
    padding: 30px 20px; } }
  .form-vacancies__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    color: #151515;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d9d9d9; }
  @media (max-width: 480px) {
    .form-vacancies__title {
      font-size: 24px; } }
  .form-vacancies__inputs {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .form-vacancies__inputs {
      row-gap: 10px;
      margin-bottom: 20px; } }
  .form-vacancies__input input {
    font-family: var(--font-family);
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -0.02em;
    color: #151515;
    padding: 15px 20px;
    border: 1px solid #e1e1e1; }
  @media (max-width: 480px) {
      .form-vacancies__input input {
        font-size: 14px;
        padding: 12px 16px; } }
  .form-vacancies__input input::placeholder {
    color: #666; }
  .form-vacancies__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    width: 100%;
    background: #16253f;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .form-vacancies__button {
      font-size: 14px;
      padding: 12px; } }
  .form-vacancies__button:hover {
    box-shadow: 0 0 20px #16253f; }

.clientam {
  position: relative; }
  .clientam::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, 0.4); }
  .clientam .container {
    position: relative;
    z-index: 1; }

.anons__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .anons__items {
      gap: 20px; } }
  @media (max-width: 767px) {
    .anons__items {
      grid-template-columns: 1fr; } }
  .item-anons {
    padding: 30px;
    border: 1px solid #dadada;
    border-radius: 20px; }
  @media (max-width: 480px) {
  .item-anons {
    padding: 20px; } }
  .item-anons__date {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #777;
    margin-bottom: 5px; }
  .item-anons__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: #151515; }
  @media (max-width: 480px) {
    .item-anons__title {
      font-size: 20px; } }
  .item-anons__title::after {
    content: "";
    display: block;
    border-radius: 20px;
    width: 37px;
    height: 4px;
    background: #16253f;
    margin-top: 10px;
    margin-bottom: 15px; }
  .item-anons__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #666;
    -webkit-line-clamp: 3;
    /* Число отображаемых строк */
    display: -webkit-box;
    /* Включаем флексбоксы */
    -webkit-box-orient: vertical;
    /* Вертикальная ориентация */
    overflow: hidden;
    /* Обрезаем всё за пределами блока */ }

.types__items {
  display: flex;
  flex-direction: column;
  row-gap: 32px; }
  .item-types {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
    background: #f4f6f8;
    border-radius: 15px;
    column-gap: 40px; }
  @media (max-width: 992px) {
  .item-types {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
    padding: 30px 20px; } }
  .item-types__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    color: #151515; }
  @media (max-width: 480px) {
    .item-types__title {
      font-size: 20px; } }
  .item-types__text {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 28px;
    color: #151515; }
  @media (max-width: 480px) {
    .item-types__text {
      font-size: 20px; } }
  .item-types__doc {
    width: 380px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    background: #16253f;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 992px) {
    .item-types__doc {
      width: 300px;
      height: 70px; } }
  @media (max-width: 480px) {
    .item-types__doc {
      column-gap: 15px;
      width: 200px;
      height: 40px; }
      .item-types__doc svg {
        height: 25px;
        width: auto; } }
  .item-types__doc:hover {
    box-shadow: 0 0 20px #16253f; }
  .item-types__doc span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    color: #fff; }
  @media (max-width: 992px) {
      .item-types__doc span {
        font-size: 22px; } }
  @media (max-width: 480px) {
      .item-types__doc span {
        font-size: 16px; } }

.contacts__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 50px; }
  @media (max-width: 992px) {
    .contacts__items {
      gap: 20px;
      margin-bottom: 30px; } }
  @media (max-width: 767px) {
    .contacts__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .contacts__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .contacts__map {
    height: 436px; }
  @media (max-width: 767px) {
    .contacts__map {
      height: 380px; } }
  .contacts__map iframe, .contacts__map div {
    width: 100%;
    height: 100%; }

.contact {
  background: #eaeaea;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media (max-width: 992px) {
  .contact {
    padding: 30px 20px; } }
  @media (max-width: 480px) {
  .contact {
    padding: 20px; } }
  .contact:nth-child(2) {
    background: #16253f; }
  .contact:nth-child(2) .contact__title {
    color: #c5c5c5; }
  .contact:nth-child(2) .contact__text {
    color: #fff; }
  .contact__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 203%;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #737373;
    margin-bottom: 4px; }
  .contact__text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17px;
    line-height: 167%;
    color: #151515; }

.block:nth-of-type(even) .block__body {
  flex-direction: row-reverse; }
  @media (max-width: 992px) {
      .block:nth-of-type(even) .block__body {
        flex-direction: column; } }
  .block__body {
    display: flex;
    align-items: center;
    margin: 0 -50px; }
  @media (max-width: 992px) {
    .block__body {
      flex-direction: column;
      row-gap: 30px;
      align-items: start; } }
  .block__image {
    flex: 0 0 52%;
    padding: 0 50px; }
  .block__image img {
    width: 100%; }
  .block__content {
    flex: 1 0 48%;
    padding: 0 50px; }
  .block__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #777;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .block__text {
      font-size: 14px;
      margin-bottom: 15px; } }

.responsiv-uploader-fileupload.style-file-single .upload-button {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  opacity: 0 !important; }

.upload-empty-message {
  padding: 0 !important; }

.text-muted {
  font-family: var(--font-family) !important;
  width: 100% !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 160% !important;
  letter-spacing: -0.02em !important;
  color: #666 !important; }
  @media (max-width: 480px) {
  .text-muted {
    font-size: 14px !important; } }

.responsiv-uploader-fileupload.style-file-single {
  border: 0 !important;
  padding: 0 !important;
  padding: 15px 20px !important;
  border: 1px solid #e1e1e1 !important; }
  @media (max-width: 480px) {
  .responsiv-uploader-fileupload.style-file-single {
    font-size: 14px !important;
    padding: 12px 16px !important; } }

@media (max-width: 767px) {
  .modal-dialog-wrap-new {
    width: calc(100% - 30px) !important; } }

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

.myMap {
  position: relative; }

.myMap img {
  width: 100%;
  height: auto; }

.myMap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.menu-hover__item {
  white-space: initial; }

.anons-single {
  margin-top: 120px; }
  @media (max-width: 480px) {
  .anons-single {
    margin-top: 80px; } }

@media (max-width: 480px) {
    .anons-single__title {
      font-size: 28px; } }

.anons-single__images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 30px; }
  @media (max-width: 767px) {
  .anons-single__images {
    grid-template-columns: 1fr 1fr;
    gap: 20px; } }
  @media (max-width: 480px) {
  .anons-single__images {
    grid-template-columns: 1fr;
    gap: 15px; } }

.anons-single__text {
  display: flex;
  flex-direction: column;
  row-gap: 10px; }

.anons-single__image {
  position: relative;
  overflow: hidden;
  display: block;
  padding-bottom: 70%; }
  .anons-single__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.news-page__items-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
  .news-page__items-3 {
    gap: 20px; } }
  @media (max-width: 640px) {
  .news-page__items-3 {
    grid-template-columns: 1fr 1fr; } }
  @media (max-width: 450px) {
  .news-page__items-3 {
    grid-template-columns: 1fr; } }

.news-slide {
  overflow: hidden;
  justify-content: start;
  transition: 0.5s; }

.news-slide__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
  display: block;
  width: 100%; }
  .news-slide__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.docsz {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 0; }
  @media (max-width: 767px) {
  .docsz {
    grid-template-columns: 1fr 1fr;
    gap: 20px; } }
  @media (max-width: 480px) {
  .docsz {
    grid-template-columns: 1fr;
    gap: 15px; } }
  .docsz__item {
    border-radius: 20px;
    border: 1px solid #bbb;
    padding: 30px 20px; }
  @media (max-width: 480px) {
    .docsz__item {
      border-radius: 15px; } }
  .docsz__image {
    margin-bottom: 10px; }
  .docsz__image svg {
    width: 50px;
    height: auto; }
  .docsz__title {
    font-size: 20px;
    color: #151515;
    margin-bottom: 10px; }
  .docsz__link {
    color: #16253f;
    font-size: 18px; }

.news-slider__pagination {
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
  margin-top: 40px; }
  @media (max-width: 480px) {
  .news-slider__pagination {
    margin-top: 25px; } }
  .news-slider__pagination .swiper-pagination-bullet {
    transition: 0.5s;
    background-color: #16253f; }
