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

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

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

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

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

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

@-moz-keyframes shake-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-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);
    }
}

@-o-keyframes shake-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -o-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);
    }
}

@keyframes shake-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        -o-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);
    }
}


/* Main */

:root {
    --color-main: #d00;
    --color-phone: #1182fc;
    --color-hover: #d00;
    --color-active: rgb(145, 5, 5);
    --f-regular: RobotoRegular;
    --f-medium: RobotoMedium;
    --f-bold: RobotoBold;
    --f-helvet: UTMHelvetIns;
}

body {
    font-family: "Calibri";
    font-size: 16px;
}

.wrap-container {
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width:850px) {
    .wrap-container {
        position: relative;
        overflow: hidden;
    }
}

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

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

a:hover {
    text-decoration: none;
}

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-main,
.wrap-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0px 15px;
}

.wrap-home {
    max-width: 100%;
    padding: 0px;
}

.wrap-content {
    margin: auto;
}


/*Style custom*/

.py50 {
    padding: 50px 0px;
}

@media only screen and (max-width:850px) {
    .py50 {
        padding: 30px 0px;
    }
}

.py30 {
    padding: 30px 0px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

@media only screen and (max-width:850px) {
    .mb-50 {
        margin-bottom: 30px;
    }
}

.mt-50 {
    margin-top: 50px;
}

@media only screen and (max-width:850px) {
    .mt-50 {
        margin-top: 30px;
    }
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

@media only screen and (max-width:850px) {
    .mgb-res {
        margin-bottom: 30px !important;
    }
}

.btn-outline-custom {
    border: solid 1px var(--color-main);
    color: var(--color-main);
}

.btn-outline-custom.active,
.btn-outline-custom:hover {
    border: solid 1px var(--color-main);
    background-color: var(--color-main);
    color: #ffffff !important;
}

.btn-custom {
    border: solid 1px var(--color-main);
    color: #fff;
    background-color: var(--color-main);
}

.btn-custom.active,
.btn-custom:hover {
    border: solid 1px var(--color-active);
    background-color: var(--color-active);
    color: #ffffff !important;
}


/* Flex Box */

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -webkit-calc(-1 * var(--space-x, 0.625rem)) -webkit-calc(-1 * var(--space-y, 1.25rem));
    margin: 0 -moz-calc(-1 * var(--space-x, 0.625rem)) -moz-calc(-1 * var(--space-y, 1.25rem));
    margin: 0 calc(-1 * var(--space-x, 0.625rem)) calc(-1 * var(--space-y, 1.25rem));
}

.flex-container>div[class*='item'] {
    width: -webkit-calc(100% / var(--columns, 4) - -webkit-calc(var(--space-x, 0.625rem) * 2));
    width: -moz-calc(100% / var(--columns, 4) - -moz-calc(var(--space-x, 0.625rem) * 2));
    width: calc(100% / var(--columns, 4) - calc(var(--space-x, 0.625rem) * 2));
    margin: 0 var(--space-x, 0.625rem) var(--space-y, 1.25rem);
}

.flex-container>div[class*='item']>[class*='-inner'] {
    height: 100%;
}


/* Price Noti */

.price-noti__list.flex-container {
    --columns: 3;
    --space-x: 0.75rem;
    --space-y: -webkit-calc(var(--space-x, 0.625rem) * 2);
    --space-y: -moz-calc(var(--space-x, 0.625rem) * 2);
    --space-y: calc(var(--space-x, 0.625rem) * 2);
}

.price-noti__photo-inner {
    margin: 0;
}

.price-noti__info {
    margin-top: 1rem;
}

.price-noti__name {
    -webkit-line-clamp: 1;
    font-family: 'Calibri Bold';
    font-size: clamp(16px, 2.4vw, 19px);
    color: #1c3a6c;
    text-transform: capitalize;
}

.price-noti__item-inner:hover .price-noti__name {
    color: var(--color-hover);
}

.price-noti__desc {
    font-size: 14px;
    line-height: 1.6em;
    color: #333;
    margin-bottom: 0;
}


/* General */

.title-main {
    margin-bottom: 1rem;
    text-align: center;
}

.title-main span {
    color: #1c3a6c;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    /* 60% */
    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;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

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

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

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

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

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

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

.form-control,
.form-control-plaintext:not(textarea),
.custom-select {
    height: -webkit-calc(1em + 1.25rem + 8px);
    height: -moz-calc(1em + 1.25rem + 8px);
    height: calc(1em + 1.25rem + 8px);
}

.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;
}

.social-plugin iframe {
    z-index: 1 !important;
}

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


/* Lazyload */

img.lazy {
    opacity: 0;
}

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

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

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


/* User */

.wrap-user {
    width: 100%;
    max-width: 550px;
    margin: auto;
    border: 1px solid #bce8f1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.title-user {
    background-color: #d9edf7;
    padding: 12px 15px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.title-user span {
    color: #31708f;
}

.title-user a {
    color: #0056b3;
    font-size: 12px;
}

.form-user {
    padding: 20px 15px;
}

.newsletter-inputut-user {
    margin-bottom: 0.75rem;
}

.newsletter-inputut-user input {
    font-size: 16px;
}

.button-user {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.button-user input {
    font-size: 16px;
}

.checkbox-user,
.radio-user {
    cursor: pointer;
}

.checkbox-user input {
    top: -webkit-calc(50% - 1.25rem / 2);
    top: -moz-calc(50% - 1.25rem / 2);
    top: calc(50% - 1.25rem / 2);
    height: auto;
}

.checkbox-user label {
    font-size: 16px;
    cursor: pointer;
}

.checkbox-user label::before,
.checkbox-user label::after {
    top: -webkit-calc(50% - 1rem / 2);
    top: -moz-calc(50% - 1rem / 2);
    top: calc(50% - 1rem / 2);
}

.radio-user {
    margin-right: 1rem;
}

.radio-user:last-child {
    margin-right: 0px;
}

.radio-user label::before,
.radio-user label::after {
    top: -webkit-calc(50% - 1rem / 2);
    top: -moz-calc(50% - 1rem / 2);
    top: calc(50% - 1rem / 2);
}

.note-user {
    font-size: 16px;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
}


/* Cart */

#popup-cart .modal-title {
    text-transform: uppercase;
}

#popup-cart .modal-body .wrap-cart {
    padding: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0px;
}

#popup-cart .modal-footer {
    padding: 0.75rem 0 0 0;
    border-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.buymore-cart {
    color: var(--color-main);
    cursor: pointer;
    margin: 0px;
}

.buymore-cart i {
    margin-right: 2px;
    margin-top: 5px;
    vertical-align: top;
    font-size: 12px;
}

.wrap-cart {
    padding: 20px 15px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.top-cart {
    border-right: 1px solid #eee;
}

@media only screen and (max-width:991px) {
    .top-cart {
        margin-bottom: 2rem;
    }
}

.procart {
    padding: 20px 10px;
    border: 1px solid #eee;
    border-top: 0px;
}

.pic-procart {
    text-align: center;
}

.pic-procart img {
    max-height: 100px;
    height: inherit;
}

.pic-procart .del-procart {
    color: #999;
    font-size: 12px;
    display: block;
    margin-top: 5px;
    cursor: pointer;
}

.pic-procart .del-procart:hover {
    color: red;
}

.name-procart a {
    font-size: 16px;
    color: #000;
    display: block;
}

@media only screen and (max-width:575px) {
    .name-procart a {
        font-size: 13px;
    }
}

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

.properties-procart {
    display: block;
}

.properties-procart p {
    display: inline-block;
    margin-bottom: 0px;
}

.properties-procart p:first-child {
    margin-right: 10px;
}

.properties-procart p strong {
    font-weight: 600;
}

@media only screen and (max-width:767px) {
    .quantity-procart {
        text-align: right;
    }
}

.quantity-procart p {
    margin-bottom: 0px;
}

.quantity-counter-procart {
    border: 1px solid #dfdfdf;
    width: 100%;
    height: 30px;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.counter-procart {
    background-color: transparent;
    border: 0px;
    width: 30%;
    color: #333;
    outline: none;
    cursor: pointer;
    font-size: 23px;
}

.counter-procart:hover,
.counter-procart:focus {
    color: var(--color-main);
}

.counter-procart:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.counter-procart:disabled:hover {
    color: #ccc;
    cursor: not-allowed;
}

.counter-procart-minus {
    line-height: 26px;
}

.counter-procart-plus {
    line-height: 24px;
}

.quantity-counter-procart .quantity-procart {
    width: 40%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 0px;
    border-right: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0px;
    color: #333;
    text-align: center;
}

.price-procart {
    width: 20%;
    text-align: right;
}

@media only screen and (max-width:767px) {
    .price-procart {
        display: none;
    }
}

.price-procart-rp {
    display: none;
    width: 100%;
    margin-bottom: 10px;
    font-size: 13.5px;
}

@media only screen and (max-width:767px) {
    .price-procart-rp {
        display: block;
    }
}

.price-new-cart {
    color: var(--color-main);
    margin-bottom: 0px;
}

.price-old-cart {
    color: #999;
    text-decoration: line-through;
}

.procart-label {
    border: 0px;
    background: #eee;
    padding: 10px;
    margin: 0px;
    text-transform: capitalize;
}

@media only screen and (max-width:575px) {
    .procart-label {
        font-size: 13px;
    }
}

@media only screen and (min-width:768px) {
    .procart-label .quantity-procart p:first-child {
        display: block;
    }
}

@media only screen and (max-width:767px) {
    .procart-label .quantity-procart p:first-child {
        display: none;
    }
}

@media only screen and (min-width:768px) {
    .procart-label .quantity-procart p:last-child {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    .procart-label .quantity-procart p:last-child {
        display: block;
    }
}

.money-procart {
    margin-top: 15px;
}

.total-procart {
    background: #eee;
    padding: 7px 10px;
    border: 1px solid #dddfe2;
    margin-bottom: -1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.total-procart p {
    margin-bottom: 0px;
    font-size: 15px;
}

.total-procart p:last-child {
    color: var(--color-main);
}

.section-cart {
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
}

.title-cart {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-main);
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.information-cart {
    margin-bottom: 1.5rem;
}

.input-cart {
    margin-bottom: 0.5rem;
    position: relative;
}

.input-cart textarea {
    resize: none;
    height: 100px;
}

.input-cart select {
    cursor: pointer;
}

.payments-cart {
    text-align: left;
    margin-bottom: 5px;
    min-height: auto;
}

.payments-cart:last-child {
    margin-bottom: 0px;
}

.payments-cart input {
    top: -webkit-calc(50% - 1.25rem / 2);
    top: -moz-calc(50% - 1.25rem / 2);
    top: calc(50% - 1.25rem / 2);
}

.payments-label {
    cursor: pointer;
    background: #eee;
    display: block;
    padding: 10px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 0px;
    color: #313131 !important;
}

.payments-label::before,
.payments-label::after {
    top: -webkit-calc(50% - 1rem / 2);
    top: -moz-calc(50% - 1rem / 2);
    top: calc(50% - 1rem / 2);
}

.payments-label.active {
    background: var(--color-main);
    color: #ffffff !important;
}

.payments-info {
    opacity: 0;
    visibility: hidden;
    height: 0px;
    overflow: hidden;
    background: #f5efef;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.payments-info p {
    margin-bottom: 1em;
}

.payments-info.active {
    padding: 10px 15px;
    margin-top: 5px;
    opacity: 1;
    visibility: visible;
    height: auto;
}

.btn-cart {
    text-transform: capitalize;
}

.empty-cart {
    padding: 25px 30px;
    display: block;
    text-align: center;
    color: #23527c !important;
    width: 100%;
}

.empty-cart i {
    color: red;
    font-size: 70px;
}

.empty-cart p {
    margin: 15px 0px;
    color: #333;
    font-size: 18px;
}


/* Comment */

.comment-title {
    font-size: 18px;
}

.comment-show {
    display: block !important;
}

.comment-point {
    font-size: 47px;
    color: #fe302e;
}

.comment-star {
    font-size: 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0.5rem;
}

.comment-star span {
    display: block;
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    text-align: left;
    white-space: nowrap;
}

.comment-star i {
    display: inline-block;
    margin: 0.1rem;
    color: #b8b8b8;
    text-rendering: auto;
    font-size: 20px;
}

.comment-star i:nth-child(1) {
    margin-left: 0;
}

.comment-star span i {
    color: #ffc120;
}

.comment-progress {
    width: 100%;
    margin-bottom: 0.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.comment-progress:last-child {
    margin-bottom: 0px;
}

.comment-progress .progress {
    height: 12px;
    margin-right: 10px;
    margin-left: 5px;
    width: -webkit-calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: calc(100% - 90px);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.comment-progress .progress-bar#has-rate {
    background-color: #23b445;
}

.comment-progress .progress-num {
    font-size: 15px;
    width: 25px;
    text-align: center;
    color: #787878;
}

.comment-progress .progress-total {
    font-weight: 600;
    text-align: left;
    color: #787878;
    width: 50px;
}

.comment-write {
    display: none;
}

.review-rating-star {
    font-size: 0;
}

.review-rating-star-icon .fa {
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    margin: 0.1rem;
    font-size: 21px;
    cursor: pointer;
    color: #f0c808;
}

.review-rating-star-icon .fa.star-empty {
    color: #dedddc;
}

.review-rating-star-icon .fa.star-not-empty {
    color: #f0c808;
}

.review-rating-star-icon .fa:nth-child(1) {
    margin-left: 0;
}

.review-fileuploader {
    padding: 20px 15px;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
    border: 2px dashed #c2cdda;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
}

.review-fileuploader .review-fileuploader-text {
    color: #90a0bc;
}

.review-file-uploader .fileuploader {
    padding: 0px;
    margin: 0px;
    background: transparent;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list {
    margin: 1rem -5px 0 -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list:after {
    display: block;
    content: "";
    clear: both;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item {
    padding: 0px;
    width: -webkit-calc(100% / 7 - 10px);
    width: -moz-calc(100% / 7 - 10px);
    width: calc(100% / 7 - 10px);
    float: left;
    margin: 0 5px 5px 5px;
    border-bottom: 0px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .columns {
    display: block;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail {
    width: auto;
    height: auto;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image {
    height: auto;
    padding: 50% 0;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-title {
    padding: 0px;
    margin-top: 0.5rem;
    text-align: center;
    display: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-actions {
    margin: 0px;
    position: absolute;
    top: 0px;
    right: -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-infos input {
    border: 1px solid #dddddd;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
}

.review-poster-video-avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.review-poster-video-avatar .avatar-detail {
    width: 95px;
    height: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
}

.review-poster-video-avatar .avatar-detail img {
    max-width: 95px;
    max-height: 95px;
}

#review-content {
    height: 350px;
}

.carousel-comment-media .carousel-control a {
    opacity: 1;
    width: 45px;
    height: 45px;
    top: -webkit-calc(50% - 45px / 2);
    top: -moz-calc(50% - 45px / 2);
    top: calc(50% - 45px / 2);
    bottom: inherit;
}

.carousel-comment-media .carousel-control a span {
    display: block;
    cursor: pointer;
    color: #222222;
    width: 45px;
    height: 45px;
    padding: 5px;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
}

.carousel-comment-media .carousel-control a.carousel-control-prev {
    left: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-prev span {
    padding-right: 9px;
}

.carousel-comment-media .carousel-control a.carousel-control-next {
    right: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-next span {
    padding-left: 8px;
}

.carousel-comment-media .carousel-indicators {
    position: static;
    margin: 0px 0px 0.75rem 0px;
    text-align: left;
    display: block;
}

.carousel-comment-media .carousel-indicators li {
    width: auto;
    max-width: 60px;
    height: auto;
    text-indent: inherit;
    -webkit-box-flex: 0;
    -ms-flex: none;
    -webkit-flex: none;
    -moz-box-flex: 0;
    flex: none;
    margin: 0px 0px 3px 0px;
    border: 2px solid transparent;
    opacity: 1;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.carousel-comment-media .carousel-indicators li.active {
    border-color: #ffc120;
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
    cursor: zoom-out;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.carousel-comment-media .carousel-inner {
    max-width: 550px;
    -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
}

.carousel-comment-media .carousel-inner .carousel-lists .carousel-comment-media-item-video #file-video {
    max-width: 100%;
    width: 100%;
    height: 500px;
    vertical-align: top;
    display: inline-block;
    background-color: #000000;
}

#form-reply {
    display: none;
}

.comment-item {
    margin-bottom: 3rem;
}

@media only screen and (min-width:992px) {
    .comment-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        justify-content: flex-start;
    }
}

.comment-item-poster {
    width: 200px;
    margin-right: 30px;
    text-align: center;
}

@media only screen and (max-width:991px) {
    .comment-item-poster {
        width: auto;
        margin-right: 0px;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        justify-content: flex-start;
    }
}

.comment-item-letter {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #d3d2d3;
    color: #919090;
    width: 65px;
    height: 65px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    line-height: 67px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media only screen and (max-width:991px) {
    .comment-item-letter {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 13px;
        margin-bottom: 0;
    }
}

.comment-item-name {
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

@media only screen and (max-width:991px) {
    .comment-item-name {
        margin-bottom: 0px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

.comment-item-posttime {
    font-size: 12px;
    color: #999999;
}

.comment-item-information {
    width: -webkit-calc(100% - 230px);
    width: -moz-calc(100% - 230px);
    width: calc(100% - 230px);
}

@media only screen and (max-width:991px) {
    .comment-item-information {
        width: 100%;
    }
}

.comment-item-star {
    float: left;
    margin-right: 10px;
}

.comment-item-star i {
    font-size: 17px;
}

.comment-item-title {
    font-size: 15px;
    font-weight: 500;
}

.comment-replies {
    position: relative;
    background: #f8f9fa;
    border: 1px solid #dfdfdf;
    padding: 1.75rem 1.5rem;
}

.comment-replies:after {
    content: "";
    position: absolute;
}

.comment-replies:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -13px;
    left: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #f8f9fa;
}

.comment-replies:after {
    top: -16px;
    left: 9px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 16px solid #dfdfdf;
}

.comment-replies-item {
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.comment-replies-item:last-child {
    margin-bottom: 0px;
}

.comment-replies-letter {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    line-height: 45px;
    padding-left: 1px;
    font-size: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #e5e3e5;
    color: #919090;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    text-align: center;
    margin-top: 0.125rem;
}

.comment-replies-letter.admin {
    position: relative;
    background-color: #189eff;
    text-indent: 9999px;
    overflow: hidden;
}

.comment-replies-letter.admin:before {
    content: "QTV";
    text-indent: 0px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.comment-replies-info {
    width: -webkit-calc(100% - 55px);
    width: -moz-calc(100% - 55px);
    width: calc(100% - 55px);
}

.comment-replies-name {
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.comment-replies [class*="btn-load-more-"] {
    border: 0px;
    outline: none;
    padding: 0px;
    background: transparent;
}

.comment-media-play {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.comment-media-play svg {
    -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}

.comment-media-play svg .comment-media-play-stroke-dotted {
    opacity: 0;
    stroke-dasharray: 4, 5;
    stroke-width: 1px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spin 4s infinite linear;
    -moz-animation: spin 4s infinite linear;
    -o-animation: spin 4s infinite linear;
    animation: spin 4s infinite linear;
    -webkit-transition: opacity 1s ease, stroke-width 1s ease;
    -o-transition: opacity 1s ease, stroke-width 1s ease;
    -moz-transition: opacity 1s ease, stroke-width 1s ease;
    transition: opacity 1s ease, stroke-width 1s ease;
}

.comment-media-play svg .comment-media-play-stroke-solid {
    stroke-dashoffset: 0;
    stroke-dasharray: 300;
    stroke-width: 4px;
    -webkit-transition: stroke-dashoffset 1s ease, opacity 1s ease;
    -o-transition: stroke-dashoffset 1s ease, opacity 1s ease;
    -moz-transition: stroke-dashoffset 1s ease, opacity 1s ease;
    transition: stroke-dashoffset 1s ease, opacity 1s ease;
}

.comment-media-play svg .comment-media-play-icon {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 200ms ease-out;
    transition: -webkit-transform 200ms ease-out;
    -o-transition: -o-transform 200ms ease-out;
    -moz-transition: transform 200ms ease-out, -moz-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out, -moz-transform 200ms ease-out, -o-transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

.comment-media-play:hover svg .comment-media-play-stroke-dotted {
    stroke-width: 4px;
    opacity: 1;
}

.comment-media-play:hover svg .comment-media-play-stroke-solid {
    opacity: 0;
    stroke-dashoffset: 300;
}

.comment-media-play:hover svg .comment-media-play-icon {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


/* Search */

.header .search {
    width: 600px;
    background: #ffffff;
    border: solid 1px #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.header .search p {
    float: left;
    width: 48px;
    height: 45px;
    line-height: 45px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: #fff;
    font-size: 16px;
    background: #ec0000;
    margin-top: 2px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.header .search input {
    width: -webkit-calc(100% - 50px);
    width: -moz-calc(100% - 50px);
    width: calc(100% - 50px);
    height: 50px;
    float: left;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
    text-indent: 10px;
    font-size: 18px;
}

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

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

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

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


/* Search */

.search {
    width: 300px;
    background: #fdff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.search p {
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: #fff;
    font-size: 16px;
}

.search input {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    height: 30px;
    float: left;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
    text-indent: 10px;
    font-size: 12px;
    color: #ccc;
}


/* Mmenu */

.menu-res {
    height: 55px;
    z-index: 50;
    background: #1c3a6c;
    position: relative;
    display: none;
}

@media only screen and (max-width:991px) {
    .menu-res {
        display: block;
    }
    .menu {
        display: none;
    }
}

.menu-bar-res {
    height: 55px;
    padding: 0px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

#menu {
    display: none;
}

#hamburger {
    display: block;
    width: 35px;
    height: 23px;
    position: relative;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    background: #ffffff;
    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;
    -o-transition: none 0.5s ease 0.5s;
    -moz-transition: none 0.5s ease 0.5s;
    transition: none 0.5s ease 0.5s;
    -webkit-transition-property: transform, top, bottom, left, opacity;
    -webkit-transition-property: top, bottom, left, opacity, -webkit-transform;
    transition-property: top, bottom, left, opacity, -webkit-transform;
    -o-transition-property: top, bottom, left, opacity, -o-transform;
    -moz-transition-property: transform, top, bottom, left, opacity, -moz-transform;
    transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity, -webkit-transform, -moz-transform, -o-transform;
    transition-property: transform, top, bottom, left, opacity, -webkit-transform;
}

.search-res-w100 {
    width: -webkit-calc(100% - 45px);
    width: -moz-calc(100% - 45px);
    width: calc(100% - 45px);
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
    top: 10px;
}

.mm-wrapper_opening #hamburger span {
    left: -50px;
    opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

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

.mm-slideout {
    z-index: unset;
}


/* 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;
    background: transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.search-res .icon-search.active {
    color: #1c3a6c;
    background: #ffffff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

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

.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: #1c3a6c;
    line-height: 40px;
    text-align: center;
}

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

.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;
}


/* Service Detail */

.dich-vu-index .ckeditor ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dich-vu-index .ckeditor ul>li {
    width: -webkit-calc(50% - 0.625rem);
    width: -moz-calc(50% - 0.625rem);
    width: calc(50% - 0.625rem);
}


/* Slideshow */

.slideshow {
    position: relative;
}

.slideshow-item {
    display: block;
    cursor: pointer;
}

.slideshow:hover .control-slideshow {
    opacity: 1;
}

.dich-vu-index .breadCrumbs {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.dich-vu-index .breadCrumbs p,
.dich-vu-index .breadcrumb-item {
    position: relative;
    z-index: 1;
}

.dich-vu-index .breadCrumbs p {
    display: inline-block;
    font-family: Calibri Bold;
    font-size: clamp(24px, 5.5vw, 60px);
    font-style: normal;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.dich-vu-index .breadcrumb-item+.breadcrumb-item::before {
    content: '>>>';
}

.dich-vu-index .breadcrumb-item+.breadcrumb-item::before,
.dich-vu-index .breadCrumbs .wrap-content .breadcrumb-item a,
.dich-vu-index .breadCrumbs .wrap-content .breadcrumb-item.active a {
    font-size: clamp(16px, 3vw, 28px);
    color: #fff;
}

.dich-vu-index .breadCrumbs .wrap-content .breadcrumb-item a:hover {
    text-decoration: underline !important;
}


/* Price Modal */

.price-modal {
    display: none;
    padding: 1rem;
}

.price-modal .title-main span {
    font-size: 24px;
}

.price-modal__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
}

.price-modal__list .price-modal__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.price-modal-box>div:not(:last-child) {
    margin-bottom: 0.625rem;
}

.price-modal__item select,
.price-modal__item input {
    font-size: 16px;
    color: #000;
    background: #fff;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.price-modal-button {
    text-align: center;
}

.price-modal-button input {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    font-family: Calibri Bold;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    background: #1e4ac7;
    padding: 0.5rem 1.5rem;
}


/* Partner */

.partner__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 1rem;
}

.partner__left {
    width: 37.606838%;
    /* 440/1170 */
}

.partner__right {
    width: 58.119658%;
    /* 680/1170 */
}

.partner__left .title-main {
    text-align: left;
}

.partner__desc {
    color: #333;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.partner__col .partner__item:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.partner__info {
    margin-top: 1rem;
}

.partner__name {
    color: #262626;
    font-family: Calibri Bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}


/* Breadcrumb */

.breadCrumbs {
    background-color: #eee;
}

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

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

.breadCrumbs .wrap-content .breadcrumb-item a {
    color: #212529;
}

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


/* Video */

.video {
    cursor: pointer;
    margin-bottom: 1rem;
}

.video .video-image {
    position: relative;
    margin-bottom: 0.75rem;
}

.video .video-image:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url(../images/play.png);
}

.video .video-name {
    text-align: center;
    font-size: 16px;
    color: #212529;
    margin-bottom: 0px;
}

.listvideos {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid #ccc;
    color: var(--color-black);
    margin-top: 10px;
    cursor: pointer;
}

#video-iframe .slick-prev {
    left: 60px;
    top: -30px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: rotatez(90deg);
    -moz-transform: rotatez(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotatez(90deg);
    transform: rotatez(90deg);
}

#video-iframe .slick-next {
    left: 60px;
    top: 225px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: rotatez(90deg);
    -moz-transform: rotatez(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotatez(90deg);
    transform: rotatez(90deg);
}

#video-iframe .slick-prev:before,
.slick-next:before {
    color: #858585;
}

#video-iframe .col-3 {
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-main {
    position: relative;
    height: 320px;
}

.video-main iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}


/* .subvideo{width:100%;height:320px;overflow:hidden;}
*/

.runvideo {
    margin: -5px 0px;
}

.asubvideo {
    margin: 5px 0px;
}


/* Album */

.album {
    cursor: pointer;
}

.album .album-image {
    margin-bottom: 0.75rem;
    position: relative;
}

.album-expand {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: #00000033;
    opacity: 0;
}

.album-expand i {
    font-size: 35px;
    color: #fff;
}

.album:hover .album-expand {
    opacity: 1;
}

.album .album-name {
    margin-bottom: 0px;
    text-align: center;
}

.album .album-name a {
    display: block;
    font-size: 16px;
    color: #212529;
    margin-bottom: 0px;
}


/* Brand */

.wrap-brand {
    margin-bottom: 50px;
    padding: 0px 15px;
}

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

.brand {
    display: block;
    border: 1px solid #eee;
    max-width: 160px;
    margin: 0px auto;
}


/* Product */

.grid-product {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

@media only screen and (max-width:991px) {
    .grid-product {
        gap: 10px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width:575px) {
    .grid-product {
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 0.5rem;
    }
}

.gr-100 {
    grid-column: 4 span !important;
}


/* .product{float:left;width:23.5%;margin:0 2% 2% 0;}
.product:nth-child(4n + 1){clear:both;}
.product:nth-child(4n){margin-right:0px;}
*/

.flex-in-chat-online {
    border: solid 2px #000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 10px;
}

.chat-online-text-zl {
    color: #ed1c24;
}

.chat-online-text {
    font-size: 16px;
    font-weight: bold;
}

.pic-product {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

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

.info-product {
    margin-top: 10px;
}

.name-product a {
    /* 156.25% */
    /* 129.412% */
    color: #202020;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 15px;
}

.name-product a.text-split {
    -webkit-line-clamp: 1;
}

.name-product a:hover {
    color: #d01717;
}

.price-product {
    margin-bottom: 0px;
    text-align: center;
}

.price-product span {
    font-weight: 700;
}

.price-new,
.price-new a {
    /* 156.25% */
    color: #c8ae50;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.text-price {
    color: var(--2, #2c2c2c);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.price-old {
    padding-left: 10px;
    text-decoration: line-through;
    color: #888;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.price-per {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
    background: var(--color-main);
    font-size: 11px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 45px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}

.cart-product {
    margin-bottom: 0px;
}

.cart-product span {
    cursor: pointer;
    color: #ffffff;
    text-transform: capitalize;
    text-align: center;
}


/*Xem nhanh*/

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

.box-quickview {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    z-index: 10;
    gap: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -50px;
}

.product-quick-view {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #000000ad;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.product-quick-view i {
    color: #fff;
    font-size: 16px;
}

.box-product:hover .box-quickview {
    opacity: 1;
    bottom: 0;
}

.product-quick-view:hover {
    background-color: #ec0000;
}


/* Product Detail */


/* .grid-pro-detail{margin-bottom:3rem;}
*/

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

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

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

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

.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;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    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;
    -moz-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: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

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

.desc-pro-detail {
    margin-bottom: 1rem;
}

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

.attr-pro-detail li {
    margin-bottom: 0.5rem;
}

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

.attr-label-pro-detail.d-block {
    display: block;
    margin: 0px 0px 5px 0px;
}

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

.price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-main);
}

.price-old-pro-detail {
    font-weight: 500;
    color: #6c757d;
    text-decoration: line-through;
    padding-left: 10px;
}

.color-pro-detail {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 35px;
    height: 30px;
    margin: 0px 0px 3px 0px;
    border: 1px solid #eee;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: center center;
}

.size-pro-detail {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 3px 10px 4px 10px;
    display: inline-block;
    position: relative;
}

.size-pro-detail.active {
    border-color: #e5101d;
    color: #e5101d;
}

.color-pro-detail.active {
    border-color: #e5101d;
    color: #e5101d;
}

.size-pro-detail.active:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-image: url(../images/check-cart.png);
}

.color-pro-detail.active:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-image: url(../images/check-cart.png);
}

.color-pro-detail input[type="radio"] {
    display: none;
}

.size-pro-detail input[type="radio"] {
    display: none;
}

.quantity-pro-detail {
    width: 100%;
    max-width: 110px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.quantity-pro-detail span {
    line-height: 25px;
    padding: 0px;
    width: 30px;
    height: 30px;
    color: #5f5f5f;
    cursor: pointer;
    font-size: 22px;
    border: 1px solid #cccccc;
}

.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: 30px;
    border: 1px solid #cccccc;
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: calc(100% - 60px);
    text-align: center;
    font-size: 16px;
    padding: 5px;
}

.cart-pro-detail a {
    font-size: 16px;
    color: #ffffff !important;
    text-transform: uppercase;
}

.btn-cart-main {
    background-color: var(--color-main);
    border-color: var(--color-main);
    color: #ffffff !important;
}

.btn-cart-main:hover {
    background-color: var(--color-hover);
    border-color: var(--color-hover);
}

@media only screen and (max-width:767px) {
    .cart-pro-detail a {
        width: 100%;
    }
    .cart-pro-detail a:first-child {
        margin-right: 0px;
        margin-bottom: 0.5rem;
    }
    .cart-pro-detail a i {
        display: none;
    }
}

.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: 2rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
    border-top-width: 3px;
    font-size: 13px;
}

.tabs-pro-detail .nav-tabs .nav-link.active {
    border-top-color: #555555;
}

.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
    border-top-color: #555555;
}


/*Xem thêm*/

.content_product {
    overflow: hidden;
    max-height: 450px;
}

.content_product.h-full {
    height: 100% !important;
    max-height: 100%;
}

.show-more {
    font-size: 16px;
}

.show-more::before {
    height: 55px;
    margin-top: -45px;
    content: -webkit-gradient(linear, 0% 100%, 0% 0%, from(#fff), color-stop(0.2, #fff), to(rgba(255, 255, 255, 0)));
    display: block;
}


/* News */

.event-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.news-box-in {
    margin-bottom: 2rem;
}

@media only screen and (max-width:575px) {
    .news .news-image {
        margin-bottom: 1rem;
    }
}

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

.news-box-in .news-name a {
    color: #1c3a6c;
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Calibri Bold;
}

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

.news-box-in .news-name a:hover {
    color: #1c3a6c;
}

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

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

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

.list-news-other {
    padding-left: 17px;
    list-style: square;
}

.list-news-other li {
    margin-bottom: 2px;
}

.list-news-other li a {
    text-transform: none;
    color: #333333;
}

.list-news-other li a:hover {
    color: #1c3a6c;
}

.coffee-page .list-news-other li a:hover {
    color: #c8ae50;
}

.coffee-page .footer-logo-name {
    color: #c8ae50;
}

@media only screen and (max-width:991px) {
    .img-auto img {
        width: auto !important;
        height: auto !important;
    }
}


/* Contact */

.contact-col {
    background: #fff;
    -webkit-box-shadow: 0px 3px 10px 0px #ccc;
    -moz-box-shadow: 0px 3px 10px 0px #ccc;
    box-shadow: 0px 3px 10px 0px #ccc;
    padding: 1rem;
}

.contact__title {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-working-time {
    margin-top: 2rem;
}

.contact-working-time ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-working-time ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.contact-working-time ul li span:nth-child(1) {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.contact-working-time ul li span:nth-child(2) {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 1px dashed #ccc;
}

.contact-working-time ul li span:nth-child(3) {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.contact-article {
    margin-bottom: 3rem;
}

.contact-input {
    position: relative;
    margin-bottom: 15px;
}

.contact-input textarea {
    resize: none;
    height: 150px;
}

.contact-input .custom-file-label::after {
    content: attr(title);
}

.contact-map {
    position: relative;
    height: 500px;
}

.contact-map iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
    height: 100% !important;
}


/* Toc */

.box-readmore {
    padding: 8px 15px;
    border: 1px solid #dedede;
    margin-bottom: 2rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #eeeeee;
}

.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-bottom: 5px;
}

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

.box-readmore ul li a {
    color: #333333;
    cursor: pointer;
    font-weight: 600;
}

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


/* Newsletter */

.mw-booking .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

.btn-booking {
    position: fixed;
    right: 15px;
    bottom: 560px;
    z-index: 999;
    -webkit-transform: translateX(78%);
    -moz-transform: translateX(78%);
    -ms-transform: translateX(78%);
    -o-transform: translateX(78%);
    transform: translateX(78%);
}

.btn-booking:hover {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.newsletter-input {
    position: relative;
    margin-bottom: 10px;
}

.newsletter-input input {
    background: transparent;
    color: #8d8d8d;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 100% */
}

.newsletter-input .label {
    position: absolute;
    top: 13px;
    left: 12px;
    font-size: 13px;
    color: #888;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    pointer-events: none;
}

.newsletter-input input:not(:-moz-placeholder-shown)+.label {
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    left: 5px;
}

.newsletter-input input:not(:-ms-input-placeholder)+.label {
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    border-radius: 0.25rem;
    left: 5px;
}

.newsletter-input input:not(:placeholder-shown)+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    left: 5px;
}

.newsletter-input input:focus+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    left: 5px;
}

.newsletter-textarea {
    position: relative;
}

.newsletter-textarea .label {
    position: absolute;
    top: 13px;
    left: 12px;
    font-size: 13px;
    color: #888;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    pointer-events: none;
}

.newsletter-textarea textarea:not(:-moz-placeholder-shown)+.label {
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    left: 5px;
}

.newsletter-textarea textarea:not(:-ms-textarea-placeholder)+.label {
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    border-radius: 0.25rem;
    left: 5px;
}

.newsletter-textarea textarea:not(:placeholder-shown)+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    left: 5px;
}

.newsletter-textarea textarea:focus+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background-color: #fff;
    padding: 0 0.5rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    left: 5px;
}


/* Like Share */

.social-plugin {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-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: #1c3a6c;
    font-size: 0.875rem;
}

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


/* Paging Ajax */

.pagination-ajax {
    text-align: center;
}

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

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

.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:41px;height:41px;text-align:center;font-weight:bold;color:#444;text-decoration:none;position:fixed;bottom:65px;right:25px;display:none;z-index:10;cursor:pointer;}
*/

.scrollToTop {
    position: fixed;
    bottom: 85px;
    right: 25px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    z-index: 1001010;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    transition: all 400ms linear;
}

.scrollToTop.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.scrollToTop::before {
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    content: "\f102";
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: #1c3a6c;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    transition: all 400ms linear;
}

.scrollToTop svg path {
    fill: none;
}

.scrollToTop svg.progress-circle path {
    stroke: #1c3a6c;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    transition: all 400ms linear;
}


/* Text Hide */

.text-split {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    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;
    -o-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}


/* Scale IMG */

.scale-img {
    overflow: hidden;
    display: block;
}

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

.scale-img:hover>img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-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;
    -o-animation-name: blink;
    animation-name: blink;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    -o-animation-iteration-count: infinite;
    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;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    background: #1c3a6c;
}

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

.btn-frame .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-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;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: #1c3a6c;
    opacity: 0.5;
}

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

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

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    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;
    -moz-animation-name: pulse;
    -o-animation-name: pulse;
    animation-name: pulse;
}


/* Zalo */

.btn-zalo {
    bottom: 315px;
}


/* Phone */

.btn-phone {
    bottom: 230px;
}


/* Messenger */

.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;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    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;
    -moz-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;
    -moz-animation-name: rubberBand;
    -o-animation-name: rubberBand;
    animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-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: 150px;
    right: 17px;
    width: 56px;
    height: 56px;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    background: #1c3a6c;
}

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

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 32px;
    height: 33px;
    position: absolute;
    top: 13px;
    left: 12px;
    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;
    -o-transition: opacity 160ms ease-in-out, -o-transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -moz-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, -moz-transform 160ms ease-in-out, -o-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);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 19px;
    left: 19px;
    -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;
    -o-transition: opacity 160ms ease-in-out, -o-transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -moz-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, -moz-transform 160ms ease-in-out, -o-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 {
    position: fixed;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    bottom: 110px;
    right: 90px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    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);
    -moz-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;
    -o-transition: opacity 160ms ease-in-out, -o-transform 160ms ease-in-out;
    -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -moz-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, -moz-transform 160ms ease-in-out, -o-transform 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-header {
    width: 220px;
    color: #ffffff;
    background: var(--color-phone);
    display: block;
    position: relative;
    width: 220px;
    background: var(--color-phone);
    color: #ffffff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 16px;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 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-header {
    color: #ffffff;
    background: var(--color-phone);
    width: 220px;
}

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

.js-facebook-messenger-container.open {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-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);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

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


/* Cart Fix */

.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 480px;
    z-index: 10;
    background: #ec0000;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff !important;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
}

.cart-fixed i {
    font-size: 20px;
}

.cart-fixed span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #ffffff;
    width: 25px;
    height: 25px;
    background: var(--color-main);
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: solid 1px #ccc;
}

@media only screen and (max-width:991px) {
    .cart-fixed {
        bottom: 320px !important;
    }
}


/* Toolbar */

.toolbar {
    background: #1c3a6c;
    padding: 2vw;
    bottom: 5px;
    position: fixed;
    z-index: 49;
    height: auto;
    left: 5px;
    right: 5px;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

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

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

.toolbar ul li a {
    display: block;
    width: 100%;
    cursor: pointer;
}

.toolbar ul li a img {
    height: 6vw;
    width: auto;
}

.toolbar ul li a span {
    font-weight: 400;
    color: #ffffff;
    font-size: 3vw;
    display: block;
}


/* Fixbar */

.fixbar {
    bottom: 0;
    display: block;
    background: #f0eff4;
    border-top: 1px solid #ddd;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    margin: 0;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    -moz-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-header-mobile {
    font-size: 10px;
    position: absolute;
    background: red;
    color: #fff !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    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: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-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: -webkit-calc(50% - 50px / 2);
    left: -moz-calc(50% - 50px / 2);
    left: calc(50% - 50px / 2);
    font-size: 16px;
    display: block;
    border: 1px solid rgba(234, 230, 230, 0.5);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    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;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    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 {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    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;
    -o-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -webkit-animation: headerAnimation 0.7s 1;
    -moz-animation: headerAnimation 0.7s 1;
    -o-animation: headerAnimation 0.7s 1;
    animation: headerAnimation 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;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    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;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    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;
}


/* .support-online .animated.infinite{animation-iteration-count:infinite;}
.support-online .zoomIn{animation-name:zoomIn;}
.support-online .animated{animation-duration:1s;animation-fill-mode:both;}
.support-online .pulse{animation-name:pulse;}
*/


/* Phone Switch */

.widget-mobile {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-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;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-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;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    -moz-animation: pulse 1s infinite ease-in-out;
    -o-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);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    left: -15px;
    top: -15px;
    -webkit-animation: zoomIn 2s infinite ease-in-out;
    -moz-animation: zoomIn 2s infinite ease-in-out;
    -o-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;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
}

.wcircle-menu-item img {
    width: 50px;
    height: 50px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    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;
    -moz-animation: shake-anim 1s infinite ease-in-out;
    -o-animation: shake-anim 1s infinite ease-in-out;
    animation: shake-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}


/**/

.box-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 80px;
}

.category-box .title-category {
    margin: 0;
    text-align: left;
    padding: 8px 15px;
    background-color: var(--color-main);
}

.title-category span {
    color: #fff !important;
    font-size: 16px;
    text-transform: uppercase;
}

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

.category-box i {
    margin-right: 5px;
}

.box_category_list {
    max-height: 500px;
    overflow-y: auto;
    padding: 0;
    list-style: inside;
    background-color: #fff;
    border: solid 1px #eee;
    border-top: none;
}

.box_category_list li {
    /*border-top:solid 1px #ccc;*/
    position: relative;
    list-style: none;
}

.box_category_list>li:first-child {
    border-top: none;
}

.box_category_list li a {
    font-size: 16px;
    color: #666;
    text-transform: capitalize;
    line-height: 1.5;
    padding: 5px 15px;
}

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

.box_category_list li span {
    margin-top: 5px;
}

.box_category_list li span i {
    color: #ccc !important;
}

.box_category_list li .toggle {
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    right: 5px;
    cursor: pointer;
}

.box_category_list li .toggle i {
    color: #ccc;
}

.box_category_list li ul {
    display: none;
}

.box_category_list li ul li {
    padding: 0px 15px;
}

.box_category_list li ul li a {
    text-transform: capitalize;
}


/* width */

.box-sticky::-webkit-scrollbar {
    width: 3px;
}


/* Track */

.box-sticky::-webkit-scrollbar-track {
    background: #ccc;
}


/* Handle */

.box-sticky::-webkit-scrollbar-thumb {
    background: var(--color-main);
}


/* Handle on hover */

.box-sticky::-webkit-scrollbar-thumb:hover {
    background: var(--color-hover);
}


/* Social left */

.social-left {
    position: fixed;
    left: 10px;
    z-index: 11;
    bottom: 150px;
}

.social-left img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.social-left a {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    margin: 5px 0;
}


/* --SETTTING-- */

.content-main img {
    height: auto !important;
}

.wrap-main img {
    height: auto !important;
}


/* Text Hide */

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

.text-split-1 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
}

.text-split-2 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
}

.text-split-3 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
}

.text-split-4 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
}

.text-split-5 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
}

.text-split-6 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 6 !important;
}

.text-split-7 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 7 !important;
}

.text-split-8 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 8 !important;
}

.text-split-9 {
    overflow: hidden !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 9 !important;
}


/* --BONUS-- */


/* CSS starting right here */

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


/* Translate */

.lang-text {
    color: #1c3a6c;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-left: 5px;
}


/* Header */

.img-text-phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40%;
    gap: 5px;
}

.coffee-page .header-link a {
    white-space: nowrap;
    color: #000;
    font-size: 16px;
}

.header-link a {
    white-space: nowrap;
    color: #1c3a6c;
    font-size: 16px;
}

.hotline-header {
    width: 75%;
}

.item-content-address {
    width: 55%;
}

.item-content-email {
    width: 30%;
}

.header-top {
    background: #f6f6f7;
    padding: 7px 0px;
}

.item-content,
.item-content a {
    color: #1c3a6c;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.item-content a:hover {
    color: #f2bf26;
}

.address-email-header {
    width: 70%;
}

.flex-address-email-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.flex-address-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.item-content-call {
    width: 90%;
}

.item-img img {
    margin-bottom: 5px;
}

.flex-header-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hotline-trans-header {
    width: 45%;
}

.flex-hotline-trans-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
}

.header-translate {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style: none;
}


/* Coffee page css */

.coffee-page .header-top {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
}

.coffee-page .item-content,
.coffee-page .item-content a {
    color: #000;
}

.coffee-page .btn-frame .kenit-alo-circle {
    border-color: #c8ae50;
}

.coffee-page .js-facebook-messenger-box {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
}

.coffee-page .btn-frame i {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
}

.coffee-page .footer-copyright {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    padding: 22px 0px;
    color: #000;
}

.coffee-page .footer-title {
    color: #c8ae50;
}

.coffee-page .scrollToTop::before {
    color: #c8ae50;
}

.coffee-page .scrollToTop svg.progress-circle path {
    stroke: #c8ae50;
}

.coffee-page .footer-article {
    background: #f3f3f5;
}


/* Menu */

@media only screen and (max-width:991px) {
    .menu {
        display: none;
    }
}

.menu {
    position: absolute;
    z-index: 11;
    width: 100%;
    top: 39px;
    background: rgba(0, 0, 0, 0.25);
    left: 0;
    right: 0;
    margin: auto;
    padding: 5px 0px;
}

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

.menu ul.menu-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

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

.menu ul li.menu-line {
    width: 1px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.1);
}

.menu ul li a {
    display: block;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    font-family: Calibri Bold;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
}

.menu ul li a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    left: 0px;
    bottom: 0px;
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    -moz-transition: transform 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    display: none;
}

.menu ul li a.active::before,
.menu ul li:hover>a::before {
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.menu ul li a.has-child:after {
    content: "";
    position: absolute;
    bottom: -webkit-calc(50% - 4px / 2);
    bottom: -moz-calc(50% - 4px / 2);
    bottom: calc(50% - 4px / 2);
    right: 5px;
    width: 5px;
    height: 5px;
    border: 1px solid #fafafa;
    border-top: 0px;
    border-left: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none;
}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: #fff;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    -moz-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);
    -moz-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
}

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

.menu ul li ul li {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin: 0px;
}

.menu ul li ul li a {
    border-bottom: 1px solid #ececec;
    padding: 10px 0px 9px 0px !important;
    color: #000 !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

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

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

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

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

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

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

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

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

.menu .menu-main .li-set a {
    text-align: left;
    padding: 10px 0px;
}

.li-logo .logo-header {
    padding: 0px !important;
    position: relative;
    z-index: 1;
}

.menu .menu-main .li-logo a:hover {
    background: transparent;
}

.menu.fixed {
    min-width: 100%;
}

.menu ul li ul li a:hover {
    background: transparent !important;
}

.menu ul li ul li a {
    -webkit-border-radius: unset !important;
    -moz-border-radius: unset !important;
    border-radius: unset !important;
}

.menu.fixed {
    top: 0;
}

.menu-logo {
    margin-right: 50px;
}

.in-page .menu {
    position: relative;
    top: 0;
}

.fixed.menu {
    background: #F3F3F5;
}

.fixed .li-set a {
    color: #000;
}

.fixed .li-set ul li a {
    color: #fff;
}

.fixed .search-res .icon-search {
    color: #000;
}


/* Slide trang chủ */

.slideshow .control-owl button.owl-prev {
    left: 10px;
    background: url("../imgs/arrow-left.png");
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    opacity: 1;
}

.slideshow .control-owl button.owl-prev svg {
    stroke: transparent;
}

.slideshow .control-owl button.owl-next {
    right: 10px;
    background: url("../imgs/arrow-right.png");
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    opacity: 1;
}

.slideshow .control-owl button.owl-next svg {
    stroke: transparent;
}


/* Slide dịch vụ */

.slide-dichvu-index-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 40px;
}

.slide-dichvu-index-img img {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(105deg) brightness(104%) contrast(110%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(105deg) brightness(104%) contrast(110%);
}

.slide-dichvu-index-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 10px 10px 10px 20px;
}

.slide-dichvu-index-box {
    background: rgba(0, 0, 0, 0.7);
}

.slide-dichvu-index-box:hover {
    background: #1c3a6c;
}

.slide-dichvu-index {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.slide-dichvu-index-name {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
    font-family: "Calibri";
    font-size: 16px;
    font-style: normal;
    line-height: 22px;
    text-transform: capitalize;
}


/* Intro */

.flex-intro {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 20px;
}

.intro-left {
    width: 43.5%;
}

.intro-right {
    position: relative;
    width: -webkit-calc(55% + var(--rest-vw, 127.5px));
    width: -moz-calc(55% + var(--rest-vw, 127.5px));
    width: calc(55% + var(--rest-vw, 127.5px));
    margin-right: -webkit-calc(-1 * var(--rest-vw, 127.5px));
    margin-right: -moz-calc(-1 * var(--rest-vw, 127.5px));
    margin-right: calc(-1 * var(--rest-vw, 127.5px));
}

.intro-statistic {
    position: absolute;
    top: 50%;
    right: -webkit-calc(var(--rest-vw, 127.5px) - 6%);
    right: -moz-calc(var(--rest-vw, 127.5px) - 6%);
    right: calc(var(--rest-vw, 127.5px) - 6%);
    max-width: 220px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width:1200px) {
    .intro-statistic {
        right: var(--rest-vw, 127.5px);
    }
}

.intro-statistic__item:not(:last-child) {
    margin-bottom: 1rem;
}

.intro-statistic__info-inner {
    text-align: right;
}

.intro-statistic__number {
    font-weight: 700;
    font-size: clamp(26px, 3.8vw, 38px);
    color: #ff8338;
    text-transform: uppercase;
    margin-bottom: 0;
}

.intro-statistic__name {
    font-weight: 700;
    font-size: clamp(18px, 2.7vw, 22px);
    color: #fff;
    margin-bottom: 0;
}

.intro-right-1 {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.sub-intro {
    color: #333;
    font-family: Calibri Bold;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

.intro-name {
    color: #1c3a6c;
    font-family: Calibri Bold;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.intro-desc {
    color: #333;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.tieuchi-gioithieu-box-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tieuchi-gioithieu-box-flex-icon {
    width: 8%;
    margin-right: 10px;
}

.tieuchi-gioithieu-box-flex-name {
    width: 25%;
    color: #202020;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.tieuchi-gioithieu-box-flex-line {
    width: 1px;
    background: #ccc;
    height: 48px;
    margin: 0px 20px 0px 30px;
}

.tieuchi-gioithieu-box-flex-desc {
    width: 30%;
    color: #393939;
    font-family: Calibri;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.tieuchi-gioithieu-box {
    margin-bottom: 15px;
}

.intro-btn {
    border: solid 1px #1c3a6c;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 12px 25px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #1c3a6c;
    margin-top: 25px;
}

.intro-btn a {
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.intro-btn:hover {
    background: #fff;
    border: solid 1px #1c3a6c;
}

.intro-btn:hover.intro-btn a {
    color: #1c3a6c;
}

.flex-intro-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
}

.flex-intro-right::before {
    position: absolute;
    content: "";
    background: url("../imgs/intro-bf-img.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 304px;
    height: 304px;
    left: 5%;
    top: 15%;
    pointer-events: none;
}

.intro-right-img2 {
    width: 100%;
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.intro-right-img2 img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}


/* Lĩnh vực */

@-webkit-keyframes mymove {
    from {
        margin-bottom: -200px;
    }
    to {
        margin-bottom: 0;
    }
}

@-moz-keyframes mymove {
    from {
        margin-bottom: -200px;
    }
    to {
        margin-bottom: 0;
    }
}

@-o-keyframes mymove {
    from {
        margin-bottom: -200px;
    }
    to {
        margin-bottom: 0;
    }
}

@keyframes mymove {
    from {
        margin-bottom: -200px;
    }
    to {
        margin-bottom: 0;
    }
}

.wrap-linhvuc {
    background: #f4f4f4;
}

.flex-linhvuc .linhvuc-box--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.9375rem;
}

.flex-linhvuc .linhvuc-box--flex:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.linhvuc-box {
    overflow: hidden;
    position: relative;
}

.linhvuc-box .linhvuc-img {
    isolation: isolate;
    position: relative;
}

.linhvuc-box .linhvuc-img:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #00000040;
    pointer-events: none;
}

.linhvuc-box:hover .linhvuc-desc {
    display: block !important;
}

.linhvuc-box:hover .linhvuc-info {
    background: #215a9c80;
}

.linhvuc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
}

.linhvuc-box a {
    position: relative;
    display: block;
}

.linhvuc-name {
    color: #fff;
    font-family: Calibri Bold;
    font-size: 28px;
    font-style: normal;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.linhvuc-desc {
    overflow-y: auto;
    max-height: 180px;
    -webkit-animation: mymove 0.5s ease-in;
    -moz-animation: mymove 0.5s ease-in;
    -o-animation: mymove 0.5s ease-in;
    animation: mymove 0.5s ease-in;
    -webkit-transition: visibility 0.5s ease-in, -webkit-transform 0.5s;
    transition: visibility 0.5s ease-in, -webkit-transform 0.5s;
    -o-transition: visibility 0.5s ease-in, -o-transform 0.5s;
    -moz-transition: transform 0.5s, visibility 0.5s ease-in, -moz-transform 0.5s;
    transition: transform 0.5s, visibility 0.5s ease-in;
    transition: transform 0.5s, visibility 0.5s ease-in, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    display: none !important;
    color: #fff;
    font-family: Calibri;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    padding-right: 0.3125rem;
    margin-right: -0.3125rem;
}

.linhvuc-desc::-webkit-scrollbar {
    width: 0.3125rem;
}

.linhvuc-desc::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.linhvuc-desc::-webkit-scrollbar-thumb {
    background: #1c3a6c;
}

.linhvuc-info-detail {
    position: relative;
}

.linhvuc-icon {
    position: absolute;
    top: -90px;
    right: -70px;
}

.tieuchi-gioithieu-box-flex-icon img,
.linhvuc-icon img,
.slide-dichvu-index-img img,
.tieuchi-logistics-img img,
.tieuchi-coffee-img img,
.whyus-img img {
    -webkit-animation: mycriteria 5s infinite;
    -moz-animation: mycriteria 5s infinite;
    -o-animation: mycriteria 5s infinite;
    animation: mycriteria 5s infinite;
    margin: 5px;
}

@-webkit-keyframes mycriteria {
    0% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    50% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
}

@-moz-keyframes mycriteria {
    0% {
        -moz-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    50% {
        -moz-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -moz-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
}

@-o-keyframes mycriteria {
    0% {
        -o-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    50% {
        -o-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -o-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
}

@keyframes mycriteria {
    0% {
        -webkit-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    50% {
        -webkit-transform: rotate(30deg);
        -moz-transform: rotate(30deg);
        -o-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
}


/* Dịch vụ trang chủ */

.wrap-dichvu {
    background: url("../imgs/bg-dv-index.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.dichvutrangchu-img {
    position: relative;
}

.dichvutrangchu-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.5;
}

.dichvutrangchu-arrow:hover {
    opacity: 1;
}

.dichvutrangchu-info {
    padding: 0px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dichvutrangchu-desc {
    -webkit-animation: mymove 0.5s ease-in;
    -moz-animation: mymove 0.5s ease-in;
    -o-animation: mymove 0.5s ease-in;
    animation: mymove 0.5s ease-in;
    -webkit-transition: visibility 0.5s ease-in, -webkit-transform 0.5s;
    transition: visibility 0.5s ease-in, -webkit-transform 0.5s;
    -o-transition: visibility 0.5s ease-in, -o-transform 0.5s;
    -moz-transition: transform 0.5s, visibility 0.5s ease-in, -moz-transform 0.5s;
    transition: transform 0.5s, visibility 0.5s ease-in;
    transition: transform 0.5s, visibility 0.5s ease-in, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    display: none !important;
    color: #fff;
    font-family: Calibri;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.dichvutrangchu-box:hover .dichvutrangchu-desc {
    display: block !important;
}

.dichvutrangchu-box:hover .dichvutrangchu-info {
    background: #215a9c59;
}

.dichvutrangchu-num {
    font-family: Calibri;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    text-shadow: 2px 2px 0 #4074b5, 2px -2px 0 #4074b5, -2px 2px 0 #4074b5, -2px -2px 0 #4074b5, 2px 0px 0 #4074b5, 0px 2px 0 #4074b5, -2px 0px 0 #4074b5, 0px -2px 0 #4074b5;
    letter-spacing: 3px;
}

.dichvutrangchu-name {
    text-align: center;
    color: #fff;
    font-family: Calibri;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}


/* Đăng ký nhận tin trang chủ */

.box-dknt {
    width: 45%;
    background: #fff;
    padding: 35px 50px 40px;
}

.title-dknt {
    color: #1c3a6c;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.slogan-index {
    color: #686868;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.grid-dknt {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.newsletter-button-set {
    color: #fff;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 18px;
    font-style: normal;
    line-height: 16px;
    border: unset;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #1c3a6c;
    text-transform: uppercase;
    width: 100%;
    padding: 15px 0px;
}


/* Thư viện & sự kiện */

.wrap-thuvien-sukien {
    background: #f4f4f4;
}

.wrap-thuvien-sukien .wrap-content {
    max-width: 1366px;
}

.flex-thuvien-sukien {
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.wrap-thuvien-sukien .slick-custom {
    --w: 40px;
    --h: 40px;
    --pos: -40px;
    position: absolute;
    top: -webkit-calc(50% - var(--h)/2);
    top: -moz-calc(50% - var(--h)/2);
    top: calc(50% - var(--h)/2);
    z-index: 10;
    width: var(--w);
    height: var(--h);
    font-size: 18px;
    color: #fff;
    border: none;
    background: #1c3a6c;
    padding: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.wrap-thuvien-sukien .flex-thuvien-sukien:hover .slick-custom {
    --pos: 0px;
}

.wrap-thuvien-sukien .slick-custom:hover {
    background: #e92525;
}

.wrap-thuvien-sukien .slick-custom--prev {
    left: var(--pos);
}

.wrap-thuvien-sukien .slick-custom--next {
    right: var(--pos);
}

.wrap-thuvien-sukien .slick-dots {
    position: unset;
}

.wrap-thuvien-sukien .slick-dots li button:before {
    font-size: 10px;
}

.flex-thuvien-sukien-left {
    overflow: hidden;
    width: 51%;
}

.flex-thuvien-sukien-right {
    width: 49%;
}

.flex-thuvien-sukien-left .slick-list {
    margin-right: -1rem;
}

.thuvien-sukien-large-box {
    position: relative;
    border: none;
    margin: 1.25rem 1rem;
    margin-left: 0;
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -o-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.thuvien-sukien-large-box.slick-center {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.thuvien-sukien-large-box a {
    display: block;
}

.thuvien-sukien-large-box a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: #ffffff80;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.thuvien-sukien-large-box.slick-center a:before {
    opacity: 0;
    visibility: hidden;
}

.thuvien-sukien-large-item-text {
    color: #717271;
    font-family: Calibri;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.thuvien-sukien-large-name {
    height: -webkit-calc(2 * 1.5em);
    height: -moz-calc(2 * 1.5em);
    height: calc(2 * 1.5em);
    color: #262626;
    font-family: Calibri Bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.thuvien-sukien-large-time-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.thuvien-sukien-large-item-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    width: 50%;
}

.thuvien-sukien-large-info {
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    position: relative;
    z-index: 10;
}

.thuvien-sukien-large-desc {
    font-size: 15px;
    color: #333;
}

.thuvien-sukien-large-box:hover .thuvien-sukien-large-name {
    color: #1c3a6c;
}

.thuvien-sukien-small-box-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.thuvien-sukien-small-box-left {
    width: 53%;
    padding: 25px 30px 25px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.thuvien-sukien-small-box-right {
    width: 47%;
}

.thuvien-sukien-small-name {
    color: #262626;
    font-family: Calibri Bold;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.thuvien-sukien-small-desc {
    color: #333;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.thuvien-sukien-small-box:hover .thuvien-sukien-small-name {
    color: #1c3a6c;
}

.thuvien-sukien-small-box {
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    margin: 10px;
    margin-bottom: 20px;
}

.thuvien-sukien-large-item-img {
    width: 10%;
}

.thuvien-sukien-large-item-text {
    width: 80%;
}

.thuvien-sukien-small-box-left .thuvien-sukien-large-item-img {
    width: 25%;
}

.thuvien-sukien-small-box-left .thuvien-sukien-large-item-text {
    width: 75%;
}

.thuvien-sukien-small-box-left .thuvien-sukien-large-time-flex {
    gap: 10px;
    width: 100%;
}

.thuvien-sukien-small-box-left .thuvien-sukien-large-item-flex {
    gap: 5px;
}


/* Khách hàng & đối tác */

.slide-khachhang-doitac-trangchu {
    position: relative;
}

.slide-khachhang-doitac-trangchu .control-owl button.owl-prev {
    left: -40px;
    background: url("../imgs/arrow-left-doitac-trangchu.png");
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    opacity: 1;
}

.slide-khachhang-doitac-trangchu .control-owl button.owl-prev svg {
    stroke: transparent;
}

.slide-khachhang-doitac-trangchu .control-owl button.owl-next {
    right: -40px;
    background: url("../imgs/arrow-right-doitac-trangchu.png");
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    opacity: 1;
}

.slide-khachhang-doitac-trangchu .control-owl button.owl-next svg {
    stroke: transparent;
}

.slide-khachhang-doitac-trangchu .control-owl button {
    width: 22px;
    height: 65px;
}

.wrap-khachhang-doitac .title-main {
    position: relative;
}

.wrap-khachhang-doitac {
    background: #f4f4f4;
    position: relative;
}

.wrap-khachhang-doitac::before {
    position: absolute;
    content: "";
    background: url("../imgs/bf-partner.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 522px;
    height: 283px;
    top: -7%;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.wrap-khachhang-doitac .slogan-index {
    width: 80%;
    margin: 35px auto 40px;
}


/* Tuyển dụng */

.wrap-hiring {
    height: 345px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
}

.hiring-desc {
    text-align: center;
    color: #fff;
    font-family: Calibri;
    font-size: 18px;
    font-weight: 400;
    width: 70%;
    margin: auto;
}

.hiring-btn {
    width: 205px;
    height: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: solid 1px #ccc;
    margin: 20px auto 10px;
    background: #fff;
}

.hiring-btn a {
    color: #1c3a6c;
    font-family: Calibri Bold;
    font-size: 18px;
    text-transform: uppercase;
}

.hiring-btn:hover {
    background: #1c3a6c;
}

.hiring-btn:hover a {
    color: #fff;
}

.wrap-hiring .title-main span {
    color: #fff;
}


/* Logistic */

.page-logistic {
    background: #f4f4f4;
}


/* Intro */

.wrap-intro-logistic {
    position: relative;
}

.wrap-intro-logistic::before {
    position: absolute;
    content: "";
    background: url("../imgs/bf-intro-logistics.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 602px;
    height: 265px;
    top: 11%;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.intro-desc-logistics {
    width: 80%;
    margin: auto;
    position: relative;
}

.introimg-logistics {
    margin-top: 20px;
}

.wrap-intro-logistic .wrap-content {
    position: relative;
}


/* Dịch vụ logistics */

.wrap-dichvu-logistics {
    padding-bottom: 3px;
}

.title-dichvu-logistics {
    position: relative;
}

.title-dichvu-logistics::before {
    position: absolute;
    content: "";
    background: url("../imgs/bf-dichvu-logistics-title.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 792px;
    height: 95px;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
}

.dichvulogistics-img {
    position: relative;
}

.dichvulogistics-name {
    text-align: center;
    text-align: center;
    position: relative;
    padding: 6px 15px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: #fff;
    font-family: Calibri Bold;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    z-index: 10;
}

.dichvulogistics-desc {
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    -webkit-animation: mymove 0.5s ease-in;
    -moz-animation: mymove 0.5s ease-in;
    -o-animation: mymove 0.5s ease-in;
    animation: mymove 0.5s ease-in;
    -webkit-transition: visibility 0.5s ease-in, -webkit-transform 0.5s;
    transition: visibility 0.5s ease-in, -webkit-transform 0.5s;
    -o-transition: visibility 0.5s ease-in, -o-transform 0.5s;
    -moz-transition: transform 0.5s, visibility 0.5s ease-in, -moz-transform 0.5s;
    transition: transform 0.5s, visibility 0.5s ease-in;
    transition: transform 0.5s, visibility 0.5s ease-in, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    display: none !important;
}

.dichvulogistics-info {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
}

.dichvulogistics-box:hover .dichvulogistics-info {
    background: #215a9cb3;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dichvulogistics-box:hover .dichvulogistics-desc {
    display: block !important;
}

.dichvulogistics-box:hover .dichvulogistics-name {
    background: unset;
    color: #fff;
    padding: 0px;
}


/* Tiêu chí logistics */

.slide-tieuchi-logistics {
    position: relative;
}

.slide-tieuchi-logistics::before {
    position: absolute;
    content: "";
    width: 100%;
    top: 134px;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    background: rgb(255, 255, 255);
}

.wrap-tieuchi-logistics {
    background: url("../imgs/bg-tc-logistics.png") no-repeat top left / 100% 100% fixed;
}

.tieuchi-logistics-name {
    color: #fff;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.tieuchi-logistics-desc {
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
}

.tieuchi-logistics-content {
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
}

.tieuchi-logistics-box {
    text-align: center;
}

.tieuchi-logistics-info {
    margin-top: 50px;
    position: relative;
}

.tieuchi-logistics-info::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: -42px;
    left: -webkit-calc(50% - 16px);
    left: -moz-calc(50% - 16px);
    left: calc(50% - 16px);
}

.tieuchi-logistics-info::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: rgb(255, 255, 255);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: -36px;
    left: -webkit-calc(50% - 10px);
    left: -moz-calc(50% - 10px);
    left: calc(50% - 10px);
}


/* Kết nối logistic */

.ketnoi-logistics-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ketnoi-logistics-left {
    width: 20%;
}

.ketnoi-logistics-right {
    width: 70%;
}

.ketnoi-logistics-name {
    color: #202020;
    font-family: Calibri Bold;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #1c3a6c;
    padding: 4px 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.ketnoi-logistics-name-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


/* Tin tức logistics */

.flex-tintuc-logistics-by {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.tintuc-logistics-box-info {
    padding: 20px 35px 45px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tintuc-logistics-by-text {
    color: #5d5d5d;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tintuc-logistics-name {
    color: #262626;
    font-family: Calibri Bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 15px;
}

.tintuc-logistics-box-img {
    position: relative;
    z-index: 9;
}

.tintuc-logistics-box-date {
    position: absolute;
    width: 80px;
    height: 60px;
    background: url("../imgs/bg-tintuc-logistic-date.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: -50px;
    right: 22px;
    z-index: 9;
}

.tintuc-logistics-box-date .day {
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.tintuc-logistics-box-date .month {
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.flex-tintuc-logistics-seemore {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.tintuc-logistics-box a {
    position: relative;
}

.tintuc-logistics-seemore-text {
    color: #fff;
    font-family: Calibri Bold;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.tintuc-logistics-seemore-arrow i {
    color: #fff;
}

.tintuc-logistics-seemore {
    opacity: 0;
    -webkit-border-radius: 0px 0px 6px 6px;
    -moz-border-radius: 0px 0px 6px 6px;
    border-radius: 0px 0px 6px 6px;
    background: #242331;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
}

.tintuc-logistics-box:hover .tintuc-logistics-seemore {
    opacity: 1;
}


/* Coffee */

.coffee-page .lang-text {
    color: #000;
}

.coffee-page .menu ul li ul {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
}

.coffee-page .search-res .search-grid p {
    color: #c8ae50;
}

.coffee-page .search p {
    color: #c8ae50;
}

.coffee-page .search-res .search-grid {
    border: solid 1px #c8ae50;
}

.coffee-page .toolbar {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
}

.coffee-page .newsletter-input input {
    background: #fff;
}

.coffee-page .menu-res {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
}

.coffee-page .img-lang {
    filter: brightness(0);
    -webkit-filter: brightness(0);
}

.coffee-page .title-main span {
    text-align: center;
    font-family: Calibri Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Intro */

.wrap-intro-coffee {
    background: url("../imgs/bg-intro-c.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.flex-intro-coffee {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.intro-coffee-left {
    width: 50%;
    padding-right: 50px;
}

.intro-coffee-right {
    width: 50%;
}

.sub-intro-coffee {
    color: #333;
    font-family: Calibri;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}

.intro-coffee-name {
    font-family: Calibri Bold;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-tieuchi-coffee {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 40px;
}

.tieuchi-coffee-box {
    text-align: center;
}

.tieuchi-coffee-name {
    color: #333;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 30px;
}

.intro-coffee-btn a {
    color: #202020;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.intro-coffee-btn {
    width: 150px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: -webkit-gradient(linear, left top, left bottom, from(#c8ae50), color-stop(49%, #ddc777), to(#c8ae50));
    background: -webkit-linear-gradient(top, #c8ae50 0%, #ddc777 49%, #c8ae50 100%);
    background: -moz-linear-gradient(top, #c8ae50 0%, #ddc777 49%, #c8ae50 100%);
    background: -o-linear-gradient(top, #c8ae50 0%, #ddc777 49%, #c8ae50 100%);
    background: linear-gradient(180deg, #c8ae50 0%, #ddc777 49%, #c8ae50 100%);
}

.intro-coffee-btn:hover {
    background: #000;
}

.intro-coffee-btn:hover.intro-coffee-btn a {
    color: #c8ae50;
}


/* Sp list coffee */

.splist-coffee-box {
    position: relative;
}

.splist-coffee-box::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, #ffffff), color-stop(80%, #f2295b00));
    background: -webkit-linear-gradient(top, #ffffff 45%, #f2295b00 80%);
    background: -moz-linear-gradient(top, #ffffff 45%, #f2295b00 80%);
    background: -o-linear-gradient(top, #ffffff 45%, #f2295b00 80%);
    background: linear-gradient(180deg, #ffffff 45%, #f2295b00 80%);
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    mix-blend-mode: initial;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-border-radius: 20px 20px 20px 20px;
    -moz-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;
    z-index: 2;
    pointer-events: none;
}

.splist-coffee-box:hover.splist-coffee-box::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, #c8ae50), color-stop(80%, #f2295b00));
    background: -webkit-linear-gradient(top, #c8ae50 45%, #f2295b00 80%);
    background: -moz-linear-gradient(top, #c8ae50 45%, #f2295b00 80%);
    background: -o-linear-gradient(top, #c8ae50 45%, #f2295b00 80%);
    background: linear-gradient(180deg, #c8ae50 45%, #f2295b00 80%);
}

.slide-splist-coffee {
    margin-top: 50px;
}

.sp-list-coffee-img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
}

.sp-list-coffee-img img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.sp-list-coffee-name {
    color: #202020;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 15px;
}

.sp-list-coffee-info {
    text-align: center;
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    z-index: 3;
}


/* Tiêu chí coffee */

.whyus-box:hover .whyus-name {
    color: #c8ae50;
}

.wrap-whyus-coffee {
    background: url("../imgs/bg-tc-coffee.png") no-repeat top left / 100% 100% fixed;
}

.whyus-name {
    color: #fff;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 0px;
}

.whyus-desc {
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.whyus-box {
    text-align: center;
    background: url("../imgs/whyus-box-bg.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    padding: 30px 20px;
}

.whyus-img img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.slide-whyus-coffee-bg {
    background: url("../imgs/slide-whyus-coffee-bg.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    padding: 25px 20px;
}


/* Tin tức coffee */

.wrap-tintuc-coffee {
    background: url("../imgs/bg-tintuc-coffee.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.flex-tintuc-coffee {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.tintuc-coffee-img {
    width: 53%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.tintuc-coffee-info {
    width: 47%;
    position: relative;
}

.grid-tintuc-coffee {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tintuc-coffee-box {
    background: #fff;
    padding: 10px;
    position: relative;
}

.tintuc-coffee-name {
    color: #1e1e1e;
    font-family: Calibri Bold;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.tintuc-coffee-desc {
    overflow: hidden;
    color: #333;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.tintuc-coffee-img img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.tintuc-coffee-date-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.tintuc-coffee-date-time {
    color: #949494;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.tintuc-coffee-date {
    margin: 10px 0px 15px;
}

.tintuc-coffee-box::before {
    position: absolute;
    content: "";
    background: url("../imgs/bf-tintuc-coffee.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 48px;
    height: 48px;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.tintuc-coffee-box:hover .tintuc-coffee-name {
    color: #c8ae50;
}


/* Đối tác chiến lược */

.flex-doitacchienluoc-dknt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.doitacchienluoc-dknt-left {
    width: 55%;
}

.doitacchienluoc-dknt-right {
    width: 42%;
    background: url("../imgs/bg-dknt-box-coffe.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    padding: 30px 35px;
}

.doitacchienluoc-dknt-left .title-main {
    text-align: left;
}

.doitacchienluoc-dknt-left .slogan-index {
    text-align: left;
}

.grid-doitacchienluoc {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.doitacchienluoc-box {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px dashed #c8c8c8;
    background: #fff;
}

.doitacchienluoc-box img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.doitacchienluoc-dknt-right .title-main span {
    color: #fff;
    background: unset;
    -webkit-text-fill-color: unset;
    font-size: 36px;
}

.doitacchienluoc-dknt-right .slogan-index {
    color: #fff;
}

.coffee-page .newsletter-button-set {
    background: -webkit-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -moz-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: -o-linear-gradient(311deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    background: linear-gradient(139deg, #c8ae50 -5.19%, #ddc777 24.09%, #ebd791 53.37%, #c8ae50 72.89%, #aa9031 93.44%);
    color: #000;
}


/* Footer */


/* Logo footer trang chủ */

.flex-footer-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
    -webkit-transform: translateY(-5px) !important;
    -moz-transform: translateY(-5px) !important;
    -ms-transform: translateY(-5px) !important;
    -o-transform: translateY(-5px) !important;
    transform: translateY(-5px) !important;
}

.footer-logo {
    width: 19%;
}

.footer-logodetail {
    width: 77%;
}

.footer-logo-name {
    text-align: center;
    color: #1c3a6c;
    font-family: Calibri Bold;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-logo-desc {
    color: #fff;
    font-family: Calibri;
    font-size: 26px;
    font-style: italic;
    font-weight: 400;
}

.footer-logo-box {
    margin-bottom: 40px;
}

.footer-map-small {
    padding: 10px;
    border: solid 2px #fff;
}

.flex-ft-social-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.margin-footer-title {
    position: relative;
    margin-bottom: 30px;
}

.ft-statistic {
    font-family: "Montserrat ExtraBold";
}

.wrap-pic-video {
    margin-bottom: -6%;
    position: relative;
    z-index: 2;
}

.footer-ul {
    padding-left: 0px;
    color: #fff;
    list-style: none;
}

.footer-ul li a {
    color: #fff;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.footer-ul li a:hover {
    color: #c8ae50;
}

.footer-article {
    background: #F3F3F5;
}

.footer-title {
    color: #1c3a6c;
    font-family: Calibri Bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.footer-powered {
    color: #ffffff;
    background-color: #ae0000;
    text-align: center;
}

.footer-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 50px 0px;
}

.footer-news:nth-child(1) {
    width: 20%;
}

.footer-news:nth-child(2) {
    width: 35%;
}

.footer-news:nth-child(3) {
    width: 30%;
}

.footer-sub-name {
    color: var(--3, #fff);
    font-family: Wix Madefor Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.ft-social-text {
    color: var(--3, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    width: 60%;
}

.footer-map-flex {
    width: 60%;
}

.footer-news-margin {
    margin-left: var(--rest-width);
    padding-top: 70px;
}

.footer-copyright {
    background: #1c3a6c;
    padding: 15px 0px;
    color: #fff;
    text-align: center;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-copyright a {
    color: unset;
}

.footer-desc {
    letter-spacing: 0px;
    font-size: 24px;
    color: #000;
    font-weight: 500;
    ;
}

.ft-social-img {
    width: 23%;
}

.social-footer {
    margin-top: 50px !important;
}

#footer-map {
    position: relative;
    height: 500px;
}

#footer-map iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

@media only screen and (max-width:991px) {
    .footer-powered,
    .footer-statistic {
        text-align: center !important;
    }
}


/* FOOTER MAPS TAB */

.footer_map_tab {
    width: 100%;
    height: 190px;
    clear: both;
    position: relative;
}

.map_frame {
    width: 100%;
    height: 100%;
}

.map_frame iframe {
    width: 100%;
    height: 100%;
}

.wrap_map {
    width: 100%;
    position: absolute;
    top: 30px;
    left: 0;
}

.footer-social {
    margin-top: 20px;
}

.footer-social img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.footer-slogan {
    border: solid 1px #000;
    border-left: unset;
    border-right: unset;
    text-align: center;
    margin-top: 33px;
    margin-bottom: 25px;
}

.footer-slogan-text {
    color: var(--5, #161616);
    font-family: SVN-Hamstring;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-name {
    color: var(--1, #b40d0d);
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-content {
    color: #fff;
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.flex-copyright {
    text-align: center;
}

.footer-content p {
    margin-bottom: 0px;
}

.flex-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.map_items.active {
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    background-color: #000 !important;
    border-color: #000 !important;
}

.map_items {
    font-size: 16px;
    line-height: 23px;
    color: #111111;
    font-weight: 400;
    text-align: center;
    background: #999999;
    border-color: #999999;
}

.map_items:hover {
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    background-color: #000 !important;
    border-color: #000 !important;
}

.fanpage-box {
    margin-bottom: 30px;
}

.box_changelang img {
    width: 35px;
    height: 25px;
}


/* Overlay */

body.diary,
body.diary .overly_load,
body.menu_open,
body.video_open {
    overflow: hidden !important;
}

.overly_load:after,
.bag_popup:after {
    content: "";
    top: 0;
    left: 50%;
    overflow: hidden;
    position: fixed;
    z-index: 111;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(58.5deg);
    -ms-transform: translate(-50%, -50%) rotate();
    -moz-transform: translate(-50%, -50%) rotate(58.5deg);
    -o-transform: translate(-50%, -50%) rotate(58.5deg);
    transform: translate(-50%, -50%) rotate(58.5deg);
    -webkit-transition: height 1.5s cubic-bezier(0.55, 0.085, 0, 0.99);
    -o-transition: height 1.5s cubic-bezier(0.55, 0.085, 0, 0.99);
    -moz-transition: height 1.5s cubic-bezier(0.55, 0.085, 0, 0.99);
    transition: height 1.5s cubic-bezier(0.55, 0.085, 0, 0.99);
    -webkit-transition: height 1.5s;
    -o-transition: height 1.5s;
    -moz-transition: height 1.5s;
    transition: height 1.5s;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: #fff;
    width: 300%;
    height: 300%;
}

.diary1 .overly_load:after,
.diary1 .bag_popup:after {
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    height: 0;
    opacity: 0;
}

.menu_open .overly_load .wrap_line {
    display: none;
}

.logo_load {
    width: 670px;
    height: 250px;
    text-align: center;
    left: -webkit-calc(50% - 670px / 2);
    left: -moz-calc(50% - 670px / 2);
    left: calc(50% - 670px / 2);
    top: -webkit-calc(50% - 250px / 2);
    top: -moz-calc(50% - 250px / 2);
    top: calc(50% - 250px / 2);
    position: fixed;
    padding: 30px 30px 30px 30px;
    z-index: 1111;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
    -webkit-transform: translate3d(-100vw, 0, 0);
    -moz-transform: translate3d(100vw, 0, 0);
    -o-transform: translate3d(100vw, 0, 0);
    transform: translate3d(-100vw, 0, 0);
}

.diary .logo_load {
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.logo_load h3 {
    margin-top: 20px;
    color: #1c3a6c;
    font-family: Calibri Bold;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.logo_load p {
    margin: 0;
    font-size: 15px;
    color: #f7941d;
}

.logo_load h3[data-aos^="fade"][data-aos^="fade"].aos-animate {
    -webkit-transition-delay: 1.2s;
    -moz-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.logo_load p[data-aos^="fade"][data-aos^="fade"].aos-animate {
    -webkit-transition-delay: 1.4s;
    -moz-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.wrap_line {
    position: fixed;
    z-index: 1111;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
    -webkit-transform: translate3d(100vw, 0, 0);
    -moz-transform: translate3d(100vw, 0, 0);
    -o-transform: translate3d(100vw, 0, 0);
    transform: translate3d(100vw, 0, 0);
}

.diary .wrap_line,
.menu_open .wrap_line {
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    -moz-transition: all 1.5s;
    transition: all 1.5s;
    -webkit-transform: translate3d(100vw, 0, 0);
    -moz-transform: translate3d(100vw, 0, 0);
    -o-transform: translate3d(100vw, 0, 0);
    transform: translate3d(0, 0, 0);
}

.menu_open .overly_load .wrap_line {
    display: none;
}

@-webkit-keyframes DrawPlay {
    0% {
        stroke-dashoffset: 2800;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes DrawPlay {
    0% {
        stroke-dashoffset: 2800;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-o-keyframes DrawPlay {
    0% {
        stroke-dashoffset: 2800;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes DrawPlay {
    0% {
        stroke-dashoffset: 2800;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

#line_load,
#line-UI {
    position: absolute;
    bottom: -97vh;
    right: -104vh;
    height: auto;
}

#line_load svg,
#line-UI svg {
    width: 184vh;
    height: 230vh;
    display: block;
}

.wrap_line polyline {
    stroke-miterlimit: 10;
    stroke-width: 1px;
    stroke-dasharray: 3011;
    stroke-dashoffset: 3011;
    fill-opacity: 0;
}

.diary polyline,
.menu_open polyline {
    -webkit-animation-name: DrawPlay;
    -moz-animation-name: DrawPlay;
    -o-animation-name: DrawPlay;
    animation-name: DrawPlay;
    -webkit-animation-duration: 4.5s;
    -moz-animation-duration: 4.5s;
    -o-animation-duration: 4.5s;
    animation-duration: 4.5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    -o-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    stroke: #87ceeb;
}

.wrap_line polyline:nth-child(5),
.wrap_line polyline:nth-child(6),
.wrap_line polyline:nth-child(7),
.wrap_line polyline:nth-child(8) {
    fill-opacity: 0;
    stroke-width: 1px;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.diary .wrap_line polyline:nth-child(5),
.diary .wrap_line polyline:nth-child(6),
.diary .wrap_line polyline:nth-child(7),
.diary .wrap_line polyline:nth-child(8),
.diary .wrap_line polyline:nth-child(9),
.diary .wrap_line polyline:nth-child(10) {
    fill: #87ceeb !important;
    fill-opacity: inherit;
    stroke: #fff !important;
    -webkit-transition-delay: 0.5 s;
    -moz-transition-delay: 0.5 s;
    -o-transition-delay: 0.5 s;
    transition-delay: 0.5 s;
}

.menu_open .wrap_line polyline:nth-child(5),
.menu_open .wrap_line polyline:nth-child(6),
.menu_open .wrap_line polyline:nth-child(7),
.menu_open .wrap_line polyline:nth-child(8),
.menu_open .wrap_line polyline:nth-child(9),
.menu_open .wrap_line polyline:nth-child(10) {
    fill: #87ceeb !important;
    fill-opacity: inherit;
    stroke-width: 1px;
    stroke: #fff !important;
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}


/* Social change */

.com-ad {
    color: #fff;
    font-size: 18px
}

.fab-wrapper {
    position: fixed;
    bottom: 5px;
    right: 8px;
    z-index: 9999999
}

.fab-checkbox {
    display: none !important
}

.fab-checkbox:checked~.devvn_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 1
}

.fab {
    width: 60px;
    max-width: unset;
    height: 60px;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #1e4ac7;
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    -moz-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1000;
    overflow: hidden;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .15s cubic-bezier(.15, .87, .45, 1.23);
    -o-transition: all .15s cubic-bezier(.15, .87, .45, 1.23);
    -moz-transition: all .15s cubic-bezier(.15, .87, .45, 1.23);
    transition: all .15s cubic-bezier(.15, .87, .45, 1.23)
}

.fab-checkbox:checked~.fab {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .15s cubic-bezier(.15, .87, .45, 1.23);
    -o-transition: all .15s cubic-bezier(.15, .87, .45, 1.23);
    -moz-transition: all .15s cubic-bezier(.15, .87, .45, 1.23);
    transition: all .15s cubic-bezier(.15, .87, .45, 1.23)
}

[class*=icon-cps-] {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    -webkit-background-size: 453px 453px;
    -moz-background-size: 453px;
    -o-background-size: 453px;
    background-size: 453px
}

.fab-checkbox:checked~.fab .icon-cps-fab-menu {
    width: 30px;
    height: 30px;
    margin: 0;
    -webkit-background-size: 615px 615px;
    -moz-background-size: 615px;
    -o-background-size: 615px;
    background-size: 615px;
    background-position: -291px -70px
}

.fab-wheel {
    width: 300px;
    height: 220px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 12
}

.fab-checkbox:checked~.fab-wheel {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.fab-wheel .fab-action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    text-decoration: none
}

.fab-wheel .fab-action-1 {
    top: 0;
    right: 0
}

.fab-title {
    float: left;
    margin: 0 5px 0 0;
    opacity: 0
}

.fab-checkbox:checked~.fab-wheel .fab-title {
    opacity: 1
}

.fab-button {
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    float: left;
    padding: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #0f1941;
    -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    -moz-box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    font-size: 24px;
    color: #fff;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    overflow: hidden
}

.fab-wheel .fab-button-1 {
    background: #0573ff
}

.fab-wheel .fab-action-2 {
    top: 45px;
    left: 90px
}

.fab-wheel .fab-button-2 {
    background: #fb0
}

.fab-wheel .fab-action-3 {
    left: 50px;
    bottom: 70px
}

.fab-wheel .fab-button-3 {
    background: #0f9d58
}

.fab-wheel .fab-action-4 {
    left: 43px;
    bottom: 0
}

.fab-wheel .fab-button-4 {
    background: #2f82fc
}

.suggestions-chat-box {
    min-width: 140px;
    min-height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #1d72e0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #277cea;
    -webkit-box-shadow: 0 .5rem 1rem rgb(0 0 0 / 15%);
    -moz-box-shadow: 0 .5rem 1rem rgb(0 0 0 / 15%);
    box-shadow: 0 .5rem 1rem rgb(0 0 0 / 15%);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    position: fixed;
    right: 80px;
    bottom: 7%;
    z-index: 11
}

.hidden {
    display: none !important
}

.align-items-center {
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    -moz-box-align: center !important;
    align-items: center !important;
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.suggestions-chat-box #btnClose {
    position: absolute;
    top: 2px;
    left: 2px
}

.fab-checkbox:not(:checked)~.fab {
    -moz-animation-name: zoom;
    -o-animation-name: zoom;
    animation-name: zoom;
    -webkit-animation-name: zoom;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    cursor: pointer;
    -webkit-box-shadow: 0 0 0 0 #F7BE2F;
    -moz-box-shadow: 0 0 0 0 #F7BE2F;
    box-shadow: 0 0 0 0 #F7BE2F
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@-moz-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        -moz-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        -moz-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        -moz-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        -moz-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@-o-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        -o-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        -o-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        -o-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        -o-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        -moz-transform: scale(.9) rotate(-3deg);
        -o-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        -moz-transform: scale(1.1) rotate(3deg);
        -o-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        -moz-transform: scale(1.1) rotate(-3deg);
        -o-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        -moz-transform: scale(1) rotate(0);
        -o-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 15px transparent;
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

@-moz-keyframes zoom {
    0% {
        -moz-transform: scale(.9);
        transform: scale(.9)
    }
    70% {
        -moz-transform: scale(1);
        transform: scale(1);
        -moz-box-shadow: 0 0 0 15px transparent;
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        -moz-transform: scale(.9);
        transform: scale(.9);
        -moz-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

@-o-keyframes zoom {
    0% {
        -o-transform: scale(.9);
        transform: scale(.9)
    }
    70% {
        -o-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        -o-transform: scale(.9);
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -o-transform: scale(.9);
        transform: scale(.9)
    }
    70% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 15px transparent;
        -moz-box-shadow: 0 0 0 15px transparent;
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -o-transform: scale(.9);
        transform: scale(.9);
        -webkit-box-shadow: 0 0 0 0 transparent;
        -moz-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

.arrow {
    display: table;
    margin: 35px auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.arrow span {
    display: block;
    width: 30px;
    height: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: -10px;
    -webkit-animation: animate 2s infinite;
    -moz-animation: animate 2s infinite;
    -o-animation: animate 2s infinite;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    -webkit-animation-delay: -0.2s;
    -moz-animation-delay: -0.2s;
    -o-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    -webkit-animation-delay: -0.4s;
    -moz-animation-delay: -0.4s;
    -o-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

@-webkit-keyframes animate {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(-20px, -20px);
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(20px, 20px);
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@-moz-keyframes animate {
    0% {
        opacity: 0;
        -moz-transform: rotate(45deg) translate(-20px, -20px);
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: rotate(45deg) translate(20px, 20px);
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@-o-keyframes animate {
    0% {
        opacity: 0;
        -o-transform: rotate(45deg) translate(-20px, -20px);
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -o-transform: rotate(45deg) translate(20px, 20px);
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@keyframes animate {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(-20px, -20px);
        -moz-transform: rotate(45deg) translate(-20px, -20px);
        -o-transform: rotate(45deg) translate(-20px, -20px);
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(20px, 20px);
        -moz-transform: rotate(45deg) translate(20px, 20px);
        -o-transform: rotate(45deg) translate(20px, 20px);
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.news-box-in-flex {
    gap: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.news-box-in-flex .news-info {
    width: 50%;
}

.news-box-in-flex .news-box-in-flex-img {
    width: 50%;
}


/* Footer */

.footer-item-large {
    text-align: center;
    padding: 40px 0px 30px;
}

.flex-branch-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 0px;
}

.office-name {
    color: #000;
    text-align: center;
    font-family: Calibri Bold;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 0px;
}

.office-info {
    font-family: Calibri;
    font-size: 16px;
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.office-box {
    width: 30%;
}


/* */

#loading {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    overflow: hidden;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#loading:after {
    content: " ";
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    margin: 0 0 0;
    background: #fff;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out
}

#loading.finis {
    visibility: hidden;
}

#loading.finish:after {
    opacity: 0;
}

#loading.finish .postion-svg svg {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
}

#loading.show .postion-svg {
    opacity: 1;
}

.postion-svg {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 999;
    opacity: 0;
}

.postion-svg svg {
    width: 750px;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

#loading.show {
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
    ;
    fill-opacity: 1;
}

.postion-svg svg {
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
}

.flex-footer-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
}

.footer-col:nth-child(1) {
    width: 30%;
}

.footer-col:nth-child(2) {
    width: 65%;
}

.footer-company {
    font-family: Calibri;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    color: #1c3a6c;
}

.footer-company-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
}

.footer-col a {
    text-align: center;
}

.footer-company-content {
    font-family: Calibri;
    font-size: 16px;
    font-weight: 400;
}

.footer-company-flex .footer-company-content {
    width: -webkit-calc(50% - 0.5rem);
    width: -moz-calc(50% - 0.5rem);
    width: calc(50% - 0.5rem);
}

.intro-right img {
    -webkit-clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.flex-smtn {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.smtn-box {
    text-align: center;
}

.smtn-box {
    padding: 0px 30px;
}

.bg-smtn {
    padding: 50px 0px;
}

.footer-desc p {
    margin-bottom: 0px;
}


/* Tpl Introduce */


/* Intro Introduce */

.flex-intro-introduce {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.flex-intro-introduce::before {
    position: absolute;
    content: '';
    background: url('../imgs/welcome-text-introduce.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 241px;
    height: 38px;
    bottom: 0;
    right: 0;
}

.intro-introduce-left {
    width: 80%;
    margin: 0 auto;
}

.intro-introduce-right {
    width: 55%;
    position: relative;
    min-height: 505px;
}

.wrap-intro-introduce {
    padding: 70px 0px;
    background: url('../imgs/bg-intro-introduce.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.wrap-intro-introduce .img-sub-intro,
.wrap-intro-introduce .sub-intro-introduce,
.wrap-intro-introduce .intro-introduce-name {
    text-align: center;
}

.intro-introduce-img2 {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.intro-introduce-img1 {
    top: 200px;
    position: absolute;
    left: 0;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    z-index: 20;
}

.sub-intro-introduce {
    color: #333;
    font-family: Calibri;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.intro-introduce-name {
    font-family: Calibri Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    color: #001179;
}

.intro-introduce-desc {
    color: #000;
    font-family: Calibri;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

.intro-introduce-btn {
    border: solid 1px var(--Primary, #001179);
    width: 110px;
    height: 40px;
    background: var(--Primary, #001179);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.intro-introduce-btn a {
    color: var(--Other-White, #FFF);
    font-family: Calibri;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.intro-introduce-btn:hover {
    background: #fff;
}

.intro-introduce-btn:hover a {
    color: var(--Primary, #001179);
}


/* Sứ mệnh tầm nhìn */

.flex-smtn-intro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smtn-intro-box {
    text-align: center;
}

.smtn-intro-box:nth-child(2) {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

.smtn-intro-box {
    padding: 0rem 1rem;
}

.bg-smtn-intro {
    padding: 50px 0px;
}

.wrap-vision-introduce {
    padding: 90px 0px;
}

.flex-smtn-intro-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.smtn-intro-name {
    color: #FFF;
    font-family: Calibri Bold;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.smtn-intro-desc {
    color: #FFF;
    text-align: center;
    font-family: Calibri;
    font-size: 19px;
    font-style: normal;
    line-height: 30px;
}


/* Giá trị cốt lõi */

.wrap-core-value {
    padding: 50px 0px;
    background: url('../imgs/bg-giatri-cotloi.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.grid-core-value {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.flex-core-value {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.core-value-img {
    width: 30%;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.core-value-img::before {
    position: absolute;
    content: '';
    background: url('../imgs/bg-giatri-cotloi-icon.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 157px;
    height: 159px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.core-value-info {
    width: 60%;
}

.core-value-name {
    color: #000;
    font-family: Calibri Bold;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.core-value-desc {
    color: #000;
    font-family: Calibri;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}


/* Văn hóa công ty */

.culture-company-name {
    color: #001179;
    font-family: Calibri Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.wrap-culture-company {
    padding: 125px 0px;
}

.culture-company-desc {
    color: #000;
    font-family: Calibri;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.flex-culture-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.culture-company-left {
    width: 45%;
}

.culture-company-right {
    width: 50%;
    text-align: center;
}

.culture-company-img {
    display: inline-block;
    position: relative;
    z-index: 2;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.culture-company-img::before {
    position: absolute;
    content: '';
    background: url('../imgs/cover-img-vanhoa-congty.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 609px;
    height: 524px;
    top: -20%;
    left: -27%;
    right: 0;
    margin: auto;
    z-index: -1;
}

.culture-company-img img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.culture-company-line {
    margin: 20px 0px 40px;
}


/* Năng lực nhân sự */

.wrap-people-rank {
    padding: 60px 0px 100px;
    background: url('../imgs/bg-people-rank.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.wrap-people-rank .title-main span {
    font-family: Calibri Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#FFC901), to(#FCFB6C));
    background: -webkit-linear-gradient(left, #FFC901 0%, #FCFB6C 100%);
    background: -moz-linear-gradient(left, #FFC901 0%, #FCFB6C 100%);
    background: -o-linear-gradient(left, #FFC901 0%, #FCFB6C 100%);
    background: linear-gradient(90deg, #FFC901 0%, #FCFB6C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc-people-rank {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Calibri;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    width: 85%;
    margin: auto;
}

.line-people-rank {
    margin-bottom: 20px;
}

.slide-people-rank {
    margin-top: 30px;
}

.people-rank-img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden;
}


/* Thế mạnh công ty */

.wrap-company-streng {
    padding: 60px 0px;
    background: url('../imgs/bg-themanhcongty.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.company-streng-info {
    text-align: left;
}

.company-streng-name {
    color: var(--Black, #000);
    font-family: Calibri Bold;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
}

.company-streng-desc {
    color: var(--Black, #000);
    font-family: Calibri;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}

.company-streng-num {
    color: var(--White, #FFF);
    font-family: Calibri;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    position: relative;
    padding-top: 10px;
    z-index: 5;
    margin-bottom: -40px;
}

.company-streng-num::before {
    position: absolute;
    content: '';
    background: url('../imgs/themanh-num.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 65px;
    height: 74px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    -webkit-filter: brightness(0) saturate(100%) invert(9%) sepia(58%) saturate(5311%) hue-rotate(231deg) brightness(94%) contrast(117%);
    filter: brightness(0) saturate(100%) invert(9%) sepia(58%) saturate(5311%) hue-rotate(231deg) brightness(94%) contrast(117%);
}

.company-streng-img {
    padding: 70px;
    position: relative;
}

.company-streng-img::before {
    position: absolute;
    content: '';
    background: url('../imgs/themanh-cirle.png')no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 261px;
    height: 197px;
    top: 10%;
    left: 12%;
    pointer-events: none;
    -webkit-filter: brightness(0) saturate(100%) invert(9%) sepia(58%) saturate(5311%) hue-rotate(231deg) brightness(94%) contrast(117%);
    filter: brightness(0) saturate(100%) invert(9%) sepia(58%) saturate(5311%) hue-rotate(231deg) brightness(94%) contrast(117%);
}

.slide-company-streng .owl-stage-outer {
    width: 103%;
}
