/**
* LASTEST SECTION
**/

.lastest-section .lastest-grid {
    display: grid;
    grid-template-columns: 1.9fr 1.1fr;
    gap: 22px;
}

.lastest-section .lastest-main .card {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0px 1px 4px 0px var(--boxshadow-color);
    overflow: hidden;
    transition: all 0.3s linear;
}

.lastest-section .lastest-main .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lastest-section .lastest-main .card-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
}

.lastest-section .lastest-main .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.lastest-section .lastest-main .card:hover .card-img img {
    transform: scale(1.04);
}

.lastest-section .lastest-main .card-body {
    padding: 32px 32px;
}

.lastest-section .lastest-main .card-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.3s linear;
}

.lastest-section .lastest-main .card:hover .card-title {
    color: var(--primary-color);
}

.lastest-section .lastest-main .card-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--desc-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lastest-section .lastest-main .card-footer {
    padding-block: 16px 0;
    padding-inline: 0;
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lastest-section .lastest-main .author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lastest-section .lastest-main .name,
.lastest-section .lastest-main .date {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--desc-color);
}

.lastest-section .lastest-main .avatar img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.lastest-section .lastest-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.lastest-section .lastest-item {
    display: flex;
    gap: 19px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0px 1px 4px 0px var(--boxshadow-color);
    overflow: hidden;
    transition: all 0.3s linear;
}

.lastest-section .lastest-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lastest-section .lastest-item .thumbnail {
    width: 208px;
    height: 194px;
    overflow: hidden;
}

.lastest-section .lastest-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.lastest-section .lastest-item:hover .thumbnail img {
    transform: scale(1.04);
}

.lastest-section .lastest-item .content {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 14px;
}

.lastest-section .lastest-item .title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s linear;
}

.lastest-section .lastest-item:hover .title {
    color: var(--primary-color);
}

.lastest-section .lastest-item .author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lastest-section .lastest-item .author .avatar img {
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 4px;
}

.lastest-section .lastest-item .author .name,
.lastest-section .lastest-item .date {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: var(--desc-color);
}

.lastest-section .lastest-item .wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 8px;
    color: var(--desc-color);
}


/**
* PLACE SECTION
**/

.place-section {
    overflow-x: hidden;
}

.place-section .heading-section {
    margin-top: 20px;
}

/* .place-section .place-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 34px;
} */

.place-section .slick-slide {
    margin: 0 16px;
}

.place-section .slick-list {
    margin: 0 -16px;
}

.place-section .place-item {
    position: relative;
    width: 100%;
    height: 220px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    transition: all 0.3s linear;
}

.place-section .place-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.place-section .place-item::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 7, 60, 0) 0%, #05073ca0 100%);
    /* opacity: 0;
    visibility: hidden; */
    transition: all 0.3s linear;
}

.place-section .place-item:hover::after {
    background: linear-gradient(180deg, rgba(5, 7, 60, 0) 0%, #05073cde 100%);
    opacity: 1;
    visibility: visible;
}

.place-section .place-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.place-section .place-item:hover img {
    transform: scale(1.04);
}

.place-section .place-item .content {
    position: relative;
    z-index: 1;
    padding: 20px 40px;
    text-align: center;
}

.place-section .place-item .content .title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.place-section .place-item .content .amount {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #ffffff;
}

/**
* WELLNESS SECTION
**/

.wellness-section {
    overflow-x: hidden;
}

.wellness-section .wellness-item {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0px 1px 4px 0px var(--boxshadow-color);
    overflow: hidden;
    transition: all 0.3s linear;
}

.wellness-section .wellness-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wellness-section .wellness-item .thumbnail {
    width: 222px;
    height: 287px;
    overflow: hidden;
    margin-top: 36px;
    border-top-left-radius: 16px;
}

.wellness-section .wellness-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.wellness-section .wellness-item:hover .thumbnail img {
    transform: scale(1.04);
}


.wellness-section .wellness-item .content {
    flex: 1 0 0;
    padding: 50px 36px;
    width: 340px;
}

.wellness-section .slider-wrapper {
    margin-right: calc(-1 * (100vw - 100%));
    padding-right: calc(100vw - 100%);
    overflow: visible;
    position: relative;
}

.wellness-section .slider-wrapper::before {
    display: block;
    content: "";
    position: absolute;
    top: -5px;
    right: calc(100% + 12px);
    width: 300px;
    height: 105%;
    background: white;
    z-index: 2;
}

.wellness-section .slick-list {
    overflow: visible !important;
}

.wellness-section .slick-slide {
    margin: 0 11px;
}

.wellness-section .slick-list {
    margin: 0 -11px;
}

.wellness-section .wellness-item .icon {
    width: 64px;
    height: 64px;
    background: #F5F3FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.wellness-section .wellness-item.is-red .icon {
    background: #E4626F1A;
}

.wellness-section .wellness-item .icon svg,
.wellness-section .wellness-item .icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.wellness-section .wellness-item .title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.3s linear;
}

.wellness-section .wellness-item:hover .title {
    color: var(--primary-color);
}

.wellness-section .wellness-item .desc {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--desc-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/**
* DISCOVER SECTION
**/

.discover-section .discover-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.discover-section .discover-item .card {
    box-shadow: none;
    border: none;
    gap: 18px;
}

.discover-section .discover-item:nth-child(even) .card {
    flex-direction: column-reverse;
}

.discover-section .discover-item .card-img {
    border-radius: 8px;
    overflow: hidden;
    height: 246px;
    width: 100%;
}

.discover-section .discover-item .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.discover-section .discover-item:hover .card-img img {
    transform: scale(1.04);
}


.discover-section .discover-item .card-body {
    padding: 0;
}

.discover-section .discover-item .card-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--title-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    transition: all 0.3s linear;
}

.discover-section .discover-item:hover .card-title {
    color: var(--primary-color);
}

.discover-section .discover-item .card-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--desc-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/**
* SKILL SECTION
**/

.skill-section .skill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


.skill-section .skill-item .card {
    position: relative;
    border-radius: 0;
    border: 0;
    padding-bottom: 144px;
}

.skill-section .skill-item .card-img {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 314px;
    border: 1px solid var(--border-color);
    transition: all 0.3s linear;
}

.skill-section .skill-item .card:hover .card-img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.skill-section .skill-item .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.skill-section .skill-item .card:hover .card-img img {
    transform: scale(1.04);
}

.skill-section .skill-item .card-body {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    z-index: 1;
    transition: all 0.3s linear;
}

.skill-section .skill-item .card:hover .card-body {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.skill-section .skill-item .card-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--title-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
    transition: all 0.3s linear;
}

.skill-section .skill-item .card:hover .card-title {
    color: var(--primary-color);
}

.skill-section .skill-item .card-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--desc-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}

.skill-section .skill-item .card-link {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s linear;
}

.skill-section .skill-item .card .card-link img {
    width: 15px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s linear;
}

.skill-section .skill-item .card:hover .card-link img {
    transform: translateX(6px);
}

@media screen and (max-width: 1300px) {
    /**
    * WELLNESS SECTION
    **/

    .wellness-section .wellness-item .content {
        padding: 24px 36px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .wellness-section .wellness-item .thumbnail {
        width: 200px;
        height: 240px;
    }

    .wellness-section .wellness-item .desc {
        font-size: 16px;
        line-height: 22px;
    }

    .wellness-section .wellness-item .title {
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 1200px) {

    /**
    * LASTEST SECTION
    **/

    .lastest-section .lastest-grid {
        grid-template-columns: 1.8fr 1.2fr;
    }

    .lastest-section .lastest-main .card-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 6px;
    }

    .lastest-section .lastest-main .card-body {
        padding: 24px;
    }

    .lastest-section .lastest-item .thumbnail {
        width: 164px;
        height: 182px;
    }

    /**
    * WELLNESS SECTION
    **/

    .wellness-section .wellness-item .content {
        padding: 24px 24px;
    }

    .wellness-section .wellness-item .desc {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .wellness-section .wellness-item .thumbnail {
        width: 160px;
        height: 210px;
    }

    .wellness-section .wellness-item .icon {
        width: 52px;
        height: 52px;
    }

}

@media screen and (max-width: 991px) {

    /**
    * LASTEST SECTION
    **/

    .lastest-section {
        padding-top: 48px;
    }

    .lastest-section .lastest-grid {
        grid-template-columns: 1fr;
    }

    .lastest-section .lastest-item .thumbnail {
        width: 208px;
        height: 194px;
    }

    .lastest-section .lastest-item .title {
        font-size: 20px;
        line-height: 28px;
    }

    .lastest-section .lastest-item .content {
        padding-right: 32px;
    }

    .lastest-section .lastest-item .author .name,
    .lastest-section .lastest-item .date {
        font-size: 14px;
        line-height: 18px;
    }

    /**
    * WELLNESS SECTION
    **/

    .wellness-section .wellness-item .thumbnail {
        width: 210px;
        height: 210px;
    }

    .wellness-section .wellness-item .content {
        padding: 24px 36px;
    }

    /**
    * SKILL SECTION
    **/
    .skill-section .skill-item .card {
        padding-bottom: 120px;
    }

    .skill-section .skill-item .card-body {
        width: 90%;
        padding: 18px;
    }

    .skill-section .skill-item .card-img {
        height: 220px;
    }

    .skill-section .skill-item .card-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 6px;
    }

    /**
    * DISCOVER SECTION
    **/

    .discover-section .discover-item .card {
        gap: 12px;
    }

    .discover-section .discover-item .card-img {
        height: 160px;
    }

    .discover-section .discover-item .card-img {
        line-height: 26px;
        margin-bottom: 4px;
    }

    /**
    * PLACE SECTION
    **/

    .place-section {
        overflow-x: hidden;
    }
}

@media screen and (max-width: 768px) {
    .banner-section .banner-container {
        height: 200px;
    }
    
    .banner-section .banner-content .title {
        font-size: 26px;
        line-height: 32px;
        font-weight: 700;
    }

    .banner-section .banner-content .desc {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }

    /**
    * LASTEST SECTION
    **/

    .lastest-section .lastest-main .card-img {
        width: 100%;
        height: 220px;
    }

    .lastest-section .lastest-item .thumbnail {
        width: 120px;
        height: 160px;
    }

    .lastest-section .lastest-item .title {
        font-size: 16px;
        line-height: 23px;
    }

    .lastest-section .lastest-item .content {
        padding-right: 24px;
    }

    .lastest-section .lastest-item .author .name, .lastest-section .lastest-item .date {
        font-size: 12px;
        line-height: 18px;
    }

    /**
    * WELLNESS SECTION
    **/

    .wellness-section {
        overflow-x: hidden;
    }

    .wellness-section .wellness-item .content {
        padding: 12px 18px;
    }

    .wellness-section .wellness-item .thumbnail {
        width: 120px;
        height: 160px;
    }

    .wellness-section .wellness-item .desc {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    /**
    * SKILL SECTION
    **/

    .skill-section .skill-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 32px;
    }

    /**
    * DISCOVER SECTION
    **/

    .discover-section .discover-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 32px;
    }

    .discover-section .discover-item:nth-child(even) .card {
        flex-direction: column;
    }
}