@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --font-family: "Ubuntu", sans-serif;
  --second-family: "Exo 2", 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: #f6f6f6;
  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: 68.8px; }
  @media (max-width: 1200px) {
  .page {
    margin-top: 51px; } }

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

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 14px 0;
  background-color: #fff; }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px; }
  .header__logo img {
    width: 153px; }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 16px; }
  .header__item {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #323232;
    transition: 0.5s; }
    .header__item:hover {
      color: #da2432; }
  .header__langs {
    appearance: none;
    font-weight: 400;
    font-size: 16px;
    text-align: right;
    color: #323232;
    padding-right: 15px;
    background: url("../themes/demo/assets/images/header/arrow.svg") right center / 10px no-repeat; }
  .header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    padding: 10px 20px;
    border-radius: 5px;
    background: #da2432;
    transition: 0.5s;
    white-space: nowrap; }
    .header__button:hover {
      box-shadow: 0 0 20px #da2432; }
  @media (max-width: 1200px) {
    .header__desc {
      display: none; } }
  .header__mobile {
    display: none; }
    @media (max-width: 1200px) {
  .header__mobile {
    display: flex;
    align-items: center;
    column-gap: 20px; } }

.header-hover {
  position: relative;
  overflow: hidden; }
  .header-hover:hover {
    overflow: visible; }
    .header-hover:hover .header-hover__items {
      opacity: 1; }
    .header-hover:hover .header-hover__title span {
      color: #da2432; }
      .header-hover:hover .header-hover__title svg path {
        stroke: #da2432; }
  .header-hover__title {
    display: flex;
    align-items: center;
    column-gap: 6px;
    cursor: pointer; }
    .header-hover__title span {
      font-weight: 400;
      font-size: 16px;
      color: #323232;
      transition: 0.5s; }
    .header-hover__title svg {
      margin-top: 2px; }
    .header-hover__title path {
      transition: 0.5s; }
  .header-hover__hidden {
    position: absolute;
    left: 0;
    width: 250px;
    bottom: 0;
    transform: translateY(100%); }
  .header-hover__items {
    padding: 15px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 20px -15px #151515;
    margin-top: 15px;
    transition: 0.5s;
    opacity: 0; }
  .header-hover__item {
    font-weight: 400;
    font-size: 16px;
    color: #323232;
    line-height: 1.3;
    transition: 0.5s; }
    .header-hover__item:hover {
      color: #da2432; }

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

.menu-hover {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .menu-hover__title {
    display: flex;
    align-items: center;
    column-gap: 4px;
    position: relative; }
    .menu-hover__title span {
      font-weight: 400;
      font-size: 16px;
      color: #323232; }
    .menu-hover__title svg {
      position: absolute;
      right: -18px;
      transform: translateY(2px); }
  .menu-hover__hidden {
    display: none; }
  .menu-hover__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    margin-top: 10px; }
  .menu-hover__item {
    font-weight: 300;
    font-size: 16px;
    color: #878585;
    text-align: center; }

.footer {
  padding: 60px 0 60px;
  border-radius: 10px 10px 0 0;
  background: #232323; }
  @media (max-width: 480px) {
  .footer {
    padding: 40px 0 40px; } }
  .footer__body {
    display: flex;
    align-items: start;
    justify-content: space-between;
    column-gap: 50px; }
    @media (max-width: 767px) {
  .footer__body {
    flex-wrap: wrap;
    row-gap: 20px; } }
    @media (max-width: 480px) {
  .footer__body {
    column-gap: 20px; } }
  @media (max-width: 767px) {
    .footer__left {
      flex: 0 0 100%; } }
  .footer__logo img {
    width: 153px; }
  .footer__socials {
    display: flex;
    column-gap: 8px;
    margin-top: 20px; }
  .footer__nav-items {
    display: flex;
    flex-direction: column;
    row-gap: 24px; }
    @media (max-width: 992px) {
  .footer__nav-items {
    display: none; } }
  .footer__nav-title {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: #f4f4f4;
    margin-bottom: 10px; }
  .footer__nav-list {
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .footer__nav-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #f2f2f2;
    transition: 0.5s; }
    .footer__nav-item:hover {
      color: #da2432; }
  .footer__items {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
    @media (max-width: 992px) {
  .footer__items {
    display: none; } }
  .footer__item {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: #f4f4f4;
    transition: 0.5s;
    line-height: 1.3; }
    .footer__item:hover {
      color: #da2432; }
  @media (max-width: 767px) {
    .footer__contacts {
      flex: 0 0 45%; } }
  .footer__contacts-title {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: #f4f4f4;
    margin-bottom: 10px;
    line-height: 1.3; }
  .footer__contacts-items {
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .footer__contacts-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #f2f2f2;
    max-width: 190px;
    transition: 0.5s; }
    @media (max-width: 480px) {
  .footer__contacts-item {
    font-size: 14px; } }
    .footer__contacts-item:hover {
      color: #da2432; }
  .footer__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #959595;
    margin-top: 50px; }
    @media (max-width: 600px) {
  .footer__foot {
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 10px; } }
    @media (max-width: 480px) {
  .footer__foot {
    padding-top: 15px;
    margin-top: 30px; } }
  .footer__abc {
    display: flex;
    align-items: center;
    gap: 5px; }
    .footer__abc a {
      display: flex;
      align-items: center;
      justify-content: center; }
    .footer__abc span {
      font-weight: 400;
      font-size: 14px;
      color: #959595; }
  .footer__offerta {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #959595; }

.to-top {
  position: fixed;
  right: 10px;
  bottom: 115px;
  z-index: 99;
  cursor: pointer; }
  @media (max-width: 767px) {
  .to-top {
    bottom: 20px; } }
  .to-top svg {
    transition: 0.5s; }
    .to-top svg:hover {
      transform: scale(1.1); }

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

.main {
  margin-top: 0;
  height: calc(100vh - 68.8px);
  position: relative; }
  @media (max-width: 1200px) {
  .main {
    height: calc(100vh - 51px); } }
  .main::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); }
  .main__container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .main__body {
    padding-bottom: 100px; }
  .main__title {
    font-weight: 700;
    font-size: 54px;
    line-height: 107%;
    color: #f6f6f6;
    max-width: 732px;
    margin-bottom: 25px; }
    @media (max-width: 480px) {
  .main__title {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3; } }
  .main__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #d8d8d8;
    max-width: 892px;
    display: inline-block;
    font-family: var(--second-family); }
    @media (max-width: 480px) {
  .main__text {
    font-size: 14px; } }
  .main__scroll {
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: absolute;
    bottom: 127px;
    left: 15px; }
    @media (max-width: 767px) {
  .main__scroll {
    bottom: 30px; } }
    @media (max-width: 480px) {
  .main__scroll {
    column-gap: 15px; } }
    .main__scroll span {
      font-weight: 300;
      font-size: 18px;
      line-height: 144%;
      letter-spacing: 0.28em;
      color: #898989; }
      @media (max-width: 480px) {
  .main__scroll span {
    font-size: 16px; } }
  .main__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.numbers {
  margin-top: -89px;
  position: relative;
  z-index: 1; }
  @media (max-width: 767px) {
  .numbers {
    margin-top: 90px; } }
  @media (max-width: 480px) {
  .numbers {
    margin-top: 60px; } }
  .numbers__items {
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px; }
    @media (max-width: 992px) {
  .numbers__items {
    padding: 30px;
    grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) {
  .numbers__items {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent; } }
  .number {
    position: relative; }
  .number:not(:last-child)::after {
    content: "";
    display: block;
    width: 7px;
    height: 67px;
    background: url("../themes/demo/assets/images/number.svg") center / contain no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px; }
  @media (max-width: 992px) {
  .number:nth-child(2)::after {
    display: none; }
  .number:first-child::before, .number:nth-child(2)::before {
    content: "";
    display: block;
    width: 7px;
    height: 67px;
    background: url("../themes/demo/assets/images/number.svg") center / contain no-repeat;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg); } }
  .number__title {
    font-weight: 400;
    font-size: 34px;
    line-height: 130%;
    text-align: center;
    color: #151515;
    margin-bottom: 15px; }
    @media (max-width: 480px) {
  .number__title {
    font-size: 24px;
    margin-bottom: 10px; } }
  .number__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    color: #777; }
    @media (max-width: 480px) {
  .number__text {
    font-size: 14px; } }

.title {
  font-weight: 500;
  font-size: 35px;
  line-height: 137%;
  color: #323232;
  margin-bottom: 30px; }
  @media (max-width: 480px) {
  .title {
    font-size: 28px; } }
  .title::after {
    content: "";
    display: block;
    width: 76px;
    height: 3px;
    background: #da2432;
    margin-top: 10px; }
    @media (max-width: 480px) {
  .title::after {
    width: 60px; } }

.services__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px; }
  @media (max-width: 1150px) {
    .services__items {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 767px) {
    .services__items {
      grid-template-columns: 1fr 1fr;
      gap: 14px; } }
  @media (max-width: 480px) {
    .services__items {
      grid-template-columns: 1fr; } }
  .item-services {
    padding: 35px 15px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
  @media (max-width: 480px) {
  .item-services {
    padding: 20px 15px;
    min-height: 0;
    justify-content: center;
    align-items: start; } }
  .item-services:hover .item-services__text {
    opacity: 1; }
  .item-services__image {
    height: 86px;
    margin-bottom: 10px;
    flex: 0 0 auto; }
  @media (max-width: 480px) {
    .item-services__image {
      height: 60px; }
      .item-services__image img {
        max-height: 100%; } }
  .item-services__title {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #323232;
    line-height: 1.3; }
  @media (max-width: 480px) {
    .item-services__title {
      font-size: 14px;
      text-align: start; } }
  .item-services__text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(136deg, #7e4294 0%, #da2432 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 121%;
    color: #f2f2f2;
    padding: 24px 15px 24px 24px;
    opacity: 0;
    transition: 0.5s;
    overflow-y: auto; }
  @media (max-width: 480px) {
    .item-services__text {
      padding: 0;
      opacity: 1;
      color: #444;
      margin-top: 10px;
      padding-left: 5px;
      position: initial;
      background: transparent; } }
  .item-services__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 6px; }
  .item-services__text li {
    padding-left: 15px;
    position: relative; }
    .item-services__text li::after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 4.5px;
      border-radius: 1px;
      width: 5px;
      height: 5px;
      background: #f2f2f2;
      transform: rotate(-45deg); }
      @media (max-width: 480px) {
    .item-services__text li::after {
      background: linear-gradient(136deg, #7e4294 0%, #da2432 100%); } }

.block.block--reverse .block__body {
  flex-direction: row-reverse; }
  @media (max-width: 992px) {
      .block.block--reverse .block__body {
        flex-direction: column; } }
  .block__body {
    display: flex;
    align-items: center;
    margin: 0 -50px; }
  @media (max-width: 992px) {
    .block__body {
      flex-direction: column;
      align-items: start;
      row-gap: 30px; } }
  @media (max-width: 480px) {
    .block__body {
      row-gap: 20px; } }
  .block__image {
    flex: 0 0 52%;
    padding: 0 50px; }
  @media (max-width: 992px) {
    .block__image {
      max-width: 500px; } }
  .block__image img {
    width: 100%;
    border-radius: 10px; }
  .block__content {
    flex: 1 0 48%;
    padding: 0 50px; }
  .block__title {
    margin-bottom: 20px; }
  .block__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #777;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .block__text {
      font-size: 14px; } }
  .block__text strong {
    font-weight: 500;
    color: #444; }
  .block__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .block__text li {
    padding-left: 15px;
    position: relative; }
  .block__text li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 1px;
    width: 5px;
    height: 5px;
    transform: rotate(-45deg);
    background: #da2432; }

.advantages {
  padding: 120px 0;
  border-radius: 10px;
  background: url("../themes/demo/assets/images/advantages.png") center / cover no-repeat; }
  @media (max-width: 992px) {
  .advantages {
    padding: 90px 0; } }
  @media (max-width: 480px) {
  .advantages {
    padding: 50px 0; } }
  .advantages__title {
    color: #fff; }
  .advantages__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px; }
  @media (max-width: 992px) {
    .advantages__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      row-gap: 32px; } }
  @media (max-width: 600px) {
    .advantages__items {
      grid-template-columns: 1fr;
      row-gap: 20px; } }
  .advantage__image {
    margin-bottom: 24px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; }
  @media (max-width: 600px) {
    .advantage__image {
      height: 60px;
      margin-bottom: 15px; } }
  .advantage__image img {
    max-height: 100%; }
  .advantage__title {
    font-weight: 400;
    font-size: 22px;
    line-height: 114%;
    color: #f4f4f4;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .advantage__title {
      font-size: 18px; } }
  .advantage__text {
    font-weight: 300;
    font-size: 18px;
    line-height: 122%;
    color: #f2f2f2; }
  @media (max-width: 480px) {
    .advantage__text {
      font-size: 14px; } }

.systems__pagination {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px; }
  .systems__pagination .swiper-pagination-bullet {
    background-color: #da2432;
    transition: 0.5s;
    width: 13px !important;
    height: 13px !important; }

.system {
  padding: 40px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  margin: 0 -35px; }
  .system.system--reverse {
    flex-direction: row-reverse; }
  @media (max-width: 767px) {
    .system.system--reverse {
      flex-direction: column; } }
  @media (max-width: 767px) {
  .system {
    display: flex;
    flex-direction: column;
    gap: 20px; } }
  @media (max-width: 480px) {
  .system {
    padding: 20px 20px 30px; } }
  .system__image {
    flex: 0 0 58%;
    padding: 0 35px; }
  .system__image img {
    width: 100%; }
  .system__content {
    flex: 1 0 42%;
    padding: 0 35px; }
  .system__title {
    font-weight: 500;
    font-size: 30px;
    color: #323232;
    margin-bottom: 15px;
    line-height: 1.3; }
  @media (max-width: 480px) {
    .system__title {
      font-size: 26px;
      margin-bottom: 10px; } }
  .system__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #777; }
  @media (max-width: 480px) {
    .system__text {
      font-size: 14px; } }

.form__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden; }
  @media (max-width: 1100px) {
    .form__body {
      grid-template-columns: 1.5fr 1fr; } }
  @media (max-width: 767px) {
    .form__body {
      grid-template-columns: 1fr; } }
  .form__content {
    padding: 50px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    z-index: 1; }
  @media (max-width: 992px) {
    .form__content {
      padding: 50px 30px; } }
  @media (max-width: 480px) {
    .form__content {
      padding: 30px 15px; } }
  .form__title {
    font-weight: 500;
    font-size: 35px;
    color: #323232;
    margin-bottom: 20px;
    line-height: 1.3; }
  @media (max-width: 480px) {
    .form__title {
      font-size: 28px;
      margin-bottom: 10px; } }
  .form__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #555;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .form__text {
      font-size: 16px;
      margin-bottom: 15px; } }
  .form__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px; }
  @media (max-width: 480px) {
    .form__inputs {
      grid-template-columns: 1fr; } }
  .form__input:last-child {
    grid-column: 1 / 3; }
  @media (max-width: 480px) {
      .form__input:last-child {
        grid-column: auto; } }
  .form__input input {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #151515;
    padding: 10px 15px;
    border: 1px solid #dbdbdb;
    border-radius: 5px; }
  .form__input input::placeholder {
    color: #777; }
  .form__button {
    margin-top: 15px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    padding: 14px 60px;
    border-radius: 5px;
    background-color: #da2432;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .form__button {
      padding: 12px 40px; } }
  .form__button:hover {
    box-shadow: 0 0 20px #da2432; }
  .form__image {
    position: relative;
    left: -10px;
    width: calc(100% + 10px); }
  @media (max-width: 767px) {
    .form__image {
      left: 0;
      width: 100%;
      top: -10px;
      height: calc(100% + 10px); } }
  .form__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

#contactForm_forms_flash .close, #infoForm_forms_flash .close, #calcForm_forms_flash .close, #modalForm_forms_flash .close {
  display: none; }
  #contactForm_forms_flash p, #infoForm_forms_flash p, #calcForm_forms_flash p, #modalForm_forms_flash p {
    font-size: 16px;
    line-height: 1.3;
    color: green;
    margin-bottom: 10px; }

#infoForm_forms_flash p {
  color: lightgreen; }

.projects {
  padding: 120px 0;
  border-radius: 10px;
  background: url("../themes/demo/assets/images/advantages.png") center / cover no-repeat; }
  @media (max-width: 992px) {
  .projects {
    padding: 90px 0; } }
  @media (max-width: 480px) {
  .projects {
    padding: 50px 0; } }
  .projects__title {
    color: #fff; }
  .projects__items-swiper {
    position: relative; }
  .projects__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    transition: 0.5s; }
  .projects__arrow.swiper-button-disabled {
    opacity: 0.5; }
  .projects__prev {
    left: -55px; }
  .projects__next {
    right: -55px; }
  .projects .swiper-slide {
    height: auto; }
  .projects__pagination {
    margin-top: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 5px; }
  @media (max-width: 992px) {
    .projects__pagination {
      display: flex; } }
  .projects__pagination.swiper-pagination-lock {
    display: none; }
  .projects__pagination .swiper-pagination-bullet {
    background-color: #da2432;
    transition: 0.5s;
    width: 13px !important;
    height: 13px !important; }

.item-projects {
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  display: block;
  transition: 0.5s;
  cursor: pointer;
  height: 100%; }
  .item-projects:hover .item-projects__title {
    color: #da2432; }
  .item-projects__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 70%; }
  .item-projects__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-projects__content {
    padding: 25px; }
  @media (max-width: 480px) {
    .item-projects__content {
      padding: 20px; } }
  .item-projects__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #323232;
    margin-bottom: 10px;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .item-projects__title {
      font-size: 18px; } }
  .item-projects__text {
    font-weight: 300;
    font-size: 15px;
    line-height: 120%;
    color: #777;
    -webkit-line-clamp: 3;
    /* Число отображаемых строк */
    display: -webkit-box;
    /* Включаем флексбоксы */
    -webkit-box-orient: vertical;
    /* Вертикальная ориентация */
    overflow: hidden;
    /* Обрезаем всё за пределами блока */ }
  @media (max-width: 480px) {
    .item-projects__text {
      font-size: 14px; } }

.clients__items-wrapper {
  position: relative; }
  .clients__item {
    height: 86px;
    padding: 5px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .clients__item img {
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: darken; }
  .clients__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    transition: 0.5s; }
  .clients__arrow.swiper-button-disabled {
    opacity: 0.5; }
  .clients__prev {
    left: -55px; }
  .clients__next {
    right: -55px; }
  .clients__pagination {
    margin-top: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 5px; }
  @media (max-width: 992px) {
    .clients__pagination {
      display: flex; } }
  .clients__pagination.swiper-pagination-lock {
    display: none; }
  .clients__pagination .swiper-pagination-bullet {
    background-color: #da2432;
    transition: 0.5s;
    width: 13px !important;
    height: 13px !important; }

.charters__items-wrapper {
  position: relative; }
  .charters__item {
    position: relative;
    overflow: hidden;
    padding-bottom: 140%;
    display: block;
    border: 1px solid #da2432;
    border-radius: 10px; }
  .charters__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .charters__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    transition: 0.5s; }
  .charters__arrow.swiper-button-disabled {
    opacity: 0.5; }
  .charters__prev {
    left: -55px; }
  .charters__next {
    right: -55px; }
  .charters__pagination {
    margin-top: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 5px; }
  @media (max-width: 992px) {
    .charters__pagination {
      display: flex; } }
  .charters__pagination.swiper-pagination-lock {
    display: none; }
  .charters__pagination .swiper-pagination-bullet {
    background-color: #da2432;
    transition: 0.5s;
    width: 13px !important;
    height: 13px !important; }

.news__items-wrapper {
  position: relative; }
  .news__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    transition: 0.5s; }
  .news__arrow.swiper-button-disabled {
    opacity: 0.5; }
  .news__prev {
    left: -55px; }
  .news__next {
    right: -55px; }
  .news__pagination {
    margin-top: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 5px; }
  @media (max-width: 992px) {
    .news__pagination {
      display: flex; } }
  .news__pagination.swiper-pagination-lock {
    display: none; }
  .news__pagination .swiper-pagination-bullet {
    background-color: #da2432;
    transition: 0.5s;
    width: 13px !important;
    height: 13px !important; }

.item-news__image {
  position: relative;
  overflow: hidden;
  display: block;
  padding-bottom: 80%;
  border-radius: 10px;
  margin-bottom: 20px; }
  @media (max-width: 480px) {
    .item-news__image {
      margin-bottom: 15px; } }
  .item-news__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-news__title {
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    color: #323232;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .item-news__title {
      font-size: 18px; } }
  .item-news__date {
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    color: #323232;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .item-news__date {
      font-size: 14px; } }
  .item-news__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #777; }
  @media (max-width: 480px) {
    .item-news__text {
      font-size: 14px; } }

.wanna {
  background: url("../themes/demo/assets/images/wanna.jpg") center / cover no-repeat;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 60px 0; }
  @media (max-width: 480px) {
  .wanna {
    padding: 50px 0; } }
  .wanna::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); }
  .wanna__container {
    position: relative;
    z-index: 1; }
  .wanna__title {
    font-weight: 500;
    font-size: 35px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 20px;
    max-width: 573px; }
  @media (max-width: 480px) {
    .wanna__title {
      font-size: 28px;
      margin-bottom: 15px; } }
  .wanna__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 15px; }
  .wanna__inputs {
    max-width: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; }
  @media (max-width: 480px) {
    .wanna__inputs {
      grid-template-columns: 1fr;
      gap: 10px; } }
  .wanna__input:last-child {
    grid-column: 1 / 3; }
  @media (max-width: 480px) {
      .wanna__input:last-child {
        grid-column: auto; } }
  .wanna__input input {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    padding: 14px 18px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    background-color: transparent; }
  .wanna__input input::placeholder {
    color: #fff; }
  .wanna__button {
    margin-top: 30px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    padding: 14px 32px;
    border-radius: 5px;
    background-color: #da2432;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .wanna__button {
      margin-top: 15px; } }
  .wanna__button:hover {
    box-shadow: 0 0 20px #da2432; }

.breadcrumbs {
  margin: 40px 0; }
  @media (max-width: 480px) {
  .breadcrumbs {
    margin: 20px 0; } }
  .breadcrumbs__items {
    display: flex;
    align-items: center;
    column-gap: 40px; }
  @media (max-width: 480px) {
    .breadcrumbs__items {
      column-gap: 20px;
      flex-wrap: wrap;
      row-gap: 10px; } }
  .breadcrumbs__item {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #777;
    position: relative; }
  @media (max-width: 480px) {
    .breadcrumbs__item {
      font-size: 16px; } }
  .breadcrumbs__item:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: -23px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #777; }
  @media (max-width: 480px) {
      .breadcrumbs__item:not(:last-child)::after {
        right: -13px; } }
  .breadcrumbs__item.active {
    color: #323232; }

.team__items-wrapper {
  position: relative; }
  .team__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    transition: 0.5s; }
  .team__arrow.swiper-button-disabled {
    opacity: 0.5; }
  .team__prev {
    left: -55px; }
  .team__next {
    right: -55px; }
  .team__pagination {
    margin-top: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 5px; }
  @media (max-width: 992px) {
    .team__pagination {
      display: flex; } }
  .team__pagination.swiper-pagination-lock {
    display: none; }
  .team__pagination .swiper-pagination-bullet {
    background-color: #da2432;
    transition: 0.5s;
    width: 13px !important;
    height: 13px !important; }
  .team .swiper-slide {
    height: auto; }

.item-team {
  padding: 14px 14px 20px;
  background: #fff;
  border-radius: 10px;
  height: 100%; }
  .item-team__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 110%;
    display: block;
    border-radius: 10px;
    margin-bottom: 15px; }
  .item-team__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-team__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #323232;
    margin-bottom: 10px;
    text-align: center; }
  .item-team__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #777;
    text-align: center; }

.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;
      gap: 20px; } }
  @media (max-width: 600px) {
    .projects-page__items {
      grid-template-columns: 1fr;
      gap: 15px; } }

.charters-page__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .charters-page__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .charters-page__items {
      grid-template-columns: 1fr 1fr;
      gap: 15px; } }
  .charters-page .charters__item:first-child {
    grid-column: 1 / 3;
    padding-bottom: 67%; }

.start {
  position: relative;
  border-radius: 10px;
  margin-top: 0;
  height: 400px;
  overflow: hidden; }
  @media (max-width: 767px) {
  .start {
    height: 300px; } }
  @media (max-width: 480px) {
  .start {
    height: 200px; } }
  .start::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); }
  .start.start--services {
    background: url("../themes/demo/assets/images/services.jpg") center / cover no-repeat; }
  .start.start--tools {
    background: url("../themes/demo/assets/images/systems.jpg") center / cover no-repeat; }
  .start.start--presentations {
    background: url("../themes/demo/assets/images/presentations.jpg") center / cover no-repeat; }
  .start.start--contacts {
    background: url("../themes/demo/assets/images/contacts.jpg") center / cover no-repeat; }
  .start__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1; }
  .start__title {
    padding-bottom: 90px;
    font-weight: 700;
    font-size: 50px;
    line-height: 110%;
    color: #fff; }
  @media (max-width: 480px) {
    .start__title {
      font-size: 32px;
      padding-bottom: 40px; } }

@media (max-width: 480px) {
    .block__title--services {
      font-size: 24px; } }

.systems-page__items {
  display: flex;
  flex-direction: column;
  row-gap: 30px; }

.presentations__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 1200px) {
    .presentations__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 992px) {
    .presentations__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .presentations__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .presentation {
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    column-gap: 30px; }
  .presentation__title {
    font-weight: 500;
    font-size: 20px;
    color: #323232;
    margin-bottom: 10px;
    line-height: 1.3; }
  @media (max-width: 480px) {
    .presentation__title {
      font-size: 18px; } }
  .presentation__download {
    display: flex;
    align-items: center;
    column-gap: 8px; }
  .presentation__download span {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #777; }

.contacts-links {
  margin-top: 45px; }
  @media (max-width: 480px) {
  .contacts-links {
    margin-top: 30px; } }
  .contacts-links__items {
    display: flex;
    column-gap: 15px; }
  @media (max-width: 480px) {
    .contacts-links__items {
      column-gap: 10px; } }
  .contacts-links__item {
    padding: 12px 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #da2432;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .contacts-links__item {
      padding: 10px 20px;
      font-size: 16px; } }
  .contacts-links__item.active {
    color: #fff;
    background-color: #da2432; }

.contacts {
  margin-top: 40px;
  display: none; }
  .contacts.contacts-0, .contacts.contacts-1 {
    display: block; }
  .contacts__title {
    font-weight: 500;
    font-size: 20px;
    color: #323232;
    margin-bottom: 20px;
    line-height: 1.3; }
  .contacts__body {
    display: grid;
    grid-template-columns: 384px 1fr;
    column-gap: 32px; }
  @media (max-width: 992px) {
    .contacts__body {
      grid-template-columns: 300px 1fr;
      column-gap: 20px; } }
  @media (max-width: 767px) {
    .contacts__body {
      grid-template-columns: 1fr;
      row-gap: 20px; } }
  .contacts__items {
    display: flex;
    flex-direction: column;
    row-gap: 32px; }
  @media (max-width: 992px) {
    .contacts__items {
      row-gap: 20px; } }
  .contact {
    padding: 30px 45px;
    border-radius: 10px;
    background-color: #fff; }
  @media (max-width: 992px) {
  .contact {
    padding: 30px; } }
  .contact__items {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .contact__item {
    display: flex;
    column-gap: 20px; }
  .contact__image {
    flex: 0 0 20px; }
  .contact__image img {
    max-width: 100%; }
  .contact__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.03em;
    color: #777; }
  @media (max-width: 767px) {
    .contact__map {
      height: 380px; } }
  .contact__map iframe, .contact__map map {
    width: 100%;
    height: 100%; }

.contact-hours {
  display: flex;
  column-gap: 20px; }
  .contact-hours__image {
    flex: 0 0 20px; }
  .contact-hours__image img {
    max-width: 100%; }
  .contact-hours__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    text-transform: capitalize;
    color: #000; }
  .contact-hours__text strong {
    color: #777;
    font-weight: 400; }

.contact-links {
  display: flex;
  flex-direction: column;
  row-gap: 10px; }
  .contact-links__item {
    display: flex;
    align-items: center;
    column-gap: 20px; }
  .contact-links__image {
    flex: 0 0 20px; }
  .contact-links__image img {
    max-width: 100%; }
  .contact-links__text {
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    color: #323232;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .contact-links__text a {
    color: inherit; }

.calc__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #505d68;
  margin-bottom: 20px; }
  @media (max-width: 480px) {
    .calc__text {
      font-size: 16px;
      margin-bottom: 15px; } }
  .calc__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px; }
  @media (max-width: 992px) {
    .calc__body {
      display: flex;
      flex-direction: column-reverse;
      row-gap: 20px;
      align-items: start; } }
  @media (max-width: 992px) {
    .calc__image {
      max-width: 500px; } }
  .calc__image img {
    width: 100%;
    border-radius: 10px; }
  .calc__red {
    color: red;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
    display: none; }
  .calc__red.active {
    display: block; }
  @media (max-width: 480px) {
    .calc__content {
      width: 100%; } }
  .calc__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px; }
  @media (max-width: 480px) {
    .calc__inputs {
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 20px; } }
  .calc__input:last-child {
    grid-column: 1 / 3; }
  @media (max-width: 480px) {
      .calc__input:last-child {
        grid-column: auto; } }
  .calc__input select, .calc__input input {
    width: 100%;
    font-weight: 400;
    font-size: 19px;
    color: #151515;
    padding: 20px;
    line-height: 1.3;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    background-color: transparent;
    appearance: none; }
  @media (max-width: 480px) {
      .calc__input select, .calc__input input {
        padding: 15px;
        font-size: 14px; } }
  .calc__input select::placeholder, .calc__input input::placeholder {
    color: #777; }
  .calc__input select option, .calc__input input option {
    font-size: 16px; }
  .calc__input select {
    background: url("../themes/demo/assets/images/select.svg") calc(100% - 20px) center / 20px no-repeat; }
  .calc__input select select:not(:disabled) option:checked {
    color: #151515;
    /* Цвет текста выбранного элемента */ }
  .calc__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    font-weight: 700;
    font-size: 19px;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    border-radius: 5px;
    background: #da2432;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .calc__button {
      font-size: 16px;
      padding: 15px; } }
  .calc__button:hover {
    box-shadow: 0 0 20px #da2432; }
  .calc__form1 {
    display: block; }
  .calc__form2 {
    display: none; }

.form-ready {
  align-self: center; }
  .form-ready__title {
    font-weight: 500;
    font-size: 35px;
    line-height: 137%;
    color: #323232;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .form-ready__title {
      font-size: 28px;
      margin-bottom: 10px; } }
  .form-ready__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #777;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .form-ready__text {
      font-size: 14px; } }
  .form-ready__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px; }
  @media (max-width: 480px) {
    .form-ready__inputs {
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 20px; } }
  .form-ready__input:first-child {
    grid-column: 1 / 3; }
  .form-ready__input select, .form-ready__input input {
    width: 100%;
    font-weight: 400;
    font-size: 19px;
    padding: 20px;
    line-height: 1.3;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    background-color: transparent;
    appearance: none;
    color: #151515; }
  @media (max-width: 480px) {
      .form-ready__input select, .form-ready__input input {
        font-size: 14px;
        padding: 15px; } }
  .form-ready__input select::placeholder, .form-ready__input input::placeholder {
    color: #777; }
  .form-ready__input select option, .form-ready__input input option {
    font-size: 16px; }
  .form-ready__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    font-weight: 700;
    font-size: 19px;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    border-radius: 5px;
    background: #da2432;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .form-ready__button {
      padding: 15px;
      font-size: 16px; } }
  .form-ready__button:hover {
    box-shadow: 0 0 20px #da2432; }

.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;
      gap: 20px; } }
  @media (max-width: 600px) {
    .news-page__items {
      grid-template-columns: 1fr;
      gap: 15px; } }

.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; }
  @media (max-width: 767px) {
    .modal__body {
      padding: 30px 15px; } }
  .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: 35px; }
  @media (max-width: 480px) {
    .modal__title {
      font-size: 25px; } }
  .modal__text {
    max-width: 500px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
    color: #444;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .modal__text {
      font-size: 14px; } }
  .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 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px 13px;
    margin-top: 25px;
    border-radius: 10px;
    transition: 0.5s;
    background: #da2432; }
  .modal__button:hover {
    box-shadow: 0 0 20px #da2432; }

.projects-single {
  margin-top: 0; }
  .projects-single__text {
    font-size: 18px;
    color: #777;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .projects-single__text strong {
    color: #151515; }
  .projects-single__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 30px; }
  .projects-single__text li {
    list-style: disc; }

.news-single {
  margin-top: 50px; }
  @media (max-width: 480px) {
  .news-single {
    margin-top: 30px; } }
  .news-single__title {
    max-width: 900px;
    font-size: 40px;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .news-single__title {
      font-size: 28px;
      margin-bottom: 15px; } }
  .news-single__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #666;
    font-family: var(--second-family);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 30px; }
  .news-single__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 30px; }
  .news-single__text li {
    list-style: disc; }
  @media (max-width: 480px) {
    .news-single__text {
      font-size: 14px;
      margin-bottom: 20px; } }
  .news-single__images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 767px) {
    .news-single__images {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .news-single__images {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .news-single__image {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 10px;
    padding-bottom: 80%; }
  .news-single__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

@media (min-width: 992px) {
      .charters .swiper-slide:first-child {
        flex: 0 0 48%; }
        .charters .swiper-slide:first-child .charters__item {
          padding-bottom: 67%; } }
