@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700&display=swap");
@import url("/assets/libraries/bootstrap-grid/bootstrap-grid.min.css");
@import url("/assets/libraries/normalize/normalize.css");
:root {
  --white: #ffffff;
  --black: #1d1818;
  --grey: #f7f8fc;
  --gray: #7a7a7a;
  --blue: #235acd;
  --dark-blue: #0d52d9;
}

.title {
  color: var(--black);
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 36px */
  margin-bottom: 40px;
}

.hover__underline {
  position: relative;
}
.hover__underline::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: 0.4s ease;
}
.hover__underline:hover::before {
  width: 100%;
}

.mainPadding {
  padding-top: 30px;
}

@media (max-width: 575.98px) {
  .title {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}
html {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

main {
  flex: 1 0 auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.header__top {
  padding: 10px 0;
}
.header__top--wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__top--content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__top--link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.header__top--link p {
  white-space: nowrap;
}
.header__top--link svg {
  transition: 0.3s ease;
  fill: var(--dark-blue);
}
.header__top--link:hover {
  color: var(--blue);
}
.header__top--link:hover svg {
  fill: var(--blue);
  scale: 1.1;
}
.header__main {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  max-width: 100%;
  background: var(--white);
  z-index: 11;
  transition: 0.3s ease;
}
.header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.header__menu--list {
  display: flex;
  align-items: center;
  gap: 50px;
  overflow-x: auto;
}
.header__menu--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  fill: var(--dark-blue);
  transition: 0.3s ease;
}
.header__menu--link svg {
  fill: var(--dark-blue);
  transition: 0.3s ease;
}
.header__menu--link.router-link-active p {
  color: var(--blue);
}
.header__menu--link .g {
  transition: 0.3s ease;
}
.header__menu--link p {
  color: var(--black);
  text-align: center;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: 0.3s ease;
  white-space: nowrap;
}
.header__menu--link:hover {
  fill: var(--blue);
}
.header__menu--link:hover svg {
  fill: var(--blue);
}
.header__menu--link:hover p {
  color: var(--blue);
}
.header__menu--link:hover .g {
  scale: 1.1;
}
.header .lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .lang__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 10px;
  cursor: pointer;
}
.header .lang__item .img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #efefef;
}
.header .lang__item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .lang__item .text {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header .lang__content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.2s ease;
  z-index: 12;
}
.header .lang__content .lang__item {
  padding: 10px 0;
}
.header .lang__content .lang__item:nth-child(1) {
  padding-bottom: 5px;
}
.header .lang__content .lang__item:nth-child(2) {
  padding-top: 5px;
}
.header .lang.active .lang__content {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transform-origin: top;
}
.header.main .header__main {
  top: 0;
}

@media (max-width: 767.98px) {
  .header .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__top {
    padding: 0;
  }
  .header__top--wrapper {
    flex-direction: column;
    width: 100%;
  }
  .header__top--content {
    gap: 10px;
    padding: 15px 0;
    justify-content: center;
  }
  .header__top .header__logo {
    padding: 10px 0;
  }
  .header__top .header__logo svg {
    max-height: 25px;
    object-fit: contain;
  }
  .header__top--link {
    gap: 4px;
    font-size: 0.65rem;
  }
  .header__top--link svg {
    width: 14px;
    height: 14px;
  }
  .header__main {
    top: 95px;
  }
  .header__menu {
    padding: 0;
  }
  .header__menu--list {
    gap: 30px;
    padding: 15px 0;
  }
  .header__menu--link {
    gap: 12px;
  }
  .header__menu--link p {
    font-size: 0.55rem;
  }
  .header .lang__item {
    gap: 5px;
    padding: 0;
  }
  .header .lang__item .img {
    width: 20px;
    height: 20px;
  }
  .header .lang__item .text {
    font-size: 0.65rem;
  }
  .header .lang__content {
    top: calc(100% + 8px);
  }
  .header .lang__content .lang__item {
    padding: 5px 0;
  }
  .header .lang__content .lang__item:nth-child(1) {
    padding-bottom: 2.5px;
  }
  .header .lang__content .lang__item:nth-child(2) {
    padding-top: 2.5px;
  }
}
.footer__list {
  padding: 30px 0;
  border-bottom: 1px solid #ebebeb;
}
.footer__list--link {
  color: var(--black);
  text-align: center;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  width: 100%;
  display: flex;
}
.footer__list--link:not(:last-child) {
  margin-bottom: 20px;
}
.footer__content {
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__content .copy {
  color: var(--gray);
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  flex: 1 1 auto;
}
.footer__content .developer {
  color: var(--gray);
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

@media (max-width: 991.98px) {
  .footer .row {
    row-gap: 20px;
  }
  .footer__content {
    padding: 15px 0;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .footer__list {
    padding: 20px 0;
  }
  .footer__list--link {
    text-align: left;
  }
  .footer__content {
    gap: 15px;
  }
}
@keyframes slide {
  0% {
    left: -100%; /* Начинаем за пределами видимости */
  }
  100% {
    left: 100%; /* Заканчиваем за пределами видимости с противоположной стороны */
  }
}
.form label,
.form p {
  color: var(--black);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form label sup,
.form p sup {
  color: #ff0000;
  font-size: 0.6rem;
  top: 0;
}
.form .input {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.form .input input,
.form .input select,
.form .input textarea {
  display: flex;
  padding: 15px;
  resize: none;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #d4d9e7;
  background: #fff;
  color: var(--black);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  transition: 0.3s ease;
}
.form .input input.telCountry,
.form .input select.telCountry,
.form .input textarea.telCountry {
  padding-left: 50px;
}
.form .input input::placeholder,
.form .input select::placeholder,
.form .input textarea::placeholder {
  color: var(--gray);
}
.form .input input:focus,
.form .input select:focus,
.form .input textarea:focus {
  border-color: var(--blue);
}
.form .input input.fa,
.form .input select.fa,
.form .input textarea.fa {
  text-transform: uppercase;
}
.form .input input:focus ~ label,
.form .input select:focus ~ label,
.form .input textarea:focus ~ label {
  color: #161617;
  border-color: #161617;
}
.form .input input:focus,
.form .input select:focus,
.form .input textarea:focus {
  color: #161617;
  border-color: #161617;
}
.form .input.white p,
.form .input.white label {
  color: var(--white);
}
.form .input.white input:focus ~ label,
.form .input.white select:focus ~ label,
.form .input.white textarea:focus ~ label {
  color: var(--white);
  border-color: var(--white);
}
.form .input.white input:focus,
.form .input.white select:focus,
.form .input.white textarea:focus {
  border-color: var(--white);
}
.form .checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form .checkboxes__list {
  display: flex;
  align-items: center;
  row-gap: 20px;
  column-gap: 30px;
  flex-wrap: wrap;
}
.form .checkboxes__list .check {
  display: flex;
  align-items: center;
  gap: 9px;
}
.form .checkboxes__list .check input {
  width: 28px;
  height: 28px;
}
.form .checkboxes__list .check label {
  margin-bottom: 0;
  cursor: pointer;
  text-transform: none;
  font-size: 0.7rem;
}

@media (max-width: 575.98px) {
  .form .input p {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .form .input input,
  .form .input textarea,
  .form .input select {
    padding: 12px;
  }
}
@media (max-width: 399.98px) {
  .form .checkboxes__list {
    flex-direction: column;
    align-items: start;
  }
}
.btn {
  border: 1px solid transparent;
  padding: 15px 20px;
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  gap: 8px;
  border-radius: 5px;
  background: var(--dark-blue);
  cursor: pointer;
  color: var(--white);
}
.btn svg {
  transition: 0.3s linear;
  fill: var(--white);
  stroke: var(--white);
}
.btn.w-100 {
  width: 100%;
}
.btn:hover {
  background: var(--white);
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}
.btn:hover svg {
  fill: var(--dark-blue);
  stroke: var(--dark-blue);
}
.btn.white-border {
  border-color: var(--white);
  color: var(--white);
}
.btn.white-border svg {
  fill: var(--white);
  stroke: var(--white);
}
.btn.white-border:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}
.btn.white-border:hover svg {
  fill: var(--dark-blue);
  stroke: var(--dark-blue);
}
.btn.white {
  background: var(--white);
  color: var(--black);
}
.btn.white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn.red {
  background: #E71010;
  color: var(--white);
}
.btn.red:hover {
  background: transparent;
  color: #E71010;
  border-color: #E71010;
}
.btn.blue-border {
  background: transparent;
  color: var(--dark-blue);
  border-color: var(--dark-blue);
}
.btn.blue-border:hover {
  color: var(--white);
  background: var(--dark-blue);
  border-color: var(--white);
}

@media (max-width: 575.98px) {
  .btn {
    width: 100%;
    padding: 15px 2px;
    font-size: 0.5rem;
    font-weight: 500;
  }
  .btn svg {
    width: 15px;
    height: 15px;
  }
}
.modal {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: rgba(4, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal.modal--active {
  opacity: 1;
  pointer-events: all;
}
.modal.modal--active .modal-content .close-modal-btn {
  opacity: 1;
}
.modal .component {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.modal .modal-content .close-modal-btn {
  transition: 0.4s ease;
  opacity: 0;
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  top: 30px;
  right: 30px;
  position: absolute;
  cursor: pointer;
}
.modal.mainModal .container-fluid {
  height: 100%;
  padding-top: 50px;
  overflow-y: auto;
}
.modal.mainModal .buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.modal.mainModal .iconModal {
  margin-bottom: 25px;
}
.modal.mainModal.small .container-fluid {
  height: auto;
}
.modal.mainModal.small .modal-content {
  width: 60%;
  height: 60%;
  border-radius: 10px;
}
.modal.mainModal.extraSmall .container-fluid {
  height: auto;
}
.modal.mainModal.extraSmall .modal-content {
  width: 40%;
  height: 40%;
  border-radius: 10px;
}
.modal.mainModal.extraSmall .btns {
  display: flex;
  align-items: center;
  gap: 15px;
}
.modal.mainModal.extraSmall .form {
  padding: 50px 0;
}
.modal.mainModal .row {
  row-gap: 30px;
}
.modal.mainModal .component {
  height: 100%;
}
.modal.mainModal .modal-content {
  height: 100%;
}
.modal.mainModal .title {
  margin-bottom: 30px;
}
.modal.mainModal .subtitle {
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-bottom: 25px;
}
.modal.mainModal .red {
  text-align: center;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 16.5px */
}

@media (max-width: 991.98px) {
  .modal.mainModal.extraSmall .modal-content {
    width: 60%;
    height: 60%;
  }
}
@media (max-width: 767.98px) {
  .modal.search .modal-content {
    height: auto;
    padding: 70px 0;
  }
  .modal.search .modal-content .close-modal-btn {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .modal.mainModal.small .modal-content {
    width: 80%;
    height: 80%;
    border-radius: 4px;
  }
  .modal.mainModal.extraSmall .modal-content {
    width: 80%;
    height: 70%;
  }
}
@media (max-width: 575.98px) {
  .modal .modal-content {
    height: 100%;
    width: 100%;
    padding: 0;
  }
  .modal .modal-content .close-modal-btn {
    top: 15px;
    right: 15px;
  }
  .modal.mainModal .buttons {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .modal.mainModal .row {
    row-gap: 20px;
  }
  .modal.mainModal .title {
    margin-bottom: 20px;
    text-align: center;
  }
  .modal.mainModal .btns {
    gap: 10px;
  }
  .modal.mainModal.small .modal-content {
    width: 95%;
    height: 95%;
    border-radius: 4px;
  }
  .modal.mainModal.extraSmall .modal-content {
    width: 95%;
  }
  .modal.mainModal.extraSmall .btn span {
    display: none;
  }
}
.flightBanner {
  padding: 60px 0 160px;
  background: var(--dark-blue);
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.flightBanner::before {
  position: absolute;
  content: url("/assets/images/stars.png");
  top: 0;
  right: 0;
  height: 100%;
}
.flightBanner h1 {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.serviceBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 15px;
  position: relative;
}
.serviceBanner h1 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 45px */
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
.serviceBanner::before {
  z-index: 1;
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.tabForm .row {
  row-gap: 25px;
}
.tabForm.default {
  margin-top: -100px;
  z-index: 2;
  position: relative;
}
.tabForm.fixed {
  padding: 35px 0;
  background: var(--dark-blue);
}
.tabForm.fixed .head {
  display: none;
}
.tabForm.fixed .tabForm__content {
  display: none;
}

.tickets {
  padding: 50px 0;
}
.tickets .row {
  row-gap: 30px;
}

.ticket {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  background: #fff;
}
.ticket__mian {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ticket__mian--head {
  padding: 10px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px 5px 0px 0px;
  background: #f5f5f5;
  color: #3c3f4e;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ticket__mian--content {
  padding: 0 25px;
}
.ticket__mian--item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  padding: 25px 0;
}
.ticket__mian--item:not(:first-child) {
  border-top: 1px solid #ebebeb;
}
.ticket__mian--item .item__date {
  color: var(--dark-blue);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.ticket__mian--item .item__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ticket__mian--item .item__info--text {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.ticket__mian--item .item__info--arr {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticket__mian--item .item__info--arr svg {
  fill: var(--dark-blue);
}
.ticket__btn {
  padding: 0 25px 25px;
}

.empty {
  display: flex;
  flex-direction: column;
}
.empty .text1 {
  color: var(--gray);
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 36px */
  margin-bottom: 20px;
}
.empty .text2 {
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  margin-bottom: 30px;
}

.back {
  padding-top: 30px;
}
.back--link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-blue);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.services {
  margin-bottom: 30px;
  position: relative;
}
.services .row {
  row-gap: 30px;
}
.services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.05);
  flex: 1;
  justify-content: space-between;
}
.services__item .block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.services__item .img {
  margin-bottom: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 64px;
  max-width: 64px;
  min-height: 64px;
  max-height: 64px;
}
.services__item .img.g::after {
  display: none;
}
.services__item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.services__item--name {
  color: var(--black);
  text-align: center;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services__item--text {
  color: var(--gray);
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services__item--link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.services__item--link .g {
  margin-bottom: 0 !important;
}
.services__item--link .g svg {
  fill: var(--dark-blue);
  transition: 0.3s ease;
}
.services__item--link p {
  color: var(--dark-blue);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.services__item:hover .services__item--link .g svg {
  transform: rotate(-45deg);
}
.services .g {
  margin-bottom: 20px;
}
.services .swiper-button-next,
.services .swiper-button-prev {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--grey);
  box-shadow: 0px 0px 7px 0px rgba(43, 60, 80, 0.1);
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.services .swiper-button-next::after,
.services .swiper-button-prev::after {
  display: none;
}
.services .swiper-button-next svg,
.services .swiper-button-prev svg {
  transition: 0.3s ease;
  fill: var(--black);
  width: auto;
  height: auto;
}
.services .swiper-button-next:hover,
.services .swiper-button-prev:hover {
  border-color: var(--blue);
}
.services .swiper-button-next:hover svg,
.services .swiper-button-prev:hover svg {
  fill: var(--blue);
}

.boocking {
  padding: 50px 0;
}
.boocking .row {
  row-gap: 30px;
}
.boocking__info {
  background: #fff;
  display: flex;
  border-radius: 5px;
}
.boocking__info--number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
}
.boocking__info--number p {
  color: #3c3f4e;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}
.boocking__info--number .dir {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
.boocking__info .ticket__mian--content {
  width: 100%;
  padding: 0;
}
.boocking__info .ticket__mian--item {
  padding-left: 25px;
  padding-right: 25px;
  border-left: 1px solid #ebebeb;
}
.boocking .form {
  border-radius: 5px;
  background: #fff;
  padding: 35px 115px;
}
.boocking .form .name {
  color: var(--black);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  margin-bottom: 30px;
  text-align: center;
}
.boocking .formFileld {
  padding-bottom: 25px;
  border-bottom: 1px solid #ebebeb;
  display: list-item;
  list-style: decimal;
}
.boocking .formFileld::marker {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.boocking .formFileld .passenger {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.boocking .add-passenger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  gap: 6px;
  cursor: pointer;
}
.boocking .text-red {
  color: #e71010;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.boocking .delete {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--gray);
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.succes {
  padding: 50px 0;
}
.succes__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.succes__content .g {
  margin-bottom: 20px;
}
.succes__content .title a {
  color: var(--dark-blue);
}
.succes__content p {
  text-align: center;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  margin-bottom: 25px;
}
.succes__content .btn .g {
  margin: 0;
}

.jobs {
  padding: 50px 0;
}
.jobs .row {
  row-gap: 30px;
}
.jobs__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  flex: 1;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  position: relative;
}
.jobs__item--name {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jobs__item--price {
  color: var(--blue);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
.jobs__item--location {
  color: var(--gray);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.jobs__item--location span {
  color: var(--blue);
}
.jobs__item--link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-blue);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.jobs__item--link svg {
  fill: var(--dark-blue);
  transition: 0.3s ease;
}
.jobs__item--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.jobs__item--link:hover svg {
  transform: rotate(-45deg);
}
.jobs__wraper {
  display: flex;
  flex-direction: column;
}

.vacancy {
  padding: 50px 0;
  position: relative;
}
.vacancy .row {
  row-gap: 25px;
}
.vacancy__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.vacancy__info--item {
  border-radius: 10px;
  background: #fff;
  padding: 25px;
}
.vacancy__info--item .name {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin-bottom: 10px;
}
.vacancy__info--item .content {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.vacancy__main {
  position: sticky;
  right: 0;
  top: 100px;
  border-radius: 10px;
  background: #fff;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
}
.vacancy__main--photo {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #EBEBEB;
}
.vacancy__main--head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--blue);
  margin-bottom: 20px;
}
.vacancy__main--head p {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.vacancy__main--head span {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.vacancy__main .text {
  color: var(--gray);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.vacancy__main .hiddenBlock {
  display: none;
  padding-top: 25px;
  border-top: 1px solid #ebebeb;
  flex-direction: column;
  align-items: flex-start;
}
.vacancy__main .hiddenBlock .vacancy__main--head {
  margin-bottom: 15px;
  color: var(--black);
}
.vacancy__main .hiddenBlock .text {
  margin-bottom: 5px;
}
.vacancy__main .hiddenBlock .link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.vacancy__main .hiddenBlock .link svg {
  fill: var(--blue);
}
.vacancy__main .hiddenBlock .link:not(:last-child) {
  margin-bottom: 15px;
}
.vacancy__main .hiddenBlock.active {
  display: flex;
}

.succesPage {
  height: 100vh;
  display: flex;
}
.succesPage__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.succesPage .g {
  margin-bottom: 20px;
}
.succesPage .title {
  margin-bottom: 15px;
}
.succesPage p {
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

.registration {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 25px 0;
}
.registration__container {
  border-radius: 5px;
  background: #fff;
  padding: 40px 0;
}
.registration__form {
  display: flex;
  flex-direction: column;
}
.registration__form--links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.registration__form--link {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  transition: 0.3s ease;
}
.registration__form--link.active {
  color: var(--blue);
  border-bottom: 1px solid var(--dark-blue);
}
.registration__form--link:hover {
  color: var(--blue);
}
.registration__form .input {
  margin-bottom: 25px;
}
.registration .title {
  margin-bottom: 30px;
}
.registration .subtitle {
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-bottom: 5px;
}
.registration .return {
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-top: 30px;
}
.registration .returnLink {
  color: var(--blue);
  transition: 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-top: 20px;
  display: none;
}
.registration .returnLink.action {
  display: block;
}
.registration .returnLink:hover {
  color: var(--dark-blue);
}

.cases {
  padding: 40px 0;
}
.cases .row {
  row-gap: 30px;
}
.cases__item {
  flex: 1;
  cursor: pointer;
  transition: 0.5s ease;
}
.cases__item .close {
  display: none;
}
.cases__item:hover .cases__content--text .name {
  color: var(--blue);
}
.cases__item:hover .cases__content--text svg {
  transform: rotate(-45deg);
}
.cases__item .cases__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s ease;
}
.cases__item .cases__content--img {
  width: 100%;
  transition: 0.5s ease;
}
.cases__item .cases__content--img img {
  transition: 0.3s ease;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 5px;
  width: 100%;
}
.cases__item .cases__content--text .name {
  display: flex;
  align-items: start;
  gap: 20px;
}
.cases__item .cases__content--text .name p {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s ease;
}
.cases__item .cases__content--text .name svg {
  transition: 0.3s ease;
  fill: var(--dark-blue);
}
.cases__item .cases__content--text .info {
  display: none;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.cases__item.active {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.cases__item.active .close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 11;
}
.cases__item.active .close svg {
  fill: var(--black);
}
.cases__item.active .cases__wrapper {
  position: relative;
}
.cases__item.active .cases__content {
  padding: 50px 30px;
  height: 100%;
  max-height: 100vh;
  overflow: auto;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.cases__item.active .cases__content--img {
  flex: 1;
}
.cases__item.active .cases__content--img img {
  object-fit: cover;
}
.cases__item.active .cases__content--text {
  flex: 1;
}
.cases__item.active .cases__content--text .name p {
  -webkit-line-clamp: unset;
  overflow: visible;
  text-overflow: unset;
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.cases__item.active .cases__content--text .name .g {
  display: none;
}
.cases__item.active .cases__content--text .info {
  display: block;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  padding-bottom: 30px;
}

.news {
  padding: 50px 0;
}
.news .openCategory {
  display: none;
}
.news .close {
  display: none;
}
.news .row {
  row-gap: 30px;
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.news__list--item a {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.news__list--item a:hover {
  color: var(--dark-blue);
}
.news__list--item a.active {
  color: var(--dark-blue);
}
.news__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  flex: 1;
}
.news__card .block {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.news__card--img {
  margin-bottom: 15px;
}
.news__card--img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.8;
  border-radius: 10px;
}
.news__card--date {
  color: #3c3f4e;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}
.news__card--text {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s ease;
}
.news__card--tag {
  transition: 0.3s ease;
  border-radius: 10px;
  background: #fff;
  padding: 4px 25px;
  color: var(--dark-blue);
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.news__card:hover .news__card--text {
  color: var(--dark-blue);
}
.news__card:hover .news__card--tag {
  background: var(--dark-blue);
  color: #fff;
}

.article {
  padding: 30px 0 50px;
}
.article h1 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 45px */
  margin-bottom: 15px;
  display: block;
}
.article .date {
  color: #3c3f4e;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.article .date span {
  padding-bottom: 7px;
}
.article__wrapper {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.article__content {
  width: 100%;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 25px;
}
.article__content img {
  aspect-ratio: 1/0.7;
  width: 100%;
}
.article__content ul {
  list-style: inside;
}
.article__content a {
  text-decoration: underline;
  color: var(--dark-blue);
  text-underline-offset: 3px;
}
.article .share {
  position: relative;
}
.article .share__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  transition: 0.3s ease;
  padding-bottom: 7px;
  cursor: pointer;
}
.article .share__item svg {
  transition: 0.3s ease;
  fill: var(--black);
}
.article .share__item:hover {
  color: var(--dark-blue);
}
.article .share__item:hover svg {
  fill: var(--dark-blue);
}
.article .share__content {
  position: absolute;
  top: 100%;
  left: 0;
  gap: 10px;
  transition: 0.3s ease;
  max-height: 0px;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: #fff;
  padding: 0 15px;
  z-index: 10;
  box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.05);
}
.article .share__content--item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  transition: 0.3s ease;
}
.article .share__content--item svg {
  transition: 0.3s ease;
  fill: var(--gray);
}
.article .share__content--item:hover {
  color: var(--dark-blue);
}
.article .share__content--item:hover svg {
  fill: var(--dark-blue);
}
.article .share.active .share__content {
  padding: 15px;
  max-height: 50vh;
  opacity: 1;
  pointer-events: all;
}

.serviceBlockContent {
  padding: 15px 0;
}
.serviceBlockContent .content {
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
}
.serviceBlockContent .content ul {
  list-style: inside;
}
.serviceBlockContent .content ul li::marker {
  color: #43b9fc;
}
.serviceBlockContent .content a {
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts {
  margin-bottom: 50px;
}
.contacts.form {
  margin: 40px 0 50px;
}
.contacts .subtitle {
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-bottom: 25px;
}
.contacts .input {
  margin-bottom: 25px;
}
.contacts .btn {
  margin-top: 5px;
}
.contacts .row {
  row-gap: 30px;
}
.contacts__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  background: #fff;
  padding: 30px 25px;
  gap: 15px;
}
.contacts__item--head {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contacts__item--head svg {
  fill: var(--dark-blue);
}
.contacts__item--info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.contacts__item--info > * {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s ease;
}
.contacts__item--info > *:hover {
  color: var(--dark-blue);
}

.fromIndex {
  background: var(--dark-blue);
  padding: 40px 0 60px;
}
.fromIndex .row {
  row-gap: 25px;
}
.fromIndex .title {
  color: var(--white);
}
.fromIndex .subtitle {
  color: var(--white);
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-bottom: 25px;
}
.fromIndex .btn {
  margin-top: 5px;
}

.about {
  padding: 50px 0;
}
.about .row {
  row-gap: 30px;
}
.about__info {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.about__info--name {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 45px */
  margin-bottom: 20px;
}
.about__info--text {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  margin-bottom: 25px;
}
.about__info--span {
  color: var(--grey2, #7a7a7a);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.598px */
  margin-bottom: 25px;
}
.about__content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.about__content--item {
  flex: 1 0 calc(50% - 10px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 22.047px */
}
.about__content--item .g {
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
  background: var(--dark-blue);
  border-radius: 50%;
}
.about .img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.goal {
  margin-bottom: 60px;
}
.goal .row {
  row-gap: 30px;
}
.goal__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  background: #fff;
  padding: 30px;
}
.goal__item--text {
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
}

.reviews {
  margin-bottom: 60px;
  position: relative;
}
.reviews img {
  width: 100%;
  aspect-ratio: 1/1.5;
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--grey);
  box-shadow: 0px 0px 7px 0px rgba(43, 60, 80, 0.1);
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.reviews .swiper-button-next::after,
.reviews .swiper-button-prev::after {
  display: none;
}
.reviews .swiper-button-next svg,
.reviews .swiper-button-prev svg {
  transition: 0.3s ease;
  fill: var(--black);
  width: auto;
  height: auto;
}
.reviews .swiper-button-next:hover,
.reviews .swiper-button-prev:hover {
  border-color: var(--blue);
}
.reviews .swiper-button-next:hover svg,
.reviews .swiper-button-prev:hover svg {
  fill: var(--blue);
}

.forEmployers {
  padding: 50px 0;
}
.forEmployers .row {
  row-gap: 30px;
}
.forEmployers .subtitle {
  color: var(--black);
  text-align: center;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-bottom: 30px;
}
.forEmployers__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.forEmployers__item--wrapper {
  display: flex;
  flex-direction: column;
}
.forEmployers__item--head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.forEmployers__item--head .name {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
}
.forEmployers__item--head .img {
  min-width: 45px;
  max-width: 45px;
  min-height: 45px;
  max-height: 45px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
}
.forEmployers__item--head .img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.forEmployers__item .text {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.forEmployers__item .location {
  color: #7a7a7a;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}
.forEmployers__item .location span {
  color: var(--dark-blue);
}
.forEmployers__item .time {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.forEmployers__item .link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-blue);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.forEmployers__item .link svg {
  transition: 0.3s ease;
  fill: var(--dark-blue);
}
.forEmployers__item:hover {
  border-color: var(--dark-blue);
}
.forEmployers__item:hover .link svg {
  transform: rotate(-45deg);
}

@media (max-width: 1199.98px) {
  .news {
    padding: 40px 0;
  }
  .news .openCategory {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    color: #3c3f4e;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .news .openCategory svg {
    transition: 0.3s ease;
    fill: var(--black);
  }
  .news .openCategory:hover {
    color: var(--dark-blue);
  }
  .news .openCategory:hover svg {
    fill: var(--dark-blue);
  }
  .news .row {
    row-gap: 30px;
  }
  .news__wrapper--container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 100%;
    z-index: 999;
    transition: background 0.3s ease, transform 0.3s ease;
    background: transparent;
    display: flex;
    justify-content: end;
    transform: translateX(100%);
  }
  .news__wrapper--container.active {
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.5);
  }
  .news .close {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
  }
  .news__container {
    padding: 30px;
    width: 400px;
    height: 100%;
    background: #fff;
  }
  .news__list {
    overflow-y: auto;
    height: 100%;
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .flightBanner {
    padding: 70px 0 165px;
  }
  .flightBanner h1 {
    font-size: 1.5rem;
  }
  .empty {
    display: flex;
    flex-direction: column;
  }
  .empty .text1 {
    font-size: 1.25rem;
  }
  .empty .text2 {
    font-size: 1rem;
  }
  .boocking {
    padding: 30px 0;
  }
  .boocking .row {
    row-gap: 25px;
  }
  .boocking__info--number {
    padding: 20px;
  }
  .boocking__info .ticket__mian--item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .boocking .form {
    padding: 35px 30px;
  }
  .cases {
    padding: 30px 0;
  }
  .cases__item.active:hover .cases__content--text .name {
    color: var(----black);
  }
  .cases__item.active:hover .cases__content--text svg {
    transform: rotate(0);
  }
  .cases__item.active .cases__content {
    padding: 50px 20px;
    gap: 25px;
    flex-direction: column;
  }
  .cases__item.active .cases__content--img {
    width: 100%;
  }
  .cases__item.active .cases__content--img img {
    aspect-ratio: unset;
    width: 100%;
    max-height: 400px;
  }
  .cases__item.active .cases__content--text .name p {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .services .row {
    row-gap: 20px;
  }
  .services.index .services__item {
    padding: 15px;
    justify-content: start;
    align-items: start;
  }
  .services.index .services__item .block {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 15px;
  }
  .services.index .services__item .img {
    width: auto;
    margin-bottom: 0;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px;
    max-height: 36px;
  }
  .services.index .services__item .img img {
    width: 100%;
    height: 100%;
  }
  .services.index .services__item--name {
    font-size: 0.7rem;
    margin-bottom: 0;
    -webkit-line-clamp: 3;
    text-align: left;
  }
  .services.index .services__item--text {
    display: none;
  }
  .services.index .services__item--link {
    display: none;
  }
  .services .services__item {
    padding: 15px;
  }
  .services .services__item .img {
    width: auto;
    margin-bottom: 15px;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px;
    max-height: 36px;
  }
  .services .services__item .img img {
    width: 100%;
    height: 100%;
  }
  .services .services__item--name {
    font-size: 0.7rem;
  }
  .services .services__item--text {
    font-size: 0.7rem;
  }
  .services .services__item--link {
    font-size: 0.6rem;
    margin-top: 10px;
  }
  .services .services__item--link .g svg {
    width: 24px;
    height: 24px;
  }
  .services .swiper-slide {
    height: auto;
  }
  .services .g {
    margin-bottom: 5px;
  }
  .services .g svg {
    width: 36px;
    height: 36px;
  }
  .flightBanner {
    padding: 50px 0 140px;
  }
  .flightBanner::before {
    display: none;
  }
  .flightBanner h1 {
    font-size: 1rem;
  }
  .tabForm.fixed {
    padding: 0;
    padding-top: 20px;
  }
  .tabForm.fixed .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0 25px;
  }
  .tabForm.fixed .head p {
    color: #fff;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 21.6px */
  }
  .tabForm.fixed .head .close {
    cursor: pointer;
  }
  .tabForm.fixed .tabForm__content {
    display: flex;
    flex-direction: column;
  }
  .tabForm.fixed .tabForm__content .openForm {
    color: #fff;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  .tabForm.fixed .tabForm__content--head {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 5px;
  }
  .tabForm.fixed .tabForm__content--head .direction p {
    color: #fff;
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .tabForm.fixed .tabForm__content--list {
    display: flex;
    flex-direction: column;
  }
  .tabForm.fixed .tabForm__content--list .item {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
  }
  .tabForm.fixed .tabForm__content--list .item:not(:first-child) {
    border-top: 1px solid #5e8ce8;
  }
  .tabForm.fixed .tabForm__content--list .item .date {
    color: #fff;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
  }
  .tabForm.fixed .tabForm__content--list .item .dir {
    display: flex;
  }
  .tabForm.fixed .tabForm__content--list .item .dir .arr {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tabForm.fixed .tabForm__content--list .item .dir .arr svg {
    transform: rotate(90deg);
    fill: #fff;
  }
  .tabForm.fixed .tabForm__content--list .item .dir__item {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .tabForm.fixed .tabForm__content--list .item .dir__item p {
    color: #fff;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .tabForm.fixed .tabForm__fromContent {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    z-index: 20;
    transition: 0.3s ease;
    background: var(--dark-blue);
    padding-bottom: 30px;
  }
  .tabForm.fixed .tabForm__fromContent .container-fluid {
    height: 100%;
    overflow-y: auto;
  }
  .tabForm.fixed .tabForm__fromContent .tab {
    overflow-y: auto;
  }
  .tabForm.fixed .tabForm__fromContent.active {
    transform: translateX(0%);
  }
  .tickets {
    padding: 30px 0;
  }
  .tickets .row {
    row-gap: 25px;
  }
  .ticket__mian--content {
    padding: 0 15px;
  }
  .ticket__mian--item {
    padding: 15px 0;
    flex-direction: column;
    align-items: start;
  }
  .ticket__mian--item .item__date {
    font-size: 0.7rem;
  }
  .ticket__mian--item .item__info {
    gap: 20px;
    position: relative;
    flex-direction: column;
    align-items: start;
    gap: 7px;
    padding-left: 25px;
  }
  .ticket__mian--item .item__info--text {
    font-size: 0.7rem;
  }
  .ticket__mian--item .item__info--arr {
    position: absolute;
    top: 13px;
    align-items: start;
    justify-content: start;
    left: -10px;
    transform: rotate(90deg);
  }
  .ticket__btn {
    padding: 0 15px 15px;
  }
  .empty {
    display: flex;
    flex-direction: column;
  }
  .empty .text1 {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  .empty .text2 {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  .boocking__info {
    flex-direction: column;
  }
  .boocking__info--number {
    padding: 15px;
    gap: 10px;
    align-items: start;
  }
  .boocking__info .ticket__mian--content {
    padding: 0;
  }
  .boocking__info .ticket__mian--item {
    padding-left: 15px;
    padding-right: 15px;
    border-left: none;
  }
  .boocking .form {
    padding: 20px 15px 20px 25px;
  }
  .boocking .form .name {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .boocking .formFileld::marker {
    font-size: 0.7rem;
  }
  .boocking .formFileld .passenger {
    font-size: 0.7rem;
  }
  .boocking .text-red {
    font-size: 0.6rem;
  }
  .boocking .delete {
    font-size: 0.7rem;
  }
  .succes {
    padding: 30px 0;
  }
  .succes__content .g svg {
    width: 80px;
    height: 80px;
  }
  .succes__content p {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  .succes__content .btn .g {
    margin: 0;
  }
  .succes__content .btn .g svg {
    width: 24px;
    height: 24px;
  }
  .jobs {
    padding: 30px 0;
  }
  .jobs .row {
    row-gap: 25px;
  }
  .jobs__item {
    padding: 20px 15px;
  }
  .jobs__item--name {
    font-size: 0.8rem;
  }
  .vacancy {
    padding: 30px 0;
  }
  .vacancy__info--item {
    padding: 15px;
  }
  .vacancy__main {
    padding: 15px;
  }
  .vacancy__main--head {
    margin-bottom: 15px;
  }
  .vacancy__main--head p {
    font-size: 0.7rem;
  }
  .vacancy__main--head span {
    font-size: 0.7rem;
  }
  .registration__container {
    padding: 25px 15px;
  }
  .registration__form--link {
    font-size: 0.8rem;
    padding-bottom: 10px;
  }
  .registration .title {
    margin-bottom: 10px;
  }
  .registration .return {
    margin-top: 15px;
  }
  .registration .returnLink {
    margin-top: 15px;
  }
  .cases {
    padding: 30px 0;
  }
  .cases__item .cases__content--text .name p {
    font-size: 0.7rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cases__item.active .cases__content {
    gap: 20px;
  }
  .cases__item.active .cases__content--img {
    width: 100%;
  }
  .cases__item.active .cases__content--img img {
    max-height: 280px;
  }
  .cases__item.active .cases__content--text .name p {
    font-size: 0.8rem;
  }
  .news {
    padding: 30px 0;
  }
  .news__list--item a {
    font-size: 0.9rem;
  }
  .article {
    padding: 25px 0 30px;
  }
  .article h1 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .article .date {
    margin-bottom: 25px;
  }
  .article__content {
    margin-bottom: 20px;
  }
  .article__content img {
    aspect-ratio: 1/0.6;
  }
  .contacts {
    margin-bottom: 30px;
  }
  .contacts.form {
    margin: 25px 0 30px;
  }
  .contacts .subtitle {
    margin-bottom: 20px;
  }
  .contacts .input {
    margin-bottom: 20px;
  }
  .contacts .row {
    row-gap: 25px;
  }
  .contacts__item {
    padding: 20px 15px;
    gap: 8px;
  }
  .contacts__item--head {
    gap: 8px;
    font-size: 0.7rem;
  }
  .contacts__item--info {
    gap: 8px;
  }
  .about {
    padding: 30px 0;
  }
  .about .row {
    row-gap: 25px;
  }
  .about__info--name {
    font-size: 1rem;
  }
  .about__info--text {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .about__info--span {
    font-size: 0.6rem;
    margin-bottom: 20px;
  }
  .about__content {
    flex-direction: column;
    row-gap: 20px;
  }
  .about__content--item {
    flex: 1;
  }
  .goal {
    margin-bottom: 30px;
  }
  .goal .row {
    row-gap: 25px;
  }
  .goal__item {
    padding: 20px;
  }
  .goal__item--text {
    font-size: 0.8rem;
  }
  .reviews {
    margin-bottom: 30px;
  }
  .forEmployers {
    padding: 30px 0;
  }
  .forEmployers .row {
    row-gap: 25px;
  }
  .forEmployers__item {
    padding: 15px;
  }
  .forEmployers__item--head .name {
    font-size: 0.9rem;
  }
  .forEmployers__item .text {
    font-size: 0.7rem;
  }
  .serviceBanner h1 {
    font-size: 1rem;
    padding: 45px 0;
  }
  .serviceBlockContent .content {
    padding: 20px 15px;
    font-size: 0.7rem;
  }
  .fromIndex {
    padding: 30px 0 40px;
  }
  .fromIndex .row {
    row-gap: 20px;
  }
  .fromIndex .title {
    margin-bottom: 20px;
  }
  .fromIndex .subtitle {
    margin-bottom: 20px;
  }
  .fromIndex .btn {
    margin-top: 10px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

body {
  font-family: "Onest", sans-serif;
  color: var(--black);
  background: var(--grey);
}

html,
body {
  font-size: 20px;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
  width: calc(100% - 17px);
}

.iti {
  font-size: 0.7rem;
}

.relative {
  position: relative;
}

.t-c {
  text-align: center !important;
}

.t-l {
  text-align: left !important;
}

.or {
  order: 0;
}

.copied {
  position: fixed;
  top: 88px;
  right: 30px;
  border-radius: 5px;
  background: #235acd;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  transition: 0.3s ease-in-out;
  transform: translateX(calc(100% + 35px));
  z-index: 33;
}
.copied p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.copied.active {
  transform: translateX(0);
}

.tab {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tab__content {
  width: 100%;
  padding: 25px 20px;
  border-radius: 0px 5px 5px 5px;
  background: #fff;
  box-shadow: 0px 2px 80px 2px rgba(0, 0, 0, 0.06);
}
.tab__nav {
  width: 100%;
  display: flex;
  justify-content: start;
}
.tab__nav--scrollable {
  display: flex;
  align-items: center;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.tab .tablinks {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 17px 55px;
  color: #fff;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  transition: 0.3s ease;
  border-radius: 10px 10px 0px 0px;
  background: transparent;
  border: 1px solid #fff;
  box-shadow: 0px 2px 80px 2px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}
.tab .tablinks.active {
  background: #fff;
  color: var(--dark-blue);
}
.tab .tablinks p.active {
  position: relative;
}
.tab .tablinks p.active::before {
  position: absolute;
  content: "";
  top: -2px;
  right: -10px;
  width: 11px;
  height: 11px;
  background: #d32c36;
  border-radius: 50%;
}
.tab .tabcontent {
  display: none;
  width: 100%;
}
.tab .tabcontent.active {
  display: block;
}

.img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.img.loaded::after {
  display: none;
}
.img::after {
  position: absolute;
  content: "";
  top: 0;
  left: -100%; /* Начинаем за пределами видимости */
  width: 100%;
  height: 150%;
  background: linear-gradient(270deg, #676767 -383.92%, rgba(199, 199, 199, 0) 75.73%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide 1s infinite;
}
.img .video {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.img .video .g {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
}

.g {
  display: flex;
  justify-content: center;
  align-items: center;
}

.w-100 {
  width: 100%;
}

.footer {
  flex: 0 0 auto;
}

main {
  margin-top: 82px;
  flex: 1 0 auto;
  transition: 0.3s ease;
}
main.main {
  margin-top: 32px;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 1920px) {
  .container-fluid {
    max-width: 1920px;
  }
}
@media (max-width: 991.98px) {
  .or {
    order: 1;
  }
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .breadcramps {
    display: none;
  }
  main {
    margin-top: 81px;
  }
}
@media (max-width: 767.98px) {
  .tab__content {
    padding: 15px;
    border-radius: 0px 0px 5px 5px;
  }
  .tab__nav--scrollable {
    width: 100%;
  }
  .tab .tablinks {
    padding: 15px 5px;
    width: 100%;
    max-width: 50%;
    font-size: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 575.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/*# sourceMappingURL=global.css.map */
