:root {
    --color-primary--: #656868; //var(--dark-gray--)
    --color-name--: #f1f1f1;
    --color-social--: #3a589d;
    --color-white--: #fff;
    --orange-pink--: #ccb9b3;
    --light-pink--: #fff2eb;
    --dark-gray--: #656868;
    --black--: #000;
}

/* animation */
@keyframes translateToTop {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

/* animation */
html {
    font-size: 14px;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
blog a {
    color: #0a58ca !important;
}
a {
    /* text-decoration: none !important; */
}
button {
    text-transform: uppercase !important;
    cursor: pointer;
}

.mask {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 102;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.mask .close {
    text-align: right;
    color: #fff;
    display: block;
    margin: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}
.text-uppercase {
    text-transform: uppercase;
}

/* social */
.layer-social {
    position: fixed;
    bottom: 0;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.layer-social .social-item {
    padding: 0.5rem 0.8rem;
}
.icon-scroll-top {
    color: var(--dark-gray--);
    min-width: 2.5rem;
    min-height: 2.5rem;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    cursor: pointer;
}
.icon-scroll-top.hide-icon {
    animation: translateToTop 0.6s forwards;
    -webkit-animation: translateToTop 0.6s forwards;
}
.icon-scroll-top:hover {
    background: var(--color-primary--);
    color: #fff;
    border-color: var(--color-primary--);
}

.banner {
    width: 100%;
    position: relative;
}
.slider-item > img {
    max-width: 100%;
    width: 100%;
}
.dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}
.dot-item {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 5px;
    color: transparent;
    cursor: pointer;
}
/* body */
.body {
    /* background: #F6F6F6; */
    padding: 4rem 0;
    width: 100%;
}
/* intro */
.intro {
    background: #fff;
}
.intro__left {
    border-right: 1px dashed #ccc;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intro__left__content {
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px dashed #ccc;
}

.name-intro {
    text-transform: uppercase;
}
.desc-intro {
    padding: 1rem 0;
}
.intro__right {
    padding: 1rem;
}
.intro__right.col-lg-8 > img {
    max-width: 100%;
}
/* service */
.body-content {
    padding: 1.5rem 0;
}
.service {
    background: #fff;
}
.name-body {
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: var(--dark-gray--);
    padding: 1rem 0;
}
.name-body:after,
.name-body:before {
    flex: 1;
    height: 2px;
    background: #ccc;
    content: "";
}
.name-body:after {
    margin-left: 1rem;
}
.name-body:before {
    margin-right: 1rem;
}

.name-body > svg {
    color: var(--dark-gray--);
    margin-right: 0.5rem;
}
.list-service {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service-item {
    height: 300px;
    width: calc((100% - 2rem) / 2);
    margin: 1rem 0;
}
.service-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-content > img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-content:hover > img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.service-content:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.15);
}
.mask-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}
.name-service {
    cursor: pointer;
}
.btn-view {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 0.5rem;
    text-transform: unset !important;
}

.parner-item > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.btn-show-more {
    padding: 0.75rem 1.2rem;
    background: var(--orange-pink--);
    color: #fff;
    border: none;
    margin: 1.5rem auto;
}
/* after before */
.after-before-item img {
    width: 100%;
    cursor: pointer;
    height: 400px;
    object-fit: cover;
}
.name-after-before {
    padding: 1rem 0;
    text-align: center;
    cursor: pointer;
    color: var(--color-primary--);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.name-after-before:hover {
    color: #b34e18;
}
/* post */
.list-post > .container-fluid {
    padding: 0;
}
.post-content > a img {
    width: 100%;
    object-fit: cover;
    max-height: 230px;
}
.post-content:hover > h4 {
    font-weight: 900;
}
.name-post {
    font-size: 1.125rem;
    text-align: center;
    padding: 1rem;
    min-height: 76px;
}

/* form register free */
.frm-regis-free {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 10px;
    padding: 1.2rem;
    margin: 1rem;
    border-top: 8px solid var(--dark-gray--);
    box-shadow: 0px 0px 30px 0px rgb(2 2 2);
    background: var(--color-white--);
    max-width: 270px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.frm-regis-free.hide-frm {
    opacity: 1;
    visibility: visible;
}
.frm-regis-free > form {
    display: flex;
    flex-direction: column;
}
.frm-name {
    font-size: 18px;
    color: var(--color-primary--);
    text-align: center;
}
.frm-regis-free input {
    padding: 0.35rem 0.75rem;
    box-shadow: inset 0 -1.8em 1em 0 rgb(0 0 0 / 0%);
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    outline: none;
}
.frm-regis-free input:focus {
    box-shadow: 0 0 5px #ccc;
}
.frm-regis-free .btn {
    text-transform: uppercase;
    background: var(--color-primary--);
    color: var(--color-white--);
    font-weight: 500;
}
.icon-close {
    position: absolute;
    top: -13px;
    right: 13px;
    line-height: 1;
    width: fit-content;
    height: fit-content;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    background: #fff;
    box-shadow: 0px 0px 15px 1px rgb(2 2 2 / 75%);
    text-shadow: 0px 0px 0px rgb(0 0 0 / 23%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* js */
.rotate {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.body {
    padding: 2.1rem 0;
    max-width: 1080px;
    margin: auto;
}
.title-tab {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.banner {
    width: 100%;
}
.mission-box {
    background-color: var(--light-pink--);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
/* blog-item */
.blog-item {
    margin-bottom: 2.1rem;
}
.blog-item > a {
    color: var(--black--);
    position: relative;
}
.blog-item > a:hover {
    color: var(--black--);
}
.blog-item > a:hover .time {
    background: var(--color-primary--);
    color: #fff;
}
.blog-item .blog-img {
    max-height: 185px;
    overflow: hidden;
    object-position: 50% 50%;
}
.blog-item .blog-img > img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-blog {
    padding: 0.7rem 1.2rem 1.4rem 1.2rem;
    background: #fff;
}
.name-blog {
    line-height: 1.3;
    font-size: 1.15rem;
    font-weight: 600;
}
.divider {
    height: 3px !important;
    margin: 1em 0 1em;
    background: rgba(0, 0, 0, 0.3);
    max-width: 30px;
}
.desc-blog {
    display: -webkit-box;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.desc-blog:hover {
    color: var(--color-primary--);
}
/* time */
.time {
    position: absolute;
    top: 7%;
    left: 0;
    width: 2.8rem;
    height: 2.8rem;
    border: 2px solid var(--color-primary--);
    margin-left: -0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    color: var(--color-primary--);
    background: #fff;
    line-height: 1;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.header-content {
    /* max-width: 1080px !important; */
    margin: auto;
}

.btn-lahues {
    background: var(--color-primary--) !important;
    color: #fff;
    border-color: var(--color-primary--) !important;
}
.color-primary {
    color: var(--color-primary--) !important;
}
.logo-link {
    width: 13% !important;
    padding: 5px !important;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffece9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #fff;
    animation: loader 2s infinite ease;
}
.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

.banner img,
.banner-second img {
    width: 100%;
    object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
tr,
td {
    color: var(--dark-gray--);
}
.mask-content h3 {
    color: #fff !important;
}
.mask-content .btn-view:hover {
    background-color: var(--orange-pink--);
}

.footer h1 {
    color: var(--color-white--) !important;
}
.footer h2 {
    color: var(--color-white--) !important;
}
.footer h3 {
    color: var(--color-white--) !important;
}
.footer h4 {
    color: var(--color-white--) !important;
}
.footer h5 {
    color: var(--color-white--) !important;
}
.footer h6 {
    color: var(--color-white--) !important;
}
.footer p {
    color: var(--color-white--) !important;
}
.mt-100 {
    margin-top: 100px !important;
}
.page-item.active .page-link {
    background-color: var(--dark-gray--) !important;
    border-color: var(--dark-gray--) !important;
}
.page-link {
    color: var(--dark-gray--) !important;
}
.page-item.active .page-link {
    color: #fff !important;
}
.contact p {
    font-size: 18px;
}
.contact h2 {
    font-size: 18px;
}
.btn-primary:hover {
    border-color: var(--orange-pink--);
    background-color: var(--orange-pink--);
}

/* Product */

.product-detail-meta {
    padding-left: 25px;
}
.product-detail-meta .product_title {
    color: var(--black--);
    font-size: 1.71429em;
    font-weight: 600;
    margin-bottom: 15px;
    clear: none;
    margin-top: 0;
    padding: 0;
}
.product-detail-meta .price_single_product .amout-price {
    font-size: 2.14286em;
    display: inline-block;
    font-weight: 700;
    color: #fe9705;
    line-height: 24px;
}
.product-detail-meta .price_single_product .amout-price del {
    text-decoration: line-through;
    font-size: 0.7em;
    margin: 0 0 0 10px;
    color: #adadad !important;
    font-weight: 300;
    opacity: 0.5;
    display: inline-block;
}
.product-detail-meta .price_single_product .amout-price ins {
    background: 0 0;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    margin: 0 5px;
    order: -1;
}
.product-detail-meta .product-details--short-description {
    padding-top: 15px;
}
.product-detail-meta .stock {
    font-size: 0.92em;
    color: #77a464;
}
.product-detail-meta .product-detail-addtocart .single_add_to_cart_button {
    vertical-align: middle;
    float: left;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    background-image: none;
    background-color: var(--dark-gray--);
    height: 45px;
    width: 185px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: #fff;
}
.product-detail-meta
    .product-detail-addtocart
    .single_add_to_cart_button:hover {
    border: 1px solid var(--dark-gray--);
    background: white;
    color: var(--dark-gray--);
}
.product-detail-meta .product-detail-addtocart .quantity {
    float: left;
    margin: 0 4px 0 0;
}
.product-detail-meta .product-detail-addtocart .quantity .text-qty {
    font-weight: 600;
    min-width: 81px;
    line-height: 45px;
    display: block;
    margin-bottom: 10px;
    float: left;
}
.product-detail-meta .product-detail-addtocart .quantity .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.product-detail-meta .product-detail-addtocart .quantity .custom-qty {
    box-shadow: none;
    position: relative;
    padding: 0;
    margin-top: 5px;
    width: 110px;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #ebebeb;
}
.product-detail-meta .product-detail-addtocart .quantity .custom-qty .minus {
    left: -1px;
    text-align: center;
    top: 0;
    width: 30px;
    border: 1px solid #ebebeb;
    color: #9d9588;
    background-image: none;
    background-color: #181a1b;
    height: 30px;
    line-height: 30px;
    font-size: 25px;
    cursor: pointer;
    background: #fff;
    position: absolute;
}
.product-detail-meta
    .product-detail-addtocart
    .quantity
    .custom-qty
    .input-text {
    text-align: center;
    min-height: 29px !important;
    height: 29px !important;
    border: unset;
    width: 100% !important;
    max-width: 100%;
    display: block;
}
.product-detail-meta .product-detail-addtocart .quantity .custom-qty .plus {
    right: 0;
    top: 0;
    width: 30px;
    color: #9d9588;
    background-image: none;
    background-color: #181a1b;
    height: 30px;
    line-height: 30px;
    border: 1px solid #ebebeb;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    text-align: center;
}
.product-detail-meta .product_meta .posted_in {
    font-weight: 700;
    display: inline-block;
    width: 100%;
}
.product-detail-meta .product_meta .posted_in a {
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    color: var(--black--);
    transition: 0.3s;
}
.product-detail-meta .product_meta .posted_in a:hover {
    color: #80bb35;
}
.product-detail-info .nav-item {
    margin-right: 5px;
}
.product-detail-info .nav-item .nav-link {
    background-color: var(--dark-gray--);
    color: #fff;
    border: 1px solid #d3ced2;
}
.product-detail-info .nav-item .nav-link.active {
    /* background: #fe9705; */
    /* border-bottom-color: #ebebeb; */
}
.product-detail-info .tab-content {
    padding: 15px !important;
    border: 1px solid #ebebeb;
    min-height: 100px;
    border-radius: 5px;
}
.custom-qty {
    box-shadow: none;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
    width: 110px;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #ebebeb;
}
.custom-qty .minus {
    left: -1px;
    font-size: 25px;
}
.custom-qty .minus,
.custom-qty .plus {
    text-align: center;
    top: 0;
    width: 30px;
    border: 1px solid #ebebeb;
    color: #9d9588;
    background-image: none;
    background-color: #181a1b;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    background: #fff;
    position: absolute;
}
.custom-qty .plus {
    right: 0;
    font-size: 20px;
}
.custom-qty .qty {
    text-align: center;
    min-height: 29px !important;
    height: 29px !important;
    border: unset;
    width: 100% !important;
    max-width: 100%;
    display: block;
}
.custom-qty-product {
    box-shadow: none;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
    width: 110px;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #ebebeb;
}
.custom-qty-product .minus {
    left: -1px;
    font-size: 25px;
}
.custom-qty-product .minus,
.custom-qty-product .plus {
    text-align: center;
    top: 0;
    width: 30px;
    border: 1px solid #ebebeb;
    color: #9d9588;
    background-image: none;
    background-color: #181a1b;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    background: #fff;
    position: absolute;
}
.custom-qty-product .plus {
    right: 0;
    font-size: 20px;
}
.custom-qty-product .qty {
    text-align: center;
    min-height: 29px !important;
    height: 29px !important;
    border: unset;
    width: 100% !important;
    max-width: 100%;
    display: block;
}
.table-cart-list {
    border: 2px solid rgba(0, 0, 0, 0.1);
}
.billing_bottom a {
    text-decoration: none;
    color: #338dbc;
}
.checkout-info-table {
    border: 2px solid rgba(0, 0, 0, 0.1);
}
.btn-default-cusom {
    color: #fff;
    height: 45px;
    padding: 0 50px;
    border-radius: 0;
    font-size: 14px;
    border: none;
    font-weight: 600;
    line-height: 45px;
    background: var(--dark-gray--);
    display: inline-block;
}
.btn-default-cusom:hover {
    border: 1px solid var(--dark-gray--);
    background: white;
    color: var(--dark-gray--);
}
.confrim-order-page .info-order li {
    border: none;
    border-right: 1px dashed #d3ced2;
}
.confrim-order-page .info-order li:last-child {
    border: none;
}
.confrim-order-page table {
    border: 1px solid #dee2e6;
}
.box-preview-image-product .slider-image-product img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}
.box-preview-image-product .slider-product-nav {
    margin-top: 10px;
}
.box-preview-image-product .slider-product-nav img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}
.box-preview-image-product .slick-next:before,
.box-preview-image-product .slick-prev:before {
    color: var(--dark-gray--);
}
.tab-content img {
    max-width: 100%;
}

.tab-content table,
.tab-content th,
.tab-content td {
    border: 1px solid;
}
.tab-content table {
    width: 100%;
}
.tab-content th,
.tab-content td {
    padding-left: 15px;
}

.home_menu_space {
    border: 1px solid #ebebeb;
}
.home_menu_space .home-meunu-title {
    /* border-radius: 15px; */
    background: var(--dark-gray--);
    padding: 6px 20px;
    margin: 0;
}
.home_menu_space .home-meunu-title .menu-title {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.home_menu_space .list-group .list-group-item {
    border: none;
}
.home_menu_space .list-group .list-group-item:hover {
    color: #80bb35;
    border: 1px solid var(--dark-gray--);
    border-radius: 0 !important;
}
.home_menu_space .list-group .list-group-item i {
    margin-right: 5px;
}
.home_menu_space .list-group .list-group-item-action:focus,
.home_menu_space .list-group .list-group-item-action:hover {
    background: none;
}

.checkout .form-group {
    margin-top: 15px;
}
.float-right {
    float: right;
}
.box-shadow {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.0818614);
}
.tag-category span {
    font-size: 12px !important;
    color: var(--dark-gray--) !important;
}
.tag-category:hover span {
    color: #fff !important;
    background-color: var(--dark-gray--) !important;
}
.listCategory__title {
    background: var(--dark-gray--);
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
}
.listCategory_box:hover .listCategory__title {
    border: 1px solid var(--dark-gray--);
    color: var(--dark-gray--);
    background: #fff;
}

.cart-socical svg {
    font-size: 22px;
    color: var(--dark-gray--);
}
.cart-socical {
    padding: 8px;
    border: 1px solid;
    border-radius: 50%;
    background: white;
    position: relative;
}
.cart-socical span {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 12px;
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
}

/* animation */
@keyframes translateHeader {
    from {
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

/* end animation */
/* fixed */
.header {
    position: relative;
    z-index: 3;
    width: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    background: #fff;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    animation: translateHeader 0.6s linear forwards;
    -webkit-animation: translateHeader 0.6s linear forwards;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 15%);
}
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    width: 100%;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    animation: translateHeader 0.6s linear forwards;
    -webkit-animation: translateHeader 0.6s linear forwards;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 15%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--orange-pink);
    position: relative;
}
.header.fixed .header-content {
    border-bottom: none;
}
.icon-menu {
    display: none;
    cursor: pointer;
    font-size: 1.9rem;
}

.logo-link {
    width: 10%;
    padding: 1rem 0;
}
.logo-link h1 {
    margin: 0;
}

.logo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.header.fixed .header-content .logo-link img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    width: 70%;
}
.list-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.menu-item .menu-link,
.submenu-link,
.menu-item {
    text-transform: uppercase;
    color: var(--dark-gray--);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.menu-link {
    padding: 10px 7px;
}
.submenu-link {
    display: inline-block;
    padding-left: 0.9rem;
    margin: 0 10px 15px;
    border-left: 3px solid var(--light-pink--);
}
.submenu-link:hover {
    color: #444;
}

.menu-link:hover {
    font-weight: 900 !important;
    color: var(--dark-gray--);
}
.menu-link.active {
    color: var(--dark-gray--);
    font-weight: 900 !important;
}
.menu-item {
    position: relative;
    padding: 6px 7px;
    cursor: pointer;
}

.menu-item.sub-arrow:before {
    content: "\f106";
    font-family: Fontawesome;
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    z-index: 99;
    color: #ccc;
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.menu-item:hover::before,
.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.menu-item.arrow-right:after {
    content: "\f107";
    font-family: Fontawesome;
}
.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 260px;
    /* border-top: 3px solid var(--color-primary--); */
    padding: 1.2rem;
    box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    margin-top: 1.5rem;
    z-index: 99;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    list-style: none;
}
.frm-group {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 260px;
    border-top: 3px solid var(--color-primary--);
    padding: 1.2rem;
    box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    margin-top: 1.5rem;
    z-index: 99;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.btn-advise {
    padding: 5px 25px;
    background: var(--color-primary--);
    border-radius: 90px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    -ms-border-radius: 90px;
    -o-border-radius: 90px;
    border: none;
    cursor: pointer;
    color: #fff;
}
.submenu-item .frm-search input {
    width: 100%;
    padding-right: 50px;
    border: 1px solid var(--orange-pink--);
    padding-left: 0.8rem;
}
.menu-item:last-child .sub-menu {
    right: -1rem;
    left: auto;
}
.frm-search {
    position: relative;
}
.frm-search:after {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1rem;
    content: "\f002";
    font-family: Fontawesome;
    height: 100%;
    background: var(--orange-pink--);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
input[name="search"] {
    display: inline-block;
    padding: 0.55rem 0.75rem;
    min-width: 265px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
}
/* style mobile */
.search__mb {
    position: relative;
    display: none;
}
.search__mb .frm-group {
    left: auto;
    right: 0;
}
.search__mb:hover .frm-group {
    opacity: 1;
    visibility: visible;
    right: 0;
    left: auto;
}

/* mobile */
#menu_mb .list-menu {
    display: none;
}

.lite-profile {
    max-width: 100px;
}
.lite-profile .dropbtn {
    background-color: #4caf50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.lite-profile .dropdown {
    position: relative;
    display: inline-block;
}

.lite-profile .dropdown .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 15px;
    color: white;
}
.lite-profile .dropdown .dropdown-item:hover {
    background-color: transparent;
}

.lite-profile .dropdown .dropdown-item .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.lite-profile .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 8px;
    padding: 15px;
    width: 300px;
}

.lite-profile .dropdown-content a {
    color: #2e3238;
    padding: 12px 16px;
    text-decoration: none;
    gap: 15px;
    display: flex;
}

.lite-profile .dropdown-content a:hover {
    color: var(--dark-gray--);
    font-weight: bold;
}

.lite-profile .dropdown:hover .dropdown-content {
    display: block;
}

.lite-profile .dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

.footer {
    padding: 3rem 0;
    background: var(--orange-pink--);
    color: var(--color-white--);
}

h3.name-footer.text-uppercase,
h4.contact-title.text-uppercase {
    font-size: 1.3rem;
}

hr.footer-hr {
    width: 100%;
    max-width: 30px;
    height: 3px !important;
    background: var(--color-name--);
}
ul.list-social {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
}

a.social-link {
    min-width: 2.5rem;
    min-height: 2.5rem;
    border: 1px solid var(--color-name--);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-name--);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
/*.social-item:not(:last-child) {*/
/*    margin: 0.25rem;*/
/*}*/
.social-item:hover .social-link {
    background: var(--color-social--);
    color: var(--color-name--);
    border: 1px solid var(--color-social--);
}
/* footer-menu */

ul.footer-menu {
    padding: 0;
}

.footer-menu li.menu-item,
.footer-menu li.menu-item a.menu-link {
    padding-left: 0;
    color: var(--color-white--) !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.footer-menu li.menu-item,
.footer-menu li.menu-item a.menu-link:hover,
.footer-menu li.menu-item {
    color: var(--color-white--);
}
.footer-flex {
    display: flex;
    flex-direction: column;
}
.footer-menu li.menu-item:not(:first-child) {
    padding-left: 0;
    color: var(--color-white--) !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    border-top: 1px solid rgba(236, 236, 236, 0.2);
}
.footer-menu li.menu-item,
.footer-menu li.menu-item a.menu-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-menu li.menu-item .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    min-width: auto !important;
    width: 100%;
    position: static;
    background: transparent;
    box-shadow: none;
    margin-top: 1rem;
    /* border-left: 1px solid rgba(236, 236, 236, .2); */
    padding: 0 1rem;
    list-style: none;
}
.footer-menu li.menu-item:nth-child(2)::before {
    display: none;
}
.footer-menu li.menu-item .sub-menu .submenu-item {
    width: auto;
    padding: 6px 0;
}
.footer-menu li.menu-item:nth-child(2)::after {
    display: none;
}
.footer-menu li.menu-item .sub-menu .submenu-link {
    padding: 0.25rem 0 0.25rem 10px;
    color: var(--color-name--);
    margin: 0;
    font-size: 0.9rem;
}
.icon-drop {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
/* form */
.color-require {
    color: #e80000;
}
p.frm-require {
    font-size: 1.07rem;
}
.frm-regis {
    display: flex;
    flex-direction: column;
    padding: 5px;
}
.frm-regis input {
    padding: 5px;
    font-size: 0.9rem;
    border: 1px solid #c4c4c4;
    background: #f7f7f7;
    color: #787878;
    margin-bottom: 1rem;
    outline: none;
}
.frm-regis .btn {
    background: var(--light-pink--);
    color: var(--dark-gray--);
    border: none;
    text-transform: uppercase;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    font-weight: 700;
}
.frm-regis .btn:hover {
    background: #c4c4c4;
    color: #fff;
}

.list-blog a {
    text-decoration: none;
}

#social-links ul {
    display: flex;
    gap: 15px;
    padding-left: 0;
    justify-content: end;
    list-style: none;
}
#social-links ul li svg {
    font-size: 25px;
}
.title-h3 {
    font-size: 1.5rem;
    color: var(--color-white--) !important;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.title-h4-form {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.title-h4 {
    font-size: 1.25rem;
    color: var(--color-white--) !important;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.content-editor tbody,
.content-editor td,
.content-editor tfoot,
.content-editor th,
.content-editor thead,
.content-editor tr {
    border-color: inherit;
    border-style: solid;
    border-width: inherit;
}

.toc {
    /* border: 2px solid gray; */
    padding: 5px;
    background: rgba(243, 243, 243, 0.95);
    box-sizing: border-box;
    font-size: 16px;
}
.tocL2 div {
    /* font-size: 22px; */
    font-weight: 400;
    color: rgb(51, 51, 51);
}
.tocL2 > ul {
    list-style: decimal;
}

/* Media style */

@media only screen and (max-width: 992px) {
    body.hidden {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .mask.hide-mask {
        display: block;
    }

    .logo-link {
        width: 15%;
    }
    .submenu-item {
        /* width: fit-content; */
    }
    .list-menu {
        display: none;
        flex-wrap: wrap;
    }
    .icon-menu {
        display: block;
    }
    .search__mb {
        display: block;
    }
    #menu_mb .list-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        padding: 2rem 0;
        background: rgba(255, 255, 255, 0.95);
        max-width: 260px;
        width: 100%;
        height: 100vh;
        z-index: 109;
    }
    .menu-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .btn-advise {
        background: transparent;
        padding: 10px 7px;
        color: #444;
    }
    .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        min-width: auto;
        margin-top: 0;
        border: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 2rem 0 0;
    }
    .submenu-item {
        width: 100%;
        border-left: none;
    }
    .submenu-link {
        border: none;
        padding: 0;
    }
    .menu-item:nth-child(2):after {
        /* display: none; */
    }
    .menu-item:last-child {
        /* display: none; */
    }
    .menu-item:nth-child(2):before,
    .menu-item:last-child:before {
        /* display: none; */
    }
}

@media only screen and (max-width: 768px) {
    .mission-box {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }
    /* parner */
    .parner-item:not(:first-child),
    .after-before-item:not(:first-child) {
        display: none;
    }

    .header.fixed .header-content .logo-link img,
    .logo-link img {
        width: 200% !important;
        margin-left: -15px !important;
    }

    .intro__right.col-lg-8 > img {
        zoom: 50%;
    }

    .footer-flex {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
    }
    .footer {
      padding: 1rem 0;
    }
    .footer .footer-item {
      text-align: center;
    }
    .footer .footer-item .name-footer {
      max-width:200px;
      margin: auto;
      text-align:center;
    }
    .footer .footer-item .footer-hr {
      /* display: none; */
    }
    .footer .footer-item .desc-footer {
      text-align: center;
    }
    .footer .footer-item .list-social {
      margin: auto;
    }
    .footer .footer-item  .fb-page {
      margin-bottom: 30px;
    }
    #footer-frm-regis {
      margin-bottom: 30px;
    }
}
