/*============================= HEADER =============================*/
.header-fill {
    height: 70px;
}
.header-sticky {
    background-color: #fff;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 128px;
    z-index: var(--index-important);
    box-shadow: 0 4px 8px rgb(84 104 120 / 10%);
}
.header__img {
    max-width: 200px;
}
.btn.btn-radius {
    border-radius: 8px;
    height: 42px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    font-weight: 500;
}
.btn.btn-blue {
    color: #fff;
    background-color: var(--color-primary);
}
.btn.btn-blue:hover {
    background-color: #2483c2;
}
.btn.btn-default {
    color: #454545;
}
.navigate {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.navigate > li {
    position: relative;
}
.navigate > li > .tag {
    position: absolute;
    right: 0;
    top: -5px;
    width: 30px;
    height: 20px;
    background-color: rgb(255, 0, 0);
    color: #fff;
    display: flex;
    font-size: 10px;
    border-radius: 20px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}
.navigate > li > a {
    position: relative;
    display: block;
    margin-right: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    color: #454545;
    font-size: 16px;
    border-radius: 3.6rem;
    text-decoration: none;
    transition: all 0.25s ease-in;
    font-family: var(--font-primary);
}
.navigate > li > a > i {
    position: absolute;
    right: -5px;
    top: 7px;
    font-size: 20px;
}
.navigate > li > a:hover,
.navigate > li > a.active {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}
.navigate > li > ul.dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 350px;
    min-height: 250px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.25s ease-in;
}
.navigate > li > ul.dropdown > li {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 10px;
}
.navigate > li > ul.dropdown > li:first-child {
    padding-top: 10px;
    padding-bottom: 0.2rem;
}
.navigate > li > ul.dropdown > li > a {
    font-size: 16px;
    text-decoration: none;
    display: block;
    color: #454545;
    font-weight: bold;
    font-family: var(--font-third);
}
.navigate > li > ul > li a:hover {
    text-decoration: underline;
}
.navigate > li > ul > li:last-child {
    padding-bottom: 10px;
}
.navigate > li:hover > ul {
    top: 32px;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.dropdown-item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 12px 5px;
}
.dropdown-item:active {
    background-color: #e2e2e2;
}
.dropdown-item-img img {
    max-width: 30px;
}
.dropdown-item-name {
    width: calc(100% - 30px);
    padding-left: 10px;
}
.dropdown-item-name h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #283747;
}
.dropdown-item-name p {
    font-size: 15px;
    margin-bottom: 0;
    color: #808B96;
    font-family: var(--font-second);
    font-weight: lighter;
}
.dropdown.lite > li > a {
    font-weight: 500;
    font-size: 15px;
    color: #333;
}
.dropdown.lite > li > ul.dropdown2 {
    border-left: 1px solid #c3c3c3;
    list-style: none;
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.dropdown.lite > li > ul.dropdown2 > li a {
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #454545;
    font-family: var(--color-third);
}
.dropdown.lite > li > ul.dropdown2 > li a:hover {
    text-decoration: underline;
}
.header__action {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}
.header__action li {
    height: 70px;
}
.header__action li a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
    font-family: var(--font-second);
    font-weight: bold;
    font-size: 16px;
}
.header__action li a i {
    margin-right: 5px;
    font-size: 20px;
}
/*============================= ./end HEADER =============================*/

/*============================= CONTENT =============================*/
.heading__title {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    line-height: 15px;
    color: #333333;
    margin-bottom: 20px;
    font-family: var(--font-second);
}
.heading__desc {
    color: #333333;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-third);
}
.card.service {
    margin-bottom: 30px;
    border-radius: var(--radius-10);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease-in;
    box-shadow: var(--shadow-1);
}
.card.service .card-hover {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    background: rgb(16,76,179);
    background: linear-gradient(94deg, rgba(16,76,179,1) 0%, rgba(15,69,161,1) 98%);
    transition: all 0.4s ease-in;
    padding: 25px;
    z-index: 999;
}
.card.service .card-normal {
    transition: all 0.4s ease;
    padding: 25px;
}
.card.service:hover .card-hover {
    left: 0;
}
.card.service:hover .card-normal {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
}
.card.service .card-normal .card-image {
    width: 70px;
}
.card.service .card-normal .card-image {
    margin-bottom: 15px;
}
.card.service .card-normal .card-image img {
    width: 100%;
}
.card.service .card-normal .card-title {
    margin-bottom: 15px;
    font-family: var(--font-second);
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    text-transform: uppercase;
}
.card.service .card-normal .card-text {
    font-family: var(--font-third);
    font-size: 16px;
    margin-bottom: 16px;
    color: #454545;
    line-height: 26px;
}
.card.service .card-normal .btn-circle {
    margin-top: 10px;
    color: #104cba;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
    background: #e5eef6;
    line-height: 33px;
    border-radius: 50%;
    text-align: center;
}
.card.service .card-normal .btn-circle i {
    font-weight: 600;
    font-size: 20px;
}
.card.service .card-hover .card-title {
    font-family: var(--font-second);
    font-size: 22px;
    color: #fff;
    line-height: 32px;
}
.card.service .card-hover .card-text {
    font-size: 16px;
    font-family: var(--font-third);
    color: #fff;
    line-height: 28px;
}
.card.service .card-hover .btn-view-more {
    display: block;
    padding: 10px 20px;
    background: #285ec1;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.5s ease;
}
.card.service .card-hover .btn-view-more:hover {
    color: #fff;
    background: #000;
}
.why {
    background-image: url('../img/bg-why.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.section-policy {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
    flex-wrap: wrap;
}
.policy-item {
    width: calc(33.33% - 12px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border-radius: var(--radius-10);
    margin-bottom: 15px;
    margin-right: 12px;
    cursor: pointer;
}
.policy-item .policy-item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: var(--shadow-3);
    background-color: #fff;
    width: 99px;
    height: 99px;
    margin: 2px auto -40px auto;
    position: relative;
    overflow: hidden;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}
.policy-item .policy-item-img svg {
    color: var(--color-primary);
    position: relative;
}
.policy-item:hover .policy-item-img {
    background-color: var(--color-primary);
}
.policy-item:hover .policy-item-img svg {
    color: #fff;
}
.policy-item-text {
    background: linear-gradient(105.19deg,#F0F5FF 0%,#FFFFFF 100%);
    box-shadow: var(--shadow-2);
    padding: 52px 20px 42px 20px;
    border-radius: 8px;
}
.policy-item-text h3 {
    font-size: 24px;
    line-height: 27px;
    color: #333333;
    text-align: center;
    margin: 0 0 16px;
    font-weight: bold;
    font-family: var(--font-second);
}
.policy-item-text p {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    font-family: var(--font-third);
}
.featured-product {
    background: var(--gradient-3)!important;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.featured-product__item {
    display: flex;
    flex-direction: row;
}
.featured-product__item .product-featured-img,
.featured-product__item .product-featured-info {
    width: 50%;
}
.featured-product__item .product-featured-img {
    padding-right: 25px;
}
.featured-product__item .product-featured-info {
    padding: 25px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    position: relative;
}
.featured-product__item .product-featured-link {
    font-size: 20px;
    text-transform: uppercase;
    color: #454545;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.25s ease-in;
    margin-bottom: 15px;
}
.featured-product__item .product-featured-link:hover {
    color: var(--color-primary);
}
.label {
    max-width: 180px;
    display: block;
    padding: 5px;
    margin-top: 5px;
    border-radius: 30px;
    font-size: 15px;
    text-align: center;
    font-family: var(--color-third);
}
.label.label-blue {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}
.product-featured-price {
    margin-top: 20px;
}
.product-featured-price-value {
    color: #454545;
    font-size: 20px;
    font-weight: bold;
    color: #E74C3C;
    margin-right: 5px;
}
.product-featured-discount {
    color: #808B96;
}
.owl-product {
    margin-top: 25px;
    padding: 0 20px;
}
.owl-product .owl-nav {
    position: absolute;
    left: 0;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.product-featured-desc {
    margin: 10px 0;
    font-size: 15px;
    color: #34495E;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 2;
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.button-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.btn-featured {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--color-primary);
    color: #fff;
}
.btn-featured:hover {
    color: #fff;
    background-color: var(--color-primary-bold);
}
.button {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.button i {
    margin-right: 8px;
}
.btn.btn-green {
    background: #27AE60;
    color: #fff;
}
.btn.btn-green:hover {
    background-color: #188d49;
}
.btn-featured.with-border:hover {
    background-color: #f9f9f9;
}
.btn-featured.btn-flat {
    border-radius: 0;
}
.btn-featured.with-border {
    border: 1px solid #dfe0e0;
    color: #454545;
}
.btn-featured i {
    margin-right: 8px;
}
.owl-product .owl-nav button.owl-next, 
.owl-product .owl-nav button.owl-prev{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--color-primary);
    color: #fff!important;
    border: 1px solid #eee;
}
.owl-product .owl-nav button.owl-next i,
.owl-product .owl-nav button.owl-prev i {
    font-size: 20px;
}
.owl-product .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.owl-product button.owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #F9F9F9;
}
.owl-product button.owl-dot.active {
    background-color: var(--color-primary);
}
.product-lasted-wrap {
    background-color: #fff;
}
.product-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.productBox
.owl-product .item.productBox {
    width: 100%;
    border: none;
}
.section-post {
    background-color: var(--color-extra2);
}
.post__heading {
    font-size: 28px;
    text-align: center;
    margin-bottom: 3vh;
}
.postBox {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.45s ease-in;
    box-shadow: var(--shadow-1);
    margin-top: var(--mt-25);
    padding: 20px;
}
.owl-post .owl-nav {
    display: none;
}
.postBox__content {
    padding: 12px 0;
}
.postBox__content a {
    height: 55px;
    text-decoration: none;
    color: #454545;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
}
.postBox__content a:hover {
    text-decoration: underline;
}
.postBox__content-desc {
    color: #6b7385;
    font-size: 16px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 2;
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.postBox__content .button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.postBox__content .button a {
    color: var(--color-primary);
    font-size: 15px;
    padding: 0;
    margin: 0;
}
.postBox__content .button .date {
    font-size: 14px;
    color: #a3a3a3;
}
.section-partner {
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 15px 0;
    background-color: #F9F9FB;
}
.partner-wrap {
    display: flex;
    align-items: center;
}
.partner-wrap .partner-left {
    width: 40%;
}
.partner-wrap .partner-right {
    width: 60%;
}
.partner__heading {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #1f2642;
    padding: 0;
    margin-bottom: 0;
}
.partner__desc {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #1f2642;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 0;
}
.partnerBox {
    text-align: center;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    transition: all 0.45s ease-in;
}
.partnerBox a {
    display: block;
    padding: 25px;
}
.partnerBox:hover {
    filter: grayscale(0); 
}
.sidebar-heading-top {
    height: 68px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}
.sidebar-heading-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.sidebar-heading-wrap li {
    position: relative;
}
.sidebar-heading-wrap li .dropdown {
    position: absolute;
    top: 80px;
    right: -20px;
    min-width: 220px;
    min-height: auto;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.15s ease-out;
}
.sidebar-heading-wrap li:hover .dropdown {
    top: 68px;
    opacity: 1;
    visibility: visible;
    z-index: 9999; 
}
.sidebar-heading-wrap li .dropdown li > a {
    height: 50px;
    border-bottom: 1px solid #eee;
    font-weight: normal;
    justify-content: flex-start;
    position: relative;
}
.sidebar-heading-wrap li > a > i {
    position: absolute;
    top: 23px;
    right: -5px;
    font-size: 20px;
}
.sidebar-heading-wrap li a {
    height: 68px;
    display: block;
    padding: 0 1rem;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #737373;
    transition: all 0.3s ease;
}
.sidebar-heading-wrap li a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.sidebar li.has-dropdown a > .toggle-dropdown i {
    font-size: 20px;
}
.news-page-main {
    background-color: #fff;
    padding-top: 2.3rem;
}
.breadcrumb.news {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 15px 16px 0;
    border-bottom: 1px solid #e5e5e5;
}
.breadcrumb li {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}
.breadcrumb li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    color: #737373;
    text-decoration: underline;
}
.breadcrumb li a:hover {
    color: var(--color-primary);
}
.post__title {
    margin: 16px 0;
    font-size: 30px;
    line-height: 45px;
    color: #333333;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.widgets {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.4rem;
}
.date-comment span,
.date-comment span a {
    font-size: 14px;
    line-height: 21px;
    color: #737373;
    font-weight: 400;
}
.post-author {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.post-author li {
    margin-right: 15px;
    margin-bottom: 10px;
}
.post-author li a {
    text-decoration: none;
    font-size: 15px;
    color: #4f4f4f;
    position: relative;
    display: inline-block;
}
.post-author li a i {
    margin-right: 3px;
    color: #72afce;
    font-size: 25px;
    position: absolute;
    top: -2px;
    left: 0;
}
.post-author li a.none-icon span {
    margin-left: 10px;
}
.post-author li a span {
    margin-left: 32px;
}
.post-author li a span.dot {
    position: absolute;
    content: '';
    top: 8px;
    left: -15px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #4f4f4f;
}
.post-author li a.text-black {
    color: #454545;
}
.api-socials {
    display: flex;
    justify-content: flex-end;
    align-items: center; 
}
.api-socials div {
    margin-left: 3px;
}
.post-summary {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0 0 5px;
}
.post-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.post-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #1e4356;
    margin-top: 20px;
    margin-bottom: 20px;
}
.post-redirect {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.post-redirect a {
    display: inline-block;
    color: #4f4f4f;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    border-radius: 5px;
}
.post-redirect a:hover {
    background-color: #f7f7f7;
}
.post-redirect a {
    display: block;
}
.news-bottom-menu {
    margin: 15px 0;
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.tag-title {
    margin-bottom: 15px;
    font-size: 16px;
    color: #454545;
    text-transform: uppercase;
    display: inline-block;
}
.tag-title i {
    margin-right: 5px;
}
.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.tag-list li {
    margin-right: 5px;
    margin-bottom: 15px;
}
.tag-list li a {
    text-decoration: none;
    color: #4f4f4f;
    padding: 5px 8px;
    font-size: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    transition: all 0.25s ease-in;
}
.tag-list li a:hover {
    background-color: #f7f7f7;
}
.social2 {
    margin-left: 24px;
    display: flex;
    justify-content: flex-start;
}
.social2 div {
    margin-right: 3px;
}
.blog-other {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 15px;
    margin: 25px 0 12px 0;
}
.title-news {
    border-bottom: 1px solid #eaeaea;
    padding: 0;
    margin: 25px 0;
    padding-bottom: 1.6rem;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}
.th-news-item .images-form {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}
.th-news-item .images-form .img-content {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-height: 240px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;z
    justify-content: center;
    align-items: center;
    background-color: #f7fafa;
    background-size: cover;
    border: 1px solid #eee;
    border-radius: 5px;
}
.th-news-item.main .images-form .img-content {
    max-height: 420px; 
}
.th-news-item.main {
    margin-bottom: 52px;
}
.th-news-item .content-form .news-title {
    font-size: 18px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.th-news-item .content-form .news-title a {
    font-size: 18px;
    line-height: 27px;
    color: #0c0c0c;
    text-decoration: none;
    margin: 0 0 8px;
    display: block;
}
.th-news-item .content-form .news-title a:hover {
    text-decoration: underline;
    color: #333333;
}
.th-news-item .content-form .news-date {
    color: #939393;
    font-size: 14px;
    line-height: 21px;
    margin: 0 0 8px;
    padding: 0;
}
.fanpage-frame {
    margin-bottom: 25px;
}
.box-one {
    margin-bottom: 30px;
}
.title-news-sub {
    margin: 0 0 12px;
}
.title-news-sub i {
    font-size: 18px;
    color: #237fcd;
    margin-right: 5px;
}
.title-news-sub span {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 21px;
    color: #333333;
    font-weight: 600;
}
.blog-choose {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.blog-choose li {
    padding: 8px 0;
    border-bottom: 1px solid #eaeaea;
}
.blog-choose li:first-child {
    padding-top: 0;
}
.blog-choose li a {
    font-size: 15px;
    line-height: 24px;
    color: #154c7b;
    text-decoration: none;
}
.blog-choose.solid li a {
    font-size: 15px;
    color: #333333;
    font-weight: 600;
    text-decoration: none;
}
.blog-choose li a:hover {
    text-decoration: underline;
}
.category__title {
    padding-top: 5vh;
    padding-bottom: 3vh;
    text-align: center;
    font-size: 24px;
}
.post-wrap {
    display: flex;
    flex-wrap: wrap;
}
.post-wrap .post__item {
    width: 33.33%;
    padding: 0 7.5px;
    margin-bottom: 15px;
}
.product-heading .title {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #1F618D;
}
.product-heading .desc {
    font-size: 21px;
    color: #42464e;
    font-family: 'Roboto', sans-serif;
}
.product-heading .desc a {
    text-decoration: none;
    color: var(--color-primary);
}
.product-heading .desc a:hover {
    text-decoration: underline;
}
.product-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.productBox__image {
    max-height: 280px;
    overflow: hidden;
    position: relative;
}
.product-controls {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.4s ease;
}
.productBox__image:hover .product-controls {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.btn-product {
    border-radius: 5px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    margin-bottom: 12px;
    min-width: 150px;
    background-color: var(--color-primary);
    color: #fff;
    transition: all 0.3s ease-in;
}
.btn-product:hover {
    background-color: var(--color-primary-bold);
    color: #fff;
}
.btn-product.btn-white {
    background-color: #fff;
    color: #454545;
    transition: all 0.3s ease;
}
.btn-product.btn-white:hover {
    background-color: #F0F3F4;
}
.btn-product i {
    margin-right: 5px;
}
.productBox__content {
    padding: 25px;
    background-color: #fff;
}
.productBox__content-link {
    font-size: 17px;
    text-decoration: none;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: bold;
    line-height: 22px;
}
.productBox__content-link:hover {
    color: #454545;
    text-decoration: underline;
}
.productBox__content-price {
    color: #e61919;
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
}
.productBox__content-discount {
    color: #808B96;
    font-weight: normal;
    font-size: 14px;
    margin-left: 5px;
}
.customers {
    background-color: #fff;
}
.customer-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 15px;
}
.customer-item {
    width: 33.33%;
    margin-bottom: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.customer-item-img {
    border-radius: 10px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    border: 1px solid #e5e5e5;
}
.customer-item-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}
.customer-item-info {
    padding-left: 18px;
    width: calc(100% - 120px);
}
.customer-item-info h3 {
    padding: 0;
    margin-bottom: 10px;
    box-sizing: border-box;
    line-height: 27px;
}
.customer-item-info h3 a {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    text-decoration: none;
}
.customer-item-info h3 a:hover {
    color: #0a58ca;
}
.customer-item-info p {
    font-size: 15px;
    color: #737373;
    line-height: 23px;
}
.sidebar-left {
    background-color: #fff;
    padding: 20px 0;
}
.sidebar-heading {
    font-size: 18px;
    text-transform: uppercase;
    padding-left: 15px;
    margin-bottom: 5px;
}
.navigate-left {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.navigate-left li {
    position: relative;
}
.navigate-left li .dropdown {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: absolute;
    left: 230px;
    top: 0;
    background-color: #fff;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.3s ease-in-out;
}
.navigate-left li:hover .dropdown {
    left: 272px;
    opacity: 1;
    visibility: visible;
    z-index: 999;
    border: 1px solid #eee;
}
.navigate-left li a {
    padding: 10px 20px 10px 23px;
    font-size: 14px;
    color: #454545;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}
.navigate-left li a:hover {
    color: #fff;
    background-color: var(--color-primary);
}
.navigate-left li .dropdown li a:hover {
    background-color: #f1f1f1;
    color: #f06a6a;
}
.heading-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.category-name {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
}
.category-name span:first-child {
    color: #444444;
}
.category-name span:last-child {
    color: #999999;
}
.heading-category .dropdown .btn-sort {
    padding: 7px 7px 7px 15px;
    background-color: #fff;
    width: 160px;
    border: 1px solid #eee;
    border-radius: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    color: #454545;
}
.heading-category .dropdown .btn-sort i {
    margin-left: 3px;
}
.heading-category .dropdown .dropdown-menu li a {
    font-size: 14px;
}
.pagination {
    margin-bottom: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-item {
    font-size: 14px;
}
.paginate-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-item .page-link {
    background-color: transparent;
    border: none;
    color: #2E86C1;
    font-size: 15px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 3px;
    display: inline-block;
}
.pagination .page-item.disabled .page-link {
    color: #4f4f4f;
    background-color: #f9f9f9;
    border: 1px solid #eee;
}
.pagination .page-item .page-link:hover,
.pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    color: #fff;
    border-color: transparent;
}
.main-swiper {
    width: 100%;
}
.main-swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    cursor: pointer;
}
.main-swiper .swiper-wrapper .swiper-slide a img {
    width: 100%;
}
.sub-swiper {
    margin-top: 15px;
}
.sub-swiper .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sub-swiper .swiper-wrapper .swiper-slide {
    padding: 0 7.5px;
    cursor: pointer;
}
.sub-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
}
.cardProduct__head h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: normal;
}
.product-desc {
    font-size: 14px;
    color: #444444;
}
.product-detail-top {
    margin-bottom: 15px;
}
.product-detail-top span {
    font-size: 14px;
    color: var(--color-second);
    font-weight: bold;
}
.product-detail-top span strong {
    font-weight: normal;
    color: #444444;
}
.product-detail-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.add-to-cart {
    padding: 15.5px 10px;
    background-color: rgba(20, 79, 173, 0.8);
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    color: #fff;
    min-width: 300px;
}
.add-to-cart:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.add-to-cart i {
    margin-right: 5px;
}
.btn-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    height: 60px;
    background-color: #fff;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ccc;
}
.btn-quantity input {
    width: 50px;
    border-right: 1px solid #ccc;
    border-top: none;
    border-left: none;
    border-bottom: none;
    height: 100%;
    text-align: center;
    border-radius: none;
}
.btn-quantity input:focus {
    outline: none;
}
.qty-control {
    display: flex;
    flex-direction: column;
}
.qty-control span {
    cursor: pointer;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(80px - 50px);
    height: 30px;
    color: #444444;
}
.product-detail-center {
    display: flex;
    justify-content: flex-start;
    justify-items: flex-end;
    font-family: 'Open Sans', sans-serif;
    padding: 15px 0;
}
.price-discount {
    color: #999999;
    font-size: 16px;
    margin-right: 1rem;
    text-decoration: line-through;
}
.price-larg {
    font-size: 25px;
    color: #0A0A0A;
    margin-right: 1rem;
    font-weight: bold;
}
.discount-percent {
    color: #E74C3C;
    font-size: 14px;
}
.product.nav-tabs {
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dfdfdf;
}
.product.tab-content {
    padding: 30px;
    background-color: #fff;
}
.transpot-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.product.nav-tabs .nav-item.show .nav-link, 
.product.nav-tabs .nav-link {
    font-size: 16px;
    color: #444444;
}
.product.nav-tabs .nav-link:hover {
    border-color: transparent;
}
.product.nav-tabs .nav-item.show .nav-link, 
.product.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--color-primary);
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    font-weight: bold;
    color: #444444;
}
.relatedProduct {
    margin-top: 30px;
}
.product-detail-title {
    font-size: 20px;
    margin-bottom: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.empty-cart {
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 6vh;
    border-bottom: 1px solid #eee;
}
.empty-cart img {
    max-width: 350px;
    margin-bottom: 15px;
}
.empty-cart span {
    color: #CB4335;
    padding: 0 15px;
    text-align: center;
}
.btn-buy {
    width: 280px;
    background: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    margin-top: 25px;
    padding: 8px 0;
    border-radius: 30px;
    margin-bottom: 6vh;
}
.btn-buy:hover {
    color: #fff;
    background-color: var(--color-primary);
}
.cart__title {
    font-size: 20px;
    margin-bottom: 15px;
}
.cart-box {
    background-color: #fff;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 10px;
}
.cart-box .cart-item {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
}
.cart-box .cart-item .cart-item-image {
    min-width: 100px;
    position: relative;
}
.cart-box .cart-item .cart-item-image .qty {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #fff;
}
.cart-item .cart-item-detail {
    padding-right: 15px;
    position: relative;
}
.cart-item .cart-item-detail .remove {
    position: absolute;
    top: -5px;
    right: 3px;
    font-size: 13px;
    font-weight: lighter;
    color: #808B96;
    cursor: pointer;
}
.cart-item .cart-item-detail .product-name {
    font-size: 14px;
    font-weight: normal;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.cart-total span:last-child {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
}
.form-input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 15px;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    font-size: 14px;
}
.form-input:focus {
    outline: none;
    border: 1px solid var(--color-primary);
}
.btn-order {
    border-radius: 5px;
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    margin-top: 10px;
}
.alert-bank {
    margin: 5px 0;
}
.btn-order:hover {
    opacity: 1;
}
.alert-bank {
    display: none;
}
.form-check-label {
    font-size: 15px;
}
.error {
    color: red;
    font-size: 14px;
}
.notificate {
    position: fixed;
    top: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    width: 390px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.6s ease;
}
.notificate .notificate-img {
    max-width: 100px;
    background-color: #fff;
}
.notificate .notificate-img img {
    width: 100%;
}
.notificate-content {
    padding: 15px;
    position: relative;
}
.close-noti {
    position: absolute;
    right: 5px;
    top: 10px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}
.notificate-content h4 {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 15px;
}
.notificate-content p {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}
.notificate.show {
    top: 60px;
    opacity: 1;
    visibility: visible;
    z-index: 999;
}
.product-status {
    font-size: 15px;
    margin-top: 20px;
    color: #454545;
}
.postBox__image {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.label-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 15px;
    background-color: rgb(16, 76, 179, 0.85);
    color: #fff;
}
.interactive {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 14px;
    background-color: rgb(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
}
.interactive .view,
.interactive .comment {
    margin-right: 10px;
}
.interactive .view i,
.interactive .comment i,
.interactive .author i {
    margin-right: 3px;
}
.date-author {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    color: #6b7385;
}
.date-author .date {
    margin-right: 10px;
}
.date-author .date span,
.date-author .author span {
    font-size: 15px;
}
.date-author .date i,
.date-author .author i {
    font-size: 15px;
}
.policy-box {
    padding: 20px 15px;
    border: 3px solid var(--color-primary);
    border-radius: 5px;
}
.policy-box-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10PX;
}
.policy-box-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.policy-box-item-icon img {
    width: 20px;
    height: 20px;
}
.policy-box-item-text {
    width: calc(100% - 50px);
    padding-left: 10px;
}
.policy-box-item-text h3 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.policy-box-item-text p {
    font-size: 13px;
}
.btn-group-chat {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}
.btn-group-chat .btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}
.btn-group-chat .btn img {
    max-width: 20px;
    margin-right: 5px;
}
.btn-group-chat .btn.btn-phone {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-group-chat .btn.btn-phone:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.btn-group-chat .btn.btn-chat-zalo {
    background-color: #017CC1;
    border: 2px solid #017CC1;
    color: #fff;
}
.btn-group-chat .btn.btn-chat-zalo:hover {
    background-color: #04659c;
}
.btn-group-chat .btn.btn-chat-facebook {
    background-color: #4365A2;
    border: 2px solid #4365A2;
    color: #fff;
}
.btn-group-chat .btn.btn-chat-facebook:hover {
    background-color: #2a4983;
}
.review-text {
    font-size: 15px;
    font-weight: bold;
    color: #454545;
}
.review-panel {
    border: 1px solid #eee;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    padding: 10px;
}
.review-total {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.review-total .total-number {
    font-size: 35px;
    font-weight: bold;
    color: var(--color-primary);
    font-family: 'Montserrat', sans-serif; 
}
.sm-star-box {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    margin-right: 10px;
    margin-left: 10px;
}
.sm-star-box li i {
    font-size: 12px;
    color: #fe9727;
}
.total-review-text {
    font-size: 13px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}
.analytics-chart-item {
    display: flex;
    margin-bottom: 5px;
}
.analytics-chart-item span.number-star {
    font-size: 14px;
    font-weight: bold;
    padding-right: 10px;
}
.analytics-chart-item span.number-star i {
    font-size: 11px;
    color: #fe9727;
}
.progress {
   width: calc(100% - 200px);
}
.count-review-number {
    font-size: 13px;
    padding-left: 10px;
    color: var(--color-primary);
    font-family: 'Open Sans', sans-serif;
}
.review-form .form-group .form-control {
    border-radius:0;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    background-color: #FDFEFE;
}
.review-form .form-group label {
    font-size: 15px;
    color: #454545;
}
.btn-review {
    padding: 8px 0;
    margin: 0 auto;
    width: 300px;
    color: #FFF;
    margin-top: 15px;
    background-color: var(--color-primary);
}
.btn-review:hover {
    color: #fff;
    background-color: #093b8a;
}
.comment-review {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.comment-review li {
    margin-bottom: 20px;
}
.xs-star {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.xs-star li {
    margin-bottom: 5px;
}
.xs-star li i {
    font-size: 10px;
}
.xs-star li.grey-star i {
    color: #808B96;
}
.xs-star li.yellow-star i {
    color: #fe9727;
}
.reviewer {
    font-size: 15px;
    color: #454545;
    font-weight: 500;
}
.reviewer .created-at {
    color: #808B96;
    font-size: 12px;
    font-weight: normal;
}
.review-text {
    font-weight: normal;
    color: #2E4053;
    padding: 0;
    margin: 0;
}
.form-heading {
    font-size: 25px;
    margin: 15px 0 25px 0;
}
.select-star {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin: 10px 0;
}
.select-star-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-right: 15px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}
.select-star-item i {
    margin-bottom: 5px;
    color: #808B96;
}
.select-star-item:hover,
.select-star-item.active {
    border-color: var(--color-primary);
}
.select-star-item:hover i,
.select-star-item.active i {
    color: #fe9727;
}
.review-text-heading {
    font-weight: bold;
    font-size: 15px;
}
.branch {
    background-image: url('../img/bg_showroom.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    border: 1px solid #eee;
    padding: 25px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin-bottom: 12px;
}
.branch__title {
    font-size: 20px;
    text-transform: uppercase;
    color: #ee2109;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}
.branch__info {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.branch__info li {
    font-size: 14px;
}
.branch__info li i {
    margin-right: 5px;
    color: #454545;
}
.branch__info li a {
    text-decoration: none;
    color: #9c9c9c;
}
.branch__info li a:hover {
    color: #ee2109;
}
.sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    margin-bottom: 40px;
}
.sidebar-heading-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.sidebar-heading-list li {
    margin-right: 37px;
}
.sidebar-heading-list li.with-border {
    padding-right: 17px;
    margin-right: 18px;
    border-right: 1px solid #b7c1c8;
}
.sidebar-heading-list li a {
    font-family: 'Roboto', sans-serif;
    color: #42464E;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.25s ease-in;
}
.sidebar-heading-list li a:hover,
.sidebar-heading-list li a.active {
    color: var(--color-primary);
}
.btn-contact {
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    height: 40px;
    color: var(--color-primary);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
}
.btn-contact:hover {
    color: #fff;
    background-color: var(--color-primary);
}
.sidebar-heading-text {
    text-align: center;
    margin-bottom: 35px;
}
.sidebar-heading-text h1 {
    font-size: 36px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    line-height: 47px;
    color: #1669a0;
}
.sidebar-heading-text p {
    font-size: 21px;
    line-height: 31px;
    font-family: 'Roboto', sans-serif;
    color: #212529;
    font-weight: lighter;
}
.owl-template .item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.owl-template .item .template-img {
    width: 60%;
}
.owl-template .item .template-info {
    width: 40%;
    margin-left: 30px;
    padding-top: 55px;
}
.template-detail {
    display: flex;
}
.template-detail .template-img {
    width: 65%;
}
.template-detail .template-info {
    width: 35%;
}
.template-info.left {
    margin-left: 0;
    margin-right: 50px;
}
.template-info-head {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: lighter;
    line-height: 30px;
    padding-bottom: 13px;
    color: #42464e;
}
.template-info-name {
    font-size: 30px;
    color: #42464e;
    font-weight: bold;
}
.template-info-desc {
    font-size: 16px;
    color: #42464e;
    line-height: 24px;
    margin-bottom: 25px;
}
.template-pricing { 
    border-top: 1px solid #a8d0ed;
    padding: 13px 0 30px;
}
.template-pricing .price {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    line-height: 42px;
    font-weight: bold;    
}
.template-pricing .price.text-red {
    color: #e72b2c;
}
.template-pricing .price.text-black {
    color: #42464e;
}
.template-pricing .discount {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #42464e;
    margin-left: 5px;
}
.btn-action {
    display: flex;
    justify-content: flex-start;
}
.btn-action.column {
    flex-direction: column;
}
.btn-action.column .btn.btn-order,
.btn-action.column .btn.btn-detail {
    height: 52px;
    max-width: 280px;
    margin-bottom: 15px;
    border-radius: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}
.btn-action .btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.btn-action .btn-order {
    height: 45px;
    max-width: 220px;
    border-radius: 22px;
    padding: 0 50px;
    margin-right: 15px;
    margin-top: 0;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    font-weight: 400;
    background: rgb(46,49,146);
    background: linear-gradient(50deg, rgba(46,49,146,1) 0%, rgba(27,255,255,1) 100%);
}
.btn-action .btn-detail {
    border: 1px solid var(--color-primary);
    height: 45px;
    max-width: 220px;
    border-radius: 22px;
    padding: 0 50px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    background: #fff;
}
.owl-template .owl-nav {
    position: absolute;
    right: 355px;
    bottom: 112px;
}
.owl-template .owl-nav button img {
    max-width: 32px;
}
.owl-template .owl-nav button {
    margin-right: 10px;
}
.menu-toolbar {
    height: 75px;
    background-color: #fff;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 -22px 21px 0 rgb(10 166 105 / 6%);
    position: relative;
    z-index: 1;
    border-bottom: solid 1px #ebebeb;
}
.filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
}
.filter-toolbar h4 {
    font-size: 20px;
    line-height: 70px;
    color: #42464e;
    font-weight: 300;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.filter-toolbar h4 span {
    font-weight: bold;
}
.filter-menu.mg-left li {
    margin-left: 25px;
    margin-right: 0;
}
.filter-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.filter-menu li {
    margin-right: 50px;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.filter-dropdown {
    position: absolute;
    top: 85px;
    left: 0;
    min-width: 260px;
    border: 1px solid #ebebeb;
    background-color: #fff;
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease-in;
}
.filter-menu li:hover .filter-dropdown,
.filter-search .sort-by:hover .filter-dropdown {
    top: 74px;
    z-index: 9999999999;
    opacity: 1;
    visibility: visible;
}
.filter-dropdown li {
    margin: 0 15px;
    border-bottom: 1px solid #ebebeb;
}
.filter-menu li .filter-dropdown li a {
    padding: 10px 0;
    color: #363636;
    width: 100%;
    font-size: 14px;
}
.filter-menu li .filter-dropdown li a:hover {
    font-weight: bold;
    color: #363636;
    border: 1px;
    border-color: #ebebeb;
}
.filter-menu li a {
    font-size: 15px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    border-bottom: 2px solid transparent;
    height: 100%;
}
.filter-menu li a:hover {
    border-bottom: 1px solid var(--color-primary);
    font-weight: bold;
    color: var(--color-primary);
}
.filter-menu li a span {
    font-size: 16px;
    color: #42464e;
}
.filter-menu li a img {
    max-width: 25px;
    margin-right: 8px;
}
.filter-search {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter-search .sort-by {
    margin-right: 10px;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter-search .sort-by .sort-icon {
    max-width: 30px;
    cursor: pointer; 
}
.search-form {
    background-color: var(--color-primary-light);
    display: flex;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 40px;
}
.search-form input {
    border-radius: 5px;
    background-color: transparent;
    border: none;
    padding: 5px;
    font-size: 13px;
    min-width: 200px;
    color: #2980B9;
}
.search-form input:focus {
    outline: none;
    border: none;
}
.search-form i {
    color: #2980B9;
}
.filter-search .sort-by .filter-dropdown {
    top: 85px;
    left: -10px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.filter-search .sort-by .filter-dropdown li a {
    text-decoration: none;
    color: #333333;
    padding: 10px 0;
    display: inline-block;
    font-size: 14px;
}
.filter-search .sort-by .filter-dropdown li a:hover {
    font-weight: bold;
}
.template-content {
    background-image: url('../img/bg_template2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.category-link {
    text-decoration: none;
    text-align: center;
    display: block;
    margin-bottom: 80px;
    transition: all 0.15s ease-in;
}
.category-link .icon {
    display: inline-block;
    width: 204px;
    height: 204px;
    border-radius: 40px;
    margin-bottom: 10px;
    border: 1px solid #f1f1f1;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.25s ease-in;
}
.category-link .icon:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.category-link .icon.icon-fashion {
    background-image: url('https://cf.shopee.vn/file/ee7b6aa6811bf76a6d12596f6ec2996d');
}
.category-link span {
    font-weight: bold;
    font-size: 16px;
    display: block;
    color: #42464e;
}
.category-link:hover span {
    color: var(--color-primary);
}
.sidebar-extend-mobile {
    height: 50px;
    background-color: #eee;
}
.sidebar-extend-mobile {
    position: relative;
}
.sidebar-extend-mobile-toggle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}
.sidebar-extend-mobile-toggle span {
    margin-right: 10px;
    color: #454545;
}
.sidebar-extend-mobile-toggle img {
    max-width: 35px;
}
.sidebar-extend-mobile-nav {
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    list-style: none;
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
    display: none;
    padding: 12px 20px;
    z-index: 9999;
}
.sidebar-extend-mobile-nav li a {
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #42464e;
    padding: 8px 0;
    text-align: center;
    width: 100%;
}
.sidebar-extend-mobile-nav li a.active {
    color: var(--color-primary);
}
.theme-detail-content .theme-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    line-height: 43px;
    color: #093b8a;
    font-weight: bold;
    margin-bottom: 30px;
}
.theme-detail {
    background-color: #fff;
    padding: 72px 0;
}
.industry-interested {
    margin-top: 20px;
}
.industry-interested h3 {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ebebeb;
}
.industry-interested h3 span {
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    font-size: 20px;
    font-weight: bold;
    color: #093b8a;
    border-bottom: 1px solid #093b8a;
    display: inline-block;
    padding-bottom: 25px;
}
.industry-interested-bar {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.industry-interested-bar li {
    color: #42464e;
    font-size: 16px;
    margin-bottom: 20px;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 20px;
    list-style: none;
    padding-left: 20px;
    margin-top: 20px;
    position: relative;
    font-weight: 400;
}
.industry-interested-bar li:before {
    content: "";
    width: 7px;
    height: 7px;
    background: #093b8a;
    border-radius: 7px;
    position: absolute;
    left: 0;
    top: 9px;
}
.industry-interested-bar li a {
    color: #7c7c7c;
    display: block;
    text-decoration: none;
    font-size: 15px;
}
.industry-interested-bar li a:hover {
    color: #0068ff;
}
/* Pricing */
.section.pricing {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.card.pricing {
    margin-top: 50px;
    padding: 50px 30px 70px;
    position: relative;
    border-radius: var(--radius-10);
    background-color: rgba(249,249,249,0.9);
    border: 1px solid #eee;
    box-shadow: var(--shadow-4);
    transition: all 0.3s ease-out;
}
.card.pricing:hover {
    box-shadow: var(--shadow-2);
}
.card.highlight {
    margin-top: 0;
    border-color: var(--color-primary)!important;
}
.card.pricing .card-body {
    padding: 0;
}
.card.pricing .card-body .card__icon {
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    position: absolute;
    top: 20px;
    left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}
.card.highlight .card-body .card__icon {
    background-color: var(--color-primary-bold)!important;
}
.card.highlight .card-body .card__icon i {
    color: var(--color-extra)!important;
}
.card.pricing .card-body .card__icon i {
    font-size: 22px;
    color: #fff;
}
.card.pricing .card__package {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.card.pricing .card__package .package__name,
.card.pricing .card__package .package__discount,
.card.pricing .card__package .package__amount,
.card.pricing .card__package .package__desc {
    text-align: center;
    width: 100%;
}
.card.pricing .card__package .package__name {
    font-size: 23px;
    line-height: 32px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font-second);
    margin: 0;
}
.card.highlight .card__package .package__name {
    color: var(--color-extra)!important;
}
.card.pricing .card__package .package__discount {
    font-size: 23px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 23px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
}
.card.highlight .card__package .package__discount {
    color: #ffffffa1;
}
.card.pricing .card__package .package__amount {
    color: #333;
    font-size: 28px;
    line-height: 39px;
    font-weight: 600;
    margin: 0;
}
.card.highlight .card__package .package__amount,
.card.highlight .card__package .package__desc,
.card.highlight .condition li {
    color: #fff!important;
}
.card.pricing .card__package .separate {
    width: 70px;
    min-height: 3px;
    max-height: 3px;
    background-color: var(--color-primary);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.card.highlight .card__package .separate {
    background-color: var(--color-extra)!important;
}
.card.pricing .card__package .package__desc {
    font-size: 17px;
    margin-bottom: 0;
    font-family: var(--font-second);
    font-style: italic;
    font-weight: 300;
}
.card.pricing .condition {
    margin-top: 20px;
    margin-bottom: 1rem;
    list-style: none;
    padding: 0;
}
.card.pricing .condition li {
    margin: 0 0 15px;
    position: relative;
    display: flex;
    align-items: flex-start;
    color: #333;
    font-family: var(--font-third);
}
.card.pricing .condition li img {
    margin-right: 10px;
    width: 16px;
    margin-top: 3px;
}
.card.highlight {
    background-color: var(--color-primary);
}
.button.button-pricing {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    width: max-content;
    margin: 0 auto;
    border-radius: 10px;
    padding: 13px 30px 15px 37px;
    margin-top: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}
.button.button-pricing i {
    margin-left: 10px;
    font-size: 20px;
}
.button.button-pricing:hover {
    background-color: #ffc107;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}
.button.button-pricing.highlight {
    background-color: var(--color-extra);
    color: var(--color-primary);
}
.button.button-pricing.highlight:hover {
    background-color: #fff;
}
/*============================= ./end CONTENT =============================*/

/*============================= Footer =============================*/
.footer {
    position: relative;
    background-color: rgba(14,50,82,0.88);
    background-image: url('../img/bg-footer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 50vh;
}
.footer-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 1, 28, 0.91);
    padding-top: 52px;
    padding-bottom: 52px;
}
.footer__logo img {
    max-width: 220px;
}
.footer-copyright-text {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: #9f9f9f;
    margin-top: 28px;
    display: block;
}
.footer-social {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
}
.footer-social li a {
    width: 40px;
    background-color: #f6f6f6;
    height: 40px;
    line-height: 45px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 100%;
    transition: 0.3s;
    color: #6b7385;
    z-index: 2;
    position: relative;
    margin: 5px;
}
.footer-social li a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color-primary);
    transform: scale(0.5);
    opacity: 0;
    transition: 0.3s;
    border-radius: 100%;
}
.footer-social li a:hover {
   color: #fff;
}
.footer-social li a:hover::after {
    transform: scale(1);
    opacity: 1;
}
.footer-social li a i {
    font-size: 22px;
}
.footer-devices {
    margin-top: 28px;
}
.footer-devices h4 {
    font-size: 19px;
    color: #fff;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}
.footer-devices p {
    color: #9f9f9f;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}
.logo-app {
    display: flex;
}
.logo-app-item {
    margin-right: 3px;
}
.footer__contact-companyName {
    margin-top: 12px;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    font-family: var(--font-second);
}
.footer-address {
    border-top: 1px solid rgba(187, 187, 187, .1);
    border-bottom: 1px solid rgba(187, 187, 187, .1);
    background-color: rgba(14,50,82,0.88);
    padding: 44px 0;
}
.footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.footer__contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}
.footer__contact-list li i {
    font-size: 20px;
    margin-right: 10px;
}
.footer__contact-list li a {
    color: #eee;
    text-decoration: none;
}
.footer__contact-list li a:hover {
    color: #fff;
}
.copyright {
    background-color: #1e73be;
    text-align: center;
    font-size: 15px;
    padding: 8px 0;
    color: #eee;
}
.footer-navigate {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.footer-navigate li a {
    display: inline-block;
    font-size: 16px;
    color: #eee;
    margin-bottom: 12px;
    text-decoration: none;
    font-family: var(--font-third);
}
.footer-navigate li a:hover {
    color: #fff;
}
.google-maps {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
/*============================= ./end Footer =============================*/
.overlay-fuild {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.overlay-fuild.active {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
.sidebar-panel {
    width: 90%;
    height: 100%;
    position: fixed;
    right: -90%;
    top: 0;
    background-color: #fff;
    border-right: 1px solid #eee;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.sidebar-panel.open {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 999999;
}
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #e3e3e3;
    height: 70px;
}
.sidebar-logo {
    max-width: 180px;
}
.button-close {
    max-width: 30px;
}
.panel-body {
    max-height: 85vh;
    overflow-y: scroll;
}
.sidebar {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin-top: 10px;
}
.sidebar li {
    width: 100%;
}
.sidebar li a {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 15px 0 15px;
    font-size: 18px;
    position: relative;
}
.sidebar li.has-dropdown a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.toggle-dropdown {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sidebar li a .label-item {
    position: absolute;
    right: -15px;
    top: -5px;
    width: 40px;
    height: 20px;
    background-color: rgb(255, 0, 0);
    color: #fff;
    display: flex;
    font-size: 11px;
    border-radius: 20px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}
.panel-dropdown {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
}
.catalog-item-img {
    max-width: 35px;
}
.catalog-item {
    padding: 10px;
}
.catalog-item-text {
    padding-left: 12px;
    width: calc(100% - 35px);
}
.catalog-item-text h4 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.catalog-item-text p {
    font-size: 14px;
    font-weight: normal;
    color: #808B96;
}
.sidebar-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 0 15px;
    display: none;
}
.dropdown-lite {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-left: 1px solid #c3c3c3;
    padding: 0 15px;
}
.dropdown-lite li a {
    font-size: 16px;
    font-weight: normal;
}
.dropdown-lite li .dropdown-lite2 {
    list-style-type: none;
    padding: 0;
    list-style: none;
    border-left: 1px solid #c3c3c3;
    margin: 0 15px;
}
.sidebar-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 12px;
    margin-bottom: 35px;
}
.btn.btn-block {
    display: block;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-block.btn-primary {
    background-color: #3498DB;
    border: #3498DB;
}
.form-search {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
}
.form-search input {
    padding: 10px 12px;
    border: 1px solid #eee;
    font-size: 14px;
    border-radius: 0;
}
.form-search button {
    padding: 10px 12px;
    color: #fff;
    background-color: var(--color-primary);
    margin-top: 10px;
    font-size: 14px;
    border: none;
}
.scroll-top {
    padding: 7px;
    background-color: var(--color-primary);
    border: 1px solid #CCC;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 100px;
    opacity: 1;
    right: 10px;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 5px;
    z-index: -1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease-in;
}
.scroll-top:hover {
    background-color: var(--color-primary-bold);
}
.scroll-top.active {
    opacity: 1;
    visibility: visible;
    z-index: var(--index-important);
}
.phone-class {
    background-color: #2fd8b2;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 200px;
    height: 200px;
    position: relative;
    margin: 0 auto;
    border-radius: 150px;
    animation: play 1.5s ease infinite;
}
.phone-class:after {
    background: #2fd8b2 no-repeat url('../img/icons/chevron-right.png');
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    content: '';
    width: 100px;
    height: 100px;
    margin: 47px 49px;
    position: absolute;
    z-index: 999 !important;
}
.phone-class:hover {
    animation: none;
    transform: scale(1.2);
    transition: .5s;
}

/* Zalo Button */
@keyframes zoom{
    0%{
        transform:scale(.5);
        opacity:0
    }
    50%{
        opacity:1
    }
    to{
        opacity:0;
        transform:scale(1)
    }
}
@keyframes lucidgenzalo{
    0% {
        transform:rotate(-25deg)
    }
    50%{
        transform:rotate(25deg)
    }
}
.jscroll-to-top{
    bottom:100px;
}
.fcta-zalo-ben-trong-nut svg path{
    fill:#fff
}
.fcta-zalo-vi-tri-nut{
    position:fixed;
    bottom:24px;
    left:20px;
    z-index:99999
}
.fcta-zalo-nen-nut, div.fcta-zalo-mess {
    box-shadow:0 1px 6px rgba(0,0,0,.06),0 2px 32px rgba(0,0,0,.16)
}
.fcta-zalo-nen-nut{
    width:50px;
    height:50px;
    text-align:center;
    color:#fff;
    background:#0068ff;
    border-radius:50%;
    position:relative
}
.fcta-zalo-nen-nut::after,
.fcta-zalo-nen-nut::before{
    content:"";
    position:absolute;
    border:1px solid #0068ff;
    background:#0068ff80;
    z-index:-1;
    left:-20px;
    right:-20px;
    top:-20px;
    bottom:-20px;
    border-radius:50%;
    animation:zoom 1.9s linear infinite
}
.fcta-zalo-nen-nut::after{
    animation-delay:.4s
}
.fcta-zalo-ben-trong-nut,.fcta-zalo-ben-trong-nut i{
    transition:all 1s
}
.fcta-zalo-ben-trong-nut{
    position:absolute;
    text-align:center;
    width:60%;
    height:60%;
    left:10px;
    bottom:32px;
    line-height:70px;
    font-size:25px;
    opacity:1
}
.fcta-zalo-ben-trong-nut i{
    animation:lucidgenzalo 1s linear infinite
}
.fcta-zalo-nen-nut:hover .fcta-zalo-ben-trong-nut,.fcta-zalo-text{
    opacity:0
}.fcta-zalo-nen-nut:hover i{
    transform:scale(.5);
    transition:all .5s ease-in
}
.fcta-zalo-text a{
    text-decoration:none;
    color:#fff
}
.fcta-zalo-text{
    position:absolute;
    top:6px;
    text-transform:uppercase;
    font-size:12px;
    font-weight:700;
    transform:scaleX(-1);
    transition:all .5s;
    line-height:1.5
}
.fcta-zalo-nen-nut:hover .fcta-zalo-text{
    transform:scaleX(1);
    opacity:1
}
div.fcta-zalo-mess{
    position:fixed;
    bottom:29px;
    left:58px;
    z-index:9999;
    background:#fff;
    padding:7px 25px 7px 15px;
    color:#0068ff;
    border-radius:0 50px 50px 0;
    font-weight:700;
    font-size:15px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fcta-zalo-mess span{
    color:#0068ff!important
}
span#fcta-zalo-tracking{
    font-family:Roboto;
    line-height:1.5
}
.fcta-zalo-text{
    font-family:Roboto
}
/* .end Zalo Button */

/* Call Button */
.phone-call {
    width: 50px;
    height: 50px;
    left: 20px;
    bottom: 110px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.phone-call:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.phone-call img {
    margin-bottom: 20px;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: .6;
    }
    75% {
        transform: scale(0.9);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* .end Call Button */