@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Moderustic:wght@300..800&display=swap");
p, li {
  margin-bottom: 0; }

li {
  list-style: disc !important; }

:root {
  --font-family: "Moderustic", sans-serif;
  --red: #c51f1f; }
/*Обнуление*/
* {
  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: #f9f9f9;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family);
  overflow-x: hidden; }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh; }

.page {
  padding-top: 97px; }
  @media (max-width: 480px) {
  .page {
    padding-top: 70px; } }

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

.button, .contactModal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  min-width: 205px;
  border-radius: 30px;
  background-color: var(--red);
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  transition: 0.5s; }
  .button:hover, .contactModal__submit:hover {
    box-shadow: 0 0 20px var(--red); }

.header {
  padding: 13px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  border-radius: 0 0 30px 30px; }
  @media (max-width: 992px) {
  .header {
    padding: 13px 0;
    border-radius: 0 0 30px 30px; } }
  @media (max-width: 480px) {
  .header {
    padding: 10px 0;
    border-radius: 0 0 20px 20px; } }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  @media (max-width: 480px) {
      .header__logo img {
        height: 50px; } }
  .header__content {
    display: flex;
    align-items: center;
    column-gap: 45px; }
    @media (max-width: 480px) {
  .header__content {
    column-gap: 20px; } }
  .header__search {
    display: flex;
    align-items: center;
    column-gap: 13px; }
    .header__search span {
      font-weight: 400;
      font-size: 16px;
      text-transform: uppercase;
      color: #151515;
      line-height: 1.2; }
  .header__burger {
    display: flex;
    align-items: center;
    column-gap: 13px; }
    .header__burger span {
      font-weight: 400;
      font-size: 16px;
      text-transform: uppercase;
      color: #151515;
      line-height: 1.2; }
  @media (max-width: 767px) {
    .header__desc {
      display: none; } }
  .header__burger {
    cursor: pointer; }
  .header__nav {
    border-top: 1px solid #eaeaea;
    padding: 15px 0 13px;
    margin-top: 13px; }
    @media (max-width: 992px) {
  .header__nav {
    display: none; } }

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

.main {
  height: calc(100vh - 67px);
  margin-top: -30px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  .main::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(237deg, rgba(16, 16, 16, 0) 0%, #101010 100%); }
  @media (max-width: 480px) {
  .main {
    height: calc(100vh - 55px);
    margin-top: -15px; } }
  .main__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; }
  .main__title {
    font-weight: 500;
    font-size: 75px;
    line-height: 107%;
    color: #fff;
    max-width: 600px;
    margin-bottom: 30px; }
    @media (max-width: 480px) {
  .main__title {
    font-size: 40px;
    margin-bottom: 20px; } }
  .main__text {
    font-weight: 400;
    font-size: 21px;
    line-height: 124%;
    color: #fff;
    max-width: 396px;
    margin-bottom: 20px; }
    @media (max-width: 480px) {
  .main__text {
    font-size: 16px;
    margin-bottom: 15px; } }
  .main__bottom {
    position: absolute;
    left: 15px;
    bottom: 26px;
    display: flex;
    align-items: center;
    column-gap: 13px; }
    .main__bottom span {
      font-weight: 300;
      font-size: 20px;
      line-height: 120%;
      letter-spacing: 0.1em;
      color: #c2c2c2; }

.question__body {
  position: relative; }
  .question__image {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 50%; }
    @media (max-width: 767px) {
  .question__image {
    padding-bottom: 120%; } }
    .question__image img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .question__content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 40px 40px 20px;
    border-radius: 20px;
    backdrop-filter: blur(44px);
    background: rgba(255, 255, 255, 0.2); }
    @media (max-width: 480px) {
  .question__content {
    padding: 20px;
    left: 15px;
    bottom: 15px;
    right: 15px; } }
  .question__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 20px; }
    @media (max-width: 480px) {
  .question__title {
    font-size: 28px;
    margin-bottom: 15px; } }
  .question__text {
    font-weight: 400;
    font-size: 22px;
    line-height: 118%;
    color: #fff;
    margin-bottom: 25px; }
    @media (max-width: 480px) {
  .question__text {
    font-size: 16px;
    margin-bottom: 15px; } }
  .about__body {
    border-radius: 20px;
    background-color: #fff;
    padding: 20px 20px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    column-gap: 65px; }
    @media (max-width: 1150px) {
  .about__body {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    row-gap: 30px; } }
    @media (max-width: 480px) {
  .about__body {
    padding: 0;
    background-color: transparent;
    border: 0; } }
  .about__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #151515;
    margin-bottom: 20px; }
    @media (max-width: 480px) {
  .about__title {
    font-size: 30px;
    margin-bottom: 15px; } }
  .about__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
    @media (max-width: 480px) {
  .about__text {
    margin-bottom: 15px;
    font-size: 14px; } }
  .advantages {
    display: flex;
    gap: 10px;
    min-height: 564px;
    overflow: hidden; }
  @media (max-width: 600px) {
  .advantages {
    display: grid;
    grid-template-columns: 1fr; } }
  .advantages__item {
    padding: 30px 20px;
    border-radius: 20px;
    background-color: #f5f5f5;
    flex: 1;
    transition: 0.5s;
    position: relative;
    cursor: pointer; }
    @media (max-width: 600px) {
  .advantages__item .advantages__hover {
    opacity: 1;
    position: initial; }
  .advantages__item .advantages__visible {
    display: none; } }
    .advantages__item.active {
      flex: 7;
      padding: 30px 10px; }
      @media (max-width: 480px) {
  .advantages__item.active {
    padding: 30px 20px; } }
      .advantages__item.active .advantages__hover {
        opacity: 1;
        transition-delay: 0.5s; }
      .advantages__item.active .advantages__visible {
        opacity: 0; }
  .advantages__visible {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    transition: 0.5s; }
  .advantages__visible-title {
    font-weight: 500;
    font-size: 25px;
    line-height: 100%;
    color: #555;
    writing-mode: sideways-lr; }
  .advantages__hover {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    top: 40px;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: 0.5s; }
  .advantages__title {
    font-weight: 500;
    font-size: 25px;
    line-height: 120%;
    color: #151515;
    margin-bottom: 20px; }
    @media (max-width: 480px) {
  .advantages__title {
    font-size: 20px;
    margin-bottom: 15px; } }
  .advantages__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 127%;
    color: #555;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
    @media (max-width: 480px) {
  .advantages__text {
    font-size: 1 4px;
    margin-bottom: 20px; } }
  .advantages__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 60%;
    border-radius: 20px; }
    .advantages__image img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }

.contacts__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  color: #151515;
  margin-bottom: 50px; }
  @media (max-width: 480px) {
    .contacts__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .contacts__body {
    display: grid;
    grid-template-columns: 1fr 321px;
    gap: 30px; }
  @media (max-width: 767px) {
    .contacts__body {
      display: flex;
      flex-direction: column-reverse;
      gap: 15px; } }
  .contacts__map {
    border-radius: 20px;
    background: #fff;
    padding: 10px;
    height: 507px; }
  .contacts__map iframe, .contacts__map div {
    width: 100%;
    height: 100%;
    border-radius: 20px; }
  .contacts__items {
    padding: 45px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    row-gap: 28px; }
  @media (max-width: 480px) {
    .contacts__items {
      padding: 20px; } }
  .contact__icon {
    margin-bottom: 10px; }
  .contact__title {
    font-weight: 300;
    font-size: 18px;
    line-height: 111%;
    color: #555;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .contact__title {
      font-size: 16px; } }
  .contact__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 106%;
    color: #151515;
    display: flex;
    flex-direction: column;
    row-gap: 4px; }
  @media (max-width: 480px) {
    .contact__text {
      font-size: 16px; } }
  .contact__text a {
    color: inherit;
    transition: 0.5s; }
    .contact__text a:hover {
      color: var(--red); }

.partners {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px; }
  @media (max-width: 480px) {
  .partners {
    margin-top: 30px; } }
  @media (max-width: 992px) {
  .partners {
    grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 480px) {
  .partners {
    grid-template-columns: 1fr; } }
  .partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #fff;
    height: 127px;
    padding: 40px 30px; }
  @media (max-width: 480px) {
    .partners__item {
      height: 90px;
      padding: 25px; } }
  .partners__item img {
    max-width: 100%;
    max-height: 100%; }

.footer {
  padding: 35px 0 30px;
  background: #eaeaea; }
  @media (max-width: 480px) {
  .footer {
    padding: 20px 0; } }
  .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 40px; }
  @media (max-width: 992px) {
    .footer__top {
      flex-direction: column;
      align-items: start;
      row-gap: 15px; } }
  .footer__contacts {
    display: flex;
    align-items: center;
    column-gap: 40px; }
  @media (max-width: 550px) {
    .footer__contacts {
      flex-direction: column;
      row-gap: 10px;
      align-items: start; } }
  .footer__contact {
    display: flex;
    align-items: center;
    column-gap: 12px; }
  .footer__contact:hover span {
    color: var(--red); }
  .footer__contact span {
    font-weight: 400;
    font-size: 21px;
    color: #151515;
    transition: 0.5s; }
    @media (max-width: 480px) {
    .footer__contact span {
      font-size: 18px; } }
  .footer__contact img {
    width: 30px;
    height: 30px;
    flex-shrink: 0; }
  .footer__socials {
    display: flex;
    align-items: center;
    column-gap: 18px; }
  .footer__social {
    transition: 0.5s; }
  .footer__social:hover {
    transform: scale(1.1); }
  .footer__body {
    display: flex;
    column-gap: 40px;
    justify-content: space-between; }
  @media (max-width: 767px) {
    .footer__body {
      flex-direction: column;
      align-items: start;
      row-gap: 30px; } }
  .footer__center {
    display: flex;
    column-gap: 45px;
    row-gap: 30px;
    flex-wrap: wrap; }
  @media (max-width: 480px) {
    .footer__center {
      column-gap: 20px; } }
  .footer__links {
    display: flex;
    flex-direction: column;
    row-gap: 8px; }
  .footer__link {
    font-weight: 600;
    font-size: 22px;
    color: #151515;
    line-height: 1.2;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .footer__link {
      font-size: 18px; } }
  .footer__link:hover {
    color: var(--red); }
  .footer__bottom {
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px solid #d9d9d9;
    padding-top: 20px;
    margin-top: 60px; }
  @media (max-width: 480px) {
    .footer__bottom {
      margin-top: 30px;
      padding-top: 15px; } }
  .footer__bottom span {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    color: #303030; }
    @media (max-width: 480px) {
    .footer__bottom span {
      font-size: 12px; } }
  .footer__bottom a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; }

.nav-footer__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #151515;
  margin-bottom: 20px; }
  @media (max-width: 480px) {
    .nav-footer__title {
      font-size: 18px; } }
  .nav-footer__wrapper {
    display: flex;
    column-gap: 30px; }
  @media (max-width: 480px) {
    .nav-footer__wrapper {
      column-gap: 20px; } }
  .nav-footer__items {
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .nav-footer__item {
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
    color: #353535;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .nav-footer__item {
      font-size: 16px; } }
  .nav-footer__item:hover {
    color: var(--red); }

.zhil__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  color: #151515;
  margin-bottom: 50px; }
  @media (max-width: 480px) {
    .zhil__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .item-zhil {
    position: relative;
    overflow: hidden;
    display: block; }
  .item-zhil:hover .zhil-hover {
    transform: translateY(0); }
  .item-zhil__image {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 110%; }
  .item-zhil__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-zhil__items {
    position: absolute;
    left: 10px;
    top: 20px;
    display: flex;
    column-gap: 10px; }
  .item-zhil__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    color: var(--red);
    padding: 5px 25px;
    background-color: #fff;
    border-radius: 30px; }
  .item-zhil__item--green {
    background: #1fc5c2;
    color: #fff; }
  .item-zhil__item--yellow {
    background: #f2d254;
    color: #151515; }
  .item-zhil__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    text-transform: uppercase;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(24px);
    background: rgba(39, 39, 39, 0.7);
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px; }
  @media (max-width: 480px) {
    .item-zhil__title {
      font-size: 18px;
      padding: 15px 20px; } }

.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  column-gap: 30px;
  justify-content: center;
  margin-top: 40px; }
  @media (max-width: 480px) {
  .swiper-pagination-bullets {
    column-gap: 15px;
    margin-top: 20px; } }
  .swiper-pagination-bullets.swiper-pagination-lock {
    display: none; }
  .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    background-color: var(--red);
    margin: 0 !important;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .swiper-pagination-bullets .swiper-pagination-bullet {
      width: 12px !important;
      height: 12px !important; } }

.zhil-hover {
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px 15px;
  border-radius: 20px;
  transform: translateY(100%);
  transition: 0.8s; }
  @media (max-width: 480px) {
  .zhil-hover {
    transform: translateY(0);
    width: 100%;
    position: initial; } }
  .zhil-hover__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    text-transform: uppercase;
    color: #151515;
    margin-bottom: 8px; }
  @media (max-width: 480px) {
    .zhil-hover__title {
      font-size: 20px; } }
  .zhil-hover__subtitle {
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    text-transform: uppercase;
    color: #151515;
    margin-bottom: 18px; }
  @media (max-width: 480px) {
    .zhil-hover__subtitle {
      font-size: 15px; } }
  .zhil-hover__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #151515;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .zhil-hover__text {
      font-size: 15px; } }
  .zhil-hover__text2 {
    font-weight: 300;
    font-size: 13px;
    line-height: 131%;
    text-transform: uppercase;
    color: #555; }

.menu {
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid #c0c0c0;
  display: none; }
  .menu__items {
    display: flex;
    column-gap: 30px;
    border-bottom: 1px solid #c0c0c0;
    row-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px; }
  .menu__item {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #666;
    line-height: 1.2;
    padding-bottom: 15px;
    position: relative;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .menu__item {
      padding-bottom: 10px;
      font-size: 14px; } }
  .menu__item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: var(--red);
    opacity: 0;
    transition: 0.5s; }
    @media (max-width: 480px) {
    .menu__item::after {
      height: 3px; } }
  .menu__item.active {
    color: #151515; }
    .menu__item.active::after {
      opacity: 1; }

.menu-item__grid {
  grid-template-columns: 80px 80px;
  column-gap: 70px;
  row-gap: 20px; }
  .menu-item__grid.active {
    display: grid; }
  .menu-item__item {
    font-weight: 400;
    font-size: 19px;
    line-height: 120%;
    color: #151515;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .menu-item__item {
      font-size: 17px; } }
  .menu-item__item:hover {
    color: var(--red); }
  .menu-item__flex {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .menu-item__flex.active {
    display: flex; }

.menu-list {
  margin: 30px 0;
  display: none; }

.start {
  margin-top: -30px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 463px; }
  @media (max-width: 480px) {
  .start {
    height: 400px; } }
  .start::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(237deg, rgba(16, 16, 16, 0) 0%, #101010 100%); }
  @media (max-width: 480px) {
  .start {
    margin-top: -10px; } }
  .start__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; }
  .start__subtitle {
    font-weight: 400;
    font-size: 21px;
    line-height: 124%;
    color: #ddd;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .start__subtitle {
      font-size: 18px;
      margin-bottom: 20px; } }
  .start__title {
    font-weight: 500;
    font-size: 61px;
    line-height: 110%;
    color: #fff;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .start__title {
      font-size: 35px;
      margin-bottom: 15px; } }
  .start__text {
    font-weight: 400;
    font-size: 21px;
    line-height: 124%;
    color: #fff;
    max-width: 430px; }
  @media (max-width: 480px) {
    .start__text {
      font-size: 16px; } }

.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;
      row-gap: 30px; } }
  @media (max-width: 480px) {
    .block__body {
      row-gap: 20px; } }
  .block__image {
    flex: 0 0 48%;
    padding: 0 50px; }
  @media (max-width: 992px) {
    .block__image {
      max-width: 500px; } }
  .block__image img {
    width: 100%;
    border-radius: 20px; }
  .block__content {
    flex: 1 1 52%;
    padding: 0 50px; }
  .block__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #151515;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .block__title {
      font-size: 30px;
      margin-bottom: 15px; } }
  .block__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 147%;
    color: #555;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .block__text {
      font-size: 14px; } }

.cen__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .cen__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .cen__title::after {
    content: "";
    display: block;
    margin-top: 20px;
    background-color: #444;
    width: 54px;
    height: 2px; }
  @media (max-width: 480px) {
      .cen__title::after {
        margin-top: 15px; } }
  .cen__item {
    position: relative; }
  .cen__image {
    position: relative;
    display: block;
    border-radius: 20px;
    padding-bottom: 80%;
    overflow: hidden; }
  .cen__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .cen__name {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(24px);
    background: rgba(39, 39, 39, 0.7);
    font-weight: 700;
    font-size: 22px;
    line-height: 136%;
    color: #fff; }
  @media (max-width: 480px) {
    .cen__name {
      padding: 15px 20px;
      font-size: 18px; } }
  .charters__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px; }
  @media (max-width: 992px) {
    .charters__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 767px) {
    .charters__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .charters__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .charters__item {
    display: block;
    padding-bottom: 144%;
    overflow: hidden;
    border: 10px solid #000;
    border-radius: 20px;
    position: relative; }
  .charters__item > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; }
  .play-button img {
    width: 80px;
    height: 80px; }

.team__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .team__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 650px) {
    .team__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .item-team {
    position: relative;
    overflow: hidden;
    cursor: pointer; }
  .item-team:hover .team-hover {
    opacity: 1; }
  .item-team__image {
    position: relative;
    display: block;
    padding-bottom: 110%;
    overflow: hidden;
    border-radius: 20px; }
  .item-team__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-team__content {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(24px);
    background: rgba(39, 39, 39, 0.7); }
  @media (max-width: 480px) {
    .item-team__content {
      padding: 15px 20px;
      display: none; } }
  .item-team__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 136%;
    color: #fff;
    text-transform: uppercase; }
  @media (max-width: 480px) {
    .item-team__title {
      font-size: 18px; } }
  .item-team__subtitle {
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #f1f1f1; }
  @media (max-width: 480px) {
    .item-team__subtitle {
      font-size: 14px; } }

.team-hover {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  opacity: 0;
  transition: 0.8s; }
  @media (max-width: 480px) {
  .team-hover {
    opacity: 1;
    position: initial;
    border-radius: 0 0 20px 20px;
    padding: 40px 20px 20px;
    margin-top: -20px; } }
  .team-hover__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    text-transform: uppercase;
    color: #151515;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .team-hover__title {
      font-size: 20px; } }
  .team-hover__subtitle {
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #555;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .team-hover__subtitle {
      font-size: 14px;
      margin-bottom: 15px; } }
  .team-hover__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 135%;
    color: #151515; }
  @media (max-width: 480px) {
    .team-hover__text {
      font-size: 14px; } }
  .team-hover__more {
    background-color: transparent;
    font-size: 16px;
    margin-top: 15px;
    color: var(--red);
    line-height: 1.2; }

.history__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  border-bottom: 1px solid #a1a1a1;
  column-gap: 110px; }
  @media (max-width: 480px) {
    .history__top {
      column-gap: 20px;
      margin-bottom: 30px; } }
  .history__years {
    padding-bottom: 45px; }
  @media (max-width: 480px) {
    .history__years {
      padding-bottom: 30px; } }
  .history__years .swiper-slide.active-year .history__circle {
    background-color: var(--red); }
  .history__year {
    display: flex;
    align-items: center;
    column-gap: 48px; }
  @media (max-width: 480px) {
    .history__year {
      column-gap: 15px; } }
  .history__year span {
    font-weight: 500;
    font-size: 30px;
    line-height: 130%;
    color: #151515; }
  @media (max-width: 480px) {
      .history__year span {
        font-size: 20px; } }
  .history__circle {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #d9d9d9;
    position: relative;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .history__circle {
      width: 42px;
      height: 42px; } }
  .history__circle::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -45px;
    width: 2px;
    height: 17px;
    background-color: #000;
    left: 50%;
    transform: translateX(-50%); }
  @media (max-width: 480px) {
      .history__circle::after {
        bottom: -30px; } }
  .history__arrows {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-bottom: 45px; }
  @media (max-width: 480px) {
    .history__arrows {
      column-gap: 10px;
      padding-bottom: 30px; } }
  .history__arrow {
    cursor: pointer;
    transition: 0.5s; }
  .history__arrow:hover {
    transform: scale(1.1); }
  .history__arrow.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none; }
  @media (max-width: 480px) {
      .history__arrow svg {
        width: 30px;
        height: 30px; } }
  .history__items .swiper-slide {
    width: 75%;
    opacity: 0.3;
    transition: 0.5s; }
  .history__items .swiper-slide.swiper-slide-active {
    opacity: 1; }
  .history__item {
    padding: 0 5px; }
  .history__item-title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #151515;
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .history__item-title {
      font-size: 32px;
      margin-bottom: 20px; } }
  .history__item-text {
    font-weight: 400;
    font-size: 19px;
    line-height: 147%;
    color: #555;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .history__item-text {
      font-size: 14px; } }

.partners-page__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; }
  @media (max-width: 767px) {
    .partners-page__items {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 550px) {
    .partners-page__items {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px; } }
  .partners-page__item {
    height: 127px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff; }
  @media (max-width: 480px) {
    .partners-page__item {
      height: 90px; } }
  .partners-page__item img {
    max-width: 100%;
    max-height: 100%; }

.news__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  color: #151515;
  margin-bottom: 50px; }
  @media (max-width: 480px) {
    .news__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .item-news {
    position: relative;
    display: block;
    cursor: pointer; }
  .item-news:hover .item-news__image img {
    transform: scale(1.1); }
  .item-news:hover .item-news__title {
    text-decoration: underline; }
  .item-news__image {
    position: relative;
    display: block;
    padding-bottom: 120%;
    overflow: hidden;
    border-radius: 20px; }
  .item-news__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s; }
  .item-news__bottom {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    display: flex;
    column-gap: 10px; }
  @media (max-width: 480px) {
    .item-news__bottom {
      left: 10px;
      bottom: 10px;
      right: 10px; } }
  .item-news__title {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 19px;
    line-height: 116%;
    color: #151515;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    background: #fff; }
  @media (max-width: 480px) {
    .item-news__title {
      font-size: 17px; } }
  .item-news__arrow {
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--red); }
  .item-news__arrow svg {
    height: 26px; }

.news-page__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .news-page__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .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; } }

.breadcrumbs {
  margin: 30px 0 40px; }
  @media (max-width: 480px) {
  .breadcrumbs {
    margin: 20px 0 30px; } }
  .breadcrumbs__items {
    display: flex;
    align-items: center;
    column-gap: 25px;
    flex-wrap: wrap;
    row-gap: 10px; }
  .breadcrumbs__item {
    font-weight: 300;
    font-size: 14px;
    color: #888;
    line-height: 1.2;
    position: relative; }
  .breadcrumbs__item:not(:last-child)::after {
    content: "/";
    display: block;
    position: absolute;
    right: -15px;
    top: 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    color: #888; }
  .breadcrumbs__item.active {
    color: #151515; }

.about--advantages .advantages {
  border-radius: 20px;
  background: #fff;
  padding: 20px; }
  @media (max-width: 480px) {
    .about--advantages .advantages {
      padding: 10px; } }
  .about--advantages .advantages__item.active {
    flex: 16; }
  .about--advantages .advantages__hover {
    top: 100px;
    left: 70px;
    right: 70px; }
  @media (max-width: 992px) {
    .about--advantages .advantages__hover {
      top: 30px;
      left: 20px;
      right: 20px; } }
  .about--advantages .advantages__title {
    font-size: 50px; }
  @media (max-width: 992px) {
    .about--advantages .advantages__title {
      font-size: 30px; } }
  @media (max-width: 480px) {
    .about--advantages .advantages__title {
      font-size: 24px; } }
  .about--advantages .advantages__text {
    font-size: 19px;
    max-width: 678px; }
  @media (max-width: 992px) {
    .about--advantages .advantages__text {
      font-size: 16px; } }
  @media (max-width: 480px) {
    .about--advantages .advantages__text {
      font-size: 14px; } }

.clients__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .clients__title {
      margin-bottom: 20px;
      font-size: 30px; } }
  .clients__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .clients__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 767px) {
    .clients__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .clients__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .clients__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #fff;
    height: 127px;
    padding: 30px 20px; }
  @media (max-width: 480px) {
    .clients__item {
      height: 90px;
      padding: 25px; } }
  .clients__item img {
    max-width: 100%;
    max-height: 100%; }

.faq__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .faq__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .faq__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .item-faq {
    overflow: hidden;
    border-radius: 30px;
    background-color: #fff; }
  @media (max-width: 480px) {
  .item-faq {
    border-radius: 20px; } }
  .item-faq__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 40px; }
  @media (max-width: 480px) {
    .item-faq__top {
      padding: 15px 20px; } }
  .item-faq__title {
    font-weight: 500;
    font-size: 24px;
    color: #151515;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .item-faq__title {
      font-size: 18px; } }
  .item-faq__plus {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background-color: var(--red); }
  @media (max-width: 480px) {
    .item-faq__plus {
      width: 40px;
      height: 40px; } }
  .item-faq__plus.active::after {
    transform: translate(-50%, -50%) rotate(90deg); }
  .item-faq__plus::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 3px;
    width: 30px;
    border-radius: 5px;
    background-color: #fff; }
  @media (max-width: 480px) {
      .item-faq__plus::before {
        height: 2px;
        width: 20px; } }
  .item-faq__plus::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 3px;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.5s; }
  @media (max-width: 480px) {
      .item-faq__plus::after {
        width: 2px;
        height: 20px; } }
  .item-faq__hidden {
    display: none; }
  .item-faq__text {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    color: #555;
    padding: 20px 40px 40px;
    position: relative; }
  @media (max-width: 480px) {
    .item-faq__text {
      padding: 15px 20px 25px;
      font-size: 14px; } }
  .item-faq__text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -40px;
    right: -40px;
    height: 1px;
    background-color: #bebebe; }

.links {
  margin: 0 0 50px;
  padding: 40px 0 0;
  position: sticky;
  top: 97px;
  z-index: 10;
  background-color: #fff; }
  @media (max-width: 480px) {
  .links {
    top: 70px; } }
  .links__items {
    display: flex;
    column-gap: 20px;
    overflow: auto;
    justify-content: space-between;
    border-bottom: 1px solid #e7e7e7; }
  .links__item {
    font-weight: 500;
    font-size: 18px;
    color: #999;
    line-height: 1.2;
    white-space: nowrap;
    padding-bottom: 22px;
    position: relative; }
  .links__item::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #151515;
    opacity: 0; }
  .links__item.active {
    color: #151515; }
  .links__item.active::after {
    opacity: 1; }

.abb__body {
  padding: 85px 20px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media (max-width: 480px) {
    .abb__body {
      padding: 50px 20px; } }
  .abb__content {
    width: 400px;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden; }
  @media (max-width: 480px) {
    .abb__content {
      width: 100%; } }
  .abb__title {
    font-weight: 700;
    font-size: 24px;
    color: #151515;
    margin-bottom: 10px;
    line-height: 1.2; }
  .abb__text {
    font-weight: 400;
    font-size: 14px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.2;
    position: relative; }
  .abb__text::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -25px;
    left: -40px;
    right: -40px;
    height: 1px;
    background-color: #e7e7e7; }
  .abb__items {
    display: flex;
    flex-direction: column;
    row-gap: 24px; }
  .abb__item-title {
    font-weight: 400;
    font-size: 14px;
    color: #999;
    line-height: 1.2;
    margin-bottom: 5px; }
  .abb__item-text {
    font-weight: 400;
    font-size: 14px;
    color: #151515;
    line-height: 1.2; }

.slider__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  margin-bottom: 50px; }
  @media (max-width: 767px) {
    .slider__top {
      grid-template-columns: 1fr;
      row-gap: 15px; } }
  @media (max-width: 480px) {
    .slider__top {
      margin-bottom: 20px; } }
  .slider__top.slider__top2 {
    grid-template-columns: 1fr 1.5fr; }
  @media (max-width: 767px) {
      .slider__top.slider__top2 {
        grid-template-columns: 1fr; } }
  .slider__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #151515; }
  @media (max-width: 480px) {
    .slider__title {
      font-size: 30px; } }
  .slider__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 126%;
    color: #666;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-top: 15px; }
  @media (max-width: 480px) {
    .slider__text {
      font-size: 14px;
      padding-top: 0; } }
  .slider__item {
    position: relative; }
  .slider__item-image {
    position: relative;
    display: block;
    padding-bottom: 80%;
    border-radius: 20px;
    overflow: hidden; }
  .slider__item-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .slider__item-title {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    font-weight: 700;
    font-size: 22px;
    line-height: 136%;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(24px);
    background: rgba(39, 39, 39, 0.7); }
  @media (max-width: 480px) {
    .slider__item-title {
      font-size: 18px;
      padding: 15px 20px; } }

.rasp__body {
  height: 656px;
  border-radius: 20px;
  overflow: hidden;
  position: relative; }
  @media (max-width: 767px) {
    .rasp__body {
      height: auto;
      display: flex;
      flex-direction: column-reverse;
      row-gap: 15px; } }
  .rasp__map {
    height: 100%;
    width: 100%; }
  @media (max-width: 767px) {
    .rasp__map {
      height: 380px; } }
  .rasp__map iframe, .rasp__map div {
    width: 100%;
    height: 100%; }
  .rasp__content {
    position: absolute;
    top: 100px;
    bottom: 100px;
    right: 80px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    max-width: 600px; }
  @media (max-width: 767px) {
    .rasp__content {
      position: initial;
      padding: 30px 20px; } }
  .rasp__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #151515;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .rasp__title {
      font-size: 30px;
      margin-bottom: 15px; } }
  .rasp__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #666; }
  @media (max-width: 480px) {
    .rasp__text {
      font-size: 14px; } }

.form__body {
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px; }
  @media (max-width: 992px) {
    .form__body {
      grid-template-columns: 1fr; } }
  @media (max-width: 480px) {
    .form__body {
      padding: 0;
      border-radius: 0;
      background-color: transparent; } }
  @media (max-width: 992px) {
    .form__image {
      max-width: 500px; } }
  .form__image img {
    width: 100%; }
  .form__content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    background-color: #f5f5f5; }
  @media (max-width: 480px) {
    .form__content {
      padding: 30px 20px; } }
  .form__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #151515;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .form__title {
      font-size: 30px;
      margin-bottom: 15px; } }
  .form__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 147%;
    color: #555;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .form__text {
      font-size: 16px;
      margin-bottom: 20px; } }
  .form__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px; }
  @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 {
    padding: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #151515;
    width: 100%;
    border-radius: 10px;
    background-color: #fff; }
  @media (max-width: 480px) {
      .form__input input {
        font-size: 15px; } }
  .form__input input::placeholder {
    color: #151515; }
  .form__select-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #555;
    margin-bottom: 10px; }
  .form__select-input {
    display: flex;
    align-items: center;
    column-gap: 15px; }
  .form__select-input input {
    width: 25px;
    height: 25px;
    accent-color: var(--red); }
  .form__select-input label {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #151515; }
  .form__button {
    margin-top: 20px;
    align-self: flex-start; }

.plans__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .plans__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .item-plan {
    padding: 30px 25px;
    border-radius: 15px;
    background-color: #fff;
    text-align: center; }
  .item-plan__title {
    font-weight: 500;
    font-size: 17px;
    line-height: 136%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #151515;
    margin-bottom: 30px; }
  .item-plan__image {
    display: block; }
  .item-plan__image img {
    width: 100%; }

.specials__body {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 180px 20px 20px; }
  @media (max-width: 480px) {
    .specials__body {
      padding: 100px 15px 15px; } }
  .specials__content {
    padding: 50px 35px;
    border-radius: 20px;
    backdrop-filter: blur(44px);
    background: rgba(0, 0, 0, 0.2);
    max-width: 784px; }
  @media (max-width: 480px) {
    .specials__content {
      padding: 30px 15px; } }
  .specials__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .specials__title {
      font-size: 30px;
      margin-bottom: 15px; } }
  .specials__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 121%;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .specials__text {
      font-size: 14px; } }

.hod__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .hod__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .hod__inputs {
    display: grid;
    grid-template-columns: 290px 290px 290px;
    gap: 32px;
    margin-bottom: 32px; }
  @media (max-width: 992px) {
    .hod__inputs {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .hod__inputs {
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 20px; } }
  .hod__input {
    position: relative; }
  .hod__input select {
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: #151515;
    line-height: 1.2;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    font-family: var(--font-family);
    appearance: none; }
  @media (max-width: 480px) {
      .hod__input select {
        font-size: 16px; } }
  .hod__input::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 23px;
    height: 13px;
    background: url("../themes/demo/assets/images/arrow.svg") center / 100% no-repeat;
    right: 24px; }
  .hod__images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .hod__images {
      gap: 20px; } }
  @media (max-width: 767px) {
    .hod__images {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) {
    .hod__images {
      gap: 10px; } }
  .hod__image {
    border-radius: 20px;
    overflow: hidden;
    position: relative; }
  @media (max-width: 480px) {
    .hod__image {
      border-radius: 10px; } }
  .hod__image:first-child {
    grid-column: 1/3; }
  .hod__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hod__image svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100px; }

.zhil-page__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .zhil-page__title {
      font-size: 30px;
      margin-bottom: 20px; } }
  .zhil-page__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .zhil-page__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .zhil-page__items {
      grid-template-columns: 1fr; } }

#contactForm_forms_flash, #productForm_forms_flash, #modalForm_forms_flash {
  display: inline-block; }
  #contactForm_forms_flash .close, #productForm_forms_flash .close, #modalForm_forms_flash .close {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: transparent; }

.contactModal__dialog {
  max-width: 600px;
  margin: 1.75rem auto; }

.contactModal__content {
  border-radius: 20px;
  border: none; }

.contactModal__header {
  padding: 25px 30px 10px;
  border: none; }

.contactModal__title {
  font-size: 28px;
  font-weight: 500;
  color: #151515; }

.contactModal__close {
  background: none;
  border: none; }

.contactModal__body {
  padding: 0px 30px 30px; }

.contactModal__description {
  font-size: 16px;
  color: #666;
  line-height: 1.5; }

.contactModal__form {
  display: flex;
  flex-direction: column;
  row-gap: 20px; }

.contactModal__field {
  display: flex;
  flex-direction: column;
  row-gap: 8px; }

.contactModal__label {
  font-size: 15px;
  color: #151515; }

.contactModal__input, .contactModal__textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  color: #151515; }

.contactModal__textarea {
  resize: vertical;
  min-height: 100px; }

.contactModal__submit {
  width: 100%; }

.fixed-phone {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99; }
  @media (max-width: 480px) {
  .fixed-phone {
    right: 10px;
    bottom: 10px; } }
  .fixed-phone img {
    width: 70px;
    height: 70px; }
  @media (max-width: 480px) {
    .fixed-phone img {
      width: 50px;
      height: 50px; } }

.teamModal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  align-items: center; }
  @media (max-width: 992px) {
  .teamModal__body {
    grid-template-columns: 1fr;
    row-gap: 20px; } }

.teamModal__title {
  font-size: 24px; }

.teamModal__subtitle {
  font-size: 16px;
  margin-bottom: 10px; }

.teamModal__text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 147%;
  color: #555; }

.news-single__images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 32px; }
  @media (max-width: 992px) {
  .news-single__images {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px; } }
  @media (max-width: 600px) {
  .news-single__images {
    grid-template-columns: 1fr;
    gap: 15px; } }

.news-single__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  padding-bottom: 80%; }
  .news-single__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.main-images {
  position: relative; }
  .main-images__pagination {
    position: absolute;
    left: 0;
    bottom: 40px !important;
    right: 0;
    z-index: 1; }
  .main-images .swiper-pagination-bullet {
    background-color: #9a9a9a !important;
    opacity: 1 !important; }
  .main-images .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #f00 !important; }

#block, #advantages {
  margin-top: 0;
  padding-top: 80px; }
  @media (max-width: 480px) {
  #block, #advantages {
    padding-top: 60px; } }
