@font-face {
    font-family: 'custom-font';
    src: url('../miraihuman/assets/fonts/materialdesignicons-webfont.woff2');
}

:root {
    --color-primary: #007dc6;
    --color-warning: #fcd732;
    --color-danger: #ff3838;
    --color-orange: #fb7e00;
    --color-light: #f9f9ff;
    --color-white: #fff;
    --color-secondary: #acacac;
    --color-dark: #000;
    --primary-font: 'Roboto', sans-serif;
    --second-font: 'Source Sans Pro', sans-serif;
    --custom-font: 'custom-font', sans-serif;
}

body {
    overflow-x: hidden;

}

img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* header */

.header__sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    animation: header__sticky 1s;
}
@keyframes header__sticky {
    from {
        opacity: .2;
    }
    to {
        opacity: 1;
    }
}
.hero__header {
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    min-height: 20px;
}

.hero__header::before {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: 15px;
    background: url('../miraihuman/assets/images/bg-top-header.png');
    content: "";
    z-index: 5;
}

.topbar{
    height: 100%;
}

.topbar__item {
    font-size: 14px;
}

.mainlogo {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.topbar__right {
    padding: 4px 0;
    display: inline-block;
}
.topbar__right_wrap {
    position: absolute;
    background: var(--color-light);
    z-index: 9;
    display: none;
}
.topbar__right_wrap.search_bottom {
    bottom: 60%;
    border-radius: 5px 5px 0 0;
    width: 100%;
}
.topbar__right_wrap.search_top {
    top: 70%;
    border-radius: 0 0 5px 5px;
    width: 100%;
}
.topbar__right_wrap__item {
    list-style: none;
    padding: 0px;
    line-height: 1.1;
    max-height: 200px;
    overflow-y: auto;
}
.search_top .topbar__right_wrap__item{
    margin-top: 10%;
}
.search_bottom .topbar__right_wrap__item{
    margin: 20px;
}
.topbar__right_wrap__item::-webkit-scrollbar {
    width: 0.5rem;
    height: 8px;
}
.topbar__right_wrap__item::-webkit-scrollbar-track {
    background-color: var(--color-light);
}
.topbar__right_wrap__item::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
    border-radius: 0.5rem;
}
.topbar__right_wrap__item::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-secondary);
}
.item__search {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    text-transform: lowercase;
    border-bottom: 1px solid var(--color-secondary);
}
.item__search a {
    color: var(--color-orange);
    display: block;
}
.item__search small {
    color: var(--color-secondary);
    font-style: italic;
}
.hero__input {
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 99999px;
    z-index: 10;
}

.icon__search {
    right: 5px;
}

/* navbar */

.hero-navbar {
    height: 60px;
    background-color: var(--color-primary);
    box-shadow: none !important;
    z-index: 2;
    animation: hero-navbar 2s;
}
@keyframes hero-navbar {
    from {
        background-color: var(--color-orange);
    }
    to {
        background-color: var(--color-primary);
    }
}

.navbar__right {
    z-index: 2;
    justify-content: flex-end;
}

.hero-navbar .nav-link {
    font-family: var(--second-font);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all ease-in .2s;
    padding-right: 15px !important;
}

.nav-link:hover {
    color: var(--color-warning) !important;
}

.line-1 {
    background-color: var(--color-orange) ;
    width: 60%;
    height: 5px;
    display: inline-block;
    position: relative;
}

.line-1::after {
    background-color: var(--color-primary);
    position: absolute;
    content: '';
    width: 30%;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    display: inline-block;
    position: absolute;
}
/* slidebar */

.main-swiper {
    height: 400px;
    margin: calc(100vw - (100vw + 1vw));
    cursor: grab;
}

.main-swiper:hover .swiper-btn {
    opacity: 1;
}

.main-swiper:hover .swiper-btn-next {
    right: 45px;
}

.main-swiper:hover .swiper-btn-prev {
    left: 45px;
}

.swiper-btn {
    position: absolute;
    top: calc(100% - 55%);
    transform: translateY(-50%);
    z-index: 4;
    font-size: 18px;
    border: 3px solid var(--color-white);
    color: var(--color-white);
    opacity: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all ease-in .2s;
}

.swiper-btn:focus {
    outline: none !important;
}

.swiper-btn:hover {
    opacity: 1;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-warning);
}

.swiper-btn-next {
    right: 50px;
}

.swiper-btn-prev {
    left: 50px;
}

/* end slidebar */

.header-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-title__text {
    font-family: var(--second-font);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    margin-top: 10px;
}
.pagination-pill {
    border-radius: 15px;
    background: var(--color-warning);
}
.pagination-pill .page-link {
    color: var(--color-primary);
    font-weight: bold;
}
/* home order */
.home-order__header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5px 10px;
    font-weight: bold;
}
.home-order__header {
    border: 2px solid var(--color-primary);
    border-radius: 10px 10px 0px 0px;
}

.home-order__content {
    align-items: center;
}
.home-order__content:nth-child(odd) {
    background: var(--mdb-gray-200);
}
.home-order__content:nth-child(even) {
    background: var(--color-white);
}
.home-order__content .text_content{
    padding: 2px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
    line-height: 50px;
}
.home-order__content .text_content:nth-child(2),
.home-order__content .text_content:nth-child(3) {
    color: var(--color-danger);
}
.home-order__content .text_content:nth-child(4) {
    color: var(--mdb-dark);
}
.home-order__content:hover .text_content {
    background: var(--mdb-gray-100);
}

.pagination-infinite {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-infinite .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    margin: 5px;
    height: 40px;
}
.pagination-infinite .page-prev::after,
.pagination-infinite .page-next::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 25px;
    top: 0;
}
.pagination-infinite .page-prev::after {
    right: -30px;
    border-radius: 50% 0 0 50%;
    box-shadow: -13px 0 0 #fff;
}
.pagination-infinite .page-next::after {
    left: -30px;
    border-radius: 0% 50% 50% 0%;
    box-shadow: 13px 0 0 #fff;
}
.pagination-infinite .page-prev,
.pagination-infinite .page-next {
    cursor: pointer;
    border: 1px solid white;
    box-shadow: 0px 0px 1px 2px rgba(34, 166, 255, 0.6);
    border-radius: 2px;
    color: rgb(128, 124, 124);
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.pagination-infinite .page-prev:hover,
.pagination-infinite .page-next:hover {
    color: #007dc6;
    background-color: white;
}
.pagination-infinite .page-current {
    width: 40px;
    background-color: #007dc6;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0px 0px 3px 3px rgba(34, 166, 255, 0.6);
    z-index: 2;
}



.home-order_address {
    background: linear-gradient(to bottom left,var(--color-light) 30%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 10px 10px;
    font-weight: bold;
    border-radius: 2px 2px 10px 10px;
}
.home-order_address a {
    color: var(--color-white);
}
.page-click {
    cursor: pointer;
}
/* end order */


/* static */

.static {
    background-image: url('../miraihuman/assets/images/bg/bg-introduce.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.static::after {
    position: absolute;
    content: '';
    background-color: var(--color-dark);
    opacity: .6;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.static-header {
    color: var(--color-white);
}

.static-header .static-header__title {
    font-family: var(--second-font);
    font-weight: 700;
    font-size: 25pt;
}
.static-header .static-header__content {
    background: linear-gradient(to bottom left,var(--color-light) 30%, var(--color-primary) 100%);
    padding: 10px;
    border-radius: 5px;
}
.static-header .static-header__text {
    color: var(--color-dark);
    font-style: italic;
    z-index: 4;
}

.static-block {
    background: linear-gradient(to bottom left,var(--color-light) 30%, var(--color-warning) 100%);
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    padding: 15px;
}
.static-block__icon {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.static-block__top {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 12pt;
}
.static-block__countup {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 30pt;
}
.static-block__bottom {
    color: var(--color-warning);
    font-weight: 600;
}

/* end static */

/* service */

.service-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-header>div {
    width: fit-content;
}

.service-header .service-header__title {
    font-family: var(--second-font);
    font-weight: 700;
    font-size: 30px;
    color: var(--color-primary);
    width: fit-content;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
}

/* .service-item {
    display: flex;
} */
.service-item__img {
    width: 90px;
    height: 90px;
    flex: none;
    margin-right: 20px;
}
.service-item__title {
    font-family: var(--second-font);
    font-weight: 700;
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 0px;
}



.service-item .service-item__content {
    padding-left: 20px;
    border-left: 3px solid var(--color-light);
}

.service-item .service-item__text {
    font-style: italic;
    margin-bottom: 0;
}

/* end service */

/* whychooseus */
.whychooseus {
    background-image: url('../miraihuman/assets/images/whychooseus.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.whychooseus::after {
    position: absolute;
    content: '';
    background-color: var(--color-dark);
    opacity: .6;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}
.whychooseus-block {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.whychooseus-header_title {
    font-size: 24pt;
    font-family: var(--second-font);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.whychooseus-header_des {
    font-size: 13pt;
    text-align: center;
    color: var(--color-secondary);
    line-height: 1.1;
}
.whychooseus-content__img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
}

.whychooseus-content__title {
    font-family: var(--second-font);
    font-weight: 700;
    font-size: 15pt;
    padding: 5px 5px;
    margin-bottom: 20px;
    border-radius: 5px 0px 5px 0px;
    width: 90%;
    color: var(--color-dark);
    background: linear-gradient(to bottom left,var(--color-light) 70%, var(--color-primary) 100%);
}
.whychooseus-content__des{
    width: 90%;
}
.whychooseus-content__des p {
    margin-bottom: 0px;
    color: var(--color-secondary);
    line-height: 1.5;
}

/* endwhychooseus */

/* file */
.file-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.file-header__center {
    width: fit-content;
    position: relative;
    border-radius: 0px 3px 0px 3px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.file-header__title {
    padding: 10px 15px;
    margin: 0px;
    text-transform: uppercase;
}
.file-header__title-boderleft {
    background-image: url('../miraihuman/assets/images/border-left.png');
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.file-header__title-boderright {
    background-image: url('../miraihuman/assets/images/border-right.png');
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
}
.file-header__left {
    background-image: url('../miraihuman/assets/images/quat.png');
    background-size: cover;
    background-position: center;
    width: 90px !important;
    height: 90px;
    transform: rotate(45deg);
    position: absolute;
    left: calc(50% - 266px);
    bottom: -55px;
}
.file-header__right {
    background-image: url('../miraihuman/assets/images/quat.png');
    background-size: cover;
    background-position: center;
    width: 90px !important;
    height: 90px;
    transform: rotate(-45deg);
    position: absolute;
    right: calc(50% - 266px);
    bottom: -55px;
}

.file-content {
    margin-top: 60px;
}
.file-content__center {
    background-image: linear-gradient(0deg, #b53440 0, #ffb199);
}
.file-content__item {
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin: 15px 10px;
    font-size: 17px;
}
.file-content__item>p {
    margin-bottom: 0;
}
.file-content__item>i {
    font-size: 20px;
    margin-right: 10px;
    line-height: 29px;
}

.file-content__left {
    position: absolute;
    top: -48px;
    left: -12px;
}

.file-content__right {
    position: absolute;
    bottom: -35px;
    right: -5px;
}
/* end file */

/* review */
.review-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-header__title {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
}

.review__swiper {
    margin-top: 20px;
}

.review-item {
    padding: 10px;
    margin: 0px 25px;
}

.review__swiper .card {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.review__swiper .card-body {
    padding-bottom: 80px;
    position: relative;
}

.review__swiper .card-body::after {
    background-image: url('../miraihuman/assets/images/quote-sign.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    content: '';
    bottom: 55px;
    right: 20px;
    width: 70px;
    height: 70px;
}

.review__swiper .card-body::before {
    background-image: url('../miraihuman/assets/images/logo.png');
    background-repeat: no-repeat;
    background-size: 100px 20px;
    background-position: left;
    position: absolute;
    content: '';
    bottom: 30px;
    left: 25px;
    width: 100%;
    min-height: 20px;
}

.review-content {
    line-height: 20px;
    padding: 20px 10px;
    border: 2px solid var(--color-primary);
}
.review-content__des {
    margin-bottom: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    height: 350px;
    overflow-y: auto;
    background: linear-gradient(to bottom top,var(--color-light) 90%, var(--color-primary) 100%);
    text-align: justify;
}
/* scrollbar */
.review-content__des::-webkit-scrollbar {
    width: 0.5rem;
    height: 8px;
}
.review-content__des::-webkit-scrollbar-track {
    background-color: var(--color-light);
}
.review-content__des::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
    border-radius: 0.5rem;
}
.review-content__des::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-secondary);
}
/* end scrollbar */
.review__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.review__username {
    font-weight: 700;
}

.review__swiper__scrollbar {
    width: 80% !important;
    bottom: -5px !important;
    background-color: var(--color-primary);
    left: 50% !important;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 5 !important;
}

.review__swiper__scrollbar>.swiper-scrollbar-drag {
    background-color: var(--color-orange) !important;
}

/* end review */


.video {
    background-image: url('../miraihuman/assets/images/bg-video.png');
    min-height: 430px;
}
.video-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-header>div {
    width: fit-content;
}
.video-header__title {
    margin-top: 45px;
    text-transform: uppercase;
    color: var(--color-white) !important;
}

.video-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.videoSwiper {
    width: 600px;
}

.swiper-btn-video {
    display: flex !important;
    opacity: 1 !important;
    top: 50% !important;
}
.video-text {
    color: var(--color-white);
    background: var(--color-dark);
    padding-left: 10px;
}
.swiper-button-prev.swiper-btn-video {
    left: -110px;
}

.swiper-button-next.swiper-btn-video {
    right: -110px;
}

.swiper-btn-video:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.swiper-btn-video:after {
    font-size: 18px;
    font-weight: 700;
}

.image {
    padding: 15px;
    background: linear-gradient(to top right,var(--color-light) 50%, var(--color-primary) 100%);
}
.image-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-header>div {
    width: fit-content;
}
.image-header__title {
    color: var(--color-primary);
}

.image .img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
/* news */

.news {
    margin-top: 40px;
}
.news-header__title {
    font-size: 16pt;
    padding: 0px 10px;
    font-family: var(--second-font);
    font-weight: 600;
    font-style: italic;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-dark);
}
.news .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.news .img-wrap img {
    width: 100%;
    object-fit: cover;
}
.news .img-wrap:hover img {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: all .25s ease-in-out;
}
.news-hashtag .hashtag  {
    display: inline-block;
    margin-top: 5px;
    margin-right: 5px;
    padding: 0px 5px;
    background: linear-gradient(var(--color-primary), var(--color-light));
    color: var(--color-dark);
    font-size: 11pt;
    text-transform: uppercase;
    border-radius: 2px;
}
.news-main__title {
    font-size: 18px;
    margin-top: 10px;
    line-height: 100%;
    color: var(--color-dark);
    font-weight: 600;
}
.news-main__des {
    margin-bottom: 0px;
    line-height: 120%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.news-other__title {
    font-size: 13pt;
    margin-top: 10px;
    line-height: 100%;
    color: var(--color-dark);
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    line-height: 1.3;
}
.news-other__des {
    line-height: 120%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.news-other-nhat__item {
    padding: 2px 5px;
    background: var(--color-light);
    line-height: 1.2;
}
.news-other-nhat__title {
    color: var(--color-dark);
    text-transform: lowercase;
    font-style: oblique;
    padding: 2px;
}

/* end news */

/* banner */

.banner {
    background-image: url('../miraihuman/assets/images/banner-bottom-des.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
}

.banner__content {
    text-align: center;
}

.banner__content>h3 {
    color: #f6ca50;
}

.banner__content>p {
    color: #2893c3;
    font-size: 34px;
    font-weight: 900;
}

.banner__content>button {
    background-color: #0D8DC8;
    font-weight: 700;
    color: var(--color-white);
    font-size: 18px;
}

.banner__content>button:hover {
    background-color: #0D8DC8;
    color: var(--color-white);
}

.school-header h3 {
    font-size: 24px;
    font-weight: 900 !important;
}

.school-header .line-1 {
    width: 30% !important;
}

/* end banner */

/* school */

.school {
    margin: 60px 0;
}
.school-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-header>div {
    width: fit-content;
}
.school-content {
    margin-top: 50px;
}

.school-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--color-light);
    padding: 10px 5px;
    border-radius: 3px;
}

.school-item__img {
    width: 150px;
}

.school-item__title {
    color: var(--color-dark);
    text-transform: capitalize;
    font-family: var(--second-font);
    font-size: 13pt;
    margin-top: 10px;
}

/* end school */

/* magazine */
.magazine {
    margin-top: 30px;
    background: var(--color-light);
    padding: 5px;
}
.magazine-header {
    flex: 0 0 5%;
    max-width: 5%;
}
.magazine-header__title {
    transform: rotate(90deg);
    display: block;
    background-size: 15px 15px;
    padding-left: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: var(--color-danger);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.magazine-content {
    flex: 0 0 95%;
    max-width: 95%;
}
.magazine-item {
    background: var(--color-light);
}
.magazine-item .magazine-img {
    height: 200px;
    display: block;
}
/* end magazine */
/* footer */

.footer {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 3px solid var(--color-orange);
    background: var(--color-white);
}
.footer-menu__title {
    text-transform: uppercase;
    font-size: 13pt;
    padding: 2px 5px;
    border-radius: 1px;
    background: linear-gradient(var(--color-light), var(--color-white));
}
.footer-menu__content {
    line-height: 1.6;

}
.footer-menu__item {
    display: block;
    font-size: 11pt;
    color: var(--color-secondary);
}
.footer-menu__item:hover {
    color: var(--color-primary);
}

.footer-menu__content p {
    text-align: center;
}
.footer-menu__giayphep {
    display: block;
    text-transform: uppercase;
}
.footer-menu__giayphep .giayphep1 {
    font-weight: 700;
    color: var(--color-dark);
    opacity: 0.6;
}
.footer-menu__giayphep .giayphep2 {
    font-size: 11pt;
    color: var(--color-secondary);
    font-weight: 400;
}
 .footer-menu__giayphep__img img {
    width: 50px;
}

.footer-fb {
    margin-top: 15px;
}
.fb-icon {
    height: 70px;
    width: 60px;
    margin-top: -46px;
    margin-right: -3px;
    border-radius: 3px 0 0 3px;
}

.footer-menu__item__address {
    display: block;
    font-size: 11pt;
    color: var(--color-dark);
    font-weight: lighter;
    margin-bottom: 0px;
}

.copyright {
    background: var(--color-light);
}
.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 10px 5px;
}
.copyright-inner__text {
    color: var(--color-secondary);
    font-size: 11pt;
    line-height: 1.2;
}
.copyright-social__icon {
    margin: 10px;
    color: var(--color-secondary);
}

/* end footer */
/* page */
.page-banner {
    height: 350px;
    overflow: hidden;
}
.breadcrumb {
    margin-top: 15px;
}
.breadcrumb .text-reset {
    color: var(--color-secondary);
}
.breadcrumb .text-active {
    color: var(--color-primary) !important;
}
.page__title_h1 {
    text-transform: uppercase;
    color: var(--color-primary);
    font-size: 18pt;
    font-weight: 700;
    margin-bottom: 5px;
}
.page__title_h2 {
    text-transform: uppercase;
    color: var(--color-primary);
    font-size: 17pt;
    font-weight: 700;
}
.page__title_p {
    margin-bottom: 0px;
    font-size: 12pt;
    line-height: 1.3;
}
.page__title_small {
    margin-bottom: 0px;
    font-size: 10pt;
    line-height: 1.3;
}
.page__title_btnsub {
    display: inline;
    background: linear-gradient(var(--color-light), var(--color-white));
    color: var(--color-primary);
    padding: 5px;
    font-size: 14pt;
}
.color__primary {
    color: var(--color-primary);
    font-weight: 600;
}
.text__small {
    font-size: 11pt;
}
.page-nav .nav-tabs {
    padding: 5px;
    background: var(--color-light);
}
.page-nav .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 3px solid var(--color-secondary);
}
.page-nav .nav-link.active {
    border-radius: 0 0 7px 7px;
}
.page-nav .accordion-body {
    font-size: 12pt;
    color: var(--color-secondary);
}
/* end page */

/* page-introduce */

.page-introduce__btncontact {
    margin-top: 30px;
    background: var(--color-primary);
    color: var(--color-white);
    padding:  10px;
    border-radius: 3px;
}
.page-introduce__btncontact:hover {
    color: var(--color-white);
}
.page-introduce__content {
    border-collapse: collapse;
    border-spacing: 0;
}
.page-introduce__content th {
    border: 4px solid var(--color-primary);
    padding: 10px 5px;
    font-size: 11pt;
    font-weight: 400;
}
.page-introduce__link {
    padding: 10px;
    background: linear-gradient(to bottom left,var(--color-light) 30%, var(--color-primary) 100%);
    border-radius: 5px;
}
.page-introduce__link p {
    margin-bottom: 5px;
}
.page-introduce__link .link {
    text-transform: uppercase;
    color: var(--color-dark);
}
.page-introduce__link .link:hover {
    color: var(--color-primary);
}
/* end page-introduce */

/* page-contact */
.page-contact__wrap {
    background: var(--color-light);
    padding: 10px 5px;
}
.page-contact__item {
    margin-top: 15px;
    border-bottom: 2px solid var(--color-secondary);
    border-radius: 0 0 10px 2px;
}
.page-contact__title {
    font-size: 14pt;
    color: var(--color-primary);
}
.page-contact__p {
    font-size: 12pt;
    margin-bottom: 5px;
    line-height: 1.4;
}
.page-contact__map {
    height: 100% !important;
    width: 100%;
}
.page-contact__form {
    padding: 20px;
    border: 1px solid var(--color-light);
    background: linear-gradient(var(--color-light) , var(--color-white) );
}
.page-contact__form .form-label {
    color: var(--color-primary);
    font-weight: 700;
}
.page-contact__form .form-control::placeholder {
    color: var(--color-secondary);
    font-weight: lighter;

}
.page-contact__btnsend {
    margin-top: 10px;
    padding: 5px 30px;
    border-radius: 3px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 0px;
}
/* end page-contact */
/* page-news */
.page-news__item {
    height: 100%;
    background: var(--color-light);
}
.page-news__item .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    max-height: 150px;
}
.page-news__item .img-wrap img {
    width: 100%;
    object-fit: cover;
}
.page-news__item .img-wrap:hover img {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: all .25s ease-in-out;
}
.page-news__content {
    padding: 10px;
}
.page-news__content {
    line-height: 1.3;
}
.page-news__title {
    font-size: 12pt;
    font-weight: 600;
    line-height: 1;
}
.page-news__date {
    color: var(--color-secondary);
    font-size: 10pt;
}
.page-news__des {
    font-size: 12pt;
    line-height: 120%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.page-news-detail__wrap {
    margin: 0px 15px;
    padding: 30px;
    background: #fafaff;
    line-height: 1.4;
}

.page-news-detail__content {
    margin-top: 30px;
}
.page-news-detail__content p,
.page-news-detail__content h1,
.page-news-detail__content h2,
.page-news-detail__content h3,
.page-news-detail__content h4,
.page-news-detail__content h5,
.page-news-detail__content h6,
.page-news-detail__content strong {
    margin-bottom: 0px;
}

.page-news-detail__content img {
    border-radius: 3px;
    max-width: 100%;
}
.page-news-detail__wrap_other {
    padding: 15px 5px;
    background: var(--color-light);
}
.page-news__wrap_other__content {
    padding: 5px;
    border-radius: 3px;
}
.page-news__wrap_other__content .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.page-news__wrap_other__content .img-wrap img {
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
}
.page-news__wrap_other__content .img-wrap:hover img {
    transform: scale3d(1.5, 1.5, 1.5);
    transition: all .25s ease-in-out;
}
.news-wrap_other__title .news-other__title {
    font-size: 11pt;
}
.news-wrap_other__title .news-other__des {
    font-size: 10pt;
    -webkit-line-clamp: 2;
}

/* end page-news */

/* scrollbar */
.page-sodotochuc__subitem_wrap::-webkit-scrollbar {
    width: 0.5rem;
    height: 8px;
}
.page-sodotochuc__subitem_wrap::-webkit-scrollbar-track {
    background-color: var(--color-light);
}
.page-sodotochuc__subitem_wrap::-webkit-scrollbar-thumb {
    background-color: var(--color-dark);
    border-radius: 0.5rem;
}
.page-sodotochuc__subitem_wrap::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-secondary);
}
/* end scrollbar */
/* page-sodotochuc */

.page-sodotochuc__item{
    padding: 15px;
    border-radius: 4px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
    position: relative;
}
.page-sodotochuc__subitem_wrap {
    overflow-x:auto;
    white-space: nowrap;
    text-align: center;
    width:100%;
    padding-bottom: 15px;
}
.page-sodotochuc__subitem_wrap .col-auto1 {
    display: inline-block;
    vertical-align: top;
    margin-right: -3px;
    border-top: 2px solid var(--color-dark);
    position: relative;
}
.page-sodotochuc__subitem_wrap .col-auto1:first-child {
    border-top: none;
}
.page-sodotochuc__subitem_wrap .col-auto1:first-child::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    right: 0%;
    border-top: 2px solid var(--color-dark);
}
.page-sodotochuc__subitem_wrap .col-auto1:last-child {
    border-top: none;
}
.page-sodotochuc__subitem_wrap .col-auto1:last-child::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    left: 0%;
    border-top: 2px solid var(--color-dark);
}
.page-sodotochuc__subitem{
    max-width: 110px;
    margin: 0px 15px;
    padding: 8px 15px;
    border-radius: 4px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
    white-space: normal;
    line-height: 25px;
}
/* end page-sodotochuc */
/* page-introduce_company */
.page-introduce_company .img-wrap {
    position: relative;
    border: 1px solid var(--color-secondary);
    background: var(--color-light);
    display: block;
    text-align: center;
    border-radius: 3px;
}
.page-introduce_company .img-wrap img {
    width: auto;
    height: 200px;
    object-fit: cover
}
/* end page-introduce_company */
/* page-order */
.page-order__wrap {
    width: 100%;
    overflow-x: auto;
}
.page-order__table {
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 400px;
    width: 100%;
    margin-bottom: 20px;
}
.page-order__table td {
    border: 1px solid var(--color-primary);
    padding: 10px 5px;
    font-size: 11pt;
    font-weight: 400;
}
.page-order__table ul {
    margin-bottom: 0px;
}
.page-order__table tr>td:first-child {
    white-space: nowrap;
    padding: 15px;
    font-weight: bold;
}
.page-order__table tr>td:last-child {
    background: var(--color-light);
    font-weight: bold;
}
.page-order__btnmodal {
    display: inline;
    padding: 10px 30px;
    border-radius: 2px;
    cursor: pointer;
    background: var(--color-orange);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 14pt;
    box-shadow: 5px 2px 3px var(--color-secondary);
}
.page-order__btnmodal:hover{
    box-shadow: 5px 2px var(--color-orange);
}
#orderModal .form-label {
    font-weight: 700;
    color: var(--color-orange);
}
.page-order__list {
    background: var(--color-light);
    border: 2px solid var(--color-light);
    border-radius: 2px;
    padding: 10px 10px;
}
.page-order__nav {
    line-height: 1.3;
}
.page-order__item{
    margin-top: 7px;
    border-bottom: 1px solid var(--color-secondary);
    position: relative;
}
.page-order__title {
    font-size: 15px;
    text-align: justify;
    color: var(--color-dark);
}
.page-order__title:hover small {
    color: var(--color-primary);
}
.page-order__title .badge {
    position: absolute;
    bottom: 5px;
    right: 0px;
    margin-left: 5px;
    font-size: 9pt;
    animation: mymove 2s;
    animation-iteration-count: infinite;
}
@keyframes mymove {
    from {
        box-shadow: 0px 0px 0px 0px var(--color-light);
    }

    to {
        box-shadow: 0px 3px 5px var(--color-danger);
    }
}
.page-order__title small{
    font-size: 10pt;
    font-style: italic;
    color: var(--color-secondary);
}
/* end page-order */
/* page-image */
.page-image__item {
    position: relative;
    line-height: 1.3;
}
.page-image__item .img-wrap {
    background: var(--color-light);
    position: relative;
    overflow: hidden;
    border: 5px solid var(--color-light);
    border-radius: 2px;
    text-align: center;
}
.page-image__item .img-wrap img {
    width: auto;
    height: 250px;
    object-fit: cover;
}
.page-image__item:hover .img-wrap img {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: all .25s ease-in-out;
}
.page-image__title {
    color: var(--color-primary);
    background: var(--color-light);
    padding: 3px 10px;
    position: absolute;
    top: 0px;
}
.page-image__item:hover .page-image__title {
    background: var(--color-orange);
    color: var(--color-white);
    transition: all .25s ease-in-out;
}
.page-image .img-wrap img{
    object-fit: cover;
}

/* end page-image */
/* scroll to top */

.scroll__to__top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px var(--color-secondary);
    position: fixed;
    top: calc(100vh - 80px);
    left: calc(100vw - 100px);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    transition: opacity 1.5s;
}

.scroll__to__top:hover {
    background-color: var(--color-primary);
}

.scroll__to__top>i {
    font-size: 16pt;
}

/* end scroll to top */

/* widget */

.widget {
    position: fixed;
    left: 3px;
    top: calc(100vh - 85%);
    max-width: 90px;
    height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 10;
    border-top: 3px solid var(--color-primary);
}
.widget::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}
.widget::-webkit-scrollbar-track {
    background-color: var(--color-secondary);
}
.widget::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
}
.widget .nav-link-res {
    color: var(--color-white) !important;
    font-weight: bold;
}
.widget__content {
    margin-top: 12px;
}

.widget__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-white);
    padding: 2px;
}

.widget__item:nth-child(1) {
    background-color: #fb7e00;
}

.widget__item:nth-child(1) > ul > li > a:hover {
    background-color: #fb7e00;
    color: var(--color-white);
}

.widget__item:nth-child(2) {
    background-color: var(--color-primary);
}

.widget__item:nth-child(2) > a:hover {
    color: rgba(0, 0, 0, .6);
    font-weight: 700;
}

.widget__item:nth-child(3) {
    background-color: #30476b;
    padding: 5px;
    cursor: pointer;
}

.widget__item:nth-child(3):hover {
    background-color: #0d2852;
}

.widget__item:nth-child(4) {
    background-color: #4b9331;
    padding: 5px;
    cursor: pointer;
}

.btn__contact:hover {
    background-color: #3b682a;
}

.widget__item>h3 {
    font-size: 16px;
    font-family: var(--second-font);
    font-weight: 700;
    margin-bottom: 0;
    padding: 8px;
    text-align: center;
}

.widget__item>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    background-origin: content-box;
}

.widget__item>ul>li {
    text-align: center;
    border-bottom: 1px solid #fb7e00;
}

.widget__item>ul>li>a {
    color: #666;
    font-size: 14px;
    font-weight: 700;
    display: block;
    width: 100%;
    padding: 5px;
}

.widget__item>a {
    margin-bottom: 0;
    font-size: 14px;
    background-color: var(--color-white);
    color: #666;
    padding-top: 4px;
    font-weight: 700;
    padding-bottom: 4px;
    text-align: center;
    font-family: var(--second-font);
}

.widget__item>ul>li:last-child {
    border-bottom: 0;
}

.widget__img__item {
    text-align: center;
    width: 40px;
}

.form__contact{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    width: 500px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    display: none;
    z-index: 15;
}

.form__contact__box{
    z-index: 15;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    top: 0;
    display: none;
}

.form__contact__img{
    width: 200px;
    margin-bottom: 20px;
}

/* end widget */


/* home-banner */

.home-banner .img-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 20px;
}
.home-banner .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.home-banner .img-wrap:after,
.home-banner .img-wrap:before {
    position: absolute;
    top: 0;
    left: -50%;
    content: ""
}
.home-banner .img-title:before {
    -webkit-transform: skew(-30deg);
    width: 100%;
    height: 100%;
    transform: skew(-30deg);
    background-color: var(--color-white)
}
.home-banner .img-title:after {
    top: 0;
    left: -2px;
    width: 55%;
    height: 200px;
    background-image: url('../miraihuman/assets/images/bg-banner/bg-2.png');
    background-size: cover
}
.home-banner .title1 {
    font-size: 25pt;
    color: rgb(206, 206, 206);
    margin-bottom: 0px;
}
.home-banner .title2 {
    font-size: 30pt;
    color: white;
    margin-bottom: 0px;
}
.home-banner .title3 {
    font-size: 20pt;
    font-weight: bold;
    color: #666;
}
.home-banner .title4 {
    font-size: 20pt;
    font-weight: bold;
    color: #30476b;
}
.home-banner .titlea {
    font-size: 35pt;
    padding-left:20px;
    padding-right: 20px;
    font-weight: bold;
    color: var(--color-danger);
}
.home-banner .titleb div {
    font-size: 15pt;
    font-style: italic;
}
.home-banner .banner-content {
    position: absolute;
    top: 180px;
}
.home-banner .banner-inner {
    position: absolute;
    top: 15%;
    text-transform: uppercase
}
.mainlogo-mobile img {
    display: none;
}
.mainlogo img {
    margin-top: 10px;
    height: 75px;
}
.hero-navbar__wrap .close-menu-res {
    display: none;
}
/* ////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width:992px) {
    .scroll__to__top {
        bottom: 15px;
        right: 15px;
        top: unset;
        left: unset;
    }
    .flag-wrap {
        position: absolute;
        top: 40px;
        z-index: 10;
    }
    .flag-jp {
        right: 5px;
    }
    .flag-vi {
        right: 40px;
    }
    .mainlogo img {
        margin-top: -8px;
        height: 75px;
    }
    .hero-navbar {
        height: auto;
    }
    .navbar > div {
        background-color: var(--color-primary);
    }
    .hero-navbar__wrap {
        margin-top: 20px;
        height: 80vh;
        overflow-y: scroll;
        padding: 5px 20px;
        background: #00000070;
        border-radius: 3px;
    }
    .hero-navbar__wrap::-webkit-scrollbar {
        width: 0.5rem;
        height: 8px;
    }
    .hero-navbar__wrap::-webkit-scrollbar-track {
        background-color: var(--color-light);
        border-radius: 0.5rem;
    }
    .hero-navbar__wrap::-webkit-scrollbar-thumb {
        background-color: var(--color-secondary);
        border-radius: 0.5rem;
    }
    .hero-navbar__wrap::-webkit-scrollbar-thumb:hover {
        background-color: var(--color-secondary);
    }
    .hero-navbar__wrap .nav-link-res {
        color: var(--color-white) !important;
        font-weight: bold;
    }
    .hero-navbar__wrap .close-menu-res {
        position: absolute;
        right: 25px;
        color: var(--color-dark);
        background: var(--color-light);
        font-size: 12pt;
        display: block;
        padding: 3px 5px;
        border-radius: 20px;
    }
    .mySwiper {
        height: 400px;
    }
    .home-banner .img-wrap{
        margin-top: 10px;
    }
    .banner-title {
        background: rgba(0, 0, 0, .6);
        padding: 5px;
    }
    .home-banner .title1{
        font-size: 14pt;
        color: var(--color-secondary);
    }
    .home-banner .title2{
        font-size: 15pt;
        color: var(--color-white);
    }
    .home-banner .banner-content {
        background: rgba(255, 255, 255, 0.6);
        padding: 5px;
    }
    .home-banner .title3 {
        font-size: 14pt;
    }
    .home-banner .title4 {
        font-size: 14pt;
    }
    .home-banner .titlea {
        padding-left: 0;
        padding-right: 10px;
        font-size: 20pt;
    }
    .home-banner .titleb {
        font-size: 15pt;
    }
    .page-news-detail__wrap {
        margin: 0px;
        padding: 5px;
    }
    .widget{
        display: none;
    }
    .news-other__title {
        -webkit-line-clamp: unset;
        font-size: 13pt;
    }
}
@media screen and (max-width:768px) {

    .res-none {
        display: none;
    }
    .mainlogo img {
        display: none;
    }
    .mainlogo-mobile {
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        height: 100%;
    }
    .mainlogo-mobile img{
        margin-top: -18px;
        height: 75px;
        display: block;
    }
    .hero-navbar {
        height: auto;
    }
    .review-item {
        margin: 0px;
        padding: 0px;
    }
    .videoSwiper {
        width: 90%;
    }
    .copyright-inner {
        display: block;
    }
}
.flag-wrap img{
    /* right: 5px; */
    height: 20px;
}
@media screen and (max-width:470px) {

    .mainlogo-mobile img{
        margin-top: -5px;
        height: 50px;
        display: block;
    }
    .mainlogo-mobile {
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.license-page {
    margin-top: 10px;
}
 .license-page span {
    margin-top: 2px;
    display: block;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--mdb-gray);
}

.license-page img {
    height: 50px;
    width: 50px;
}

.license-page .title-col {
    color: var(--mdb-orange);
}
