@font-face {
    font-family: 'Samsung Sharp Sans';
    src: url('../fonts/SamsungSharpSans.woff2') format('woff2'), url('../fonts/SamsungSharpSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Samsung Sharp Sans';
    src: url('../fonts/SamsungSharpSans-Medium.woff2') format('woff2'), url('../fonts/SamsungSharpSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Samsung Sharp Sans';
    src: url('../fonts/SamsungSharpSans-Bold.woff2') format('woff2'), url('../fonts/SamsungSharpSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shake-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }

    10%, 30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20%, 40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }

    100%, 50% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes shake-anim {
    0%, 100%, 50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10%, 30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20%, 40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
}

.popup-custom .modal-content {
    border-radius: 0px;
    border: 0px;
}

.popup-custom .modal-content .modal-body {
    padding: 10px;
}

.popup-custom .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 2;
    color: #888888;
    cursor: pointer;
    border: 1px solid #eeeeee;
    background-color: #ffffff;
    opacity: 1 !important;
}

#popup-quickview .modal-dialog {
    max-width: 1140px;
}

.opacity-0 {
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleLarge {
    0% {
        opacity: 0;
        transform: scale(2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

#viewdv_b233_view_1 {
    display: none !important
}

/* Main */
:root {
    --color-red: #ec2d3f;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #212529;
    --color-gray: #6c757d;
    --main-color: #23864B;
    --second-color: #D62225;
    --color-hover: #23864B;
    --color-static: #000;
    --color-hover: #ec2d3f;
    --menu-border: rgb(255 255 255 / 20%);
    --menu-color: #fff;
}

/* ==== */
#main-cube {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    background: #fff;
    z-index: 9999999999999;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.logo_phee {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 210px;
    height: 210px;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
}

.middle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}

.logo_phee img {
    padding: 20px;
}

.loading-css {
    position: absolute;
    margin: auto;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    display: block;
    width: 200px;
    height: 200px;
    border: 2px solid var(--main-color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-animation: spin 500ms infinite linear;
    -moz-animation: spin 500ms infinite linear;
    -o-animation: spin 500ms infinite linear;
    -ms-animation: spin 500ms infinite linear;
    animation: spin 500ms infinite linear;
}

body:not(.home) #main-cube {
    visibility: hidden
}

@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

/* Toc */
.content-ck {
    line-height: 2em;
}

.content-ck * {
    max-width: 100% !important;
}

.content-ck img {
    max-width: 100% !important;
    height: auto !important;
}

.content-ck iframe {
    max-width: 100% !important;
}

.content-ck table {
    margin: 0px auto;
}

.content-ck ul, .content-ck ol {
    display: block;
    margin-block-start: 1em; margin-block-end: 1em; margin-inline-start: 0px; margin-inline-end: 0px; padding-inline-start: 40px; }

.content-ck p {
    display: block;
    margin-block-start: 1em; margin-block-end: 1em; margin-inline-start: 0px; margin-inline-end: 0px; }

a.mucluc-dropdown-list_button {
}

a.mucluc-dropdown-list_button:before {
    content: "\f03a";
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 400;
    background: #fff;
    color: #006ACB !important;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 38px;
    text-align: center;
    border: 1px solid #ddd;
}

.meta-toc.fiedx {
    position: fixed;
    left: 5px;
    top: 200px;
    z-index: 111;
}

.meta-toc .mucluc-dropdown-list_button {
    display: none
}

.meta-toc.fiedx .mucluc-dropdown-list_button {
    display: block;
}

.meta-toc:not(.fiedx) .box-readmore {
    display: block !important;
}

.box-readmore {
    padding: 10px;
    background-color: #f5f5f5;
    width: 100%;
    margin-top: 2px;
    border: 1px solid #dddddd;
    font-size: 13px;
    margin-bottom: 10px;
}

.meta-toc.fiedx .box-readmore {
    width: 350px;
    display: none;
}

.box-readmore li ul>li {
    margin: 0;
    margin-bottom: 8px;
}

.box-readmore li ul>li:before {
    content: counters(item, ".") " ";
}

.box-readmore ul {
    list-style-type: none;
    counter-reset: item;
    margin-bottom: 0px;
    padding-left: 0px !important;
    margin-top: 8px;
}

.box-readmore ul li {
    display: table;
    counter-increment: item;
    margin: 0 0 5px 0;
}

.box-readmore ul li a {
}

.box-readmore ul li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 5px;
}

.box-readmore ul li a {
    color: #000 !important;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.box-readmore ul li li a {
    font-weight: 400;
}

.box-readmore ul li a:hover {
    color: #767676;
}

.fb-page, .fb-page span, .fb-page span iframe[style] {
    max-width: 100% !important;
}

/* loadpage website */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
}

#loader-wrapper #wrap {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

#loader-wrapper.show1 #wrap {
    background: transparent
}

#loader-wrapper:after {
    -webkit-mask: url(../images/mask-01.png);
    mask: url(../images/mask-01.png);
    -webkit-mask-size: 2300% 100%;
    mask-size: 2300% 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    z-index: 99999;
}

#loader-wrapper.show1::after {
    -webkit-animation: MaskPlay 1s steps(22) forwards;
    animation: MaskPlay 1s steps(22) forwards;
}

#loader-wrapper.show1 #wrap {
    opacity: 0;
}

.loading-text ul {
    margin-top: 1.875rem
}

.loading-text ul li {
    -webkit-animation: anime 1.5s infinite linear;
    animation: anime 1.5s infinite linear;
    display: inline-block;
    font-family: var(--bs-font-monospace);
    font-size: 1.875rem;
    letter-spacing: 1px
}

.loading-text ul li:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.loading-text ul li:nth-child(2) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.loading-text ul li:nth-child(3) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.loading-text ul li:nth-child(4) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.loading-text ul li:nth-child(5) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.loading-text ul li:nth-child(6) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.loading-text ul li:nth-child(7) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.loader {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    padding-bottom: 3.125rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100001
}

/* name */
@-webkit-keyframes anime {
    0% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: 1px 1px 0 #000;
        transform: translateY(0)
    }

    50% {
        color: #ffc107;
        letter-spacing: 5px;
        text-shadow: 5px 10px 1px #000;
        transform: translateY(-10px)
    }

    100% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: 1px 1px 0 #000;
        transform: translateY(0)
    }
}

@keyframes anime {
    0% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: 1px 1px 0 #000;
        transform: translateY(0)
    }

    50% {
        color: #ffc107;
        letter-spacing: 5px;
        text-shadow: 5px 10px 1px #000;
        transform: translateY(-10px)
    }

    100% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: 1px 1px 0 #000;
        transform: translateY(0)
    }
}

/* end name*/
@-webkit-keyframes MaskPlay {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0
    }
}

@keyframes MaskPlay {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0
    }
}

/*  end loadpage website */
body {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    position: relative;
}

blockquote {
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    padding: 2px 0;
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 5px;
}

blockquote p {
    margin-bottom: 0;
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.row>* {
    padding-left: 15px;
    padding-right: 15px
}

.row-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-30 {
    margin-left: -15px;
    margin-right: -15px;
}

.col-30 {
    padding-left: 15px;
    padding-right: -15px;
}

.col-20 {
    padding-left: 10px;
    padding-right: 10px;
}

.mg-col-10 {
    padding-left: 5px;
    padding-right: 5px;
}

.padding-top-bottom {
    padding: 2rem 0;
}

.pad-top {
    padding-top: 2.5rem;
}

.pad-bottom {
    padding-bottom: 2.5rem;
}

.mg-top {
    margin-top: 2.5rem;
}

.mg-bottom {
    margin-bottom: 2.5rem;
}

.hover_xemthem {
    transition: 0.4s;
}

.hover_xemthem:hover {
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    text-decoration: initial;
}

a, input, textarea {
    outline: none;
    padding: 0px;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.w-clear:after {
    display: block;
    content: "";
    clear: both;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.none {
    display: none;
}

.hidden-seoh {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden;
}

.wrap-content {
    max-width: 1200px;
    margin: auto;
    width: calc(100% - 30px);
    position: relative;
    z-index: 1;
}

.wrap-content1 {
    max-width: 1300px;
    margin: auto;
    width: calc(100% - 30px);
    position: relative;
    z-index: 1;
}

.wrap-content3 {
    max-width: 1100px;
    margin: auto;
    width: calc(100% - 30px);
    position: relative;
    z-index: 1;
}

.wrap-content2 {
    margin: 30px auto;
    width: calc(100% - 60px);
    position: relative;
    z-index: 1;
}

.fix_head {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 999 !important;
}

.pd-l-10 {
    padding-left: -10px;
}

.pd-r-10 {
    padding-right: -10px;
}

.mg-l-10 {
    margin-left: -10px;
}

.mg-r-10 {
    margin-right: -10px;
}

.mg-b-20 {
    margin-bottom: 20px;
}

.title-detail-main {
    color: #252525;
    font-size: 23px;
    margin-bottom: 1rem;
    /* font-weight: 500; */
    margin-top: -15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#viewdv_c237_view_1 {
    display: none !important
}

/* General */
.title-main {
    text-align: center;
    margin-bottom: 30px;
}

.contact-text {
    width: 60%;
}

.contact-form {
    width: 38%;
}

form.ft-form .tt-newsletter {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.desc-newsletter {
    margin-bottom: 10px;
}

form.ft-form {
    width: 80%;
}

form.ft-form .btn-contact {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    background: no-repeat;
    box-shadow: none;
    color: var(--main-color);
    height: 50px;
}

.title-main span {
    position: relative;
    display: block;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-size: 30px;
}

.title-main p {
    margin-bottom: 0;
    color: var(--main-color);
    font-size: 17px;
    margin-top: -5px;
    display: list-item;
    list-style: disc inside;
}

.title-main p em {
    font-style: normal;
    color: #000;
}

.title-orther {
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 5px
}

.title-orther span {
    color: #363636;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.time-main {
    margin-bottom: 0.75rem;
    color: #999999;
}

.time-main i {
    vertical-align: top;
    margin: 3px 7px 0px 0px;
}

.time-main span {
    vertical-align: top;
    display: inline-block;
}

.share {
    padding: 17px 15px 10px 15px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}

.share b {
    display: block;
    margin-bottom: 5px;
}

.a2a_kit .a2a_svg {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.control-owl {
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0px;
    top: calc(50% - 45px / 2);
}

.control-owl button {
    opacity: 0.5;
    top: 0px;
    position: absolute;
    outline: none;
    border: 0px;
    padding: 0px;
    margin: 0px;
    display: block;
    cursor: pointer;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 25px;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.control-owl button:hover {
    opacity: 1;
}

.control-owl button.owl-prev {
    left: 20px;
}

.control-owl button.owl-next {
    right: 20px;
}

.custom-form-row {
    margin-right: -10px;
    margin-left: -10px;
}

.custom-form-row>.col, .custom-form-row>[class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.text-sm {
    font-size: 0.875rem !important;
}

/* Lazyload */
img.lazy {
    opacity: 0;
}

img:not(.initial) {
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

img.initial, img.loaded, img.error {
    opacity: 1;
}

img:not([src]) {
    visibility: hidden;
}

/* effect */
.effect {
    display: block;
    overflow: hidden;
}

.effect img {
    transition: 0.7s;
    width: 100%;
}

.effect:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.effect-1 {
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    display: block;
}

.effect-1:after {
    position: absolute;
    top: 0;
    left: -66%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
}

.effect-1:hover:after {
    -webkit-animation: shine .75s;
    */ animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.effect-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: absolute; */
    /* width: 100%; */
    /* height: 100%; */
    /* left: 0; */
    /* top: 0; */
    /* right: 0; */
    /* bottom: 0; */
    text-align: center;
}

.effect-2:before, .effect-2:after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    z-index: 9;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
    transform-origin: center;
}

.effect-2:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale3d(0, 1, 1);
}

.effect-2:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale3d(1, 0, 1);
}

.effect-2:hover {
    background: rgba(0, 0, 0, 0.45);
}

.effect-2:hover:before, .effect-2:hover:after {
    transform: scale3d(1, 1, 1);
    transition: transform 0.5s;
}

.effect-2 > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.effect-2:hover > img {
    opacity: 0.8;
}

/* head */
.header {
    position: fixed;
    width: 100%;
    z-index: 9;
    background: #00000029;
    /* -webkit-box-shadow: 0px 0px 5px 0px rgba(238, 232, 231, 1); */
    -moz-box-shadow: 0px 0px 5px 0px rgba(238, 232, 231, 1);
    /* box-shadow: 0px 0px 5px 0px rgba(238, 232, 231, 1); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.right-head {
    display: none;
}

.header_top {
    position: relative;
    z-index: 9
}

.cart-header {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    color: #000 !important;
    text-align: center;
    background: #c5e097;
    position: relative;
}

.cart-header span {
    position: absolute;
    right: -3px;
    top: -3px;
    color: #fff;
    background: red;
    padding: 5px 4px;
    font-size: 11px;
    border-radius: 50%;
    display: inline-block;
    line-height: 5px;
}

.lang-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 10px;
    color: #ccc;
}

.lang-home a {
    color: #fff;
    margin: 0 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    font-weight: 600;
}

.lang-home a.active {
    color: var(--main-color);
}

.logo-head img {
    height: 80px;
    transition: all 1s
}

.header.fix .logo-head img {
    height: 60px;
    transition: all 1s
}

/* Search */
.search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 550px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    padding: 2px;
}

.search p {
    width: 60px;
    line-height: 42px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: #fff;
    font-size: 18px;
    position: relative;
    background: #030303;
    border-radius: 6px;
}

.search input {
    width: calc(100% - 60px);
    height: 42px;
    outline: none;
    border: 0px;
    background: transparent;
    font-size: 14px;
    padding: 0 15px;
    color: #333;
    font-style: italic;
}

.search input::-webkit-input-placeholder {
    color: #5b5b5b;
}

.search input:-moz-placeholder {
    color: #5b5b5b;
}

.search input::-moz-placeholder {
    color: #5b5b5b;
}

.search input:-ms-input-placeholder {
    color: #5b5b5b;
}

/* Search Responsive */
.search-res {
    position: relative;
}

.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: #fff;
    font-size: 17px;
    margin: 0px;
}

.search-res .icon-search.active {
    color: #ec2d3f;
    background: #ffffff;
    border-radius: 100%;
}

.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ec2d3f;
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
}

.search-res .search-grid p {
    float: left;
    width: 35px;
    height: 38px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    font-size: 17px;
    display: block;
    color: #ec2d3f;
    line-height: 40px;
    text-align: center;
}

.search-res .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 38px;
    outline: none;
    border: none;
    color: #ec2d3f;
}

.search-res .search-grid input::-webkit-input-placeholder {
    color: #313131;
}

.search-res .search-grid input:-moz-placeholder {
    color: #313131;
}

.search-res .search-grid input::-moz-placeholder {
    color: #313131;
}

.search-res .search-grid input:-ms-input-placeholder {
    color: #313131;
}

/* Menu */
.menu {
    z-index: 8;
    line-height: 40px;
    position: relative;
    transition: all 1s;
    /* padding-bottom: 5px; */
    /* background: #fff; */
}

.header.fix {
    z-index: 99;
    /* -webkit-box-shadow: 0px 5px 5px 0px rgb(148 145 148 / 38%); */
    -moz-box-shadow: 0px 5px 5px 0px rgb(148 145 148 / 38%);
    /* box-shadow: 0px 5px 5px 0px rgb(148 145 148 / 38%); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: fadeInDown 1.3s ease backwards;
    -moz-animation: fadeInDown 1.3s ease backwards;
    -o-animation: fadeInDown 1.3s ease backwards;
    -ms-animation: fadeInDown 1.3s ease backwards;
    background: #000000c9;
}

.menu ul {
    padding: 0px;
    margin: 0 auto;
    list-style: none;
    width: 100%;
}

.menu ul li {
    position: relative;
    z-index: 1;
    list-style: none;
}

.menu ul li a {
    display: block;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 19px;
    font-weight: bold;
    font-size: 18px;
}

.menu ul li a:hover, .menu ul li a.active {
    color: var(--main-color);
}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    background-color: #fff;
    border-radius: 0.25rem;
    -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
}

.menu ul li:hover > ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
}

.menu ul li ul li a {
    font-size: 16px;
    border-bottom: 1px solid #e5e4e475;
    padding: 10px 20px;
    line-height: 20px;
    text-transform: unset;
    color:#000;
    font-weight: normal;
    
}
.menu ul li ul li a:hover{
    color:var(--main-color);
}

.menu ul li ul li a.has-child {
    margin-right: 0px;
}

.menu ul li ul li a.has-child:after {
    border-color: #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu ul li ul li a.active {
    color: rgb(214, 165, 37);
}

.menu ul li ul li a.active.has-child:after {
    border-color: var(--main-color);
}

.menu ul li ul li:last-child > a {
    border-bottom: 0px;
}

.menu ul li ul li:hover > a {
    color: red;
}

.menu ul li ul li:hover > a.has-child:after {
    border-color: var(--main-color);
}

.menu ul li ul li ul {
    top: 0;
    left: 100%;
    margin-top: 0px;
}

/* Mmenu */
.menu-res {
    z-index: 100;
    background: var(--main-color);
    position: relative;
    display: none;
}

.menu-bar-res {
    height: 50px;
    padding: 0px 15px;
}

.close-menu {
    background: #484848;
    padding: 5px 13px;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    z-index: 99;
}

/* #menu { display: none; } */
#hamburger {
    display: none;
    width: 30px;
    height: 23px;
    position: relative;
}

#hamburger:before, #hamburger:after, #hamburger span {
    background: var(--main-color);
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0px;
}

#hamburger:before {
    top: 0px;
}

#hamburger span {
    top: 10px;
}

#hamburger:after {
    top: 20px;
}

#hamburger:before, #hamburger:after, #hamburger span {
    -webkit-transition: none 0.5s ease 0.5s;
    transition: none 0.5s ease 0.5s;
    -webkit-transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity;
}

.menu-mobile-opened #hamburger:before, .menu-mobile-opened #hamburger:after {
    top: 10px;
}

.menu-mobile-opened #hamburger span {
    left: -50px;
    opacity: 0;
}

.menu-mobile-opened #hamburger:before {
    transform: rotate(45deg);
}

.menu-mobile-opened #hamburger:after {
    transform: rotate(-45deg);
}

.mm-menu_opened {
    display: block !important;
}

/* Slideshow */
.slideshow {
    position: relative;
    z-index: 8;
    height: 100vh;
}
.slider_box{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10;
}
.slider_box .wrap-content{display: flex;justify-content:  space-between;height: 100%;align-items: center;}
.slider_box .wrap-content .slide-left{width: 65%;}
.slider_box .wrap-content .slide-left .slider-desc{
    display: list-item;
    list-style: disc;
    color: var(--main-color);
    letter-spacing: 5px;
    font-size: 18px;
}
.slider_box .wrap-content .slide-left .slider-desc span{color: #d52323;/* font-size: 18px; */}
.slider_box .wrap-content .slide-left .slider-desc span span{color: #22874b;/* font-size: 18px; */}
.slider_box .wrap-content .slide-left .slider-title{
    font-weight: bold;
    font-size: 55px;
    color: #fff;
    line-height: 1.3em;
    margin: 0.5em 0;
}
.slider_box .wrap-content .slide-left .slider-button{display: inline-block;padding: 14px 45px;border: thin solid var(--main-color);border-radius: 50px;color: #fff;transition: all 0.5s;position: relative;bottom: 0;text-transform: uppercase;background: var(--main-color)}

.slider_box .wrap-content .slide-left .slider-button:hover {
    background: var(--main-color);
    bottom: 5px;
}
.slider_box .wrap-content .slide-left .slider-button{}
.slider_box .wrap-content .slide-right{width: 33%;}

.rotatex {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    overflow: hidden;
}
.rotatex .rotate-box {
    position: relative;
    width: 220px;
    height: 220px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    display: block;
}
.rotatex .rotate-box .rotate-text {
    -webkit-animation: rotateText 20s linear infinite;
    animation: rotateText 20s linear infinite;
    font-weight: 400;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
}
.rotatex .rotate-box .rotate-circle svg {
    width: 220px;
    height: 220px;
    fill: #fff;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.rotatex .rotate-box .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background-color: transparent;
    font-size: 40px;
    border: 1px solid #21BB5F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #21BB5F;
}
.rotatex .rotate-box .icon img {
    border-radius: 50%;
}
@-webkit-keyframes rotateText {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes rotateText {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
/* Breadcrumb */
.breadCrumbs {
    background-color: #e6e6e6;
}

.breadCrumbs .wrap-content {
    padding: 0.75rem 0;
}

.breadCrumbs .wrap-content .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
    color: #212529;
    font-size: 15px;
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
    color: #6c757d;
}

/* Product */
.row5 {
    margin-left: -5px;
    margin-right: -5px;
}

.col_product {
    margin-bottom: 30px;
}

.item_product {
    position: relative;
    display: block;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff
}

.item_product h3 {
    margin-bottom: 10px;
    margin-top: 10px;
    /* text-align: center; */
}

.item_product h3 a {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #000000;
    font-size: 18px;
    line-height: 1.5em;
    text-transform: capitalize;
    font-weight: 600;
    height: 6em
}

.item_product:hover h3 a {
    color: var(--main-color);
}

.info_product span {
    color: #21BB5F;
    font-size: 13px;
    line-height: 25px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border: thin solid #21BB5F;
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block;
}

.img_product {
    position: relative;
}

.info_product {
    padding: 12px 0 0;
    /* text-align: center; */
}

.info_product span {}

.more-product {
    position: relative;
    text-align: center;
    line-height: 37px;
    font-size: 16px;
    background-color: #C4C4C4;
    border-radius: 55px;
    color: #fff;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    max-width: 160px;
}

.more-product i {
    margin-left: 10px
}

.more-product:hover {
    background: var(--main-color);
    color: #fff;
}

.info_product_hover {
    position: absolute;
    top: 50%;
    left: 50%;
    align-content: center;
    height: 0;
    width: 0;
    background: #d52123c9;
    transition: all 1s;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    padding: 20px;
    opacity: 0;
    text-align: center;
    /* border: 5px solid var(--main-color); */
    /* overflow: hidden; */
    border-radius: 10px;
}
.info_product_hover>a{
    display: block;
    width: 100%;
    height: 100%;
}
.info_product_hover .wrap::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.info_product_hover .wrap::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.info_product_hover .wrap::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

.item_product:hover .info_product_hover {
    transition: all 1s;
    opacity: 1;
    z-index: 10;
}

.info_product_hover h3 {
    margin-bottom: 15px;
    text-align: center;
}

.info_product_hover h3 a {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 600;
    height: 60px
}

.info_product_hover:hover h3 a {
    color: #fff;
}

.info_product_hover .wrap {
    overflow-y: auto;
    color: #fff;
    font-size: 15px;
    line-height: 1.5em;
    text-transform: capitalize;
    max-height: 100%;
    text-align: left;
}

.info_product_hover span.addcart {
    width: 100%;
    max-width: 160px;
    line-height: 39px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 500px;
    overflow: hidden;
    background: var(--main-color);
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}

.info_product_hover span.addcart i {
    margin-right: 10px
}

/* Product Detail */
.grid-pro-detail {
    margin-bottom: 1rem;
    margin-top: -15px;
}

.left-pro-detail {
    position: relative;
    text-align: center;
    width: 45%;
}

.right-pro-detail {
    width: calc(55% - 20px);
}

.left-pro-detail .MagicZoom {
    border: 1px solid #eee;
    padding: 7px;
    border-radius: 5px;
    background-color: #ffffff;
}

.gallery-thumb-pro {
    position: relative;
    margin-top: 10px;
}

.owl-pro-detail {
    padding: 0;
}

.control-pro-detail button {
    background-color: transparent;
    color: #222222;
    opacity: 1;
    width: 25px;
    font-size: 23px;
}

.control-pro-detail button:hover {
    opacity: 0.7;
}

.control-pro-detail button.owl-prev {
    left: 0px;
}

.control-pro-detail button.owl-next {
    right: 0px;
}

.thumb-pro-detail {
    display: block !important;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    background-color: #ffffff;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
    border-color: #cecfd2;
}

.thumb-pro-detail img {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-filter: brightness(100%) !important;
    filter: brightness(100%) !important;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.title-pro-detail {
    text-transform: capitalize;
    font-size: 20px;
    display: block;
    font-weight: 700;
}

.comment-pro-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.social-plugin-pro-detail {
    margin-bottom: 1rem;
    margin-top: 0px !important;
}

.desc-pro-detail {
    color: #000;
}

.attr-pro-detail {
    list-style: none;
    padding: 0px;
    margin-bottom: 0;
}

.attr-pro-detail li.line-detail {
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 14px;
    padding-bottom: 5px;
}

.attr-label-pro-detail {
    margin: 0px 5px 0px 0px;
    font-size: 15px;
}

.attr-content-pro-detail {
    margin-bottom: 0px;
}

.brand-pro-detail a {
    color: #EE0000;
    font-weight: 700;
}

.price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: #EE0000;
    font-family: 'Baloo 2', sans-serif;
}

.price-old-pro-detail {
    font-weight: 400;
    color: var(--color-gray);
    text-decoration: line-through;
    padding-left: 10px;
    font-size: 18px;
}

.tags-pro-detail a {
    float: left;
    font-size: 13px;
    padding-bottom: 0.375rem;
    margin: 0px 5px 5px 0px;
}

.tags-pro-detail a i {
    font-size: 11px;
    margin: 5px 5px 0px 0px;
}

.tabs-pro-detail {
    margin-top: 1rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
}

.tabs-pro-detail .nav-tabs .nav-link:hover, .tabs-pro-detail .nav-tabs .nav-link.active, .tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
    border: none;
    text-decoration: underline;
    background: none
}

#tabsProDetail {
    border: none
}

#tabsProDetail li {
    margin-right: 2px;
}

#tabsProDetailContent {
    padding: 15px 0 0;
}

.btn-quote {
    background: var(--main-color);
    color: #fff;
    line-height: 40px;
    padding: 0 30px;
    border-radius: 500px;
    overflow: hidden;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
}

#pricequote .modal-body {
    background: var(--main-color)
}

#pricequote .modal-title {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.quantity-pro-detail {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 45px;
    overflow: hidden;
    border: 1px solid #dfdfdf;
    background: #fff
}

.quantity-pro-detail span {
    line-height: 25px;
    padding: 0px;
    width: 45px;
    height: 100%;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
    border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
    border-right: 0px;
}

.quantity-pro-detail input {
    height: 100%;
    border: none;
    width: calc(100% - 90px);
    text-align: center;
    font-size: 15px;
}

.cart-pro-detail {
    max-width: 500px;
}

.cart-pro-detail a {
    text-align: center;
    color: #fff;
    cursor: pointer;
    width: 100%;
    height: 45px;
    font-size: 13px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-radius: 500px;
    font-weight: 600;
}

.cart-pro-detail a.addnow {
    background: var(--main-color);
}

.cart-pro-detail a.addnow:hover {
    color: #fff;
    background: #D52E0C;
}

.cart-pro-detail a.buynow {
    background-color: var(--main-color);
}

.cart-pro-detail a.buynow:hover {
    color: yellow;
}

.cart-pro-detail a i {
    vertical-align: top;
    margin-right: 8px;
    font-size: 24px;
    position: relative;
    top: -2px;
}

/* News */
.pic-news {
    width: 210px;
}

.pic-news img {
    width: 100%;
}

.info-news {
    width: calc(100% - 210px);
    padding-left: 15px;
}

.name-news {
    color: #000;
    font-size: 17px;
    line-height: 23px;
    font-weight: 600;
}

.name-news.text-split {
    -webkit-line-clamp: 2;
}

.name-news:hover {
    color: var(--main-color);
}

.time-news {
    color: var(--color-gray);
    margin-bottom: 10px;
}

.desc-news {
    color: #000;
    margin-top: 0;
    line-height: 25px;
}

.news .news-name {
    margin-bottom: 0.5rem;
}

.news .news-name a {
    color: #333;
    font-size: 16px;
}

.news .news-name a.text-split {
    -webkit-line-clamp: 2;
}

.news .news-name a:hover {
    color: #ec2d3f;
}

.news .news-time {
    color: #84878a;
    margin-bottom: 0.25rem;
}

.news .news-desc {
    color: #333333;
    margin-top: 5px;
    line-height: 22px;
}

.othernews b {
    margin-bottom: 10px;
    font-size: 15px;
}

.sticky_left {
    position: sticky;
    top: 70px;
}

/*News orther*/
.othernews {
    position: sticky;
    top: 60px;
    z-index: 11;
}

.news-other {
    margin-bottom: 15px;
}

.othernews b {
    margin-bottom: 10px;
    font-size: 15px;
}

.pic-news-other {
    width: 40%;
}

.info-news-other {
    width: 60%;
    padding-left: 10px;
}

.name-news-other {
    color: #252525;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}

.name-news-other:hover {
    color: var(--main-color);
}

.name-news-other.text-split {
}

/* social */
.social {
    padding: 0;
}

.social span {
    color: #000;
    font-size: 14px;
    margin-right: 15px;
}

.social a {
    display: flex;
    transition: all 1s;
    margin: 0 5px 0 0;
}

.social a:hover {
    transition: all 1s;
    transform: rotate(360deg)
}

/* Like Share */
.social-plugin {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
    margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
    text-align: center;
}

.pagination-ajax a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px 3px 3px;
    width: 35px;
    height: 35px;
    line-height: 33px;
    color: #666 !important;
    border: 1px solid #e6e6e6;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #ffffff;
}

.pagination-ajax a.current, .pagination-ajax a:hover {
    color: #ffffff !important;
    border-color: #ec2d3f;
    background-color: #ec2d3f;
}

.pagination-ajax a.first, .pagination-ajax a.last, .pagination-ajax a.prev, .pagination-ajax a.next {
    text-indent: -9999px;
    position: relative;
    background-color: #ffffff !important;
}

.pagination-ajax a.first:before, .pagination-ajax a.last:before, .pagination-ajax a.prev:before, .pagination-ajax a.next:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}

.pagination-ajax a.first:before {
    background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
    background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
    background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
    background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-body {
    padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
    display: none;
}

/* Scroll Top */
.scrollToTop {
    width: 35px;
    height: 41px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: -4px;
    right: 27px;
    display: none;
    z-index: 10;
    cursor: pointer;
}

.scrollToTop1 {
    width: 35px;
    height: 41px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: -4px;
    right: 27px;
    display: none;
    z-index: 10;
    cursor: pointer;
}

body:not(.fp-viewing-home-0) .scrollToTop1 {
    display: block;
}

/* Text Hide */
.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

/* Transition All */
.transition, .control-owl button, .carousel-comment-media .carousel-control a span, .menu ul li a.has-child:after, .menu ul li ul, .menu ul li:hover>ul, .scale-img img, .scale-img:hover>img, .btn-frame .kenit-alo-circle-fill, .support-online .kenit-alo-circle-fill {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

/* Scale IMG */
.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.scale-img:hover>img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
    -webkit-animation-name: blink;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blink;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blink;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Button Frame */
.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color);
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: var(--main-color);
    opacity: 0.5;
}

.btn-frame .zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.btn-frame .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}

.btn-frame .pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

/* Zalo */
.btn-zalo {
    bottom: 210px;
}

/* Phone */
.btn-phone {
    bottom: 130px;
}

.btn-fixed {
    bottom: 50px
}

/* Messenger */
.js-facebook-messenger-top-header {
    background: #487dfc;
    color: #fff;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.js-facebook-messenger-container.closed {
    display: none !important;
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
    color: #404040;
    background: #fff;
}

.js-facebook-messenger-tooltip.closed {
    display: none !important;
}

.js-facebook-messenger-box, .js-facebook-messenger-button {
    z-index: 999;
}

.js-facebook-messenger-tooltip {
    z-index: 999;
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    z-index: 1000000000000000019884624838656;
}

.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.js-facebook-messenger-box {
    z-index: 999;
}

.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-box {
    display: block;
    /* position: fixed; */
    cursor: pointer;
    /* bottom: 200px; */
    right: 17px;
    width: 50px;
    height: 50px;
    text-align: center;
    background: var(--main-color);
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 32px;
    height: 33px;
    position: absolute;
    top: 8px;
    left: 9px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 14px;
    left: 16px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-container {
    width: 250px;
    position: fixed;
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    bottom: 200px;
    right: 90px;
    border-radius: 10px;
    pointer-events: none;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-top-head {
    width: 220px;
    color: #ffffff;
    background: var(--main-color);
    display: block;
    position: relative;
    width: 220px;
    background: var(--main-color);
    color: #ffffff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe, .js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-top-head {
    color: #ffffff;
    background: var(--main-color);
    width: 220px;
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff;
}

.js-facebook-messenger-container.open {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1;
}

/* Fixbar */
.fixbar {
    bottom: 0;
    display: block;
    background: #f0eff4;
    border-top: 1px solid #ddd;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    margin: 0;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 50px;
}

.fixbar ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.fixbar ul li {
    margin: 0 auto 10px;
    text-align: center;
    width: 25%;
    float: left;
}

.fixbar .icon-cart-mobile, .fixbar .icon-cart-new, .fixbar .icon-home-new, .fixbar .icon-hotdeal-new {
    width: 20px;
    height: 20px;
    display: block;
    margin: 8px auto 0;
}

.fixbar .icon-cart-mobile {
    background: url(../images/cart-mobile.png) no-repeat;
}

.cart-total-head-mobile {
    font-size: 10px;
    position: absolute;
    background: red;
    color: #fff !important;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    line-height: 15px;
    top: 5px;
    margin-left: 5px;
}

.fixbar ul li a {
    font-size: 11px;
    text-decoration: none;
    color: #333;
}

.fixbar ul li a i {
    font-size: 20px;
}

/* Plugbar */
.plugbar {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #eae6e6;
    width: 100%;
    right: 0;
    max-width: 767px;
    margin: 0 auto;
    background: #ffffff;
    padding: 9px 10px 10px 7px;
    z-index: 10;
}

.plugbar ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.plugbar ul li {
    width: 20%;
    float: left;
}

.plugbar ul li a {
    display: block;
    color: #696969;
    font-size: 12px;
    text-align: center;
    position: relative;
}

.plugbar ul li a i {
    font-size: 20px;
    color: #696969;
}

.plugbar ul li a span {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -40px;
    left: calc(50% - 50px / 2);
    font-size: 14px;
    display: block;
    border: 1px solid rgba(234, 230, 230, 0.5);
    border-radius: 100%;
}

/* Combo Phone */
.support-online {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 0px;
}

.support-online a {
    position: relative;
    margin: 20px 10px;
    text-align: left;
    width: 40px;
    height: 40px;
}

.support-online i {
    width: 40px;
    height: 40px;
    background: #43a1f3;
    color: #ffffff;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    position: relative;
    z-index: 999;
}

.support-online a {
    display: block;
}

.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: #67b634;
    padding: 9px;
    display: none;
    width: 180px;
    margin-left: 10px;
    position: absolute;
    color: #ffffff;
    z-index: 999;
    top: 0px;
    left: 40px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -webkit-animation: headAnimation 0.7s 1;
    animation: headAnimation 0.7s 1;
}

.support-online a:hover span {
    display: block;
}

.support-online a span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #67b634 transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px;
}

.support-online .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.75;
    right: -10px;
}

.support-online .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: 0.1;
    border-color: #0089b9;
    opacity: 0.5;
}

.support-online .support-online .btn-support {
    cursor: pointer;
}

.support-online .mes i {
    background: orange;
}

.support-online .sms i {
    background: red;
}

.support-online .call-now i {
    background: green;
}

/* Phone Switch */
.widget-mobile {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 9999999;
}

#my-phone-circle {
    position: relative;
    width: 50px !important;
    height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
    content: "\f00d";
}

.wcircle-icon {
    background: #1282fc;
    border-radius: 50%;
    position: relative !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wcircle-icon:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    background: rgba(18, 130, 252, 0.5);
    border: 1px solid #ffffff;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon:after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    background: rgba(18, 130, 252, 0.5);
    border-radius: 50%;
    left: -15px;
    top: -15px;
    -webkit-animation: zoomIn 2s infinite ease-in-out;
    animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
    position: absolute !important;
    left: 0;
    top: 0;
    display: none;
}

.wcircle-menu-item {
    width: 50px;
    height: 50px;
    background: #1282fc;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wcircle-menu-item img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}

.wcircle-menu-item i {
    font-size: 25px;
    color: #ffffff;
    position: relative;
    z-index: 9999;
}

.wcircle-icon i {
    font-size: 25px;
    color: #ffffff;
    position: relative;
    z-index: 9999;
}

.shake-anim {
    -webkit-animation: shake-anim 1s infinite ease-in-out;
    animation: shake-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.wrap-newsnb .wrap-content {
    position: relative;
}

/* section0 */
#section0 {
    padding: 0
}

.info_slider {
    position: absolute;
    top: 20%;
    left: calc((100% - 1200px)/2);
    z-index: 999;
    color: #fff;
    max-width: 640px
}

.info_slider h3 {
    font-size: 70px;
    text-transform: uppercase;
    margin-bottom: 0
}

.info_slider span {
    font-size: 25px;
    text-transform: uppercase;
    display: block
}

.name-slide {
    animation: fadeInRight;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.desc-slide {
    animation: fadeInRight;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.menu-slider {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.menu-slider ul {
    background: #000000b3;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    padding: 5px 20px
}

.menu-slider ul li {
    position: relative;
    z-index: 1;
    list-style: none;
    line-height: 40px;
    padding: 0 10px;
    margin: 5px 0
}

.menu-slider ul li a {
    display: block;
    position: relative;
    font-size: 22px;
    color: #737373;
    text-transform: capitalize;
    text-decoration: none;
    padding: 0 5px;
    font-weight: 700;
    cursor: pointer;
}

.menu-slider ul li a.active, .menu-slider ul li a:hover {
    color: #fff
}

.menu-slider ul li a.active::before, .menu-slider ul li a:hover::before {
    position: absolute;
    content: "";
    width: 100%;
    bottom: -5px;
    height: 4px;
    background: #fff;
    left: 0
}

/* center*/
.center {
    padding: 40px 0;
    overflow: hidden;
}

.center .box_center {margin-left: -100px;margin-right: -100px;}

.box_center {
    position: relative;
    overflow: hidden;
}

.slick_center {
    display: none;
    margin-left: -15px;
    margin-right: -15px;
}

.slick_center .col-12 {
    padding: 0 15px;
}

.item-list-news {
    text-align: center;
    position: relative;
}

.img-list-news,.img-list-news a,.img-list-news a img {
    border-radius: 25px;
    overflow: hidden;
}

.info-list-news {
    margin-top: 10px
}

.info-list-news p {
    margin-bottom: 8px;
    color: #088d4e;
    font-size: 12px
}

.info-list-news h3 {
    margin: 0 0 15px;
    position: relative;
    display: block
}

.info-list-news h3 a {
    display: block;
    color: #545454;
    font-weight: 600;
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}

.info-list-news:hover h3 a {
    color: #088d4e;
}

.portfolio-home .item {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.portfolio-home .item .img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}
.portfolio-home .item .con {
    position: relative;
    z-index: 2;
    opacity: 1;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 85% 15%;
    align-items: center;
}
.portfolio-home .item .con.opacity-1 {
    opacity: 1;
}
.portfolio-home .item .con .title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 20px 25px;
    margin-right: 100px;
    width: auto;
    border-radius: 20px;
}
.portfolio-home .item .con .title h6 {
    color: #101010;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 0px;
    background: rgba(255, 255, 255, 0.7);
    display: inline-table;
    line-height: 30px;
    padding: 5px 15px;
    border-radius: 15px 15px 0 0;
}
.portfolio-home .item .con .title h6 span {
    color: var(--main-color);
    margin-right: 5px;
    font-size: 12px;
}
.portfolio-home .item .con .title h3 {
    color: #101010;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    border-radius: 0 10px 10px 10px;
}
.portfolio-home .item .con .icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #fff;
    border-top-left-radius: 50%;
    padding: 15px;
}
.portfolio-home .item .con .icon::before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
}
.portfolio-home .item .con .icon .arrow {
    position: absolute;
    background: var(--main-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
}
.portfolio-home .item .con .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
}
.portfolio-home .slick-active .item .con {
    visibility: visible;
    opacity: 1;
}
.portfolio-home .item:hover .con .icon .arrow {
    background: var(--second-color);
    color: #fff;
}
/* handbook */
.handbook {
    padding: 80px 0;
    background: #fff;
}

.title_handbook {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.title_handbook a:nth-child(1) {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 30px;
    color: #000;
    position: relative;
}

.title_handbook a:nth-child(1)::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -2px;
    background: #c6df97
}

.title_handbook a:nth-child(1)::after {
    position: absolute;
    content: "";
    width: 45%;
    height: 2px;
    left: 0;
    bottom: -2px;
    background: #088d4e
}

.title_handbook a:nth-child(2) {
    color: var(--main-color);
    font-size: 16px;
    position: relative;
    top: 5px;
    font-weight: 600;
}

.title_handbook a i {
    margin-left: 5px;
}

.box_handbook {
    position: relative;
    overflow: hidden;
}

.slick_handbook {
    display: none;
    margin-top: -15px;
    margin-bottom: -10px;
}

.slick_handbook .col-12 {
    padding: 15px 0;
}

.item_handbook {
    display: flex;
    align-items: start;
    justify-content: space-between;
    background: #fff;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.5s;
    overflow: hidden;
}

.item_handbook:hover {
    border-color: #c6df97;
    transition: all 0.5s;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(196, 196, 196, 1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(196, 196, 196, 1);
    box-shadow: 0px 2px 5px 0px rgba(196, 196, 196, 1);
}

.img_handbook {
    width: 42%;
    position: relative;
}

.img_handbook span {
    position: absolute;
    content: '';
    right: -20px;
    top: calc(50% - 20px);
    height: 40px;
    width: 40px;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0
}

.item_handbook:hover .img_handbook span {
    transition: all 0.5s;
    opacity: 1
}

.info_handbook {
    width: 58%;
    padding: 15px 25px;
}

.info_handbook h3 {
    margin: 0 0 10px;
    position: relative;
    display: block
}

.info_handbook h3 a {
    display: block;
    color: #101010;
    line-height: 22px;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 66px
}

.item_handbook:hover .info_handbook h3 a {
    color: var(--main-color);
}

.info_handbook span {
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #4a4a4a;
    height: 88px;
}

/* product_list */
.product_list {
    position: relative;
    background: #e8f6f0;
    padding: 40px 0 50px;
}

.product_list::before {
    position: absolute;
    content: "";
    width: 185px;
    height: 270px;
    left: 0;
    bottom: 0;
    background: url('../images/bf_list.png');
}

.product_list::after {
    position: absolute;
    content: "";
    width: 98px;
    height: 220px;
    right: 0;
    top: 15%;
    background: url('../images/af_list.png');
}

.box_product_list {
    position: relative;
    display: block;
    min-height: 390px;
}

.box_product_list span {
    max-width: 430px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item_list {
    max-width: 350px;
    text-align: center;
    float: left;
    width: 50%;
    margin: 40px 0
}

.item_list:nth-child(2n) {
    float: right
}

.item_list:nth-child(2n + 1) {
    clear: both;
}

.img_list {
    max-width: 80px;
    margin: 0 auto 10px;
}

.img_list a,.img_list a img {
    border-radius: 50%;
    overflow: hidden;
}

.item_list h3 {
    margin: 0;
    position: relative;
    display: block;
}

.item_list h3 a {
    display: block;
    color: #000000;
    font-weight: 600;
    font-size: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
}

.item_list:hover h3 a {
    color: var(--main-color);
}

.bg_product {
    background: #e6e6e6
}

.bg_about {
    background: #e6e6e6 !important;
}


/* producthome */
.producthome {
    padding: 40px 0;
    background: #F9F9F9;
}

.box_producthome {
    position: relative;
}

.slick-product {
    display: none;
    margin-left: -10px;
    margin-right: -10px
}

.slick-product .slick-prev {
    width: 17px;
    height: 46px;
    background: url(../images/prev.png) !important;
    left: -20px;
    opacity: 1;
    top: 50%;
}

.slick-product .slick-next {
    width: 17px;
    height: 46px;
    background: url(../images/next.png) !important;
    right: -20px;
    opacity: 1;
    top: 50%;
}

.slick-product .slick-prev:before {
    content: '';
}

.slick-product .slick-next:before {
    content: '';
}

.slick-product .col-12 {
    padding: 0 10px
}

/* abouthome */
.abouthome {
    padding: 100px 0 100px;
    background: #fff;
    background-size: cover;
    overflow: hidden;
}
.about .item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
} 
.about .item img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}
.bottom-fade {
    width: 100%;
    top: 0.5px;
    height: 100%;
    float: left;
    position: absolute;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
    z-index: 0;
    border-radius: 20px 20px 0 20px;
}
.about .item .icon img{border-radius: 50%;}
.about .item .icon {
    position: absolute;
    bottom: -6px;
    left: -6px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-top-right-radius: 50%;
    padding: 15px;

}

.bg_about .item .icon {
    background: #e6e6e6 !important;
}

.bg_about .about .item .icon {}
.about .item .icon::before {
    position: absolute;
    content: "";
    bottom: 6px;
    right: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.bg_about .item .icon::before {
    box-shadow: 6px 6px 0 6px #e6e6e6;
}

.about .item .icon .arrow {
    position: absolute;
    background: #101010;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.about .item .icon .arrow span {
    color: #fff;
    font-size: 24px;
}
.about .item .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    left: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.bg_about .item .icon::after {
    box-shadow: 6px 6px 0 6px #e6e6e6 !important;
}

::after {}
.about .item .title {
    position: absolute;
    bottom: 20px;
    padding: 0;
    z-index: 1;
    left: 105px;
}
.about .item .title h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about .item:hover .icon .arrow {
    color: #000;
    background: var(--main-color);
}
.about .item:hover .icon .arrow {
    transform: scale(1.05);
}
.about .item:hover img {
    transform: scale(1.05);
}
.img_about {
    position: relative;
    max-width: 430px;
    margin-top: 50px
}

.img_about a {
    -webkit-mask-image: url('../images/mask_about.png');
    mask-image: url('../images/mask_about.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.title_about {
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 25px;
}

.title_about p {
    margin-bottom: 5px;
}

.des_about {
    margin-bottom: 10px;
    display: list-item;
    list-style: disc inside;
    color: var(--main-color);
    font-size: 16px;
}

.des_about p {
    margin-bottom: 10px;
}

.des_about span {
    color: #000;
}
.content_about {
    margin-bottom: 30px
}
.content_about *{
    font-family: "Montserrat" !important;
    font-size: 18px;
    font-weight: bold;
}

.item_criteria {
    margin-bottom: 25px;
}

.item_criteria h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.item_criteria span {
    display: block;
    position: relative;
    font-size: 18px;
    color: #000
}

.info_about {
    position: relative;
}

.info_about::before {
    position: absolute;
    width: 60px;
    height: 100px;
    background: url('../images/bf-info-about.png');
    right: -80px;
    top: 55%;
    /* content: ""; */
    -webkit-animation-name: petnest-float-bob;
    animation-name: petnest-float-bob;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -moz-animation-name: petnest-float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: petnest-float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: petnest-float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.img_about::before {
    position: absolute;
    width: 100px;
    height: 82px;
    background: url('../images/af-img-about.png');
    top: -40px;
    left: 55%;
    content: "";
    -webkit-animation-name: petnest-float-bob;
    animation-name: petnest-float-bob;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -moz-animation-name: petnest-float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: petnest-float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: petnest-float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.img_about span {
    position: absolute;
    bottom: -50px;
    right: -105px;
}

.petnest-bounce-animate {
    -webkit-animation-name: petnest-float-bob;
    animation-name: petnest-float-bob;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -moz-animation-name: petnest-float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: petnest-float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: petnest-float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes petnest-float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
.about .phone {
    font-size: 20px;
    font-weight: 400;
    color: #101010;
    text-align: left;
    display: inline-block;
    margin-left: 15px;
}
.about .phone a{
    color: #000;
}
.about .phone i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #101010;
    font-size: 20px;
    font-weight: 300;
    color: var(--main-color);
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
}
.button-1 {
    display: inline-block;
    height: auto;
    padding: 12px 36px;
    border: 1px solid var(--main-color);
    border-radius: 40px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-1:hover {
    border: 1px solid var(--second-color);
    background-color: var(--second-color);
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}
/* number */
.number {
    padding: 25px 20px;
    background: #d6e6b8;
    border-radius: 10px;
    overflow: hidden;
}

.slick_number {
    display: none;
}

.slick_number .col-12 {
    padding: 0 20px;
}

.item_number {
    background: #fff;
    text-align: center;
    padding: 20px 10px 10px;
    border-radius: 10px;
    overflow: hidden;
}

.img_number {
    max-width: 50px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
}

.img_number span, .img_number span img {
    border-radius: 50%;
    overflow: hidden;
}

.info_number h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
    color: #000
}

.info_number h3 span {
    display: inline-block;
    margin-right: 2px
}

.info_number p {
    display: block;
    color: #000000;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 0
}

/*  */
.modal-body .toolbar {
    display: block;
    position: relative;
}

.toolbar {
    width: 100%;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    left: 0px;
    display: none;
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
}

.toolbar.is-active .list-phone {
    display: block;
    -webkit-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
    animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
}

.toolbar .list-phone {
    position: absolute;
    bottom: 100%;
    left: 30px;
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 100%;
    display: none;
}

.toolbar .list-phone a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    max-width: 240px;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 50px;
    padding-right: 30px;
}

.toolbar .list-phone svg {
    max-width: 30px;
    max-height: 30px;
}

.toolbar .list-phone span {
    display: block;
    width: calc(100% - 40px);
    color: #333;
    font-weight: 700;
}

.toolbar .phone {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    margin: 0 0px -25px 30px;
    transition: transform .2s ease-in-out;
}

.toolbar .phone a {
    color: #333;
    display: block;
    position: relative;
}

.toolbar .phone a:before, .toolbar .phone a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 30px;
    height: 3px;
    border-radius: 2rem;
    background-color: var(--main-color);
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.toolbar .phone a:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar .phone svg {
    max-width: 27px;
    max-height: 27px;
    display: block;
    position: relative;
    fill: var(--main-color);
}

.toolbar.is-active .phone {
    transform: rotate(-180deg);
}

.toolbar.is-active .phone svg {
    opacity: 0;
}

.toolbar.is-active .phone a:before, .toolbar.is-active .phone a:after {
    opacity: 1;
}

.toolbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
    --size: 33px;
    -webkit-mask: radial-gradient(var(--size) at 55px 0px, #0000 99%, #fff 101%) 100%;
    background: var(--main-color);
    padding: 10px 0;
    padding-left: 100px;
    border-radius: 10px 10px 0px 0px;
}

.toolbar ul li {
    text-align: center;
    width: 25%;
    line-height: 1;
}

.toolbar ul li a {
    display: block;
    width: 100%;
    font-size: 27px;
    color: #ffff;
}

.toolbar ul li .icon {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.toolbar ul li a span {
    display: none;
    font-weight: 400;
    font-size: 11px;
    margin-top: 5px;
    color: #333;
    text-transform: capitalize;
}

.toolbar ul li a img, .toolbar ul li svg {
    max-height: 30px;
    fill: #fff;
    width: 100%;
}

.toolbar .phone svg {
    animation: tada 1.2s infinite;
    fill: var(--main-color);
}

.tada {
    animation: tada 1.2s infinite;
}

.lang-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toolbar ul li.lang-toolbar a {
    display: inline-block;
    width: unset;
    margin: 0px 2px;
    font-size: unset;
}

.toolbar ul li.lang-toolbar a img {
    height: 10% !important;
}

.ex6 path {
    fill: transparent;
    stroke: #fff;
    stroke-width: 0.5;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    -webkit-animation: dash 5s ease forwards;
    animation: dash 5s ease forwards;
}

@-webkit-keyframes dash {
    to {
        fill: #fff;
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        fill: #fff;
        stroke-dashoffset: 0;
    }
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes quickShow {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media(max-width: 1001px) {
    .toolbar {
        display: block;
    }

    .scrollToTop, #messages-facebook {
        display: none !important;
    }

    .copyright {
        padding-bottom: 80px !important;
    }
}

/* slider */
.img_home {
    position: relative;
    z-index: 0;
}

.img_home::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0.8;
}

.title-slider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    min-width: 95%;
    z-index: 9;
}

/*  */
.title-list-product {
    font-weight: 700;
    font-size: 25px;
    text-transform: capitalize;
    color: #000;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.title-list-product a {
    color: #000;
}

.title-list-product:hover a {
    color: red;
}

.checkshowproduct {
    cursor: pointer;
}

/* wrap-product */
.wrap-product {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.product-left, .news-left {
    margin-top: 38px;
    width: 270px;
    border-top: 1px solid #121212;
    padding: 25px 0;
}

.product-right {
    width: calc(100% - 300px);
}

.title-list {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-list a {
    color: #000 !important;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
}

.product-left ul {
    padding-left: 20px;
    border-left: 1px solid #ddd;
    margin-left: 10px;
    margin-bottom: 0;
}

.box-toggle ul {
    display: none
}

.product-left ul li {
    list-style: none;
    line-height: 25px;
    padding: 5px 0;
}

.product-left ul li a {
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease all;
}

.product-left ul li a i {
    margin-left: 10px
}

.product-left ul li a:hover {
    font-weight: 700;
}

.title-list a.active, .product-left ul li a.active, .product-left ul li a:hover {
    color: var(--main-color);
    font-weight: 700;
}

.product-left .posts li {
    margin: 4px 0;
    padding-bottom: 5px;
    border-bottom: thin solid #dfdfdf;
}

.product-left .posts li a {
    font-size: 12px;
    line-height: 1.5em;
    display: block;
}

.product-left .posts li a:hover {
    font-weight: 500
}

.box-news-left {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -khtml-border-radius: 15px;
    width: 270px;
}

/*search*/
.click_search {
    font-size: 15px;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    background: none;
    line-height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.frm_search {
    display: none;
    position: absolute;
    top: 100%;
    background: #dfdfdf;
    width: 0;
    z-index: 999;
    right: 0;
    line-height: 50px;
    transition: all 1s;
    overflow: hidden;
    border-radius: 5px;
}

#search {
    cursor: pointer;
    position: relative;
    float: right;
}

#search input[type="text"] {
    outline: none;
    background: none;
    border: none;
    height: 50px;
    width: calc(100% - 50px);
    padding: 0 15px;
    color: #000;
    font-size: 16px;
}

#search #btn {
    height: 50px;
    width: 50px;
    cursor: pointer;
    outline: none;
    border: none;
    color: #000;
    font-size: 22px;
    background: none;
}

#search input[type="text"]::-webkit-input-placeholder {
    color: #000;
}

#search input[type="text"]:-moz-placeholder {
    color: #000;
}

#search input[type="text"]::-moz-placeholder {
    color: #000;
}

#search input[type="text"]:-ms-input-placeholder {
    color: #000;
}

/* item_center */
.item_center {
}

.item_center .img_center {
    border-radius: 10px;
    overflow: hidden;
}

.info_center {
    margin-top: 15px;
}

.info_center p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #aeb1be;
}

/*.info_center p a { color: var(--main-color); text-transform: capitalize; font-weight: 600; padding: 0 10px; border-radius: 30px; }*/
/*.info_center p span { color: #aeb1be; font-weight: 600 }*/
.info_center h3 {
    margin: 0 0 5px;
    position: relative;
    display: block
}

.info_center h3 a {
    display: block;
    color: #333;
    line-height: 1.5em;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 3em
}

.item_center:hover .info_center h3 a {
    color: var(--main-color);
}

.info_center span {
    font-size: 14px;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #4a4a4a;
    height: 4.5em;
    text-align: justify;
}

.tableproduct thead {
    background: var(--main-color);
    color: #fff;
    font-size: 18px;
}

.tableproduct thead th {
    border: none
}

.trlistproduct {
    background: #C4D9F1
}

.tableproduct tr {
    font-size: 16px;
    font-weight: 600
}

.tableproduct tr.odd {
    background: #ddf1cf
}

.tableproduct tr.even {
    background: #E0F1F9
}

.tableproduct tbody, .tableproduct td, .tableproduct tfoot, .tableproduct th, .tableproduct thead, .tableproduct tr {
    border-color: var(--main-color)
}

.fancybox__content>.f-button.is-close-btn {
    top: -20px;
    right: 20px;
}

.fancybox__content>.f-button svg {
    width: 50px;
    height: 50px;
}

/* item-news-right*/
.box-news-left .title-list {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 5px
}

.box-news-left .title-list a {
    text-transform: uppercase;
}

.box-news-left ul.box-news-right {
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
    border-left: 0;
    list-style: none;
}

.box-news-left .posts li .item-news-right {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 10px 0
}

.box-news-left .posts li .item-news-right > a {
    width: 100px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.box-news-left .posts li .item-news-right > h3 {
    width: calc(100% - 115px);
    margin-bottom: 0;
    position: relative;
}

.box-news-left .posts li .item-news-right > h3 > a {
    color: #000;
    font-weight: 600;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    max-height: 6em
}

.box-news-left .posts li .item-news-right:hover > h3 > a {
    color: var(--main-color);
}

/* ajax product */
.box-pro-ajax {
    border: 1px solid #e1e1e1;
}

.list-product {
    padding: 5px 10px;
    border-top: 0;
    max-height: 300px;
    overflow-y: auto;
}

a.read-product {
    display: block;
    text-align: center;
    background: #e1e1e1;
    color: #000;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    text-transform: capitalize;
}

.show-result-search {
    z-index: 1;
    position: absolute;
    width: 400px;
    right: 0;
    top: 80px;
    background: #fff;
    max-width: calc(100vw - 80px)
}

.item-product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px 0;
    border-bottom: 1px solid #cccccc57
}

.item-product a.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-product a.img {
    width: 75px;
    padding: 2px;
    border-radius: 3px;
    border: 1px solid #e1e1e1;
    min-height: 1px;
    margin: 0;
    display: block;
}

.item-product .content {
    width: calc(100% - 85px);
    text-align: left;
}

.item-product .content h3 a {
    display: block;
    font-size: 13px;
    text-decoration: none;
    color: #000;
    line-height: 20px;
}

.item-product .content h3 a:hover {
    color: red
}

.list-product::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.list-product::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.list-product::-webkit-scrollbar-thumb {
    background-color: #000000;
}

/* */
.box_wrap_home {
    height: 44px;
    overflow: hidden;
    transition: all 0.5s;
}

.box_ghichu_wrap_home {
    height: 150px;
    overflow: hidden;
    transition: all 0.5s;
}

.box_btn_home {
    display: none;
    cursor: pointer;
    margin-top: -20px;
}

/* contact_footer */
.footer {
    background: #fff;
    position: relative;
    display: block;
    padding: 50px 0 0;
}
.title_footer{
    font-size: 17px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.ft_list li {
    list-style: none;
}

.ft_list li a {
    color: #000;
    font-size: 14px;
}

.ft_list li a:hover {
    color: var(--second-color);
}

.ft_list li a i {
    font-size: 12px;
}

.ft_list {
    padding: 0;
}
.contact_footer {
    /* background: url('../images/bg_contact.png') no-repeat center; */
    background-size: cover;
    padding: 80px 0px;
    overflow: hidden;
    position: relative;
    display: block;
}

.title_contact_footer {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.box_form_contact {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.item_contact {
    width: calc((100%));
}

.item_contact input, .item_contact select {
    color: #5a5a5a;
    background: #fff;
    line-height: 50px;
    border-radius: 15px;
    overflow: hidden;
    border: none;
    width: 100%;
    height: 50px;
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 10px 5px 0px rgb(79 79 79 / 59%);
    -moz-box-shadow: 0px 10px 5px 0px rgb(79 79 79 / 59%);
    box-shadow: 1px 1px 5px 0px rgb(79 79 79 / 59%);
    outline: none
}

.item_contact textarea {
    color: #5a5a5a;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: none;
    width: 100%;
    height: 120px;
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 10px 5px 0px rgb(79 79 79 / 59%);
    -moz-box-shadow: 0px 10px 5px 0px rgb(79 79 79 / 59%);
    box-shadow: 1px 1px 5px 0px rgb(79 79 79 / 59%);
    overflow: hidden;
    outline: none;
}

.btn-contact {
    background: var(--main-color);
    width: 180px;
    line-height: 55px;
    text-align: center;
    border-radius: 500px;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    -webkit-box-shadow: 0px 10px 5px 0px rgb(79 79 79 / 59%);
    -moz-box-shadow: 0px 10px 5px 0px rgb(79 79 79 / 59%);
    box-shadow: 0px 10px 5px 0px rgb(79 79 79 / 59%);
    border: none;
    outline: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.btn-contact i {
    margin-left: 10px;
}

.btn-contact:hover {
    background: var(--main-color);
    color: #fff
}

.social {
    border-top: 1px solid #343434;
    /* padding-top: 25px; */
    /* max-width: 210px; */
    margin: 0;
}

.maps_ft {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(133 133 133 / 32%);
    -moz-box-shadow: 0px 0px 5px 0px rgb(133 133 133 / 32%);
    box-shadow: 0px 0px 5px 0px rgb(133 133 133 / 32%);
}

.maps_ft iframe {
    height: 300px !important;
    display: block;
    width: 100% !important;
    border-radius: 20px;
    overflow: hidden;
}

.copyright {
    padding: 15px 0;
    line-height: 20px;
    font-size: 13px;
    color: #343434;
    border-top: 1px solid #dfdfdf;
    text-align: center;
    font-weight: 500;
    margin-top: 50px;
}

/* */
.accordion {
    width: 100%;
}

.accordion-header {
    margin-bottom: 10px;
    color: #000;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.accordion-header i {
    margin-right: 10px
}

.accordion__item {
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 10px
}

.accordion__item .accordion__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-body {
    color: #353535;
    display: none;
    padding: 0;
}

.accordion-body__contents {
    padding: 0;
    font-size: 15px;
}

.accordion__item > .accordion-header:after {
    content: "\f489";
    font-family: IonIcons;
    font-size: 1.5em;
    float: right;
    position: relative;
    top: -5px;
    transition: .3s all;
    transform: rotate(0deg);
    font-weight: bold;
    margin-left: 10px;
}

.accordion__item.active > .accordion-header:after {
    content: "\f462";
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(3deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

@keyframes storm {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }

    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }

    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }

    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }

    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}

/* abouttop */
.title_abouttop {
    position: relative;
    margin-bottom: 10px
}

.title_abouttop span {
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px
}

.title_abouttop h3 {
    margin-bottom: 0;
    color: #de2a2a;
    font-size: 40px;
    font-weight: 700
}

.aboutbottom,.abouttop {
    padding: 40px 0
}

.title_aboutbottom {
    margin-bottom: 10px;
}

.title_aboutbottom span {
    color: #000000;
    font-size: 17px;
    line-height: 1.6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.title_aboutbottom h3 {
    margin-bottom: 0;
    color: #000;
    font-size: 25px;
    font-weight: 600;
}

.btn-aboutbottom {
    padding: 12px 30px;
    background: var(--main-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    border-radius: 500px;
}

.btn-aboutbottom:hover {
    color: #fff;
    background: #06683a;
}

.item-about-detail {
    position: relative;
}

.item-about-detail h3 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 15px
}

.img-about-detail {
    max-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 15px
}

.img-about-detail img {
    border-radius: 50%;
    overflow: hidden;
}

.item-about-detail > p {
    font-weight: 600;
    font-size: 20px;
    margin: 15px 0 0
}

/* video */
.box_video {
    position: relative;
}

.item_video {
    position: relative;
    cursor: pointer;
    border-radius: 0px 100px 100px 100px;
    overflow: hidden;
}

.item_video img {
    border-radius: 0px 100px 100px 100px;
    overflow: hidden;
}

.play {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 100%;
    font-size: 20px;
    margin: -30px 0 0 -30px;
    color: #fff;
    z-index: 99;
    background: #f00;
    cursor: pointer;
}

.play:hover {
    color: #f00;
    background: #fff;
}

.waves-block .waves {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
}

.waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

/* */
.price_search {
    border: none;
    width: auto;
    padding: 0;
    margin: 0;
    text-align: right;
    max-width: 35%;
}

.box_filter {
    margin-bottom: 15px;
}

#html5 {
    margin-top: 12px;
}

#sortby {
    margin-bottom: 10px;
}

.box_view_product span {
    font-size: 17px;
    border: 1px solid #ccc;
    padding: 3px 6px;
    cursor: pointer;
    margin-right: 5px;
}

.ma-bo20 {
    margin-bottom: 20px
}

.noUi-target {
    max-width: calc(100% - 20px);
    margin-left: 10px;
}

.box_left {
    padding: 15px 0;
}

.close_menu,.filter_right,.btn-close {
    display: none
}

.checkbox {
    --background: #fff;
    --border: #d1d6ee;
    --border-hover: #bbc1e1;
    --border-active: #1e2235;
    --tick: #fff;
    position: relative;
}

.checkbox input, .checkbox svg {
    width: 21px;
    height: 21px;
    display: block;
}

.checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    outline: none;
    background: #e0dfdf;
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow 0.3s;
    box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
}

.checkbox input:hover {
    --s: 2px;
    --b: var(--border-hover);
}

.checkbox input.active {
    --b: var(--border-active);
}

.checkbox svg {
    pointer-events: none;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--stroke, var(--border-active));
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    transform: scale(var(--scale, 1)) translateZ(0);
}

.checkbox.path input.active {
    --s: 2px;
    transition-delay: 0.4s;
}

.checkbox.path input.active + svg {
    --a: 16.1 86.12;
    --o: 102.22;
}

.checkbox.path svg {
    stroke-dasharray: var(--a, 86.12);
    stroke-dashoffset: var(--o, 86.12);
    transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
    color: #000;
}

.checkbox.bounce {
    --stroke: var(--tick);
}

.checkbox.bounce input:checked {
    --s: 11px;
}

.checkbox.bounce input:checked + svg {
    -webkit-animation: bounce 0.4s linear forwards 0.2s;
    animation: bounce 0.4s linear forwards 0.2s;
}

.checkbox.bounce svg {
    --scale: 0;
}

@-webkit-keyframes bounce {
    50% {
        transform: scale(1.2);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    50% {
        transform: scale(1.2);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.checkbox.path {
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkbox.path input {
    width: 21px;
    margin-right: 14px;
}

.checkbox.path span {
    margin-bottom: 0;
    width: calc(100% - 30px);
    text-transform: capitalize;
    font-size: 13px;
    color: #000;
}

.box_brand {
    padding: 10px 0;
}

/*  */
.title_filter {
    width: 125px;
    line-height: 36px;
    border: 1px solid #000;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
}

.title_filter i {
    margin-left: 10px
}

.sort_filter {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sort_filter span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
    display: block;
    white-space: nowrap;
}

.sort_filter select:focus {
    box-shadow: none !important;
}

.filter_top {
    margin-bottom: 0px
}

.sub_left {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
}

.title_left {
    color: #000;
    font-size: 16px;
    display: block;
    width: 100%;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
}

.title_left::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    right: 0;
    top: 50%;
    background: #000;
}

.btn-plus {
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* item_partner */
.partner {
    padding: 40px 0;
}

.item_partner {
    margin: 0 10px 0 0;
    width: calc(25% - 10px);
    margin-bottom: 10px
}

/* */
.item_corevalues {
    text-align: center;
}

.img_corevalues {
    margin: 0 auto 15px;
    max-width: 80px;
}

.info_corevalues h3 {
    margin: 0 0 5px;
    position: relative;
    display: block color: #333;
    line-height: 25px;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.info_corevalues span {
    font-size: 14px;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #4a4a4a;
    height: 4.5em;
    text-align: justify;
}

.slick_handbook .col-12{padding: 0 10px;}
.services .item {
    position: relative;
    padding: 50px 40px 90px 40px;
    border-radius: 20px 20px 0 20px;
    background: #f0f0f3;
    z-index: 2;
    margin-bottom: 15px;
}
.services .item .text h5 {
    color: #101010;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.services .item .text p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
}
.services .item .icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-top-left-radius: 50%;
    padding: 15px;
}
.services .item .icon::before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
}
.services .item .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
}
.services .item .icon .arrow {
    position: absolute;
    background: #101010;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.services .item .icon .icon-w {
    overflow: hidden;
    background-color: transparent;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
}
.services .item:hover .icon .arrow {
    background: var(--main-color);
    color: #000;
}
.services .item:hover .icon .icon-w i.icon-show, .services .item .icon .icon-w i.icon-hidden {
    display: none;
}
.services .item:hover .icon .icon-w i.icon-hidden {
    display: inline;
    text-align: center;
    color: #fff;
    font-size: 15px;
    vertical-align: middle;
}

.contact-row span{color: #fff; display: inline-block;padding: 0 10px;}
.contact-row a{color: #fff;}