@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap");

html {
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Flex";
}

:root {
    --primary-color: #1c6ae4;
    --bg-light-blue: #eef7ff;
    --primary-pink-color: #e81932;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.info__section-text,
.fleet__text,
.info__section-text p,
.fleet__text p,
.info__section-text li,
.fleet__text li {
    font-size: 18px;
    line-height: 22px;
    color: #555555;
    font-weight: 400;
}

.content-field p,
.content-field li {
    font-size: 18px;
    line-height: 22px;
    color: #555555;
    font-weight: 400;
}

.content-field p:not(:last-child),
.content-field li:not(:last-child) {
    margin-bottom: 1em;
}

.container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.header {
    width: 100%;
    height: min-content;
    position: fixed;
    top: 20px;
    z-index: 10;
}

.top-30 {
    top: 15px !important;
}

.scroll-header {
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.display-none {
    display: none;
}

.white-text {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.icon-bg {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 5px;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.logo #header-h1 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}

.logo-red {
    color: var(--primary-color);
}

.logo-fixed {
    color: #222222;
    font-size: 36px;
    white-space: nowrap;
    margin-bottom: 7px;
}

.nav {
    width: 100%;
    padding: 35px 50px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.nav__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #222222;
    cursor: pointer;
}

.menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item {
    position: relative;
    flex-grow: 1;
    flex-basis: auto;
    text-align: center;
}

.menu-item a {
    font-size: 18px;
    color: #222222;
    text-decoration: none;
    letter-spacing: 0%;
    font-weight: 500;
    white-space: nowrap;
}

.menu-item.active a {
    color: var(--primary-color);
    font-weight: 500;
}

.menu-item::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background-color: var(--primary-color);
}

.menu-item:last-child::after {
    display: none;
}

/* Hero */
.section-hero {
    width: 100%;
    /* height: 100vh; */
    position: relative;
    /* background: url('../assets/imgs/main-hero-background-img.png') no-repeat center/cover; */
}

.hero__top {
    position: relative;
    padding-top: 190px;
}
.hero__top:has(+.hero__bottom) {
    padding-bottom: 100px;
}

.section-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: url("../assets/imgs/main-hero-background-img.png") no-repeat center/cover;
}

.container-hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: calc(100vh - 100px - 190px);
    min-height: 380px;
    display: flex;
    align-items: center;
}

.hero-vidget {
    width: 100%;
    max-width: 1122px;
    min-height: 112px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto 0 auto;
    padding: 10px;
}

.container-hero__data {
    position: static !important;
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero__bottom {
    position: static;
    margin-top: -100px;
    background-color: none;
}

.container-hero__data h2 {
}

.red-line {
    height: 98px;
    width: 2px;
    background-color: var(--primary-color);
}

.hero-data__text {
    max-width: 826px;
}

.hero-data__text p {
    font-size: 18px;
    font-weight: 400;
    color: #555;
}

/* Info */
.section-info {
    margin-top: 80px !important;
    padding-top: 70px !important;
    padding-bottom: 100px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0%;
    position: relative;
    color: #222222;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 62px;
    height: 3px;
    background-color: var(--primary-color);
}

.container-info__data {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-links__item {
    display: flex;
    gap: 20px;
    font-family: "Pixelify Sans";
    font-size: 22px;
    color: var(--primary-color);
}

.info-link {
    color: #222222;
    font-size: 20px;
    position: relative;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-ticket-purchase {
    padding-top: 80px;
}

.purchase__container__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.purchase__instruction {
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 40px;
}

.purchase-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-instruction-one {
    margin-top: 180px;
    margin-bottom: 110px;
}

.instruction__text {
    font-size: 20px;
    color: #222222;
    font-weight: 500;
    margin-bottom: 40px;
}

.instruction__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction__item {
    display: grid;
    grid-template-columns: 30% 1fr;
    /* align-items: center; */
    gap: 20px;
}

.instruction__number {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    text-align: right;
}

.instruction__description {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    max-width: 600px;
    text-align: start;
}

.section-instruction-two {
    margin-bottom: 150px;
}

.container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.footer__content h2 {
    margin-bottom: 1.4em;
}

.section-widget {
    padding: 50px 0;
}

@media (max-width: 1180px) {
    .hero__top {
        padding-top: 90px;
    }
    .hero__bottom .section-title::after {
        content: none;
    }
    .container-hero {
        height: calc(100vh - 100px - 90px);
    }
    .container {
        max-width: 797px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 606px;
    }

    .check__title {
        font-size: 38px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 45px;
    }

    .section-instruction-one {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .section-instruction-two {
        margin-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .check__title {
        font-size: 24px !important;
        color: #222222;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .check__title {
        font-size: 24px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section-ticket-purchase {
        padding-top: 40px;
    }

    .instruction__text {
        font-size: 16px;
        color: #222222;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .purchase__instruction {
        font-size: 16px;
        font-weight: 400;
        color: #222222;
        margin-bottom: 40px;
    }
}

.section-ticket-purchase {
    padding-top: 80px;
}

.purchase__container__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-breadcrumbs {
    margin-top: 30px;
    margin-bottom: -60px;
}

.yoast-breadcrumbs {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
}
.yoast-breadcrumbs > span {
    color: #222222;
}
.yoast-breadcrumbs a {
    color: #222222;
}
.yoast-breadcrumbs span *:not(:first-child) {
    margin-left: 4px;
}
.yoast-breadcrumbs span *:not(:last-child):after {
    content: "";
    background-color: currentColor;
    width: 12px;
    height: 12px;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transform: rotateZ(180deg);
    mask-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 9.75L3.75 6L7.5 2.25' stroke='%23B8B6C1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    margin-left: 5px;
    display: inline-block;
    margin-bottom: -2px;
}

.purchase__container__content-item {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: start;
    max-width: 100%;
    overflow: hidden;
}

.purchase__instruction {
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 40px;
}

.purchase-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-instruction-one {
    margin-top: 180px;
    margin-bottom: 110px;
}

.instruction__text {
    font-size: 20px;
    color: #222222;
    font-weight: 500;
    margin-bottom: 40px;
}

.instruction__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction__number {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
}

.instruction__description {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    max-width: 600px;
    text-align: start;
}

.section-instruction-two {
    margin-bottom: 150px;
}

.container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 1180px) {
    .container {
        max-width: 797px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 606px;
    }

    .check__title {
        font-size: 38px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 45px;
    }

    .section-instruction-one {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .section-instruction-two {
        margin-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .check__title {
        font-size: 24px !important;
        color: #222222;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .check__title {
        font-size: 24px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section-ticket-purchase {
        padding-top: 40px;
    }

    .instruction__text {
        font-size: 16px;
        color: #222222;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .purchase__instruction {
        font-size: 16px;
        font-weight: 400;
        color: #222222;
        margin-bottom: 40px;
    }
}

.prohibited {
    display: flex;
    background-color: #fafafa;
    width: 100%;
    position: relative;
    padding-top: 60px;
    padding-bottom: 50px;
    margin-top: 75px;
    padding-left: 30px;
}

.section-services {
    overflow: hidden;
}

.warning-icon {
    width: 64px;
    height: 64px;
}

.prohibited__data {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    max-width: 460px;
    padding-top: 10px;
    color: #222222;
    margin-bottom: 20px;
}

.prohibited__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prohibited__list-item {
    display: flex;
    align-items: self-start;
    gap: 10px;
    width: max-content;
}

.prohibited__img img {
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
}
.prohibited__img {
    position: absolute;
    bottom: 5px;
    right: -125px;
    top: -50px;
}

.prohibited__text {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    max-width: 480px;
}

.button-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 12px 22px;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}
.button-fixed.fixed {
    opacity: 1;
    pointer-events: all;
}

.section__hand-luggage {
    margin-top: 100px;
    padding-top: 80px;
}

.hand__luggage-data {
    position: relative;
    min-height: 400px;
}
.luggage__note {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #d7d8dc;
    border-bottom: 1px solid #d7d8dc;
    margin-top: 80px;
    margin-bottom: 60px;
}

.luggage__note-text {
    width: 660px;
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    padding-top: 5px;
}

.luggage__note-data {
    display: flex;
    gap: 40px;
}

@media (max-width: 1180px) {
    .luggage__note-text {
        width: 560px;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        color: #222222;
        padding-top: 5px;
    }

    .luggage__note-data img {
        max-width: 100px;
        max-height: 100px;
    }

    .luggage__img-div img {
        position: absolute;
        bottom: -100px;
        right: -120px;
    }
    .luggage__img-div {
        max-width: 200px;
        position: relative;
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .luggage__note {
        flex-wrap: wrap;
    }
    .luggage__note-text {
        width: 500px;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        color: #222222;
        padding-top: 5px;
    }
    .luggage__note-data img {
        max-width: 50px;
    }

    .luggage__img-div img {
        position: static;
        max-width: 100%;
        width: 100%;
    }

    .luggage__img-div {
        position: relative;
        max-width: 300px;
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .luggage__note-data {
        display: flex;
        gap: 20px;
    }

    .luggage__img-div {
        position: relative;
        max-width: 300px;
        width: 100%;
        margin-right: 50px;
    }

    .luggage__warning img {
        width: 64px;
        height: 64px;
    }
}

.section-allowance {
    margin-top: 80px;
    overflow: hidden;
}
.section-allowance .luggage__warning {
    margin-top: 20px;
}

.section__hand-luggage .p-text {
    max-width: 610px;
}

.allowed-image {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    object-fit: contain;
    object-position: top center;
    height: 100%;
    width: 40%;
    max-height: 100%;
}

.allowed__content {
    background-color: #f9f9f9;
    border: 1px solid #dae0d8;
    display: flex;
    align-items: self-start;
    gap: 25px;
    width: 100%;
    padding: 35px 30px;
    margin-top: 45px;
}

.allowed__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.allowed__list-item {
    display: flex;
    gap: 15px;
}

.allowed__span {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: "Pixelify Sans";
}

.allowed__text {
    font-size: 16px;
    font-weight: 400;
    max-width: 470px;
    color: #373737;
}

.section-animals {
    padding-top: 80px;
    margin-top: 80px;
    margin-bottom: 160px;
}

.animals__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.mar-top-50 {
    margin-top: 50px;
}

.animal__content-data {
    width: 100%;
    height: max-content;
}

.animals__warning {
    background-color: var(--bg-light-blue);
    border: 1px solid var(--primary-color);
    padding: 16px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0 30px 0;
    width: 100%;
}

.animals__list {
    margin-top: 25px;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.animals__list-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.list-icon {
    max-height: 8px;
    margin-top: 6px;
}

.list__text {
    max-width: 618px;
    color: #222222;
    font-size: 18px;
    font-weight: 500;
}

.allowed__content {
    max-width: 610px;
}

.luggage__warning img {
    width: 64px;
    height: 64px;
}

.animals__container-div {
    margin-top: 30px;
}

@media (max-width: 1180px) {
    .section__hand-luggage .p-text {
        max-width: 100%;
    }
    .container {
        max-width: 797px;
        padding: 0 30px;
    }

    .p-text {
        font-size: 18px;
        font-weight: 14px;
        max-width: 668px;
        color: #555555;
    }

    .check__title {
        font-size: 42px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 45px;
    }
    .allowed__content {
        width: 100%;
        max-width: 100%;
    }

    .luggage__note-text {
        width: 560px;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        color: #222222;
        padding-top: 5px;
    }

    .luggage__note-data img {
        max-width: 65px;
        max-height: 65px;
    }
    .prohibited__list-item {
        width: 100%;
    }

    .prohibited__img img {
        width: 100%;
        height: 100%;
    }
    .prohibited__img {
        position: relative;
        min-width: 180px;
        top: 0;
        bottom: 0;
        right: 0;
    }

    .prohibited {
        display: flex;
        background-color: #fafafa;
        width: 100%;
        position: relative;
        height: max-content;
        padding: 60px 30px 50px 30px;
    }

    .prohibited__text {
        font-size: 16px;
        font-weight: 400;
        color: #222222;
        max-width: 400px;
    }

    .section__hand-luggage {
        margin-top: 50px;
        padding-top: 40px;
    }

    .section-animals {
        padding-top: 40px;
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .allowed-image {
        position: relative;
        inset: 0;
        margin-top: 10px;
        width: 100%;
        max-width: 400px;
    }

    .animals__content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .animals__container-div {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 606px;
    }

    .check__title {
        font-size: 38px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 45px;
    }

    .prohibited {
        padding: 30px 20px 30px 20px;
    }
    .tariff-table:not(.table-adaptive) th {
        font-size: 12px;
    }

    /* .tariff-table {
        display: block;
        border: 0;
      }
      
      .tariff-table thead,
      .tariff-table tbody,
      .tariff-table tr,
      .tariff-table th,
      .tariff-table td {
        display: block;
        width: 100%;
      }
      
      
      .tariff-table td:nth-of-type(1) {
        font-weight: bold;
        text-align: center;
        grid-column: 1 / -1;
        border-bottom: 1px solid #ddd;
        padding: 15px 10px;
        background-color: #f9f9f9;
      }
      
      .tariff-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
      }
      
      .tariff-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
      }
      
      .tariff-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 8px 10px;
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%;
      }
      
      .tariff-table td:last-child {
        border-bottom: 0;
      }
      
      .tariff-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 16px;
        position: absolute;
        left: 10px;
        width: 45%;
        text-align: left;
      }
      
      
      .tariff-table td:nth-of-type(1)::before {
        content: none;
      }

      .tariff-table td:nth-of-type(2):before { content: "Basic"; }
      .tariff-table td:nth-of-type(3):before { content: "Standard"; }
      .tariff-table td:nth-of-type(4):before { content: "Flexible"; } */

    .luggage__note-text {
        width: 500px;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        color: #222222;
        padding-top: 5px;
    }

    .luggage__img-div img {
        position: static;
    }

    .luggage__img-div {
        position: relative;
        max-width: 300px;
        width: 100%;
        margin-right: 50px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .section-animals {
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .check__title {
        font-size: 28px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 45px;
    }

    .luggage__note-data {
        display: flex;
        gap: 20px;
    }

    .luggage__img-div {
        position: relative;
        max-width: 300px;
        width: 100%;
        margin-right: 50px;
    }

    .luggage__warning img {
        width: 64px;
        height: 64px;
    }

    .prohibited {
        display: flex;
        flex-direction: column;
        gap: 20px;
        background-color: #fafafa;
        width: 100%;
        height: max-content;
        padding: 40px 30px 50px 30px;
    }

    .check__title {
        font-size: 28px;
        color: #222222;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .prohibited__data {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .prohibited__list-item {
        width: 100%;
    }

    .prohibited__text {
        font-size: 16px;
        font-weight: 400;
        color: #222222;
        max-width: 100%;
        width: 100%;
    }

    .allowed__content {
        background-color: #f9f9f9;
        border: 1px solid #dae0d8;
        display: flex;
        flex-direction: column;
        align-items: self-start;
        gap: 25px;
        width: 100%;
        padding: 35px 30px;
        margin-top: 45px;
    }
}

.section-instruction-two {
    margin-bottom: 150px;
}

@media (max-width: 767px) {
    .section-instruction-one {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .section-instruction-two {
        margin-bottom: 80px;
    }
}

/* .info-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background-color: #222;
} */

.section-planes-info {
    margin-top: 80px;
    padding-bottom: 80px;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-planes {
    padding-top: 80px;
}

.plane {
    margin-bottom: 160px;
}

.plane__data {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.section-planes .plane:nth-child(even) .plane__data {
    flex-direction: row-reverse;
}

@media (max-width: 1180px) {
    .plane__data {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
    }

    .section-planes-info {
        margin-top: 80px;
        padding-bottom: 60px;
    }

    .section-planes {
        padding-top: 40px;
    }

    .section-planes .plane:nth-child(even) .plane__data {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .plane {
        margin-top: 60px;
        margin-bottom: 100px;
    }
}

@media (max-width: 576px) {
    .section_title {
        font-size: 28px;
        font-weight: 700;
        color: #222222;
    }

    .section-planes {
        padding-top: 20px;
    }

    .plane {
        margin-top: 30px;
        margin-bottom: 60px;
    }

    .info-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .section-planes-info {
        margin-top: 60px;
        padding-bottom: 20px;
    }
}

.image-container {
    max-width: 667px;
}

.info-image {
    width: 100%;
}

/* history section */
.section-history {
    margin: 80px 0 80px 0;
    padding-bottom: 90px;
}

.history__content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.history__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
}

.history__column--right {
    max-width: 475px;
}

.history__text {
    max-width: 532px;
    font-size: 18px;
    color: #555555;
    font-weight: 400;
}

.history__image-2 {
    width: 100%;
}

/* Fleet Section */
.section-fleet {
    margin-top: 80px;
    padding-bottom: 90px;
}

.fleet__content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.fleet-image {
    width: 100%;
}

.fleet__text {
    max-width: 570px;
}

.container__fleet-table {
    margin-top: 65px;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.container__fleet-table th,
.container__fleet-table td {
    padding: 10px;
    text-align: start;
    border: 1px solid #ddd;
    color: #222222;
}

.container__fleet-table th {
    background-color: var(--bg-light-blue);
    font-weight: 700;
}

.container__fleet-table tr:hover {
    background-color: var(--bg-light-blue);
}

/* Направления полетов */
.section-directions {
    padding: 80px 0 115px 0;
}

.directions__content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.directions__content-data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.direction__icon {
    background-color: var(--primary-color);
}

.content__data__block div {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.data__popular-list li {
    color: #222222;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

/* Классы обслуживания */
.section-services {
    padding: 80px 0 80px 0;
}

.services-content {
    margin-top: 50px;
}

.tariff-table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
    margin-top: 35px;
}

.tariff-col-text {
    font-weight: 600;
}

.tariff-table th,
.tariff-table td {
    padding: 18px 16px;
    text-align: start;
    border: 1px solid #ddd;
    vertical-align: middle;
    width: 25%;
    color: #222222;
}

.tariff-table th {
    background-color: var(--bg-light-blue);
    font-weight: bold;
    font-family: "Nunito Sans";
    font-size: 16px;
}

.tariff-table td {
    text-align: left;
    font-size: 14px;
}

.tariff-table .data-row:hover {
    background-color: var(--bg-light-blue);
}

/* Багаж */
.section-luggage {
    padding: 80px 0 80px 0;
}

.luggage__warning {
    margin: 30px 0;
}

.luggage__content {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.luggage__content-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luggage__text {
    margin-right: 80px;
}

.luggage__warning {
    display: flex;
    gap: 30px;
    background: var(--bg-light-blue);
    padding: 40px 30px;
}

.luggage__warning img {
    width: 64px;
    height: 64px;
}

.luggage__warning p {
    font-size: 16px;
    line-height: 20px;
    color: #222222;
}

/* Регистрация */
.section-registration {
    padding: 80px 0 80px 0;
    margin-top: 50px;
}

.registration__content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.hero-vidget {
}

.registration__content-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reg-text {
    margin-right: 70px;
}

.reg-warning {
    align-items: center;
}

.warning_icons {
    display: flex;
    max-height: 60px;
}

.registration__link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.registration__link li {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration__link div {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.footer-section {
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: var(--bg-light-blue);
}

.footer__content h1 {
    color: #373737;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 55px;
}

.footer__content h1 span {
    color: var(--primary-color);
}

.footer__social-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social__content-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social__icon {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
}

.social__icon-text {
    color: #222222;
    font-size: 18px;
    font-weight: 400;
}

.social__icon-text a {
    color: var(--primary-color);
}

.footer-contacts {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: var(--bg-light-blue);
}

.footer-p {
    color: #373737;
    font-size: 18px;
}

@media (max-width: 767px) {
    .luggage__warning {
        margin: 20px 0;
        padding: 15px 20px;
        gap: 10px;
    }

    .instruction__item {
        display: grid;
        grid-template-columns: 1fr;
        /* align-items: center; */
        gap: 10px;
    }

    .instruction__list {
        gap: 30px;
    }

    .instruction__number {
        text-align: left;
        margin-bottom: 10px;
    }
    .section-breadcrumbs {
        margin-bottom: -30px;
    }
}
