:root {
    --yellow-color: #FFD53F;
    --black-color: #060606;
    --grey-color: #404040;
    --white-color: #ffff;
    --color-frame: #6f664a;
    --border-radius: 43px;
    --font-size: 8px;
    --border-radius-s: 15px;
}
/* Medium */
@font-face {
    font-family: 'Gilroy Medium';
    src: url("../assets/fonts/gilroy-medium.ttf");
}
/* Regular */
@font-face {
    font-family: 'Gilroy Regular';
    src: url("../assets/fonts/Gilroy-Regular.ttf");
}
/* Semibold */
@font-face {
    font-family: 'Gilroy Semibold';
    src: url("../assets/fonts/gilroy-semibold.ttf");
}
/* Thin */
@font-face {
    font-family: 'Gilroy Thin';
    src: url("../assets/fonts/Gilroy-Thin.ttf");
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Gilroy Medium', sans-serif;
    background: var(--black-color);
}
@media (max-width: 600px) {
    body, html {
        overflow-x: hidden;
    }
}
a {
    text-decoration: none;
    cursor: pointer;
}
button {
    outline: none;
    border: 0;
    cursor: pointer;
}
li {
    list-style: none;
}
.container {
    max-width: 1722px;
    width: 100%;
    margin: 0 auto;
}
/* Main Block */
.plane__main {
    background: url("../assets/plane_main.png") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 712px;
    position: relative;
    padding: 25px;
}
.plane__gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 98.67%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.logo {
    display: flex;
    justify-content: center;
    position: relative;
}
.title {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    font-family: 'Gilroy Medium', sans-serif;
    position: relative;
}
.plane__main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.title h1 {
    font-weight: 600;
    font-size: calc(32px + 27 * (100vw / 1926));
}
.link__app {
    padding: 15px 25px;
    border-radius: 30px;
    background: var(--yellow-color);
    font-family: 'Gilroy Semibold', sans-serif;
    color: var(--black-color);
    font-size: 18px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}
.link__app:hover {
    background: var(--grey-color);
    color: var(--white-color);
}
@media (max-width: 685px){
    .link__app {
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .plane__main {
        background: url("../assets/plane_main_mobile.png") no-repeat top;
        background-size: cover;
        height: 519px;
    }
    .plane__gradient {
        background: radial-gradient(100% 100% at 50% 0%, rgba(5, 5, 5, 0.45) 0%, rgba(5, 5, 5, 0.315) 100%);
        mix-blend-mode: multiply;
    }
    .logo {
        justify-content: flex-start;
    }
    .plane__main-wrapper {
        align-items: flex-start;
        margin-top: 50px;
    }
    .title {
        align-items: start;
    }
}
@media (max-width: 380px) {
    .link__app {
        padding: 10px 20px;
        font-size: 11px;
    }
}
/* Plane Order */
.plane__order {
    display: flex;
    justify-content: center;
    padding: 50px 50px 200px;
    background: #ffffff;
}
.plane__order-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 387px;
}
.plane__order-item img {
    width: 75%;
}
.plane__order-item:nth-child(even) {
    position: relative;
    top: 150px;
}
.plane__order-item h3 {
    font-weight: 700;
    font-size: 118px;
    color: var(--yellow-color);
}
.plane__order-item span {
    width: 30px;
    height: 30px;
    background: var(--yellow-color);
    border-radius: 50%;
}
.plane__order-item p {
    font-weight: 400;
    font-size: calc(17px + 15 * (100vw / 1926));
    color: var(--black-color);
    text-align: center;
}
@media (max-width: 1560px) {
    .plane__order {
        flex-wrap: wrap;
    }
    .plane__order-item:nth-child(even) {
        top: 0;
    }
}
@media (max-width: 500px) {
    .plane__order {
        padding: 50px;
    }
    .plane__order-item h3 {
        order: 1;
        font-weight: 700;
        font-size: 64px;
    }
    .plane__order-item p {
        order: 2;
        font-weight: 400;
        font-size: 17px;
    }
    .plane__order-item img {
        order: 3;
    }
    .plane__order-item span {
        display: none;
    }
}
/* Client */
.client {
    padding: 85px 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 95px;
}
.client__img {
    position: relative;
    width: 67%;
    height: 500px;
}
.client__img img {
    position: absolute;
    top: -145px;
    left: 0;
    width: 100%;
}
.client__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 45%;
}
.client__text h2 {
    font-weight: 600;
    font-size: calc(39px + 31 * (100vw / 1926));
}
.client__text p {
    font-weight: 400;
    font-size: calc(14px + 12 * (100vw / 1926));
}
@media (max-width: 1300px) {
    .client {
        flex-direction: column;
        position: relative;
    }
    .client__img {
        order: 2;
        width: 75%;
        position: absolute;
        top: 19%;
    }
    .client__img img {
        top: 0;
    }
    .client__text {
        order: 1;
        width: 100%;
        text-align: center;
    }
    .client__text p:nth-child(3) {
        margin-top: 51rem;
    }
}
@media (max-width: 1000px) {
    .client__img {
        width: 80%;
        top: 22%;
    }
    .client__text p:nth-child(3) {
        margin-top: 40rem;
    }
}
@media (max-width: 792px) {
    .client__img {
        width: 100%;
        top: 26%;
    }
}
@media (max-width: 600px) {
    .client__img {
        width: 115%;
        top: 30%;
    }
    .client__text h2 {
        font-size: calc(29px + 31 * (100vw / 1926));
    }
    .client__text p {
        font-size: calc(12px + 8 * (100vw / 1926));
    }
    .client__text p:nth-child(3) {
        margin-top: 34rem;
    }
}
@media (max-width: 420px) {
    .client__img {
        top: 32%;
    }
    .client__text p:nth-child(3) {
        margin-top: 25rem;
    }
}
@media (max-width: 380px) {
    .client__img {
        top: 38%;
    }
}
/* Airports */
.airports {
    padding: 85px 0;
    background: #ffffff;
}
.airports__title {
    text-align: center;
}
.airports__title h2 {
    padding: 0 30px;
    font-weight: 600;
    font-size: calc(39px + 31 * (100vw / 1926));
}
.airports__desc {
    margin-top: 80px;
}
.swiper {
    width: 100%;
}
.swiper-wrapper {
    padding: 10px 0 10px 75px;
}
.swiper-slide {
    width: 437px !important;
    height: 605px !important;
    box-shadow: 5px 4px 10px 0px rgba(0, 0, 0, 0.15);
    margin-right: 25px;
}
.swiper-arrow-block {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.btn-prev {
    background-image: url("../assets/slide_arrow_prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    height: 15px;
    width: 85px;
    transition: all 0.3s ease-in-out;
}
.btn-next {
    background-image: url("../assets/slide_arrow_next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    height: 15px;
    width: 85px;
    transition: all 0.3s ease-in-out;
}
.btn-prev,
.btn-next {
    cursor: pointer;
}
.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
}
.airport-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Gilroy Regular', sans-serif;
}
.airport-img img {
    width: 100%;
    height: 303px;
}
.airport-logo {
    position: absolute;
    top: 41%;
    left: 7%;
}
.airport-text {
    margin: 99px 0 0 35px;
    width: 384px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.airport-text h2 {
    color: #131D3B;
    font-weight: 600;
    font-size: 31px;
}
.airport-text p {
    color: #131D3B;
    font-size: 21px;
    font-weight: 400;
}
@media (max-width: 1450px) {
    .airports__desc {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .swiper-wrapper {
        padding: 10px 0 10px 35px;
    }
    .swiper-slide {
        width: 339px !important;
        height: 469px !important;
        margin-right: 15px;
    }
    .airport-img img {
        height: 235px;
    }
    .airport-logo img {
        width: 83px;
        height: 83px;
    }
    .airport-text {
        margin: 65px 0 0 25px;
        width: 231px;
    }
}
@media (max-width: 414px) {
    .swiper-wrapper {
        padding: 10px 0 0 40px;
    }
}
@media (max-width: 400px) {
    .swiper-wrapper {
        padding: 10px 0;
    }
    .swiper-slide {
        margin-right: 0;
    }
    .btn-prev, .btn-next {
        width: 60px;
    }
}
@media (max-width: 379px) {
    .swiper-slide {
        width: 289px !important;
        height: 439px !important;
    }
    .airport-text {
        margin: 45px 0 0 25px;
    }
}
/* Service */
.service {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}
.service__partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 590px;
    width: 100%;
    gap: 25px;
    position: relative;
    top: -45px;
}
.service__title h2 {
    font-weight: 600;
    font-size: calc(31px + 33 * (100vw / 1926));
    margin-bottom: 25px;
}
.service__title p {
    font-weight: 400;
    font-size: calc(14px + 15 * (100vw / 1926));
}
.partners_items {
    width: 425px;
}
.partners_items .item:nth-child(1) {
    display: inline-block;
    background: url("../assets/шоколадница.png") no-repeat;
    background-size: contain;
    width: 272px;
    height: 272px;
}
.partners_items .item:nth-child(2) {
    display: inline-block;
    background: url("../assets/glass.png") no-repeat;
    background-size: contain;
    width: 141px;
    height: 141px;
    position: relative;
    top: -75px;
}
.partners_items .item:nth-child(3) {
    display: inline-block;
    background: url("../assets/palmen.png") no-repeat;
    background-size: contain;
    width: 123px;
    height: 123px;
    position: relative;
    top: -95px;
}
.partners_items .item:nth-child(4) {
    display: inline-block;
    background: url("../assets/кофешоп.png") no-repeat;
    background-size: contain;
    width: 213px;
    height: 213px;
    position: relative;
    top: -55px;
    left: 20px;
}
.partners_text p {
    font-weight: 400;
    font-size: calc(14px + 15 * (100vw / 1926));
    text-align: center;
}
@media (max-width: 1000px) {
    .service {
        flex-direction: column;
        padding: 40px 20px 80px;
    }
    .service__partners {
        top: 40px;
        gap: 0;
    }
    .service__title {
        text-align: center;
    }
}
@media (max-width: 500px) {
    .partners_items {
        width: 345px;
        height: 370px;

    }
    .partners_items .item:nth-child(1) {
        width: 221px;
        height: 220px;
    }
    .partners_items .item:nth-child(2) {
        width: 114px;
        height: 114px;
    }
    .partners_items .item:nth-child(3) {
        width: 99px;
        height: 100px;
        top: -75px;
    }
    .partners_items .item:nth-child(4) {
        width: 173px;
        height: 173px;
    }
}
/* Form */
.form {
    background: #ffffff;
    padding: 125px;
}
.form__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.form__text h2 {
    font-weight: 600;
    font-size: calc(39px + 31 * (100vw / 1926));
}
.form__text p {
    font-weight: 400;
    font-size: calc(17px + 15 * (100vw / 1926));
    margin-top: 20px;
}
.form form {
    display: flex;
    flex-direction: column;
    gap: 76px;
    width: 660px;
}
.form form input {
    border: 0;
    outline: none;
    text-align: center;
    border-bottom: 2px solid black;
    font-size: calc(24px + 12 * (100vw / 1926));
    font-weight: 400;
    padding: 0 0 18px;
}
.form form input::placeholder {
    color: var(--black-color);
}
.form__btn {
    padding: 34px;
    font-size: calc(24px + 12 * (100vw / 1926));
    background: var(--black-color);
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}
.form__btn:hover {
    background: var(--yellow-color);
    color: var(--black-color);
}
@media (max-width: 1050px) {
    .form__wrapper {
        flex-direction: column;
    }
    .form__text {
        text-align: center;
    }
    .form form {
        width: 356px;
    }
}
@media (max-width: 420px) {
    .form {
        padding: 40px 0;
    }
}
/* Footer */
footer {
    background: var(--black-color);
    padding-top: 30px;
    background-image: url("../assets/footer-img.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.footer__block {
    margin: 0 40px;
    padding: 58px 0 37px;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Gilroy Regular';
}
.footer_shadow {
    display: none;
}
.footer p {
    font-weight: 400;
    font-size: calc(13px + 8 * (100vw / 1926));
    white-space: nowrap;
    color: var(--white-color);
    line-height: 24px;
    letter-spacing: 1.6px;
}
.footer__wrapper {
    display: flex;
    gap: 65px;
    position: relative;
    justify-content: space-between;
}
.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 40px);
    gap: 50px;
    column-gap: 75px;
    padding-left: 50px;
}
.footer_menu li:nth-child(12) {
    grid-column: 2;
    grid-row: 5/8;
    align-items: baseline;
}
.footer_menu li:nth-child(1) {
    order: 1;
}
.footer_menu li:nth-child(2) {
    order: 2;
}
.footer_menu li:nth-child(3) {
    order: 3;
}
.footer_menu li:nth-child(4) {
    order: 4;
}
.footer_menu li:nth-child(5) {
    order: 5;
}
.footer_menu li:nth-child(6) {
    order: 8;
}
.footer_menu li:nth-child(7) {
    order: 7;
}
.footer_menu li:nth-child(8) {
    order: 9;
}
.footer_menu li:nth-child(9) {
    order: 10;
}
.footer_menu li:nth-child(10) {
    order: 6;
}
.footer_menu li:nth-child(11) {
    order: 11;
}
.footer_menu li:nth-child(12) {
    order: 12;
}
.footer_menu-item {
    display: flex;
    gap: 36px;
}
.footer_menu-item div {
    display: flex;
    gap: 20px;
    color: var(--white-color);
    align-items: center;
    font-size: 30px;
}
.footer_menu li {
    display: flex;
    align-items: center;
}
.footer_menu li a {
    font-weight: 400;
    font-size: calc(18px + 12 * (100vw / 1926));
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
}
.footer_contacts {
    position: absolute;
    right: 0;
    bottom: -70px;
}
.footer_contacts a {
    color: #ffffff;
    font-weight: 400;
    font-size: calc(15px + 12 * (100vw / 1926));
    white-space: nowrap;
}
.footer_contacts ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contacts {
    display: flex;
    align-items: center;
    gap: 40px;
}
.contacts .contacts_tel {
    font-weight: 400;
    font-size: calc(20px + 12 * (100vw / 1926));
    color: var(--yellow-color);
    white-space: nowrap;
}
.social_contacts {
    display: flex;
    gap: 20px;
}
.social_contacts a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--yellow-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
    font-weight: bold;
}
.footer_menu-lastItem p {
    text-align: center;
    font-size: 32px;
    line-height: 36px;
}
@media (max-width: 1640px) {
    .footer_menu {
        padding-left: 30px;
    }
}

@media (max-width: 1050px) {
    .footer__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer_menu {
        grid-template: 1fr 1fr 1fr / repeat(2, 1fr);
        grid-template-columns: none;
        grid-auto-flow: row;
        align-items: center;
        justify-items: center;
    }
    .footer_contacts {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .footer_contacts ul {
        align-items: center;
    }
    .contacts {
        flex-direction: column;
    }
}
@media (max-width: 550px) {
    footer {
        background-image: url("../assets/footer-img-mobile.png");
        background-repeat: no-repeat;
        background-position: center 1150px;
        position: relative;
        overflow: hidden;
    }
    .footer_shadow {
        display: block;
        position: absolute;
        bottom: -35px;
        left: -18%;
        width: 150%;
        height: 245px;
        filter: blur(36px);
        background: #484746;
    }
    .footer__block {
        margin: 0 15px;
    }
    .footer_logo img {
        width: 128px;
    }
    .footer__wrapper {
        gap: 24px;
    }
    .footer_menu {
        gap: 26px;
    }
    .footer_menu-item {
        gap: 15px;
    }
    .footer_contacts ul {
        gap: 25px;
    }
    .social_contacts {
        gap: 14px;
    }
    .footer p {
        margin-top: 15px;
    }
    .footer_menu li:nth-child(11) {
        order: 12 !important;
    }
    .footer_menu li:nth-child(12) {
        order: 11 !important;
    }
    .footer_menu-lastItem {
        margin-right: 125px;
    }
    .footer_menu-lastItem img {
        height: 150px;
    }
}
@media (max-width: 1480px) {
    .footer__wrapper {
        gap: 20px;
    }
}
@media (max-width: 1350px) {
    .footer_menu {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding-left: 0;
    }
    .footer__wrapper {
        gap: 40px;
    }
    .footer_menu li:nth-child(1) {
        order: 1;
    }
    .footer_menu li:nth-child(2) {
        order: 10;
    }
    .footer_menu li:nth-child(3) {
        order: 2;
    }
    .footer_menu li:nth-child(4) {
        order: 9;
    }
    .footer_menu li:nth-child(5) {
        order: 3;
    }
    .footer_menu li:nth-child(6) {
        order: 10;
    }
    .footer_menu li:nth-child(7) {
        order: 4;
    }
    .footer_menu li:nth-child(8) {
        order: 5;
    }
    .footer_menu li:nth-child(9) {
        order: 6;
    }
    .footer_menu li:nth-child(10) {
        order: 8;
    }
    .footer_menu li:nth-child(11) {
        order: 11;
    }
    .footer_menu li:nth-child(12) {
        order: 12;
    }
    .footer p {
        margin-top: 30px;
    }
}
@media (max-width: 800px) {
    .footer_menu-lastItem p {
        font-size: 20px;
        line-height: 24px;
    }
    .footer p {
        margin-top: 20px;
        z-index: 2;
    }
    .item-logo {
        width: 120px;
    }
    .footer_menu-item span {
        font-size: 20px;
    }
    .footer_menu li:nth-child(10) {
        margin: 0;
        padding: 0 10px;
    }
    .footer__socials {
        align-items: center;
    }
    .footer_socials a {
        text-decoration: none;
        cursor: pointer;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 395px) {
    footer {
        background-position: center 1170px;
    }
    .footer_menu {
        display: flex;
        flex-direction: column;
        column-gap: 130px;
        margin-top: 30px;
    }

    .footer_menu li a {
        font-size: 18px;
        font-weight: 400;
        line-height: 19.86px;
        text-align: left;
    }
    .footer p {
        font-size: 16px;
        letter-spacing: 0;
    }
    .footer_menu-item {
        gap: 8px;
    }
    .item-logo {
        width: 105px;
    }
    .footer_menu li:nth-child(10) {
        margin: 0;
        padding: 0 10px;
    }
}
@media (max-width: 360px) {
    footer {
        background-position: center 1170px;
    }
}