header {
    position: fixed;
    height: auto;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 15px 15px rgba(0,0,0,0.1);
}
header>.header {
    position: relative;
    height: 120px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: rgba(var(--setting-color-white),1);
    padding: 15px 50px;
    z-index: 2;
}
header .container {
    height: 100%;
}
header a {
    text-decoration: none !important;
    outline: none !important;
}
header a,
header ul.menu-group .menu {
    color: rgba(0,0,0,1);
}
header a:hover,
header ul.menu-group .menu:hover {
    color: rgba(var(--setting-color-primary),1);
}

.header-row,
.header-col {
    position: relative;
}
.header-row {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
}
.header-row>.header-col.this-col-left,
.header-row>.header-col.this-col-right {
    /* width: calc(50% - 150px); */
    width: 100%;
}
.header-row>.header-col.this-col-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.header-row>.header-col.this-col-left {
    /* display: flex;
    align-items: center;
    justify-content: flex-start; */
    text-align: center;
       display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.header-row>.header-col.this-col-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-row>.header-col.this-col-left .title {
    text-align: center;
    width: 100%;
     
}
.header-row>.header-col.this-col-left .description {
    margin-top: 10px;
}

.logo {
    position: relative;
    width: 150px;
    height: 50px;
    background-image: url(../images/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.header-row .title {
    font-family: "Mitr";
    font-size: 30px;
    line-height: 30px;
}

/* menu group */
header ul.menu-group,
header ul.menu-group>li {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}
header ul.menu-group {
    display: flex;
    flex-wrap: nowrap;
}
header ul.menu-group>li+li {
    margin-left: 30px;
}
header ul.menu-group>li .menu {
    cursor: pointer;
}

/* menu icon */
header .menu-icon {
    display: flex;
    flex-wrap: nowrap;
}
header .menu-icon>.icon {}
header .menu-icon>.icon+.text,
header .menu-icon>.text+.text {
    margin-left: 5px;
}


.info-item {
    position: relative;
}
.info-item+.info-item {
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
    margin-top: 15px;
}



/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* sm - xs */
@media (max-width: 767.98px) {
    .header-row .title {
        font-size: 22px;
        line-height: 30px;
    }
}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* xs */
@media (max-width: 575.98px) {}

/* xs custom */
@media (max-width: 399.98px) {}