/* Loading strategy to prevent content flickering */
body.loading * {
    visibility: hidden;
}

body.loading .trip-hero__background,
body.loading .svg-particles {
    visibility: visible;
    opacity: 0;
}

/* ------------------------------------------------------------------- HEADER ------------------------------------------------------------------- */
:root {
    --bezier: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trip-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    padding: 2rem;
    background: rgba(0, 4, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(0.5rem);
    transition:
        transform 0.3s ease,
        padding 0.3s ease;
}
.trip-header_hidden {
    transform: translateY(-100%);
}
.trip-header_active {
    padding: 0.5rem 1rem;
}
.trip-header_m {
    display: none;
}
@media (max-width: 80rem) {
    .trip-header {
        padding: 1rem;
    }
}
@media (max-width: 60rem) {
    .trip-header_pc {
        display: none;
    }
    .trip-header_m {
        display: flex;
    }
    .trip-header_active {
        padding: 0.5rem;
    }
}
.trip-header__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    text-decoration: none;
    color: var(--color-white);
}
.trip-header__logo {
    flex-shrink: 0;
}
.trip-header__text {
    font-weight: 600;
}
.trip-header__items {
    display: flex;
    align-items: center;
    gap: 2rem;

    list-style-type: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 80rem) {
    .trip-header__items {
        gap: 0.5rem;
    }
}
.trip-header__link {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.75rem 0;
    transition: color 0.2s ease;
}
.trip-header__link:hover {
    color: var(--color-blue);
}
.trip-header__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
@media (max-width: 80rem) {
    .trip-header__right {
        gap: 1rem;
    }
}
.trip-header__phone {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
}
.trip-header__phone:hover {
    color: var(--color-blue);
}
@media (max-width: 80rem) {
    .trip-header__phone {
        font-size: 1rem;
    }
}

.trip-header__menu {
    text-decoration: none;
    display: none;
    align-items: center;
    cursor: pointer;
    border: none;
    padding: 0;
    background-color: transparent;
    color: var(--color-white);
    gap: 0.25rem;
}
@media (max-width: 60rem) {
    .trip-header__menu {
        display: flex;
    }
}

.trip-header__menu-callback {
    display: flex;
    text-decoration: none;
    align-items: center;
    cursor: pointer;
    border: none;
    padding: 0;
    background-color: transparent;
    color: var(--color-white);
    gap: 0.25rem;
}

.trip-header__menu.trip-header__menu_active .trip-header__burger-line:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.trip-header__menu.trip-header__menu_active .trip-header__burger-line:last-child {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.trip-header__burger {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}
.trip-header__burger-line {
    position: absolute;
    left: 0;
    height: 0.125rem;
    border-radius: 2.5rem;
    width: 100%;
    background-color: var(--color-white);
    transition:
        top 0.2s ease,
        transform 0.2s ease;
}
.trip-header__burger-line:first-child {
    top: 0.5rem;
}
.trip-header__burger-line:last-child {
    top: 1rem;
}
.trip-header__menu-text {
    font-weight: 500;
}
.trip-header__short-logo {
    max-width: 1.75rem;
}
.trip-header__short-logo-img {
    max-width: 100%;
    display: block;
}
.trip-header__icon {
    display: block;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 6.25rem 1rem 2rem 1rem;
    position: fixed;
    inset: 0;
    z-index: 10;
    transform: translateX(-100%);
    background:
        linear-gradient(0deg, #010414, #010414),
        linear-gradient(
            180deg,
            rgba(0, 4, 20, 0.2) 11.32%,
            rgba(32, 178, 204, 0.2) 100%
        );
    transition: transform 0.2s ease;
    overflow: auto;
}
@media (max-width: 60rem) {
    .mobile-menu {
        display: flex;
    }
}
.mobile-menu_active {
    transform: translateX(0);
}
.mobile-menu__items {
    padding: 0;
    margin: 0 0 2rem 0;
    list-style-type: none;
}
.mobile-menu__item {
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s ease;
}
.mobile-menu__item + .mobile-menu__item {
    margin-top: 1.5rem;
}
.mobile-menu__link {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.1;
}
.mobile-menu__under-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mobile-menu__under {
    margin-top: auto;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s ease;
}
.mobile-menu__under-item {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
}
.mobile-menu__under-item + .mobile-menu__under-item {
    margin-top: 0.5rem;
}
.mobile-menu__under-icon {
    display: block;
}
.mobile-menu__button {
    display: block;
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    animation: pulse 2s infinite;
    animation-delay: 0.9s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* ------------------------------------------------------------------- HERO ------------------------------------------------------------------- */

.trip-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, #000414 11.32%, #20b2cc 100%);
    position: relative;
    overflow: hidden;
}
@media (max-width: 30rem) {
    .trip-hero {
        padding-top: 6.25rem;
    }
}
.trip-hero__container {
    position: relative;
    z-index: 1;
}
.trip-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}
.trip-hero__bg-shadow {
    position: absolute;
    pointer-events: none;
}
.trip-hero__bg-shadow_1 {
    top: -54%;
    left: -39%;
}
.trip-hero__bg-shadow_2 {
    top: -36%;
    right: -40%;
}

.trip-hero__airplane {
    position: absolute;
    left: -8%;
    top: 25%;
    z-index: 2;
}
@media (max-width: 91.25rem) {
    .trip-hero__airplane {
        left: 0;
    }
    .trip-hero__airplane img {
        max-width: 10rem;
    }
}
@media (max-width: 48rem) {
    .trip-hero__airplane {
        display: none;
    }
}
.trip-hero__train {
    position: absolute;
    right: -8%;
    bottom: 0;
    z-index: 2;
}
@media (max-width: 91.25rem) {
    .trip-hero__train {
        right: 0;
    }
    .trip-hero__train img {
        max-width: 10rem;
    }
}

@media (max-width: 48rem) {
    .trip-hero__train {
        display: none;
    }
}
.trip-hero__icon-img {
    display: block;
    margin: 0 auto;
}
.trip-hero__title {
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    text-align: center;
    line-height: 1.1;
    font-weight: 500;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
}
@media (max-width: 30rem) {
    .trip-hero__title {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
}
.trip-hero__text {
    font-size: 1.125rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.4;
    color: var(--color-white);
    text-align: center;
    max-width: 49.5rem;
    margin: 0 auto;
}
.trip-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (max-width: 32.5rem) {
    .trip-hero__buttons {
        flex-direction: column-reverse;
        align-items: center;
    }
}
@media (max-width: 30rem) {
    .trip-hero__buttons {
        margin-top: 1.5rem;
        gap: 1rem;
    }
}
.trip-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.trip-hero__slider {
    margin-top: 5rem;
}
@media (max-width: 30rem) {
    .trip-hero__slider {
        margin-top: 3.5rem;
    }
}
.trip-hero__slider-top {
    border: 0.5rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
@media (max-width: 30rem) {
    .trip-hero__slider-top {
        border: 0.25rem solid rgba(255, 255, 255, 0.1);
    }
}
@media (max-width: 30rem) {
    .trip-hero__container:has(.trip-hero__slider-top)::before {
        content: "";
        position: absolute;
        height: 50%;
        top: -10%;
        left: 1rem;
        right: 1rem;
        background: linear-gradient(
            180deg,
            rgba(48, 255, 245, 0.6) 0%,
            rgba(48, 255, 245, 0) 100%
        );
        filter: blur(1rem);
    }
}
.trip-hero__slider .trip-hero__slider-top-slide.swiper-slide {
    height: auto;
    transform: scale(0.85);
    opacity: 0.8;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
.trip-hero__slider .trip-hero__slider-top-slide.swiper-slide-active.swiper-slide {
    opacity: 1;
    transform: scale(1);
}
.trip-hero__slider-picture {
    height: 100%;
}
.trip-hero__slider-img {
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    max-width: 100%;
}
.trip-hero__slider-button {
    width: auto;
    font-size: 1.125rem;
    cursor: pointer;
    line-height: 1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 1rem;
    transition: color 0.3s ease;
}
.trip-hero__slider-button:hover {
    color: var(--color-white);
}
.trip-hero__slider-button:not(:last-child) {
    margin-right: 2.5rem;
}
.trip-hero__slider-button.swiper-slide-thumb-active {
    color: var(--color-white);
}
.trip-hero__slider-button.swiper-slide-thumb-active::before {
    opacity: 1;
    transform: translateY(0);
}
.trip-hero__slider-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.125rem;
    background-color: var(--color-white);
    opacity: 0;
    transform: translateY(0.5rem);
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s ease;
}

.trip-hero__slider-bottom {
    margin-top: 2.5rem;
    padding: 0 1rem;
}

.trip-hero__slider-bottom .swiper-wrapper {
    justify-content: center;
}
@media (max-width: 51.25rem) {
    .trip-hero__slider-bottom .swiper-wrapper {
        justify-content: flex-start;
    }
}

/* ------------------------------------------------------------------- EASY ------------------------------------------------------------------- */
.trip-easy {
    padding: 7.5rem 0;
    overflow: hidden;
}
@media (max-width: 64rem) {
    .trip-easy {
        padding: 5rem 0;
    }
}
@media (max-width: 30rem) {
    .trip-easy {
        padding: 3.5rem 0;
    }
}
.trip-easy__wrapper {
    display: flex;
    gap: 4rem;
}
@media (max-width: 80rem) {
    .trip-easy__wrapper {
        gap: 1rem;
    }
}
@media (max-width: 48rem) {
    .trip-easy__wrapper {
        flex-direction: column;
    }
}
.trip-easy__title {
    font-size: clamp(2.25rem, 3vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}
.trip-easy__title span {
    color: var(--color-blue);
}
.trip-easy__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 7.5rem;

    list-style-type: none;
    padding: 0;
    margin: 3rem 0 0 0 ;
}
@media (max-width: 80rem) {
    .trip-easy__features {
        gap: 2rem;
    }
}
@media (max-width: 33.75rem) {
    .trip-easy__features {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
}
@media (max-width: 30rem) {
    .trip-easy__feature {
        display: flex;
        gap: 0.75rem;
    }
}
.trip-easy__feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray-100);
    flex-shrink: 0;
}
@media (max-width: 30rem) {
    .trip-easy__feature-icon {
        width: 3rem;
        height: 3rem;
    }
    .trip-easy__feature-icon-img {
        max-width: 100%;
        width: 1.875rem;
        height: 1.875rem;
    }
}
.trip-easy__feature-title {
    margin: 1rem 0 0 0;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 600;
}
@media (max-width: 33.75rem) {
    .trip-easy__feature-title {
        margin-top: 0;
        font-size: 1rem;
    }
}
.trip-easy__feature-text {
    margin: 0.5rem 0 0 0;
    font-size: 0.9375rem;
    line-height: 1;
    color: rgba(29, 29, 31, 0.6);
    font-weight: 400;
}
@media (max-width: 33.75rem) {
    .trip-easy__feature-text {
        font-size: 0.875rem;
    }
}

.trip-easy__app-wrapper {
    position: relative;
}
.trip-easy__app-outer {
    position: relative;
    margin-top: auto;
}
.trip-easy__app {
    padding: 5rem 2.5rem 0 2.5rem;
    background-color: var(--color-gray-100);
    border-radius: 1.5rem;
    display: flex;
    overflow: hidden;
}
@media (max-width: 30rem) {
    .trip-easy__app {
        padding: 2.5rem 2rem 0 2rem;
        width: 100%;
        display: block;
    }
}
@media (max-width: 48rem) {
    .trip-easy__app {
        margin: 2.5rem auto 0 auto;
    }
    .trip-easy__app-img {
        max-width: 100%;
    }
}
.trip-easy__app-img {
    display: block;
}
/* ------------------------------------------------------------------- EASY APP Mobile ------------------------------------------------------------------- */
.trip-app::-webkit-scrollbar {
    display: none;
}
.trip-app {
    position: relative;
    border-left: 0.375rem solid #000;
    border-right: 0.375rem solid #000;
    border-top: 0.375rem solid #000;
    border-radius: 3rem 3rem 0 0;
    overflow: hidden;
    background-color: #edf0f2;
    width: 19.375rem;
    max-height: 37.5rem;
    overflow-y: auto;
    margin: 0 auto;
}
@media (max-width: 26.25rem) {
    .trip-app {
        width: 100%;
        max-height: 31.875rem;
    }
}
.trip-app__header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    background-color: #edf0f2;
    border-radius: 0 0 0.5rem 0.5rem;
}
.trip-app__header-icon {
    cursor: pointer;
}
.trip-app__header-logo {
    cursor: pointer;
}
.trip-app__header-burger {
    width: 1.625rem;
    height: 1.625rem;
    position: relative;
    cursor: pointer;
}
.trip-app__header-burger-line {
    position: absolute;
    width: 80%;
    height: 0.125rem;
    background-color: var(--color-blue);
    border-radius: 2.5rem;
    transition: all 0.3s ease;
}
.trip-app__header-burger-line:first-child {
    top: 0.375rem;
    left: 10%;
}
.trip-app__header-burger-line:nth-child(2) {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}
.trip-app__header-burger-line:nth-child(3) {
    top: 1.125rem;
    left: 10%;
}
.trip-app__header-burger:hover .trip-app__header-burger-line:first-child {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.trip-app__header-burger:hover .trip-app__header-burger-line:nth-child(2) {
    opacity: 0;
}
.trip-app__header-burger:hover .trip-app__header-burger-line:last-child {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.trip-app__head {
    padding: 1rem 0.75rem;
    background-color: var(--color-blue);
    color: #fff;
    border-radius: 0.625rem;
}
.trip-app__head-title {
    font-weight: 600;
    line-height: 1;
    font-size: clamp(1.5rem, 2vw, 1.75rem);
}
.trip-app__head-button {
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    border: none;
    width: 100%;
    padding: 0.75rem;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-blue);
    font-weight: 500;
    line-height: 1.2;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
    transition: transform 0.2s ease;
}
.trip-app__head-button:hover {
    transform: scale(1.025);
}
.trip-app__head-button:active {
    transform: scale(0.98);
}
.trip-app__head-tabs::-webkit-scrollbar {
    display: none;
}
.trip-app__head-tabs {
    display: flex;
    align-items: center;
    overflow: auto;
    margin: 2rem -0.75rem 0 -0.75rem;
    padding: 0 0.75rem;
    gap: 1.625rem;
}
.trip-app__head-tab {
    white-space: nowrap;
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.trip-app__head-tab_active {
    border-bottom: 0.125rem solid var(--color-white);
}
.trip-app__head-filters::-webkit-scrollbar {
    display: none;
}
.trip-app__head-filters {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    overflow: auto;
    margin: 1.5rem -0.75rem 0 -0.75rem;
    padding: 0 0.75rem;
}
.trip-app__head-filter {
    background-color: #fff;
    color: #000;
    display: flex;
    gap: 0.125rem;
    align-items: center;
    cursor: pointer;
    min-height: 2rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.2;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}
.trip-app__head-filter img {
    transition: transform 0.2s ease;
}
.trip-app__head-filter:hover {
    transform: scale(1.015);
    background-color: rgba(255, 255, 255, 0.9);
}
.trip-app__head-filter:active {
    transform: scale(0.98);
    background-color: rgba(255, 255, 255, 0.8);
}
.trip-app__head-filter:hover img {
    transform: rotate(180deg);
}
.trip-app__result {
    margin-top: 1.875rem;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trip-app__result-text {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}
.trip-app__result-text sup {
    color: #666666;
}
.trip-app__result-filter {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    transition: transform 0.2s ease;
}
.trip-app__result-filter img {
    transition: transform 0.2s ease;
}
.trip-app__result-filter:hover {
    transform: scale(1.15);
}
.trip-app__result-filter:active {
    transform: scale(0.98);
}
.trip-app__result-filter:hover img {
    transform: rotate(180deg);
}
.trip-app__card {
    margin-top: 0.875rem;
    background-color: var(--color-white);
    padding: 0.75rem;
    border-radius: 0.5rem;
}
.trip-app__card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.trip-app__card-head-title {
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Hyundai", sans-serif;
}
.trip-app__card-head-tag {
    font-size: 0.75rem;
    line-height: 1;
    font-weight: 500;
    background-color: var(--color-blue);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    color: var(--color-white);
}
.trip-app__card-head-filter {
    cursor: pointer;
    margin-left: auto;
    display: flex;
    transition: transform 0.2s ease;
}
.trip-app__card-head-filter:hover {
    transform: scale(1.15) rotate(180deg);
}
.trip-app__card-head-filter:active {
    transform: scale(0.98);
}
.trip-app__card-title {
    margin-top: 0.875rem;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Hyundai", sans-serif;
}
.trip-app__card-date {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 500;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.trip-app__card-item {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    line-height: 1.2;
}
.trip-app__card-item-left {
    color: #666666;
}

.trip-app__card-box {
    background-color: #edf0f2;
    padding: 0.375rem;
    border-radius: 0.375rem;
    margin-top: 0.5rem;
}
.trip-app__card-box + .trip-app__card-box {
    margin-top: 0.75rem;
}
.trip-app__card-info + .trip-app__card-info {
    border-top: 0.0625rem solid #c3c9d1;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}
.trip-app__card-info-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    line-height: 1.2;
    color: #666666;
}
.trip-app__card-info-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.125rem 0;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    gap: 0.5rem;
}
@media (max-width: 30rem) {
    .trip-app__card-info-time img {
        max-width: 5.375rem;
    }
}
.trip-app__card-info-flight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    line-height: 1.2;
}
.trip-app__card-info-flight span:nth-child(2) {
    color: #666666;
}
.trip-app__bag {
    position: absolute;
    bottom: -13%;
    right: -15%;
}

@media (max-width: 48rem) {
    .trip-app__bag {
        right: -3%;
        bottom: -8%;
    }
    .trip-app__bag img {
        max-width: 11.125rem;
    }
}

.trip-slider {
    padding: 7.5rem 0;
    overflow: hidden;
}
@media (max-width: 80rem) {
    .trip-slider {
        padding: 5rem 0;
    }
}
@media (max-width: 30rem) {
    .trip-slider {
        padding: 3.5rem 0;
    }
}
.trip-slider__wrapper {
    position: relative;
}
.trip-slider__wrapper::before {
    content: "";
    position: absolute;
    right: 0;
    top: -10%;
    width: 20%;
    height: 120%;
    background: linear-gradient(
        270deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
}
.trip-slider__wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: -10%;
    width: 15%;
    height: 120%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
}
@media (max-width: 1440px) {
    .trip-slider__wrapper::after,
    .trip-slider__wrapper::before {
        content: none;
    }
}
.trip-slider__title {
    font-size: clamp(1.75rem, 2vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}
.trip-slider__title span {
    color: var(--color-blue);
}
.trip-slider__slider {
    position: relative;
    margin-top: 3.375rem;
    padding-bottom: 4.75rem;
}
@media (max-width: 30rem) {
    .trip-slider__slider {
        padding-bottom: 3rem;
        margin-top: 2rem;
    }
}
.trip-slider__slide {
    border-radius: 1.5rem;
    max-width: 24rem;
    min-height: 30.125rem;
    display: flex;
    cursor: pointer;
    transition: transform 0.3s var(--bezier);
}
.trip-slider__slide .particles-background-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.trip-slider__slide:hover {
    transform: scale(1.05);
}
.trip-slider__slide:hover .trip-slider__slide-button {
    transform: rotate(90deg);
}
@media (max-width: 30rem) {
    .trip-slider__slide {
        max-width: 80%;
        min-height: 22.5rem;
    }
}

.svg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    inset: 0;
}

.trip-slider__slide-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.5rem;
    background-color: var(--color-gray-100);
}

.trip-slider__slide-inner {
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex: 1;
    flex-direction: column;
}
@media (max-width: 30rem) {
    .trip-slider__slide-inner {
        padding: 1rem;
    }
}

.trip-slider__slide-card_blue .trip-slider__slide-inner {
    background: linear-gradient(
        180deg,
        rgba(244, 246, 251, 0) 27.9%,
        #20b2cc 100%
    );
}
.trip-slider__slide-card_orange .trip-slider__slide-inner {
    background: linear-gradient(
        180deg,
        rgba(244, 246, 251, 0) 24.79%,
        #c76d35 100%
    );
}
.trip-slider__slide-card_green .trip-slider__slide-inner {
    background: linear-gradient(
        180deg,
        rgba(244, 246, 251, 0) 24.79%,
        #2ba620 100%
    );
}
.trip-slider__slide-card_purple .trip-slider__slide-inner {
    background: linear-gradient(
        180deg,
        rgba(244, 246, 251, 0) 24.79%,
        #6e8ed4 100%
    );
}
.trip-slider__slide-title {
    position: relative;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1;
    font-weight: 600;
    margin: 0 0 1rem 0;
}
.trip-slider__slide-text {
    position: relative;
    margin: 0;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    line-height: 1;
    color: rgba(29, 29, 31, 0.6);
}
.trip-slider__slide-text + .trip-slider__slide-text {
    margin-top: 0.5rem;
}
.trip-slider__slide-text:last-child {
    margin-bottom: 1rem;
}
.trip-slider__slide-pictures {
    position: relative;
    margin-top: auto;
}
.trip-slider__slide-picture {
    display: flex;
    justify-content: flex-end;
    margin-right: -1.5rem;
    margin-bottom: -1.5rem;
}
@media (max-width: 30rem) {
    .trip-slider__slide-picture img {
        max-width: 12rem;
    }
}
.trip-slider__slide-picture_airplane {
    position: relative;
    z-index: 3;
}
.trip-slider__slide-picture_card {
    position: absolute;
    left: 2%;
    top: 14%;
    z-index: 2;
}
@media (max-width: 30rem) {
    .trip-slider__slide-picture_card img {
        max-width: 4.125rem;
    }
}
.trip-slider__slide-picture_trane {
    position: absolute;
    left: 14%;
    bottom: 26%;
    z-index: 2;
}
@media (max-width: 30rem) {
    .trip-slider__slide-picture_trane img {
        max-width: 5.125rem;
    }
}
.trip-slider__slide-picture_hotel {
    position: relative;
    z-index: 3;
}
.trip-slider__slide-picture_bag {
    position: absolute;
    left: 4%;
    bottom: 14%;
    z-index: 2;
}
.trip-slider__slide-picture_window {
    position: relative;
    z-index: 3;
}
.trip-slider__slide-picture_browser {
    position: absolute;
    left: 2%;
    bottom: 28%;
    z-index: 2;
}
@media (max-width: 30rem) {
    .trip-slider__slide-picture_browser img {
        max-width: 5rem;
    }
}
.trip-slider__slide-picture_invoice {
    position: relative;
    z-index: 3;
}
.trip-slider__slide-picture_pay {
    position: absolute;
    left: 2%;
    top: 24%;
    z-index: 2;
}
@media (max-width: 30rem) {
    .trip-slider__slide-picture_pay img {
        max-width: 7rem;
    }
}
.trip-slider__slide-img {
    display: block;
    height: auto;
}
.trip-slider__slide-button {
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: #fff;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: none;
}

.trip-slider__slide-button span {
    width: 1rem;
    height: 0.125rem;
    background-color: var(--color-blue);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2.5rem;
}
.trip-slider__slide-button span:first-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.trip-slider__next svg,
.trip-slider__prev svg {
    stroke: #1d1d1f;
    transition: stroke 0.2s ease;
}
.trip-slider__next,
.trip-slider__prev {
    position: absolute;
    bottom: 0;
    z-index: 3;
    background-color: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 100%;
    transition:
        background-color 0.2s ease,
        border-radius 0.2s ease,
        transform 0.2s ease;
}

@media (max-width: 30rem) {
    .trip-slider__next,
    .trip-slider__prev {
        width: 2.25rem;
        height: 2.25rem;
    }
}

.trip-slider__next:hover,
.trip-slider__prev:hover {
    background-color: var(--color-blue);
    border-radius: 0.75rem;
}

.trip-slider__next:active,
.trip-slider__prev:active {
    background-color: #1697ad;
    transform: scale(0.95);
}

.trip-slider__next:hover svg,
.trip-slider__prev:hover svg {
    stroke: var(--color-white);
}

.trip-slider__next {
    right: 0;
}
.trip-slider__next svg {
    transform: rotate(180deg);
}
.trip-slider__prev {
    right: 4rem;
}
@media (max-width: 480px) {
    .trip-slider__prev {
        right: 3rem;
    }
}
/* ------------------------------------------------------------------- TEST ------------------------------------------------------------------- */
.trip-test {
    background-color: var(--color-gray-100);
    padding: 7.5rem 0;
}
@media (max-width: 64rem) {
    .trip-test {
        padding: 5rem 0;
    }
}
@media (max-width: 30rem) {
    .trip-test {
        padding: 3.5rem 0;
    }
}
.trip-test__title {
    font-size: clamp(1.75rem, 2.5vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}
@media (max-width: 30rem) {
    .trip-test__title br {
        display: none;
    }
}
.trip-test__title span {
    color: var(--color-blue);
}
.trip-test__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 5rem;
}
@media (max-width: 30rem) {
    .trip-test__wrapper {
        margin-top: 2rem;
    }
}
.trip-test__left {
    position: relative;
}
@media (max-width: 63.9375rem) {
    .trip-test__left {
        display: none;
    }
}
.trip-test__image {
    position: sticky;
    top: 0;
}
.trip-test__right {
    max-width: 36.25rem;
}
@media (max-width: 63.9375rem) {
    .trip-test__right {
        max-width: 100%;
    }
}
.trip-test__box {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
}
@media (max-width: 30rem) {
    .trip-test__box {
        padding: 1rem;
    }
}
.trip-test__box + .trip-test__box {
    margin-top: 1.5rem;
}
@media (max-width: 480px) {
    .trip-test__box + .trip-test__box {
        margin-top: 0.5rem;
    }
}

.trip-test__box_blue {
    color: #fff;
    background-color: var(--color-blue);
}

.trip-test__box-title {
    margin: 0;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.1;
}
.trip-test__box-text {
    margin: 1rem 0 0 0;
    font-size: 0.9375rem;
    line-height: 1.4;
}
@media (max-width: 48rem) {
    .trip-test__box-text {
        font-size: 0.875rem;
    }
}
.trip-test__box-picture {
    margin: 1rem 0 0 0;
}
@media (max-width: 80rem) {
    .trip-test__box-picture img {
        max-width: 100%;
    }
}
@media (max-width: 63.9375rem) {
    .trip-test__box-picture img {
        margin: 0 auto;
        display: block;
    }
}
.trip-test__box-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
@media (max-width: 64rem) {
    .trip-test__box-buttons {
        margin-top: 1rem;
        gap: 0.5rem;
    }
}

.trip-test__box-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3rem;
}

/* ------------------------------------------------------------------- TEAM ------------------------------------------------------------------- */
.trip-team {
    padding: 7.5rem 0;
}
@media (max-width: 64rem) {
    .trip-team {
        padding: 5rem 0;
    }
}
@media (max-width: 30rem) {
    .trip-team {
        padding: 3.5rem 0;
    }
}
.trip-team__title {
    font-size: clamp(1.75rem, 2.5vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}
.trip-team__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}
@media (max-width: 48rem) {
    .trip-team__items {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1rem;
        margin-top: 2rem;
    }
}
.trip-team__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.trip-team__item:hover .trip-team__img {
    transform: scale(0.8);
}
.trip-team__item:hover .trip-team__item-title {
    transform: translateY(-7.5rem);
    opacity: 0;
}
.trip-team__item:hover .trip-team__info {
    transform: translateY(0);
    opacity: 1;
}

.trip-team__item-title {
    margin: 0;
    background-color: var(--color-gray-100);
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
    border-radius: 2.5rem;
    transition:
        transform 0.3s var(--bezier),
        opacity 0.3s var(--bezier);
}
@media (max-width: 30rem) {
    .trip-team__item-title {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
}
.trip-team__picture {
    position: relative;
    z-index: 2;
}
.trip-team__img {
    display: block;
    transition: transform 0.3s var(--bezier);
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.trip-team__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
}
.trip-team__info {
    position: absolute;
    transform: translateY(-7.5rem);
    opacity: 0;
    transition:
        transform 0.3s var(--bezier),
        opacity 0.3s var(--bezier);
}
.trip-team__info-title {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    opacity: 1;
    transition:
        opacity 0.3s var(--bezier),
        opacity 0.3s var(--bezier);
}
.trip-team__info-text {
    color: rgba(29, 29, 31, 0.5);
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0.25rem;
    text-align: center;
}

@media (max-width: 30rem) {
    .trip-team__info-title {
        font-size: 1rem;
    }
    .trip-team__info-text {
        font-size: 0.75rem;
    }
}

/* ------------------------------------------------------------------- FAQ ------------------------------------------------------------------- */
.trip-faq {
    padding: 7.5rem 0;
}
@media (max-width: 64rem) {
    .trip-faq {
        padding: 5rem 0;
    }
}
@media (max-width: 30rem) {
    .trip-faq {
        padding: 3.5rem 0;
    }
}

.trip-faq__title {
    font-size: clamp(1.75rem, 2.5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}
.trip-faq__accordion {
    position: relative;
}
.trip-faq__items {
    margin-top: 2rem;
}
.trip-faq__item {
    padding-bottom: 2rem;
}
.trip-faq__item:last-child {
    border-bottom: 0.0625rem solid #e0e2e6;
}
.trip-faq__item + .trip-faq__item {
    padding-top: 2rem;
    border-top: 0.0625rem solid #e0e2e6;
}
@media (max-width: 30rem) {
    .trip-faq__item {
        padding-bottom: 1rem;
    }
    .trip-faq__item + .trip-faq__item {
        padding-top: 1rem;
    }
}
.trip-faq__accordion-button {
    width: 100%;
    border: none;
    border-radius: 0.75rem;
    padding: 0.375rem 0;
    background-color: transparent;
    text-align: left;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    color: #1d1d1f;
}
.trip-faq__accordion-button[aria-expanded="true"] .trip-faq__accordion-icon {
    background-color: var(--color-blue);
    border-radius: 0.75rem;
}
.trip-faq__accordion-button[aria-expanded="true"] .trip-faq__accordion-icon-line {
    transform: rotate(180deg);
    background-color: var(--color-white);
}
.trip-faq__accordion-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    position: relative;
    background-color: var(--color-gray-100);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-radius 0.3s ease;
    border-radius: 100%;
}
@media (max-width: 30rem) {
    .trip-faq__accordion-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
}
.trip-faq__accordion-icon-line {
    display: block;
    width: 1rem;
    height: 0.125rem;
    background-color: var(--color-blue);
    border-radius: 2.5rem;
    position: absolute;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
.trip-faq__accordion-icon-line:first-child {
    transform: rotate(90deg);
}
.trip-faq__accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 500ms;
}
.trip-faq__accordion-content[aria-hidden="false"] {
    grid-template-rows: 1fr;
}
.trip-faq__accordion-inner {
    opacity: 0;
    overflow: hidden;
    transform: scale(0.8) translateY(2.5rem);
    transform-origin: center;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.trip-faq__accordion-wrap {
    padding-top: 1rem;
}
.trip-faq__accordion-content[aria-hidden="false"] .trip-faq__accordion-inner {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.trip-faq__accordion-inner p {
    margin: 0;
}

/* ------------------------------------------------------------------- CONTACTS ------------------------------------------------------------------- */
.trip-callback {
    padding: 0 0.5rem;
}
.trip-callback .particles-background-canvas {
    position: absolute;
    inset: 0;
}
.trip-callback__body {
    position: relative;
    color: var(--color-white);
    padding: 8.75rem 0;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #20b2cc 11.32%, #208acc 100%);
}
@media (max-width: 64rem) {
    .trip-callback__body {
        padding: 5rem 0;
    }
}
@media (max-width: 48rem) {
    .trip-callback__body {
        padding: 3rem 0;
    }
}

.trip-callback__wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
@media (max-width: 48rem) {
    .trip-callback__wrapper {
        flex-direction: column;
    }
}
.trip-callback__left {
    max-width: 30.375rem;
    display: flex;
    flex-direction: column;
}
.trip-callback__title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}
.trip-callback__text {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 400;
    margin: 1.5rem  0 0 0;
}
@media (max-width: 30rem) {
    .trip-callback__text {
        font-size: 1rem;
        line-height: 1.4;
        margin-top: 1rem;
    }
}
.trip-callback__info {
    margin-top: auto;
}
.trip-callback__info_m {
    display: none;
}
@media (max-width: 48rem) {
    .trip-callback__info_pc {
        display: none;
    }
    .trip-callback__info_m {
        display: block;
        margin-top: 2.5rem;
    }
}

.trip-callback__info-title {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.5rem;
}
@media (max-width: 30rem) {
    .trip-callback__info-title {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
}
.trip-callback__info-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
    gap: 1rem;
}
@media (max-width: 30rem) {
    .trip-callback__info-item {
        font-size: 1.25rem;
    }
}
.trip-callback__info-item:hover {
    text-decoration: underline;
}
.trip-callback__info-item + .trip-callback__info-item {
    margin-top: 1rem;
}
.trip-callback__info-icon {
    width: 2rem;
    height: 2rem;
}
@media (max-width: 30rem) {
    .trip-callback__info-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}
.trip-callback__right {
    max-width: 36.75rem;
}
.trip-callback__form-item {
    position: relative;
}
.trip-callback__form-item + .trip-callback__form-item {
    margin-top: 1.5rem;
}
@media (max-width: 30rem) {
    .trip-callback__form-item + .trip-callback__form-item {
        margin-top: 1rem;
    }
}
.trip-callback__form-label {
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
    display: block;
}
.trip-callback__form-input {
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 2.5rem;
    width: 100%;
    transition: border-radius 0.3s ease;
    outline: none;
}
@media (max-width: 30rem) {
    .trip-callback__form-input {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}
.trip-callback__form-input:focus {
    border-radius: 0.75rem;
}
.trip-callback__form-input::placeholder {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.trip-callback__form-policy {
    margin-top: 1rem;
    font-size: 0.875rem;
}
@media (max-width: 30rem) {
    .trip-callback__form-policy {
        font-size: 0.75rem;
    }
}
.trip-callback__form-policy a {
    color: var(--color-white);
}
.trip-callback__form-policy a:hover {
    text-decoration: none;
}
.trip-callback__form-button {
    margin-top: 2rem;
}

.trip-callback__form-input.error {
    box-shadow: 0 0 0 2px #ff4757;
}

.trip-callback__form-error {
    display: inline-block;
    background-color: #ff4757;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2.5rem;
    position: absolute;
    bottom: -1.125rem;
    left: 1rem;
}

.trip-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
    padding-top: 7.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 64rem) {
    .trip-footer {
        padding-top: 5rem;
    }
}
@media (max-width: 30rem) {
    .trip-footer {
        padding-top: 3.5rem;
    }
}
.trip-footer__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.5rem;
}
@media (max-width: 38.75rem) {
    .trip-footer__wrapper {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}
.trip-footer__left {
    display: flex;
    gap: 2.625rem;
    margin-right: 1rem;
}
@media (max-width: 48rem) {
    .trip-footer__left {
        gap: 0.5rem;
        flex-direction: column;
    }
}
.trip-footer__link {
    text-decoration: none;
    color: var(--color-black);
}
@media (max-width: 30rem) {
    .trip-footer__link {
        font-size: 0.875rem;
    }
}
.trip-footer__link:hover {
    text-decoration: underline;
}
.trip-footer__copy {
    font-size: 1.125rem;
    font-weight: 500;
}
@media (max-width: 30rem) {
    .trip-footer__copy {
        font-size: 0.875rem;
    }
}
.trip-footer__copy-link {
    color: var(--color-blue);
}
.trip-footer__copy-link:hover {
    text-decoration: none;
}
.trip-footer__logo {
    text-align: center;
}
.trip-footer__img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.trip-footer__img_pc {
    display: block;
}
.trip-footer__img_m {
    display: none;
}
@media (max-width: 48rem) {
    .trip-footer__img_pc {
        display: none;
    }
    .trip-footer__img_m {
        display: block;
    }
}
