:root{
    scroll-behavior: unset;
}
@font-face {
    font-family: 'OpenSans';
    src: url(../fonts/OpenSans.ttf);
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        top: -100px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}
body{
    font-size: 16px;
    font-family: 'OpenSans';
}
img{
    width: 100%;
    height: auto;
}
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    z-index: 9997;
}
.header .logo{
    width: 120px;
}
.txt-justify.div-gioithieu.fade-anim ul {
    list-style: disc;
    margin-left: 50px;
    margin-bottom: 20px;
}
.header-wrap{
    display: grid;
    grid-template-columns: 1fr 8fr 1fr;
    align-items: center;
}
.nav{
    justify-content: center;
}
hr{
    margin: 0;
}
.nav-link{
    text-transform: capitalize;
    padding: 0 30px;
    color: #E76DA8;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    text-shadow: 0 1px 0 #222;
    transition: all .2s ease-in-out;
}
.header.fixed{
    background: #fff;
    animation-name: fadeInUp;
    animation-duration: 1s;
    box-shadow: rgba(149, 157, 165, .2) 0px 8px 24px;
}
.nav-link:hover,.nav-link.active{
    color: #000;
}
.banner img{
    height: 100%;
    object-fit: cover;
}
h2.title{
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}
.section-title{
    margin-bottom: 40px;
}
.section{
    padding: 60px 0;
}
.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
}
.locations{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}
.locations .item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #d9d9d9;
    cursor: pointer;
}
.locations .item span{
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
}
.locations .item:hover,.locations .item.active{
    border-color: #E76DA8;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.locations img{
    width: 100px;
}
.dates{
    border-radius: 12px;
    border: 1px solid #d9d9d9;
}
.dates-header{
    text-align: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 15px;
    color: #fff;
    background: #E76DA8;
}
.dates-body{
    padding: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.dates-body span.item{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 13%;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    cursor: pointer;
}
.dates-body span.item.disabled{
    position: relative;
    opacity: 0.6;
}
.dates-body span.item.disabled:hover{
    background: rgba(0, 0, 0, 0.4);
}
.dates-body span.item .tooltip{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    margin-top: 5px;
    width: 190px;
    text-align: center;
    top: 100%;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    font-size: 12px;
    background: #000;
    z-index: 2;
}
.dates-body span.item .tooltip::after{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #000;
}
select option:disabled::after{
    content: ' (Đã đủ số lượng người đăng ký)';
    font-size: 12px;
    display: inline-block;
    margin-left: 20px;
    color: #E76DA8;
}
.dates-body span.item:hover .tooltip{
    opacity: 1;
    visibility: visible;
}
.dates-body span.item:not(.disabled) .tooltip{
    display: none;
}
.dates-body span.item:hover,.dates-body span.item.active{
    background: #E76DA8;
}
.dates-body span.item .date{
    font-weight: 600;
    font-size: 30px;
    padding: 5px 10px;
    border-bottom: 1px dashed #fff;
}
.dates-body span.item .month{
    font-size: 12px;
    padding: 5px 10px;
}
.form-group{
    margin-bottom: 20px;
}
.form-control,.form-select{
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #d9d9d9;
    height: 45px;
}
.form-control:active,.form-control:focus,
.form-select:active,.form-select:focus{
    box-shadow: none;
    border-color: #E76DA8;
}
.title.title-2{
    text-transform: uppercase;
    color: #E76DA8;
    text-shadow: 1px 1px 1px #222;
}
.button{
    display: inline-block;
    padding: 10px 30px;
    border-radius: 6px;
    color: #fff;
    background: #E76DA8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease-in-out;
}
.button:hover{
    background: #000;
    color: #fff;
}
.blog{
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 30px;
}
.blog-thumb{
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
}
.blog:hover .blog-thumb img{
    transform: scale(1.2);
}
.blog-content{
    padding: 15px;
}
.blog-title a{
    color: #000;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.blog-title:hover a{
    color: #E76DA8;
}
.blog-title{
    font-size: 19px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}
.blog-desc{
    font-size: 14px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* min-height: 84px; */
}
.blog-content a.more{
    display: inline-block;
    color: #E76DA8;
    font-size: 14px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease-in-out;
}
.blog-content a.more:hover{
    color: #E76DA8;
}
.close-menu{
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.close-menu:hover{
    color: #E76DA8;
}
.open-menu{
    font-size: 24px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.open-menu:hover{
    color: #E76DA8;
}
.layout{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 9998;
}
.gray-bg{
    background: #f0f0f0;
}
footer{
    padding: 15px 0;
    text-align: center;
    background: #E76DA8;
    color: #fff;
}
footer p{
    margin-bottom: 0;
}
footer a{
    color: #fff;
    font-weight: 600;
    text-decoration: none;

    transition: all .2s ease-in-out;
}
footer a:hover{
    text-decoration: underline;
}
.dang-ky-kham{
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 50px;
    display: block;
    padding: 5px;
    background: #E76DA8;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all .2s ease-in-out;
    z-index: 99;
}
.dang-ky-kham:hover{
    background: #222;
}
@media only screen and (min-width: 576px){
    .banner{
        height: 100vh;
    }
}
@media only screen and (min-width: 992px){
    body{
        font-size: 18px;
    }
}
@media only screen and (min-width: 1200px){
    .container{
        max-width: 1280px;
    }
}
@media only screen and (min-width: 1400px){
    .container{
        max-width: 1400px;
    }
}
@media only screen and (min-width: 1800px){
    .container{
        max-width: 1640px;
    }
}
@media only screen and (max-width: 1280.98px){
    .grid-2{
        grid-template-columns: 1fr;
        row-gap: 120px;
    }
}
@media only screen and (max-width: 991.98px){
    section.section{
        padding: 40px 0;
    }
    .grid-2{
        row-gap: 80px;
    }
    .nav{
        display: none;
    }
    .mobile-menu{
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        width: 320px;
        background: #fff;
        flex-direction: column;
        justify-content: start;
        transform: translateX(100%);
        transition: all .2s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        z-index: 99999;
    }
    .mobile-menu.open{
        transform: translateX(0);
    }
    .nav-link{
        padding: 15px 30px;
        border-bottom: 1px solid #d9d9d9;
    }
    .container{
        max-width: 100%;
    }
    .header-wrap{
        grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (max-width: 767.98px){
    .locations{
        row-gap: 10px;
        column-gap: 10px;
    }
    .locations .item{
        padding: 10px;
    }
}
@media only screen and (max-width: 608.98px){
    .dates-body span.item{
        width: 15%;
    }
}
@media only screen and (max-width: 575.98px){
    .mobile-menu{
        width: 100%;
    }
    .dates-body span.item {
        width: 84px;
    }
    .locations img{
        width: 100%;
    }
    .dates-body span.item {
        width: 72px;
    }
}