html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-y: hidden;
}

iframe {
    max-width: 100%;
}

/*Topbar*/
.topbar-header {
	border-bottom: 1px solid var(--color-hightlight);
	background: #5273ff;
	color: var(--white);
}

.entry-topbar__item {
    font-size: 13px;
    color: #ffffff;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.entry-topbar__item > i {
    font-size: 20px;
    margin-right: 4px;
}

.entry-topbar__item > strong {
    margin-left: 4px;
}

.right-topbar {
    display: flex;
}

.entry-topbar__link {
    color: #ffffff;
    font-size: 15px;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.entry-topbar__link:hover {
    color: var(--white);
}

.entry-topbar__link > i {
    font-size: 20px;
    margin-right: 4px;
}


.topbar-section {
    margin-left: 30px;
}
.topbar-section {
    position: relative;
}

.topbar-section ul.topbar-dropdown {
    position: absolute;
    background: #fff;
    min-width: 10rem;
    top: 100%;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 2000;
    border-top: 1px solid #e3e3e3;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.15);
    font-size: 12px;
}

.topbar-section ul.topbar-dropdown a {
    padding: 0 1rem;
    line-height: 3rem;
    height: 3rem;
    display: block;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.topbar-section:hover ul.topbar-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

.topbar-section .language-switch a {
    color: #000;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.topbar-section .language-switch img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.topbar-section .language-switch a {
    color: #000;
    font-size: 16px;
    display: flex;
    align-items: center;
}

/*End Topbar*/

/*Header*/
.header-main {
    background: var(--color-main);
    padding: 10px 0;
}

.logo-section img {
    max-height: 65px;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

header.fixed .header-main {
    padding: 5px 0;
}

header.fixed .menu-section > ul > li > a {
    line-height: 40px;
    height: 40px;
}

.fixed {
    -webkit-animation-name: fadeInDown;
    -webkit-animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: anim_titles;
    -moz-animation-duration: 5s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: normal;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-duration: .7s;
    -moz-animation-duration: .7s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
}

.menu-section > ul > li.menu-section__home > a {
    font-size: 22px;
}
/*End Header*/

/*Slide*/
.search-section {
    position: absolute;
    width: 100%;
    z-index: 1;
    margin-top: 30px;
}

.search-dropdown {
    position: relative;
    width: 160px;
    height: 60px;
    background: var(--white);
}

.search-dropdown__toggle {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.search-dropdown__toggle img {
    width: 100%;
    height: 100%;
    padding: 6px 20px 6px 6px;
    object-fit: contain;
    border: 1px solid #dee2e6;
    border-right: 0;
}

.search-dropdown__toggle:after {
    content: "\f107";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    right: 4px;
    top: 16px;
    font-size: 12px;
}

.search-dropdown__menu {
    background: var(--white);
    position: absolute;
    left: 0;
    top: 100%;
    width: 160px;
    border: 1px solid #dee2e6;
    display: none;
    cursor: pointer;
}

.search-dropdown__menu-item {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #dee2e6;
}

.search-dropdown__menu-item img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.search-dropdown__menu.show {
    display: block;
}

.search-section input {
    height: 60px;
}

.search-section .btn-submit {
    padding: 0 10px!important;
    height: 60px;
    font-size: 38px;
}

.is-mobile .search-section {
    position: relative;
    margin: 0;
}
/*End Slide*/

/*Highlight*/
.highlight-item {
    display: flex!important;
    align-items: center;
    border: 1px solid #d5d5d5;
    background: var(--white);
    border-radius: 3px;
    padding: 5px 10px;
    position: relative;
}

.highlight-item img {
    height: 40px;
    width: auto;
}

.highlight-title {
    flex: 1;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.highlight-item > i {
    font-size: 20px;
    position: absolute;
        right: -10px;
    background: var(--white);
    border-radius: 50%;
}
/*End Highlight*/

/*App Install*/
.app-install__title {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
    font-family: 'Nunito', sans-serif;
}

.app-install__desc {
    margin-bottom: 15px;
    line-height: 1.3;
    font-style: italic;
}

.app-install__item {
    margin-bottom: 40px;
    text-align: center;
}

.app-install__item:last-child {
    margin-bottom: 0;
}

.app-install__button {
    display: inline-flex;
    align-items: center;
    max-width: 207px;
    margin: 10px;
    background: #333333;
    border-radius: 39px;
    padding: 5px;
}

.app-install__button > span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--white);
}

.app-install__link {
    display: inline-block;
    padding: 5px;
}
/*End App Install*/

/*Box Head*/
.box-head {
    margin-bottom: 30px;
}

.box-head__title {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.3;
    font-family: 'Nunito', sans-serif;
}

.box-head__icon {
    height: 38px;
    width: auto;
    margin-top: 10px;
}

.box-head__desc {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.3;
    font-style: italic;
}
/*End Box Head*/

/*Box Service*/
.box-service__wrap {
    position: relative;
}

.box-service__wrap:before {
    content: "";
    position: absolute;
    right: -85px;
    top: -132px;
    width: 332px;
    height: 327px;
}

.box-service__item {
    box-shadow: #f1f4f2 0px 3px 16px 4px;
    background: var(--white);
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
}

.box-service__item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 10px;
}

.box-service__item-title {
    font-size: 16px;
    color: var(--color-main);
    margin-bottom: 6px;
}

.box-service__item-desc {
    font-size: 13px;
    line-height: 1.4;
}
/*End Box Service*/

/*Price Import*/
.price-import {
    background-size: cover;
    background-color: #f0f1f4;
    background-position: center;
}

.price-import__wrap {
    display: flex;
}

.price-import__image {
    max-width: 26%;
    margin-right: 30px;
}

.price-import__content {
    flex: 1;
}

.price-import__content .box-head__title {
    text-transform: uppercase;
    color: var(--color-main);
    font-size: 23px;
}

.price-import__item {
    display: flex;
    margin-bottom: 20px;
}

.price-import__item-number {
    background: #36613633;
    width: 20px;
    height: 20px;
    float: left;
    text-align: center;
    margin-right: 10px;
    position: relative;
    font-size: 14px;
}

.price-import__item-number > i {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-main);
    top: 4px;
    left: 4px;
    font-style: inherit;
    color: var(--white);
}

.price-import__button {
    display: inline-block;
    background: var(--color-main);
    color: var(--white);
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 5px;
    float: right;
}
/*End Price Import*/

/*Box Commit*/
.box-commit {
    background-color: var(--color-main);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.box-commit__image {
    background-repeat: no-repeat;
    background-position: left bottom;
    min-height: 490px;
}

.box-commit__content {
    float: right;
    width: 60%;
}

.box-commit__ck-top {
    width: 100%;
    float: left;
    color: var(--white);
    margin-top: 40px;
}

.box-commit__title {
    text-transform: uppercase;
    text-align: right;
    float: left;
    margin-right: 20px;
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
}

.box-commit__title small {
    color: #f4c533;
    font-size: 18px;
    display: block;
}

.box-commit__desc {
    font-size: 13px;
}

.box-commit__list {
    float: right;
    width: 80%;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.box-commit__list:before {
    content: "";
    background: #233e23;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    position: absolute;
    z-index: 1;
}

.box-commit__list ul {
    position: relative;
    z-index: 2;
    padding: 15px;
    display: block;
    overflow: hidden;
    margin-bottom: 0;
}

.box-commit__list ul li {
    float: left;
    width: 48%;
    list-style: none;
    margin-bottom: 10px;
}

.box-commit__list h4 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0px;
    color: #f4c533;
}

.box-commit__list p {
    font-size: 13px;
    margin-bottom: 0;
}
/*End Box Commit*/

/*Quality Survey*/
.quality-survey {
    margin-top: -36px;
}

.quality-survey__item {
    background: var(--color-main);
    border-radius: 3px;
    padding: 10px;
    color: var(--white);
    min-height: 50px;
    display: flex!important;
    align-items: center;
}

.quality-survey__item.bg-pink {
    background: #c7166f;
}

.quality-survey__item.bg-violet {
    background: #6c16c7;
}

.quality-survey__item.bg-dark-blue {
    background: #2a1bc8;
}

.quality-survey__item.bg-blue {
    background: #1b7dc8;
}

.quality-survey__number {
    width: 35%;
    text-align: center;
    line-height: 48px;
    font-size: 25px;
    font-weight: 700;
    display: inline-block;
}

.quality-survey__text {
    flex: 1;
    display: inline-block;
    font-size: 13px;
}
/*End Quality Survey*/

/*FAQ*/
.bg-faq {
    background-size: 100%;
    background-repeat: no-repeat;
}

.accordion-faq__card {
    margin-bottom: 15px;
}

.accordion-faq__card-header {
    background: var(--color-hightlight);
    color: var(--white);
    font-size: 13px;
    padding: 10px 30px 10px 10px;
    position: relative;
    cursor: pointer;
}

.accordion-faq__card-header > i {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
}

.accordion-faq__card-header[aria-expanded="true"] > .la-angle-right:before {
    content: "\f107";
}
/*End FAQ*/

/*Blog Post*/
.blog-post__wrap {
    display: flex;
    align-items: flex-start;
    background: #fafafa;
}

.blog-post__image {
    width: 36%;
    position: relative;
    padding-top: 36%;
}

.blog-post__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post__content {
    flex: 1;
    padding: 15px;
}

.blog-post__time {
    font-size: 13px;
}

.blog-post__title {
    font-size: 13px;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-post__title a {
    color: inherit;
}

.blog-post__desc {
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
}

.blog-post__desc p {
    margin-bottom: 0;
}

.blog-post__view-more {
    font-size: 13px;
    color: var(--color-main);
}
/*End Blog Post*/

/*Partner*/
.partner-home__images .slick-list {
    margin: 0 0;
}

.partner-home__images .slick-slide {
    margin: 0 0;
}

.partner-home__images .slick-slide .item {
    display: block!important;
}

.partner-home__images-item {
    border: 1px solid #dedede;
    padding: 10px;
    height: 90px;
    background: var(--white);
}

.partner-home__images-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-home__images-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/*End Partner*/

/*Page*/
.blog-post-page .blog-post__wrap {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 10px;
}

.blog-post-page:nth-child(even) .blog-post__wrap {
    background: var(--white);
}

.blog-post-page .blog-post__image {
    width: 24%;
    position: relative;
    padding-top: 20%;
    border: 4px solid var(--white);
    box-shadow: 1px 8px 15px #ccc;
}

.blog-post-page .blog-post__title {
    font-size: 18px;
}

.blog-post-page .blog-post__desc {
    -webkit-line-clamp: 2;
}

.blog-post-page .blog-post__view-more {
    float: right;
    background: var(--color-hightlight);
    color: var(--white);
    padding: 4px 10px;
}

.blog-post-page .blog-post__view-more:hover {
    background: var(--color-main);
}

.categories-right {
    border: 1px solid #ddd;
}

.categories-right .categories-section {
    margin-bottom: 0;
}

.categories-right .categories-section li {
    margin-bottom: 0;
}

.categories-right .categories-section a {
    padding: 6px 10px;
    border-top: 1px solid #ddd;
}

.categories-right .categories-section li:first-child a {
    border-top: 0;
}

.article-detail {
    box-shadow: 0 1px 29px 0 #bbb;
    padding: 20px;
}

.article-detail table {
    width: 100%!important;
    border-bottom: 1px solid gainsboro;
}

.article-detail table thead th {
    background: var(--color-main);
    color: var(--white);
    text-align: center;
    padding: 10px;
}

.article-detail table tbody tr:nth-child(odd) {
    background: #f5f5f5;
}

.article-detail table tbody tr:hover {
    background: #edffef;
}

.article-detail table tbody tr td:first-child {
    border-left: 1px dotted gainsboro;
}

.article-detail table tbody tr td {
    border-right: 1px dotted gainsboro;
    padding: 10px;
}

.comment-section {
    box-shadow: 0 1px 29px 0 #bbb;
    padding: 20px;
    margin-bottom: 30px;
}
/*End Page*/

/*Article Link*/
.article-list-link {
    border: 1px solid #ddd;
}

.article-item-link a {
    padding: 6px 10px;
    border-top: 1px solid #ddd;
    display: block;
    font-size: 12px;
    line-height: 1.6;
}
/*End Article Link*/

/*Social Custom*/
#socials{
    display: inline-block;
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 100;
    width: 40px;
}
#socials a{
    width: 40px;
    height: 40px;
    display: block;
    margin-bottom: 10px;
}
#socials a.phone{
    padding: 5px;
    border-radius: 50%;
    background-color: #64bc46;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
}

#socials a.phone img{
    padding: 5px;
}

@-webkit-keyframes quick-alo-circle-img-anim{
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}
/*End Social Custom*/

/*Box Testimonial*/
.box-testimonial__item {
    text-align: center;
}

.box-testimonial__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.box-testimonial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-testimonial__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

.box-testimonial__desc {
    font-size: 13px;
    line-height: 1.6;
}
/*End Box Testimonial*/

/*Responsive*/
.is-mobile .menu-section ul {
    display: block;
}

.is-mobile .menu-section > ul > li > a {
    color: var(--black);
}

@media (max-width: 1199px) {
    .box-service__wrap:before {
        display: none;
    }
    
    .quality-survey {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .box-service__item img {
        width: 60px;
        height: 60px;
    }
    
    .box-commit__image {
        background-image: none!important;
        padding: 30px 0;
    }
    
    .box-commit__list {
        width: 100%;
        float: none;
    }
    
    .box-commit__content {
        float: none;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .entry-topbar {
        display: block;
    }
    
    .entry-topbar .left-topbar {
        justify-content: space-between;
        display: none;
    }
    
    .entry-topbar__item {
        font-size: 12px;
        margin: 0;
    }
    
    .right-topbar {
        justify-content: flex-end;
    }
    
    .search-dropdown {
        width: 100px;
        height: 50px;
    }
    
    .search-dropdown__menu {
        width: 100px;
    }
    
    .search-section input {
        height: 50px;
    }
    
    .search-section .btn-submit {
        padding: 0 10px!important;
        height: 50px;
        font-size: 28px;
    }
    
    .app-install__item {
        margin-top: 40px;
    }
    
    .price-import__wrap {
        display: block;
    }
    
    .price-import__image {
        max-width: 100%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .price-import__button {
        float: none;
    }
    
    .box-commit__ck-top {
        display: block;
        float: none;
        margin-top: 0;
    }
    
    .box-commit__title {
        float: none;
        text-align: left;
    }
    
    .box-commit__list ul li {
        width: 100%;
    }
    
    .blog-post-page .blog-post__title {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .blog-post-page .blog-post__view-more {
        display: none;
    }
    
    .blog-post-page .blog-post__desc {
        display: none;
    }
}

@media (max-width: 480px) {
    .blog-post__content {
        padding: 5px 10px;
    }
    
    .blog-post__desc {
        display: none;
    }
    
    .blog-post-page .blog-post__image {
        width: 30%;
        padding-top: 22%;
    }
}
/*End Responsive*/