/* Dung cho cac trang khong can keo menu */
header#header {
    background: #fff;
}
.header--gradient .header__menu > .menu-item > .menu-link {
    color: #207d57;
}
img.logoFixed {
    display: block !important;
}
.header__main {
    padding-top: 20px !important;
    border-bottom: 1px solid #207d57;
}
.header__logo img.logoRelative {
    display: none;
}
.header.fixed .header__top {
    margin-top: 0px !important;
}
.header.fixed .header__main .header__tools {
    margin-bottom: 16px;
}

.section-title {
    margin: 50px 0px;
    color: var(--mLOGO, #207d57);
    font-size: 32px;
    font-weight: 700;
}

.event-details-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    margin: 20px auto;
    border: 1px solid #e1e1e1;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-info-item:first-child {
    transform: translateX(70%);
}
.event-info-item .info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-info-item .info-label {
    font-weight: 700;
    color: #207d57;
    font-size: 18px;
}

.event-info-item .info-value {
    color: #222;
    font-size: 18px;
    font-weight: 400;
}

.info-separator {
    width: 1px;
    height: 80px;
    background-color: #207d57;
    margin: 0 20px;
}

.register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 9rem;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    border: 1px solid transparent;
    border-radius: 9rem;
    background: linear-gradient(transparent, transparent) padding-box,
        linear-gradient(to right, #1c7d56, #70bf54) border-box;
    color: white;
    background-clip: padding-box, border-box;
    transition: unset;
    width: 200px;
}

.register-button:hover {
    background: linear-gradient(to right, #218838, #1e7e34);
    transform: translateY(-2px);
}

/* Begin: Slick card*/
.card-slider {
    position: relative;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
}

.card-slider .slick-slide {
    margin: 10px 30px;
    box-sizing: border-box;
    height: auto;
}

.card-slider .slick-arrow {
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    background: #fff;
}

.card-slider .slick-prev {
    left: 20px !important;
    right: auto !important;
    z-index: 1;
}

.card-slider .slick-next {
    right: 20px !important;
    left: auto !important;
    z-index: 1;
}
/* End: Slick card*/

.card {
    flex: 1 1 calc(25% - 20px);
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.card-content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 10px;
}

.card-title {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    color: #207d57;
}

.card-view {
    font-size: 16px;
}

.card-view-onl,
.card-view-date {
    color: #207d57;
    font-weight: 700;
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    align-self: stretch;
    height: auto;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .card-image img:hover {
    transform: scale(1.1);
} */

.viewmore {
    text-align: center;
    margin: 50px 0px;
}

.viewmore a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 9rem;
    color: #207d57;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    border: 1px solid transparent;
    border-radius: 9rem;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, #1c7d56, #70bf54) border-box;
    background-clip: padding-box, border-box;
    transition: unset;
    width: 140px;
}

.viewmore a:hover {
    background: linear-gradient(transparent, transparent) padding-box,
        linear-gradient(to right, #1c7d56, #70bf54) border-box;
    color: white;
}
@media (max-width: 1440px) {
    .event-info-item:first-child {
        transform: translateX(30%);
    }
}
@media (max-width: 1200px) {
    .event-info-item:first-child {
        transform: translateX(15%);
    }
}
@media (max-width: 1080px) {
    .event-info-item:first-child {
        transform: translateX(0%);
    }
}
@media (max-width: 768px) {
    .event-details-card {
        padding: 15px;
        gap: 15px;
    }
    .event-info-item .info-value,
    .info-label {
        font-size: 15px;
    }

    .info-separator {
        display: none;
    }

    .register-button {
        width: 190px;
        margin-top: 10px;
    }

    .section-title {
        margin: 30px 0px;
        font-size: 27px;
    }

    .viewmore {
        margin: 30px 0px;
    }
}

@media (max-width: 576px) {
    .event-details-card {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }
}
