@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Onest:wght@100..900&display=swap");
:root {
  --font-family: "Afacad", sans-serif;
  --second-family: "Onest", sans-serif; }
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

*, *:before, *:after {
  box-sizing: border-box; }

:focus, :active {
  outline: none; }

a:focus, a:active {
  outline: none; }

nav, footer, header, aside {
  display: block; }

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit; }

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

button {
  cursor: pointer; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

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

a:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400; }
/*--------------------*/
html {
  scroll-behavior: smooth; }

body {
  background: #fff;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family); }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.page {
  flex: 1 0 auto;
  margin-top: 65px; }

._container {
  max-width: 1246px;
  padding: 0 15px;
  margin: 0 auto; }

.header {
  padding: 10px 0;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99; }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 28px; }
    @media (max-width: 1200px) {
  .header__items {
    display: none; } }
  .header__item {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #151515;
    transition: 0.4s; }
    .header__item:hover {
      color: #16b6df; }
  .header__right {
    display: flex;
    align-items: center;
    column-gap: 30px; }
    @media (max-width: 1200px) {
  .header__right {
    display: none; } }
  .header__phone {
    display: flex;
    align-items: center;
    column-gap: 7.5px; }
    .header__phone span {
      font-weight: 400;
      font-size: 16px;
      text-transform: uppercase;
      color: #151515; }
  .header__button {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: linear-gradient(131deg, #16b6df 0%, #0c448f 100%);
    width: 145px;
    height: 36px;
    transition: 0.4s; }
    .header__button:hover {
      box-shadow: 0 0 20px #16b6df; }
  .header .burger {
    display: none; }
    @media (max-width: 1200px) {
  .header .burger {
    display: block; } }

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  transition: 0.8s;
  transform: translateX(-100%);
  z-index: 99; }
  .menu.active {
    transform: translateX(0); }
  .menu__close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 50px;
    color: #bbb;
    cursor: pointer; }
    @media (max-width: 480px) {
  .menu__close {
    top: 10px;
    right: 15px;
    font-size: 40px; } }
  .menu__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px; }

.footer {
  background: #252525;
  padding: 30px 0 20px;
  border-top: 11px solid #5a5a5a; }
  .footer__body {
    display: flex;
    align-items: start;
    column-gap: 80px;
    flex-wrap: wrap;
    row-gap: 30px; }
    @media (max-width: 480px) {
  .footer__body {
    row-gap: 20px; } }
  .footer__logo {
    margin-right: 50px; }
  .footer__nav-title {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px; }
    @media (max-width: 480px) {
  .footer__nav-title {
    margin-bottom: 15px; } }
  .footer__nav-items {
    display: flex;
    flex-direction: column;
    row-gap: 13px; }
  .footer__nav-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c0c0c0; }
  .footer__address-title {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px; }
    @media (max-width: 480px) {
  .footer__address-title {
    margin-bottom: 10px; } }
  .footer__address-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #c0c0c0;
    max-width: 173px; }
  .footer__contacts-title {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px; }
    @media (max-width: 480px) {
  .footer__contacts-title {
    margin-bottom: 10px; } }
  .footer__contacts-items {
    display: flex;
    flex-direction: column;
    row-gap: 2px; }
  .footer__contacts-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #c0c0c0; }
  .footer__foot {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid #4b4b4b;
    margin-top: 40px; }
    @media (max-width: 480px) {
  .footer__foot {
    padding-top: 15px;
    margin-top: 25px; } }
    .footer__foot a {
      display: flex;
      align-items: center;
      justify-content: center; }
    .footer__foot span {
      font-weight: 400;
      font-size: 16px;
      letter-spacing: 0.04em;
      color: #fff; }
      @media (max-width: 480px) {
  .footer__foot span {
    font-size: 12px; } }

section {
  margin-top: 75px; }
  @media (max-width: 480px) {
  section {
    margin-top: 50px; } }

.main {
  height: calc(100vh - 65px);
  position: relative;
  margin-top: 0; }
  @media (max-width: 480px) {
  .main {
    height: auto;
    padding: 120px 0; } }
  .main::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.55); }
  .main__container {
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .main__title {
    font-weight: 500;
    font-size: 86px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 10px; }
    @media (max-width: 480px) {
  .main__title {
    font-size: 60px; } }
  .main__text {
    max-width: 394px;
    font-weight: 400;
    font-size: 38px;
    line-height: 105%;
    color: #cbcbcb;
    margin-bottom: 25px; }
    @media (max-width: 480px) {
  .main__text {
    font-size: 31px;
    max-width: 345px; } }
  .main__button {
    width: 223px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(131deg, #16b6df 0%, #0c448f 100%);
    transition: 0.4s; }
    @media (max-width: 480px) {
  .main__button {
    height: 45px;
    width: 180px; } }
    .main__button:hover {
      box-shadow: 0 0 20px #16b6df; }
  .main__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.to-top {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 80; }
  .to-top img {
    width: 60px;
    height: 60px; }
    @media (max-width: 480px) {
  .to-top img {
    font-size: 40px;
    height: 40px;
    width: 40px; } }

.title {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #151515;
  margin-bottom: 45px; }
  @media (max-width: 480px) {
  .title {
    font-size: 30px;
    margin-bottom: 25px; } }
  .title::after {
    content: "";
    display: block;
    height: 3px;
    background-color: #149bcc;
    border-radius: 3px;
    margin-top: 15px;
    width: 21px; }

.block__body {
  display: flex;
  align-items: center;
  margin: 0 -50px; }
  @media (max-width: 992px) {
    .block__body {
      display: flex;
      flex-direction: column;
      align-items: start;
      row-gap: 30px; } }
  @media (max-width: 480px) {
    .block__body {
      row-gap: 20px; } }
  .block__image {
    flex: 0 0 55%;
    padding: 0 50px; }
  .block__image img {
    width: 100%; }
  .block__content {
    flex: 1 0 45%;
    padding: 0 50px; }
  .block__title {
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .block__title {
      margin-bottom: 15px; } }
  .block__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 144%;
    color: #666;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .block__text {
      font-size: 15px; } }
  .block__text strong {
    color: #151515;
    font-weight: 500; }
  .block__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .block__text li {
    padding-left: 20px;
    position: relative; }
    .block__text li::after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 5px;
      width: 15px;
      height: 15px;
      background: url('../themes/demo/assets/images/li.svg') 0 0 / contain no-repeat; }
  .block__button {
    width: 210px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(131deg, #16b6df 0%, #0c448f 100%); }

.technologies__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .technologies__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .technologies__items {
      gap: 10px; } }
  .technology {
    padding: 20px 20px 40px;
    border: 1px solid #e4e4e4; }
  @media (max-width: 480px) {
  .technology {
    padding: 10px 10px 20px; } }
  .technology__image {
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .technology__image {
      margin-bottom: 12px; } }
  .technology__image img {
    width: 100%; }
  .technology__title {
    font-weight: 400;
    font-size: 23px;
    color: #151515;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .technology__title {
      font-size: 20px;
      margin-bottom: 10px; } }
  .technology__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #151515;
    margin-top: 10px; }
  .technology__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #666; }
  @media (max-width: 480px) {
    .technology__text {
      font-size: 14px; } }

.projects__items {
  overflow: visible; }
  .item-project__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 66%;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .item-project__image {
      margin-bottom: 12px; } }
  .item-project__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-project__title {
    font-weight: 400;
    font-size: 23px;
    color: #151515;
    -webkit-line-clamp: 2;
    /* Число отображаемых строк */
    display: -webkit-box;
    /* Включаем флексбоксы */
    -webkit-box-orient: vertical;
    /* Вертикальная ориентация */
    overflow: hidden;
    /* Обрезаем всё за пределами блока */ }
  @media (max-width: 480px) {
    .item-project__title {
      font-size: 20px; } }

.cooperation__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .cooperation__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .cooperation__items {
      gap: 10px; } }
  .item-cooperation {
    border: 1px solid #e4e4e4;
    display: block; }
  .item-cooperation__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 66%;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .item-cooperation__image {
      margin-bottom: 15px; } }
  .item-cooperation__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-cooperation__title {
    font-weight: 400;
    font-size: 23px;
    color: #151515;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 20px; }
  @media (max-width: 480px) {
    .item-cooperation__title {
      font-size: 18px;
      padding-left: 10px;
      padding-bottom: 10px;
      padding-right: 10px; } }
  .item-cooperation__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #151515;
    margin-top: 12px; }

.item-news__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 66%;
  margin-bottom: 20px; }
  .item-news__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-news__date {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #999;
    margin-bottom: 15px; }
  .item-news__title {
    font-weight: 400;
    font-size: 23px;
    color: #151515;
    margin-bottom: 14px; }
  @media (max-width: 480px) {
    .item-news__title {
      font-size: 20px;
      margin-bottom: 10px; } }
  .item-news__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #151515;
    margin-top: 12px; }
  .item-news__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 113%;
    color: #666; }
  @media (max-width: 480px) {
    .item-news__text {
      font-size: 14px; } }

.form {
  padding: 120px 0;
  background: url("../themes/demo/assets/images/form.jpg") center / cover no-repeat; }
  @media (max-width: 480px) {
  .form {
    padding: 60px 0;
    background-position: left center; } }
  .form__title {
    color: #fff;
    margin-bottom: 25px; }
  .form__title::after {
    background-color: #fff; }
  .form__text {
    font-weight: 400;
    font-size: 24px;
    line-height: 108%;
    color: #fff;
    margin-bottom: 35px; }
  @media (max-width: 480px) {
    .form__text {
      font-size: 20px;
      margin-bottom: 25px; } }
  .form__inputs {
    max-width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .form__inputs {
      grid-template-columns: 1fr;
      gap: 10px; } }
  .form__input:nth-child(3) {
    grid-column: 1 / 3; }
    @media (max-width: 480px) {
    .form__input:nth-child(3) {
      grid-column: auto; } }
  .form__input input, .form__input textarea {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #fff;
    font-family: var(--second-family);
    padding: 13px 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px); }
    .form__input input::placeholder, .form__input textarea::placeholder {
      color: #fff; }
  .form__input textarea {
    height: 100px;
    resize: none; }
  .form__bottom {
    display: flex;
    align-items: center;
    column-gap: 30px; }
  @media (max-width: 480px) {
    .form__bottom {
      flex-direction: column;
      align-items: start;
      row-gap: 10px; } }
  .form__button {
    width: 206px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    color: #149bcc;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.4s; }
  .form__button:hover {
    box-shadow: 0 0 20px #fff; }
  .form__info-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #80a2be; }
  .form__info-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 131%;
    color: #fff; }

.partners__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; }
  @media (max-width: 1100px) {
    .partners__items {
      flex-wrap: wrap;
      gap: 20px; } }
  @media (max-width: 480px) {
    .partners__items {
      gap: 10px; } }
  .partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e4e4;
    flex: 1 1 auto;
    height: 120px;
    min-width: 145px;
    padding: 10px; }
  @media (max-width: 480px) {
    .partners__item {
      min-width: auto;
      height: 70px;
      padding: 10px; } }
  .partners__item img {
    max-width: 100%;
    max-height: 100%; }

.breadcrumbs {
  margin-top: 20px; }
  .breadcrumbs__items {
    display: flex;
    align-items: center;
    column-gap: 26px;
    row-gap: 10px;
    flex-wrap: wrap; }
  .breadcrumbs__item {
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #b5b5b5;
    position: relative; }
  .breadcrumbs__item:not(:last-child)::after {
    content: "/";
    display: block;
    position: absolute;
    right: -17px;
    top: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #ececec; }

.about--page {
  margin-top: 70px; }
  @media (max-width: 480px) {
  .about--page {
    margin-top: 40px; } }

.team__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .team__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .team__items {
      gap: 10px; } }
  .team .swiper-slide {
    height: auto; }

.item-team {
  padding: 20px 20px 40px;
  border: 1px solid #e4e4e4;
  height: 100%;
  position: relative;
  overflow: hidden; }
  .item-team:hover .team-hidden {
    opacity: 1; }
  @media (max-width: 480px) {
  .item-team {
    padding: 10px 10px 20px; } }
  .item-team__image {
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .item-team__image {
      margin-bottom: 12px; } }
  .item-team__image img {
    width: 100%; }
  .item-team__title {
    font-weight: 400;
    font-size: 23px;
    color: #151515;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .item-team__title {
      font-size: 20px;
      margin-bottom: 10px; } }
  .item-team__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #151515;
    margin-top: 10px; }
  .item-team__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 113%;
    color: #666; }
  @media (max-width: 480px) {
    .item-team__text {
      font-size: 14px; } }

.charters__item {
  display: block; }
  .charters__item img {
    width: 100%;
    border: 5px solid #000; }

.projects-page {
  margin-top: 40px; }
  .projects-page__title {
    font-weight: 400;
    font-size: 31px;
    line-height: 130%;
    text-transform: uppercase;
    color: #151515;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 35px; }
  @media (max-width: 480px) {
    .projects-page__title {
      font-size: 28px;
      padding-bottom: 10px;
      margin-bottom: 25px; } }
  .projects-page__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .projects-page__items {
      grid-template-columns: 1fr 1fr;
      column-gap: 20px; } }
  @media (max-width: 600px) {
    .projects-page__items {
      grid-template-columns: 1fr; } }
  .projects-page .item-project__title {
    -webkit-line-clamp: 3;
    /* Число отображаемых строк */ }

.project {
  margin-top: 45px; }
  .project__body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px; }
  @media (max-width: 767px) {
    .project__body {
      grid-template-columns: 1fr; } }
  .project__content {
    padding: 20px 20px 30px;
    background-color: #f6f6f6; }
  @media (max-width: 480px) {
    .project__content {
      padding: 10px 10px 20px; } }
  .project__image {
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .project__image {
      margin-bottom: 10px; } }
  .project__image img {
    width: 100%; }
  .project__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 125%;
    color: #151515; }
  @media (max-width: 480px) {
    .project__title {
      font-size: 20px; } }
  .project__items {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    background-color: #f6f6f6; }
  @media (max-width: 480px) {
    .project__items {
      padding: 20px 10px; } }
  .project__item-title {
    font-weight: 400;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px; }
  .project__item-text {
    font-weight: 400;
    font-size: 17px;
    color: #151515;
    line-height: 1.4; }

.cooperation-blocks {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 90px; }
  @media (max-width: 480px) {
  .cooperation-blocks {
    margin-top: 30px;
    row-gap: 60px; } }
  .cooperation-blocks .block:nth-of-type(even) .block__body {
    flex-direction: row-reverse; }
    @media (max-width: 992px) {
      .cooperation-blocks .block:nth-of-type(even) .block__body {
        display: flex;
        flex-direction: column; } }
  .cooperation-blocks .block__image {
    flex: 0 0 52%; }
  .cooperation-blocks .block__content {
    flex: 1 0 48%; }

.news-page {
  margin-top: 40px; }
  .news-page__title {
    font-weight: 400;
    font-size: 31px;
    line-height: 130%;
    text-transform: uppercase;
    color: #151515;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 35px; }
  @media (max-width: 480px) {
    .news-page__title {
      font-size: 28px;
      padding-bottom: 10px;
      margin-bottom: 25px; } }
  .news-page__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .news-page__items {
      grid-template-columns: 1fr 1fr;
      column-gap: 20px; } }
  @media (max-width: 600px) {
    .news-page__items {
      grid-template-columns: 1fr; } }

.contacts {
  margin-top: 40px; }
  .contacts__title {
    font-weight: 400;
    font-size: 31px;
    line-height: 130%;
    text-transform: uppercase;
    color: #151515;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 35px; }
  @media (max-width: 480px) {
    .contacts__title {
      font-size: 28px;
      padding-bottom: 10px;
      margin-bottom: 25px; } }
  .contacts__body {
    display: grid;
    grid-template-columns: 1fr 292px;
    gap: 20px; }
  @media (max-width: 767px) {
    .contacts__body {
      display: flex;
      flex-direction: column-reverse; } }
  @media (max-width: 767px) {
    .contacts__map {
      height: 400px; } }
  .contacts__map iframe, .contacts__map map {
    width: 100%;
    height: 100%; }
  .contacts__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .contact {
    min-height: 120px;
    display: flex;
    padding: 20px;
    border: 1px solid #e7e7e7;
    column-gap: 40px; }
  .contact__image {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .contact__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .contact__content::after {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    top: -20px;
    bottom: -20px;
    width: 1px;
    background-color: #e7e7e7; }
  .contact__title {
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #777; }
  .contact__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #151515; }

#modalForm_forms_flash .close {
  display: none; }
  #modalForm_forms_flash p {
    color: green;
    font-size: 18px;
    font-family: var(--font-family);
    line-height: 133%;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    #modalForm_forms_flash p {
      font-size: 16px;
      margin-bottom: 10px; } }

#contactForm_forms_flash .close {
  display: none; }
  #contactForm_forms_flash p {
    color: lightgreen;
    font-size: 18px;
    font-family: var(--font-family);
    line-height: 133%;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    #contactForm_forms_flash p {
      font-size: 16px;
      margin-bottom: 10px; } }

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 21, 21, 0.314);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 10px;
  display: none; }
  .modal.active {
    display: flex; }
  .modal__body {
    padding: 70px 50px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    width: 600px; }
  @media (max-width: 767px) {
    .modal__body {
      padding: 30px 15px;
      width: 100%; } }
  .modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: #bbb;
    background-color: transparent;
    cursor: pointer; }
  @media (max-width: 480px) {
    .modal__close {
      font-size: 30px;
      top: 10px;
      right: 15px; } }
  .modal__title {
    margin-bottom: 20px;
    font-size: 45px; }
  @media (max-width: 480px) {
    .modal__title {
      font-size: 32px; } }
  .modal__text {
    max-width: 500px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 135%;
    color: #444;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .modal__text {
      font-size: 20px; } }
  .modal__inputs {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "c c"; }
  .modal__input:first-child {
    grid-area: a; }
  .modal__input:nth-child(2) {
    grid-area: b; }
  .modal__input:nth-child(3) {
    grid-area: c; }
  .modal__input input {
    width: 100%;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    color: #151515;
    padding: 18px 13px 16px;
    border-radius: 10px;
    background: #e8ecf2; }
    .modal__input input::placeholder {
      color: #828282; }
  .modal__button {
    width: 210px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(131deg, #16b6df 0%, #0c448f 100%);
    margin-top: 30px; }

.block-home .block__image {
  padding: 0 30px;
  align-self: stretch; }
  @media (max-width: 992px) {
    .block-home .block__image {
      align-self: start; } }
  .block-home .block__image img {
    height: 100%;
    object-fit: cover; }
  .block-home .block__content {
    padding: 30px; }
  @media (max-width: 992px) {
    .block-home .block__content {
      padding: 0 30px; } }

.projects-new {
  margin-top: 40px; }
  .projects-new__title {
    font-weight: 400;
    font-size: 31px;
    line-height: 130%;
    text-transform: uppercase;
    color: #151515;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .projects-new__title {
      font-size: 28px;
      padding-bottom: 10px;
      margin-bottom: 25px; } }
  .projects-new__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 124%;
    color: #666;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .projects-new__text {
      font-size: 15px;
      margin-bottom: 20px; } }
  .projects-new__images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 767px) {
    .projects-new__images {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .projects-new__images {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .projects-new__image img {
    width: 100%; }

.blocks-home .block:first-child .block__body {
  margin: 0 -30px; }
  .blocks-home .block:first-child .block__image {
    flex: 0 0 43%;
    padding: 0 30px; }
  .blocks-home .block:first-child .block__content {
    flex: 1 0 57%;
    padding: 0 30px; }
  .blocks-home .block:nth-child(2) .block__body {
    flex-direction: row-reverse; }
  @media (max-width: 992px) {
        .blocks-home .block:nth-child(2) .block__body {
          flex-direction: column; } }

.team__pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center; }
  @media (max-width: 480px) {
  .team__pagination {
    margin-top: 25px; } }
  .team__pagination.swiper-pagination-lock {
    display: none; }
  .team__pagination .swiper-pagination-bullet {
    background-color: #16b6df !important; }

.team-hidden {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 20px;
  transition: 0.5s;
  opacity: 0; }
  @media (max-width: 480px) {
  .team-hidden {
    padding: 25px 10px; } }
  .team-hidden::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 24, 0.5); }
  .team-hidden__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .team-hidden__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .team-hidden__content {
    position: relative;
    z-index: 1; }
  .team-hidden__title {
    font-weight: 400;
    font-size: 23px;
    color: #fff;
    margin-bottom: 15px; }
  .team-hidden__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin-top: 12px; }
  .team-hidden__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 113%;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
