/* =================== HEADER =================== */
header {
    padding: 18px 0;
}

header {
    position: relative;
    width: 100%;
    z-index: 99;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
    z-index: 999;
}

header.sticky.hide {
    animation: slideUp 0.5s ease-out;
}

/* Hiệu ứng trượt nhẹ */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

.header-wrapper {
    gap: 50px;
}

.header-logo a {
    height: 48px;
}

.header-logo a img {
    height: inherit;
}

.header-menu {
    flex: 1;
}

.header-menu>ul {
    display: flex;
    justify-content: space-evenly;
}

.header-menu ul li {
    position: relative;
}

.submenu-list ul li {
    position: relative;
}

.header-menu__link,
.submenu__link,
.menu-level-3__link {
    position: relative;
    font-weight: 600;
    font-size: 15px;
}

.header-menu__link,
.submenu__link,
.submenu-list ul li i,
.menu-level-3__link,
.header-options a {
    color: var(--black-color);
    transition: color 0.3s ease;
}

.selection-dropdown ul li a::after,
.header-menu__link::after,
.submenu__link::after,
.menu-level-3__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--cyan-color);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.selection-dropdown ul li a::after {
    background: var(--white-color)
}

.selection-dropdown ul li:hover a::after,
.header-menu__link:hover::after,
.submenu-list ul li:hover>.submenu__link::after,
.menu-level-3 ul li:hover>.menu-level-3__link::after {
    width: 100%;
}

.header-menu__link.active,
.header-menu__link:hover,
.submenu__link.active,
.submenu-list ul li:hover .submenu__link,
.submenu__link.active,
.submenu-list ul li:hover i,
.menu-level-3 ul li:hover .menu-level-3__link,
.menu-level-3__link.active,
.header-options a:hover {
    color: var(--cyan-color);
}

.submenu__link.link-title.active {
    text-transform: uppercase;
    font-weight: 600;
}

.submenu-list.grid-col-4 {
    padding-left: 50px;
    padding-right: 50px;
    align-items: unset;
    min-width: 1260px;
    left: -945.604px;
}

.submenu-list.shop {
    text-align: right;
}

.submenu-list ul li i.arrow-left,
.submenu-list ul li i.arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.submenu-list ul li i.arrow-left {
    left: 32px;
}

.submenu-list ul li i.arrow-right {
    right: 25px;
}

.header-options {
    display: inline-flex;
    gap: 20px;
}

.header-options a {
    display: contents;
}

.header-options a i {
    font-size: 18px;
}

.icon-search {
    transform: rotate(90deg);
}


/* =================== BANNER AND SLIDER =================== */
.swiper-banner .swiper-wrapper .swiper-slide {
    padding: 90px 0 !important;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 50%;
    transition: background-color 0.3s ease-out;
}

.swiper-button-prev {
    left: 20px !important;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    color: var(--cyan-color) !important;
    transition: color 0.3s ease-out;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--cyan-color) !important;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: var(--white-color) !important;
}

.slide-1 .slide-bg,
.slide-2 .slide-bg {
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
}

.title,
.subtitle,
.desc {
    display: block;
    color: var(--white-color);
    text-align: center;
    user-select: none;
}

.subtitle {
    font-family: Satisfy, cursive;
    font-size: 48px;
    line-height: 58px;
}

.title {
    font-size: 118px;
    line-height: 124px;
}

.desc {
    font-size: 18px;
    line-height: 24px;
    padding: 0 108px;
    margin: 30px 0 0;
}

.content {
    padding: 0 100px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
}

/* Khi slide active → zoom lên */
.swiper-slide-active .slide-bg {
    transform: scale(1.15);
}

.content>* {
    opacity: 0;
    transform: translateY(30px);
}

.swiper-slide-active .subtitle {
    animation: fadeUp 0.6s ease forwards;
}

.swiper-slide-active .title {
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.swiper-slide-active .desc {
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-pagination {
    margin: 16px 0 50px;
}

.slider-pagination-wrapper {
    padding: 0 0 60px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    height: 12px !important;
    width: 12px !important;
    margin: 0 8px !important;
    background: #3eced2 !important;
}

.swiper-pagination-clickable .swiper-pagination-bullet.active,
.swiper-pagination-clickable .swiper-pagination-bullet:hover {
    background: #3fd0d4 !important;
}

.slider-pagination-item {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.pagination-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pagination-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out,
        -webkit-transform 0.5s ease-in-out;
}

.pagination-image:hover img {
    transform: scale(1.03);
}

.pagination-schedule {
    background: var(--cyan-color);
    color: var(--white-color);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    cursor: default;
}

.pagination-schedule span,
.pagination-schedule p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 14px;
}

.pagination-schedule a {
    color: var(--white-color);
    position: relative;
    display: inline;
}

.pagination-schedule a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white-color);
    transition: all 0.3s ease-out;
}

.pagination-schedule p {
    cursor: pointer;
}

.pagination-schedule p:hover a::after {
    width: 100%;
}

.pagination-text {
    padding: 20px;
}

.pagination-text a {
    width: fit-content;
    color: var(--black-color);
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.272727272727273em;
    letter-spacing: -.05em;
    transition: color 0.3s ease;
}

.pagination-text a:hover {
    color: var(--cyan-color);
}

.pagination-text span {
    color: #505050;
}

.price-and-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.price-and-rating i {
    margin-right: 6px;
}


/* =================== WINTER SPORTS =================== */
.winter-sports-section {
    text-align: center;
    padding: 50px 0 100px;
}

.winter-sports-section .winter-resort__winter-resort {
    margin: 0 0 48px;
}

.winter-sports-video {
    margin: 0 auto;
    width: 80%;
    height: 400px;
    position: relative;
    box-shadow: 5px 8px 13.92px 2.08px rgba(0, 0, 0, .05);
}

.winter-sports-video a {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.winter-sports-video a span {
    position: relative;
    display: block;
    top: 50%;
    transform: translateY(-50%);
}

.winter-sports-video a span img {
    transition: transform 0.3s ease;
}

.winter-sports-video a:hover span img {
    transform: scale(1.05);
}

.sports-video__wrapper,
.sports-video__wrapper img {
    width: 100%;
    height: 100%;
}

.winter-sports-section .winter-text p {
    margin: 30px 0 0;
}

.winter-sports-section .winter-text .btn-view-more {
    margin: 40px 0 0;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--cyan-color);
    padding: 18px 66px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.winter-sports-section .winter-text .btn-view-more:hover {
    background-color: #23a9af;
}


/* =================== PARALLAX SECTION =================== */
.parallax-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-attachment: fixed;
    position: static;
    text-align: center;
    padding: 108px 0 107px;
    margin: 0 -30px;
}

.parallax-grid {
    margin: 50px 0 0;
    padding: 0 0 80px !important;
}

.parallax-top {
    width: 1100px;
    margin: 0 auto;
}

.parallax-column-inner {
    width: 60%;
    margin: 0 auto;
    padding: 0 15px;
    color: var(--white-color);
}

.parallax-column-inner h1 {
    font-size: 65px;
    line-height: 1.092307692307692em;
    font-weight: 600;
    letter-spacing: -.05em;
}

.parallax-column-inner p {
    font-size: 17px;
    margin: 12px 0 0;
}

.parallax-item {
    background: var(--white-color);
    border-radius: 10px;
    padding: 30px;
}

.parallax-grid-layout {
    gap: 20px;
    align-items: unset;
    text-align: left;
}

.parallax-info a {
    font-size: 22px;
    font-weight: 600;
    color: var(--black-color);
    transition: color 0.3s ease;
}

.parallax-info a:hover {
    color: var(--cyan-color);
}

.parallax-info span i {
    color: var(--cyan-color);
}

.parallax-info p {
    margin: 10px 0 0;
    color: #505050;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.parallax-info .evaluated-by {
    margin: 11px 0 0;
    font-weight: 600;
    color: var(--black-color);
}

.swiper-pagination.parallax-pagination {}


/* =================== WINTER HOLIDAYS =================== */
.winter-holidays-section,
.winter-holiday__item {
    text-align: center;
}

.winter-holidays-section {
    padding: 110px 0 150px;
}

.winter-holiday__wrapper {
    margin: 50px 0 0;
    padding: 0 70px;
    gap: 20px;
}

.winter-holiday__item {
    padding: 0 22px;
}

.winter-holiday__text h4 {
    margin: 27px 0 0;
    color: var(--black-color);
    font-size: 18px;
    line-height: 1.333333333333333em;
    font-weight: 600;
}

.winter-holiday__text span {
    display: block;
    color: #505050;
    font-size: 14px;
    margin: 11px 0 0;
}

.winter-holiday__item img {
    transition: transform 0.3s ease;
}

.winter-holiday__item img:hover {
    transform: translateY(-5px);
}


/* =================== PERSON AND COUNT =================== */
.person-item {
    position: relative;
}

.person-image,
.person-image img {
    width: 100%;
    height: 100%;
}

.bottom-slide-in {
    position: absolute;
    left: 0;
    bottom: 8px;
    padding: 20px;
    width: 100%;
    background: var(--cyan-color);
    color: var(--white-color);
    text-align: center;
    transform: translateY(100%);
    transition: all 0.35s ease-out;
}

.bottom-slide-in h2 {
    font-size: 18px;
}

.bottom-slide-in span {
    margin: 11px 0 0;
    font-size: inherit;
}

.person-item:hover .bottom-slide-in {
    transform: translateY(0);
}

.person-social {
    margin: 13px 0 0;
}

.person-social-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.person-social-wrapper a {
    font-size: 16px;
    color: var(--white-color);
}

.person-social-wrapper a:hover {
    color: #3abdc1;
}

.count-section {
    position: relative;
    background: #3abdc1;
    text-align: center;
    color: var(--white-color);
    padding: 72px 50px;
}

.count-section::before {
    content: "";
    position: absolute;
    top: -8px;
    width: 100%;
    height: 8px;
    background: inherit;
    z-index: 1;
}

.count-item h3 {
    font-size: 65px;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: -.05em;
}

.count-item span {
    font-size: 18px;
    font-weight: 600;
}


/* =================== WINTER RESORTS =================== */
.winter-resort-section {
    text-align: center;
    padding: 105px 0 170px;
}

.winter-text {
    padding: 0 120px;
}

.winter-resort__choose-your {
    font-family: Satisfy, cursive;
    color: #3fd0d4;
    line-height: 1.8em;
    font-size: 33px;
}

.winter-resort__winter-resort {
    font-weight: 600;
    letter-spacing: -.05em;
    font-size: 65px;
    color: var(--black-color);
    line-height: 1.092307692307692em;
}

.winter-text p {
    font-size: 17px;
    margin: 12px auto 0;
    width: 60%;
    color: #505050;
}

.winter-resort__image-wrapper {
    gap: 40px;
    padding: 0 50px;
    margin: 60px 0 0;
}

.winter-resort__item {
    position: relative;
    border-radius: 100%;
    height: 100%;
}

.winter-resort__image-group {
    border-radius: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.winter-resort__image-group img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out,
        -webkit-transform 0.5s ease-in-out;
}

.winter-resort__image-group:hover img {
    transform: translateZ(0) scale(1.05);
}

.winter-overlay {
    font-family: Satisfy, cursive;
    color: var(--white-color);
    font-size: 48px;
    display: inline-grid;
    align-items: center;
}

.winter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    border-radius: inherit;
}

.winter-resort__item span {
    position: absolute;
    font-size: 13px;
    color: var(--white-color);
    background-color: var(--cyan-color);
    border-radius: 50%;
    padding: 16px;
    line-height: 1;
    cursor: default;
    top: 0;
    right: 0;
    transform: translate(-92%, 40%);
}

.winter-resort__item span i {
    display: inline;
}


/* =================== FOOTER =================== */
.footer-below {
    background-color: var(--cyan-color);
    width: 100%;
    padding: 40px 0;
}

.footer-below h2 {
    font-size: 22px;
    color: var(--white-color);
}

.footer-below a {
    text-transform: uppercase;
    color: var(--black-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
    padding: 18px 66px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.footer-below .d-flex {
    justify-content: space-between;
    padding: 0 50px;
}

.footer-below a:hover {
    color: var(--white-color);
    background-color: rgb(35, 169, 175);
}

.footer {
    background: var(--black-color);
}

.footer-grid-layout {
    padding: 80px 50px;
    align-items: unset;
    gap: 30px;
}

.footer-col {}

.footer-logo {
    line-height: 3rem;
}

.footer-logo img {
    max-width: 100%;
}

.footer-col p {
    font-size: 17px;
    line-height: 1.64em;
    font-weight: 400;
    color: #a9a9a9;
    margin: 0 0 17px 0;
}

.footer-link {
    font-size: 14px;
    line-height: 2rem;
    color: var(--white-color);
    transition: all 0.3s linear 0s;
}

.footer-link:hover {
    color: var(--cyan-color);
}

.footer-link i {
    padding: 0 10px 0 0;
}

.footer-heading {
    color: var(--white-color);
    margin: 0 0 23px;
    font-size: 18px;
    line-height: 1.333333333333333em;
    font-weight: 600;
}

.recent-post-row {
    margin: 0 0 20px;
}

.recent-post-title {
    color: #a9a9a9;
}

.recent-post-time {
    color: var(--white-color);
}

.recent-post-title,
.recent-post-time {
    line-height: 1.9;
    transition: color 0.3s linear;
}

.recent-post-title:hover,
.recent-post-time:hover {
    color: var(--cyan-color);
}

.footer-col span {
    color: #a9a9a9;
}

.subcribe-group {
    margin: 30px 0 0;
}

.subcribe-group-input {
    background: rgba(255, 255, 255, 0.25);
    margin: 0 0 10px;
    width: 100%;
    height: 45px;
    display: inline-grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.subcribe-group-input i {
    margin-left: 16px;
}

.subcribe-group-input input {
    height: 100%;
    font-size: inherit;
    background: rgba(255, 255, 255, 0);
}

.subcribe-group-input i,
.subcribe-group-input input,
.subcribe-group-input input::placeholder {
    color: var(--white-color);
}

.subcribe-group button {
    width: 100%;
    padding: 14px 42px;
    background: var(--cyan-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s linear;
}

.subcribe-group button:hover {
    background: var(--white-color);
    color: var(--black-color);
}

.footer-copyright {
    text-align: center;
    color: #a9a9a9;
    padding: 40px 0 30px;
}

.footer-copyright p {
    font-size: 13px;
}

.footer-copyright a {
    color: var(--white-color);
    transition: color 0.3s linear 0s;
}

.footer-copyright a:hover {
    color: var(--cyan-color);
}

.return-home {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.return-home a {
    color: var(--cyan-color);
    background-color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 100%;
    box-shadow: 4px 6px 15px 0 rgba(0, 0, 0, .08);
    transition: all 0.2s ease-in-out;
}

.return-home a:hover {
    color: var(--white-color);
    background-color: var(--cyan-color);
}

.return-home a span {
    display: contents;
}

.return-home.hide {
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.return-home.hide.show {
    visibility: visible;
    opacity: 1;
}



/* ===================== OTHERS ==================== */
.hidden-menu-left {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--white-color);
    text-align: center;
    width: 460px;
    height: 100%;
    min-height: 100%;
    padding: 80px 40px 40px;
    box-shadow: 5px 8px 13.92px 2.08px rgba(0, 0, 0, .1);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(.77, 0, .175, 1);
}

.hidden-menu-left.open {
    transform: translateX(0);
}

.hidden-menu-left::-webkit-scrollbar {
    display: none;
}

.btn-close {
    position: absolute;
    top: 25px;
    right: 40px;
    display: block;
    z-index: 999;
    color: var(--black-color);
    transition: color 0.25s ease 0s;
}

.btn-close svg {
    fill: currentColor;
    stroke: currentColor;
    height: 16px;
    margin-right: -20px;
}

.btn-close:hover {
    color: var(--cyan-color);
}

.hidden-menu__logo {
    margin: 0 0 20px;
}

.hidden-menu__logo img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.hidden-menu__logo.first img {
    width: 204px;
}

.hidden-menu__logo.second img {
    width: 282px;
}

.hidden-menu__iframe {
    margin: 48px 0;
    box-shadow: 5px 8px 13.92px 2.08px rgba(0, 0, 0, .05);
}

.hidden-search-group {
    margin: 46px 0;
    padding: 0 40px;
}

.hidden-search-group h2,
.follow-me-group h2 {
    margin: 0 0 25px;
    font-weight: 600;
    font-size: 18px;
    color: var(--black-color);
}

.hidden-search-group__wrap {
    background: #f8f8f8;
    position: relative;
}

.hidden-search-group__wrap input {
    background: unset;
    width: 100%;
    padding: 16px 20px;
}

.hidden-search-group__wrap input,
.hidden-search-group__wrap input::placeholder {
    color: #848484;
}

.hidden-search-group__wrap a {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--cyan-color);
    color: var(--white-color);
    height: 100%;
    width: 18%;
    display: inline-grid;
    transition: background-color 0.3s ease;
}

.hidden-search-group__wrap a:hover {
    background-color: #3abdc1;
}

.hidden-search-group__wrap a i {
    transform: rotate(90deg);
}

.follow-me__socials {
    justify-content: center;
    gap: 10px;
}

.follow-me__socials a {
    background-color: var(--cyan-color);
    display: inline-grid;
    padding: 16px;
    border-radius: 50%;
    color: var(--white-color);
    transition: background-color 0.3s ease;
}


.follow-me__socials a:hover {
    background-color: #3abdc1;
}

.follow-me__socials a i {
    display: inline;
    font-size: 15px;
}