/* PC */
@media screen and (min-width: 1024px) {
    .hide-on-pc {
        display: none;
    }


    .header__navbar-item .header__navbar-item-link--active {
        color: var(--primary-color);
    }

    .header__navbar-item .header__navbar-item-link--active:after {
        width: 100%;
    }
}

/* Mobile & Tablet */
@media screen and (max-width: 1023px) {
    .hide-on-mob-tab {
        display: none;
    }
    .navBar--open {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }

    .header-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background-image: unset;
        background-color: var(--white-color);
        z-index: 999;
    }
    .header__label {
        justify-content: center;
        height: 100%;
    }
    .header__logo {
        margin: 0;
    }
    .header__logo-img {
        height: 60px;
    }
    .header__navbar {
        z-index: 999;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateX(-100%);
        opacity: 0;
        height: auto;
        background-color: unset;
        transition: transform ease-in 0.2s, opacity ease-in 0.2s;
    }
    .header__navbar-list {
        flex-direction: column;
        justify-content: start;
    }
    .header__navbar-item-link{
        padding: 12px;
        font-size: 2rem;
        color: var(--white-color);
    }
    .header__navbar-item-link::after {
        display: none;
    }
    .teaser-content {
        height: 140px;
        padding: 0;
        margin-top: 5px;
    }
    .mobile__navbar {
        display: block;
    }
    .mobile__navbar-overlay {
        display: block;
    }
    .mobile__navbar-close {
        display: block;
    }
    .mobile__navbar-social {
        display: flex;
    }

    #container {
        margin-top: 72px;
    }
    .container-content__navbar {
        order: 2;
    }
    .container-content__main {
        order: 1;
    }
    .teaser-content::after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.6);
    }
    .teaser__label {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: unset;
        text-align: center;
        padding: 0 20px;
        height: 140px;
        font-size: 2rem;
        font-weight: 500;
    }
    .infor-form-warpper {
        margin-top: 40px;
    }
    .infor-form__content {
        height: auto;
    }
    .culture-item__link {
        margin-bottom: 10px;
    }
    .content__item-title{
        margin: 0;
    }
    .culture-item__content {
        margin-top: 30px;
    }

    .footer__com-info {
        margin-bottom: 20px;
    }
}

/* Tablet */
@media screen and (min-width: 740px) and (max-width: 1023px) {
    .hide-on-tab {
        display: none;
    }

    .content__item {
        height: 264px;
    }
}

/* Mobile */
@media screen and (max-width: 739px) {
    .hide-on-mob {
        display: none;
    }

    .modal__main {
        margin-top: 64px;
        }
    .modal__container {
        height: 450px;
    }

    .teaser__label {
        font-size: 1.8rem;
    }
    .learning-info {
        display: flex;
        flex-wrap: wrap;
        margin-top: 10px;
        min-height: unset;
    }
    .section-subtitle {
        width: 100%; 
    }
    .learning-info__item {
        width: 50%;
        padding: 8px 0;
    }
    .exam-course__list {
        flex-direction: column;
        align-items: flex-start;
    }
    .exam-course__item {
        padding: 8px 0;
    }
    .content__item,
    .content__item.content__item--s {
        height: auto;
    }
    .content__item-title {
        font-size: 1.6rem;
    }
    .culture-teaser {
        flex-direction: column;
        align-items: center;
    }
    .culture-teaser__img {
        width: 250px;
    }
    .culture-item__content,
    .introduce-content__text,
    .content__item-text,
    .content__item-title {
        padding: 0 10px;
    }
    .gallery__content {
        height: 280px;
    }

    #footer {
        text-align: center;
    }
    .footer-wrapper {
        padding: 0 12px;
    }
}