/* XL Device :1200px. */
@media (min-width: 1200px) and (max-width: 1449px) {
    .header__manu {
        gap: 20px;
    }
    .header__manu ul {
        gap: 20px;
    }
    .header__manu a {
        font-size: 16px;
    }
    .header__btn a {
        font-size: 16px;
    }
}
/* LG Device :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
    .header__manu ul {
        gap: 20px;
    }
    .header__manu a {
        font-size: 14px;
    }
    .header__btn a {
        font-size: 14px;
    }
    .header__manu {
        display: none;
    }
    .header__btn .menu-trigger {
        display: block;
    }
}
/* MD Device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    .header__manu ul {
        gap: 20px;
    }
    .header__manu a {
        font-size: 14px;
    }
    .header__btn a {
        font-size: 14px;
    }
    .header__manu {
        display: none;
    }
    .menu-trigger {
        display: block;
    }
}
/* SM Small Device :320px. */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .header__manu ul {
        gap: 20px;
    }
    .header__manu a {
        font-size: 14px;
    }
    .header__btn a {
        font-size: 14px;
    }
    .header__manu {
        display: none;
    }
    .menu-trigger {
        display: block;
    }
    .header__btn a {
        display: none;
    }
    .header__btn a.active_btn {
        display: flex;
    }
    .header__btn {
        gap: 0;
    }
    .header__logo img {
        display: none;
    }
    .header__logo a {
        display: block !important;
    }
    .menu-trigger {
        display: flex;
        align-items: center;
    }
    .header__logo a {
        display: block !important;
        width: auto;
        height: auto;
    }
    .header__logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
}
