
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 1 css header  */

.list-bar {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 21px;
    right: 0;
    width: 25px;
}

.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 2px;
    background-color: #626262;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-8px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -7px);
}

.header {
    position: relative;
    width: 100%;
    z-index: 99;
}

.header.fixed {
    position: fixed;
}

.header.fixed .header-top {
    display: none;
}

.header-top {
    position: relative;
    background: #4B4E51;
    color: #fff;
    /* padding: 0 15px; */
    display: none;
}

.box-header-top {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.box-menu-header-top {}

.box-menu-header-top ul {
    /* display: block; */
}

.menu-item {}

.menu-item:hover>ul {
    display: block;
    width: auto;
    height: auto;
}

.menu-item a {
    color: #222;
}

.menu-item>a {
    color: #fff;
    display: block;
    height: 40px;
    line-height: 40px;
}

.menu-item ul li {}

.menu-item ul li.active a {
    background-color: #ff2d55;
    color: #fff;
}

.menu-item ul li a {
    font-weight: 400;
    display: block;
    padding: 4px 20px;
    font-size: 12px;
}

.box-link-paragraph {
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
    border-radius: 4px;
    margin-bottom: 30px;
    border: 1px solid #aaa;
    padding: 10px;
    background: #edf6ff;
}

.title-link-header {
    padding: 10px 10px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}

.wrap-content-paragraph{

}
.ss-2 .content-ss-3 {
	color:#333;
    font-size: 25px;
    font-weight: 600;
}
.box-link-paragraph >ul {
    width: 100%;
    max-height: 250px;
    padding: 7px;
    overflow-y: auto;
}

.box-link-paragraph ul li {
    list-style: none !important;
    line-height: 24px;
    font-weight: 500;
}

.box-link-paragraph >ul> li {
    font-weight: 500;
}

.box-link-paragraph ul li a {
    color: #337ab7!important;
    font-size: 16px;
}

.index {
    margin-right: 4px;
}

.box-link-paragraph >ul> li ul {
    font-weight: normal;
    font-size: 90%;
}

.list-content-paragraph{

}

.list-content-paragraph>div{

}

.name-p {
    color: #0068c1;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 17px;
}

.content-p{
    font-size: 15px;
    color: #535252;
    text-align: justify;
}

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

.content-p p{
    margin-bottom: 16px;
}

.list-content-paragraph>div .index {
    width: auto;
    display: inline-block;
    flex: 0 0 auto;
}

.dropdown-menu-list>li>a:focus,
.dropdown-menu-list>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    left: 0;
}

.menu-c2 {
    /* width: 0px; */
    /* height: 0px; */
    transition: all 0.5s;
    /* overflow: hidden; */
}

.menu-item-c2 {}

.support_download{
    width: 100%;
    padding: 29px 0;
    background-color: #d9ebf5; 
}

.box_download{display: flex;justify-content: center;}

.box_download a{
    display: block;
    height: 46px;
    background-color: #2a63b0;
    line-height: 46px;
    color: #fff;
    text-transform: uppercase;
    width: 200px;
    text-align: center;
    margin: 0 10px;
    font-weight: 500;
    border-radius: 6px;
}

.hover_bg_skew{
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hover_bg_skew::before{
    content: '';
    position: absolute;
    z-index: -1;
    top: -10%;
    left: 100%;
    height: 120%;
    width: 200%;
    opacity: .15;
    -webkit-transform: skew(-45deg) translateX(25px);
    transform: skew(-45deg) translateX(25px);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 1s;
    transition: all 1s;
    background-color: #000;
}

.hover_bg_skew:hover::before{
    -webkit-animation-name: button-animate-hover;
    animation-name: button-animate-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.box_download a i{font-size: 16px;margin-left: 5px;}

.box_download a:hover{
    color: #fff;
}

.list_contact{
    display: flex;
}

.list_contact .item{
    padding: 0;
    margin-right: 20px;
}

.list_contact .item:last-child{
    margin-right: 0;
}

.list_contact .box{
    display: flex;
    align-items: center;
}

.list_contact .icon{margin-right: 10px;}

.list_contact .icon img{

}

.list_contact .info{

}


.list_contact .info span{font-size: 13px;}

.list_contact .info .value{color: #000;font-weight: 500;font-size: 13px;}

.box-social-header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
}

.box-social-header-top .box-info {}

.box-social-header-top .box-info ul {
    display: flex;
    flex-wrap: wrap;
}

.box-social-header-top .box-info ul li {
    margin-right: 30px;
}

.box-social-header-top .box-info ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
}

.box-social-header-top .box-info ul li a i {
    margin-right: 5px;
}

.box-social-header-top .box-info ul li a.address {}

.group-social {
    margin-left: 40px;
}

.group-social ul {
    display: flex;
}

.group-social ul li {
    position: relative;
    margin-left: 1px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all .3s linear;
}

.group-social ul li:hover {
    opacity: 0.8;
}

.group-social ul>li:hover a {
    transform: translateY(-3px);
}

.group-social ul li a {
    display: block;
    font-size: 16px;
    color: #fff;
    transition: all .3s linear;
}

.header-main {
    position: relative;
    /* padding: 10px 0; */
    box-shadow: 0px 5px 7px 0px rgba(128, 128, 128, 0.1);
    border-bottom: 1px solid #eee;
    background-color: #fff;
    /* min-height: 70px; */
}

.header-footer{
    background-color: #ededed;
}

.box-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* position: relative; */
}

.logo-head {
    display: inline-block;
    width: auto;
    padding: 16px 0;
}

.logo-head .image {
    text-align: center;
}

.logo-head .image img{
    width: auto;
    height: 42px;
}

.menu-desktop {
    display: flex;
    width: auto;
    float: left;
}

.menu-desktop .nav-main>li{
    padding: 21px 0;
}

.menu-desktop .nav-main>li:not(:last-child){
    margin-right: 14px;
    padding-right: 14px;
}

.menu-desktop .nav-main>li:not(:last-child):before {
    content: '';
    border-right: 1px solid #cecece;
    height: 18px;
    width: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav-main>li.active>a {
    /* background-color: #2a63b0; */
    /* color: #fff; */
}

.nav-main li {
    display: inline-block;
    float: left;
    position: relative;
}

.menu-desktop .nav-main>li:hover>a>span {
    /* border-bottom: 5px solid #ff2d55; */
}

.nav-main li .nav-sub li {
    width: 100%;
}

/*.nav-main li .nav-sub li>a:hover {
    color: #fff;
}*/

.nav-main li>a {
    font-size: 14px;
    display: block;
    line-height: 20px;
    text-align: left;
    text-transform: none;
    padding: 9px 15px;
    color: #333;
    font-weight: 400;
    white-space: nowrap;
}

.nav-main li>a:hover {
    color: #2a63b0;
}

.nav-main>li:hover>a {
}

.nav-main>li>a {
    text-transform: uppercase;
    line-height: 18px;
    display: block;
    box-sizing: border-box;
    font-size: 14px;
    color: #2a63b0;
    font-weight: 500;
    padding: 0;
}

.nav-main>li{
}

.nav-main li .nav-sub li .pt_icon_right {
    position: absolute;
    right: 5px;
    top: 12px;
}

.menu-desktop .nav-main>li>a i.fa-angle-down {
    margin-left: 6px;
}

.nav-main li .nav-sub {
    /* background-color: #626262; */
}

.menu-desktop .nav-main li.active a span {
    /* border-bottom: 5px solid #ff2d55; */
}

.nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    /* display: none; */
    min-width: 260px;
    z-index: 5;
    /* padding: 15px 20px; */
    /* -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); */
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, .175); */
    /* border: 1px solid rgba(0, 0, 0, .15); */
    background-color: #fff;
}

.nav-sub-child {
    position: absolute;
    top: 0;
    /* display: none; */
    min-width: 250px;
    z-index: 5;
    background-color: #fff;
    /* -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); */
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, .175); */
    /* border: 1px solid rgba(0, 0, 0, .15); */
    /* padding: 15px 20px; */
    left: 90%;
}

.box-header-main-right {
    width: auto;
    float: right;
    padding: 21px 0;
}

.box-header-main-right>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.box-header-main-right>ul>li {
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 18px;
    display: block;
}

.box-header-main-right>ul>li:hover>.hover-right {
    /* display: block; */
}

.box-header-main-right>ul>li>a {}

.box-header-main-right>ul>li>a>i {
    font-size: 18px;
    line-height: 18px;
}

.box-login {
    min-width: 250px;
    border-radius: 0;
    padding: 20px;
    margin-top: 10px;
    z-index: 1001;
    right: -10px;
    left: auto;
    /* display: block !important; */
}

.box-login:before {
    content: "";
    background-color: transparent;
    width: 100%;
    height: 10px;
    bottom: 100%;
    right: 0;
    position: absolute;
}

.hover-right {}

.box-form-quick-login {}

.box-form-quick-login>ul {}

.box-form-quick-login>ul>li {}

.box-form-quick-login>ul>li button {
    width: 100%;
    background: #ff2d55;
    border-color: #ff2d55;
}

.box-form-quick-login input {}

.box-form-quick-login input button {}

.box-form-quick-login>ul>li:last-child:last-child {
    text-align: center;
}

.box-form-quick-login>ul>li:last-child:last-child a {
    display: block;
    line-height: 1.55;
}

.box-form-quick-login>ul>li:last-child a:first-child {
    margin-bottom: 4px;
}

.box-header-main-right>ul>li.cart>a>img {
    width: 25px;
}

.box-header-main-right>ul>li.cart>a>span {
    position: absolute;
    top: -4px;
    right: -10px;
    font-size: 12px;
    background: #ff2d55;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    height: 20px;
    line-height: 20px;
    width: 20px;
    text-align: center;
}

.nav-main li.nav-megamenu {
    position: unset;
}

.menu-desktop .nav-main li.nav-megamenu:hover .megamenu-container {
    display: block;
    visibility: inherit;
}

.megamenu-container {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    padding: 35px 30px;
    width: 100%;
    margin-top: 0;
    background-color: #f6f6f6;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    max-height: 480px;
    overflow-y: auto;
}

.col-md-1-5 {
    min-width: 20%;
}

.list-megamenu {}

.megamenu-item {}

.megamenu-item>.image-main {
    margin-bottom: 20px;
}

.megamenu-item>.image-main:hover img {
    opacity: 0.8;
}

.megamenu-item>.image-main>img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s;
}

.megamenu-title {
    display: block;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid #f4f4f4;
    margin-bottom: 10px;
    letter-spacing: 0.05rem;
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
}

.megamenu-title:before {
    position: absolute;
    z-index: 0;
    bottom: -3px;
    width: 83px;
    content: "";
    left: 0;
    height: 3px;
    background: #fd9d00;
}

.list-megamenu-sub {}

.list-megamenu-sub li {
    margin-bottom: 0;
    display: block;
    float: unset;
    border-bottom: 1px solid #f4f4f4;
}

.list-megamenu-sub li>a {
    text-transform: capitalize;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    padding: 5px 0;
}

.list-megamenu-sub li>a:hover {
    padding-left: 5px;
    color: #ffa700;
}

.megamenu-item-sub .openc {
    position: absolute;
    right: 0;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
    color: black;
    line-height: 20px;
    width: 20px;
    text-align: center;
}

.megamenu-item-sub .openc:before {
    content: '+';
    font-size: 20px;
    color: black;
    line-height: 20px;
    text-align: center;
}

.megamenu-item-sub.active .openc:before {
    content: '-';
}

.submenu-right3 {
    margin: 0 0 0 15px;
    display: none;
}

.submenu-right3 li {
    padding: 0;
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 0;
}

.submenu-right3 li a {
    padding: 5px 0;
    display: block;
    color: #707070;
    font-size: 13px;
    line-height: 18px;
}

.submenu-right3 li:last-child {
    border: none;
}

.megamenu-item-sub {}

.megamenu-item-sub a {}

.list-product-slider {

}

.product-slider-item {
    padding: 0 10px;
    padding-bottom: 20px;
    transition: all 0.5s;
}

.product-slider-item:hover {
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-slider-item .box {
    margin-top: 5px;
    background: #fff;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}

.product-slider-item .box .image {}

.product-slider-item .box .content {
    padding: 0 15px;
    line-height: 1.3;
    padding-bottom: 20px;
}

.product-slider-item .box .name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-top: 10px;
}

.product-slider-item .box-price {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.product-slider-item .price-new {
    font-size: 18px;
    color: #ff2d55;
    font-weight: 600;
}

.product-slider-item .price-old {
    color: #8d8d8d;
    margin-left: 8px;
    font-weight: 600;
}

.megamenu-item .slick-next,
.megamenu-item .slick-prev {
    margin: 0;
    opacity: 1;
    transform: translateY(-50%);
    height: auto;
}

.megamenu-item .slick-next {
    top: -30px;
    left: unset;
    right: 0px;
}

.megamenu-item .slick-prev {
    top: -30px;
    right: 25px;
    left: unset;
    z-index: 10;
}

.megamenu-item .slick-prev i,
.megamenu-item .slick-next i {
    font-size: 15px;
    color: #1b520f;
}

.search {
    position: absolute;
    right: 0;
    top: 100%;
    margin: 0;
    display: none;
    margin-right: 0;
    /* width: calc(100% - 30px); */
    border: none;
    left: 0;
    /* padding: 10px 15px; */
    /* background: #44973c; */
}

.form_search {
    /* background-color: #000; */
    width: 100%;
    z-index: 5;
    overflow: hidden;
    padding: 1px 1px;
    /* background: #2a63b0; */
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 40px;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
}

.form_search input {
    width: calc(100% - 60px);
    float: left;
}

.form_search button {
    width: 60px;
    float: left;
    background-color: #4B4E51;
    border-color: #4B4E51;
}

.form_search button i {
    font-size: 16px;
    color: #fff;
}

.form_search .form-control {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    border: 1px solid #666;
    outline: none;
}

.form_search .form-control {
    height: 40px;
}

.form_search .form-control.close-search {
    /* margin-left: 5px; */
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    width: 35px;
    padding: 0;
    height: auto;
}

.form_search .form-control.close-search i {
    font-size: 23px;
    line-height: 1;
}


/*css menu mobile*/


/* css menu mobile*/

.main-menu-show {
    transform: translateX(0) !important;
    transition: all 200ms linear 0s;
    border-right: 1px solid #fff;
}

.menu_fix_mobile {
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 300px;
    top: 0;
    left: 0;
    background: #2a63b0;
    transition: all 200ms linear 0s;
    transform: translateX(-100%);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 10px;
}

.menu_fix_mobile .close-menu {
    /* overflow: hidden; */
    background-color: #2a63b0;
    height: 30px;
    top: 0;
    z-index: 1;
}

.menu_fix_mobile .close-menu .logo_menu {
    display: inline-block;
    padding: 15px 10px 15px 25px;
}

.menu_fix_mobile .close-menu>a {
    /* float: right; */
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    /* background-color: #ccc; */
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.menu_fix_mobile .close-menu .logo_menu img {
    width: auto;
    max-width: unset;
    height: 60px;
}

.menu_fix_mobile .megamenu-container {
    padding: 0;
    margin-bottom: 20px;
}

.menu_fix_mobile .nav-main {
    overflow-y: auto;
    width: 100%;
}

.menu_fix_mobile .megamenu-title {
    padding-left: 0;
    border: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.menu_fix_mobile .megamenu-title:before {
    left: 20px;
}

.menu_fix_mobile .megamenu-title a {
    border: unset;
    font-size: 16px;
}

.menu_fix_mobile .megamenu-item-sub>a {
    border-bottom: none;
    padding: 8px 20px;
}

.menu_fix_mobile ul {
    display: inline-block;
    margin: 0;
    list-style: none;
}

.menu_fix_mobile ul li {
    float: left;
    position: relative;
    margin: 0;
    transition: 0.4s;
    width: 100%;
    border-right: none !important;
}

.menu_fix_mobile ul.nav-main>li:not(:last-child){margin-right: 0;padding-right: 0;}

.menu_fix_mobile .megamenu-item {
    padding: 10px 0px;
    padding-left: 15px;
}

.menu_fix_mobile .list-megamenu-sub {
    display: block;
}

.menu_fix_mobile .nav-main li.nav-megamenu {
    position: relative;
}

.menu_fix_mobile ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    padding: 11px 20px;
    color: #fff;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #fff;
    line-height: normal;
}

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

.menu_fix_mobile .nav-main>li>a {
    font-weight: 700;
}

.menu_fix_mobile ul li i.fa-chevron-down.mega-mn2 {
    bottom: 0px;
    top: unset;
}

.menu_fix_mobile ul li i.fa-chevron-down {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    color: #fff;
    transition: 0.3s;
    /* border-left: 1px solid #fff; */
    cursor: pointer;
}

.menu_fix_mobile li ul.nav-sub {
    display: none;
    position: static;
    top: 100%;
    left: 0;
    background-color: transparent;
    background-image: unset;
    text-align: left;
    min-width: 180px;
    transition: unset;
    float: left;
    width: 100%;
    box-shadow: unset;
    border: unset;
}

.menu_fix_mobile li ul.nav-sub li {
    width: 100%;
    padding: 0;
}

.menu_fix_mobile li ul.nav-sub li a {
    padding: 11px 41px 11px 30px;
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: normal;
}

.menu_fix_mobile li ul.nav-sub-child {
    display: none;
    position: static;
    top: 100%;
    left: 0;
    background-color: transparent;
    background-image: unset;
    text-align: left;
    min-width: 180px;
    transition: unset;
    float: left;
    width: 100%;
    padding-left: 15px;
}

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

@keyframes slidelf {
    100% {
        position: fixed;
        left: 35px;
        bottom: 25px;
    }
}

.ss-1{
    text-align: justify;
    padding-top: 90px;
    padding-bottom: 50px;
}
.ss-1 h2{
    flex-direction: unset;
    display: block;
    color: #8f8f8f;
    margin: 0;
    /* text-transform: uppercase; */
    font-weight: bold;
    font-size: 77px;
}
.ss-1 h3{
    color: #2a63b0;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 77px;
}
.ss-1 h4{
    color: #333;
    font-size: 45px;
    margin: 0;
    /* text-transform: uppercase; */
    font-weight: bold;
}
.ss-2{}
.item-ss-2{
    padding-top: 50px;
    padding-bottom: 150px;
    position: relative;
}
.item-ss-2 .left{
    width: 45%;
}
.item-ss-2 .left .image{}
.item-ss-2 .left .image img{
    width: auto;
}
.item-ss-2 .right{
    width: 55%;
}
.item-ss-2 .right .content-ss-2{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}
.item-ss-2 .right .content-ss-2>h3{
    color: #2a63b0;
    text-align: left;
    font-size: 85px;
    font-weight: bold;
}
.item-ss-2 .right .content-ss-2>h4{
    color: #8f8f8f;
    text-align: left;
    margin-top: -5px;
    font-size: 50px;
    font-weight: bold;
}
.item-ss-2 .right .content-ss-2 img{
    width:auto;

}
.item-ss-2 .container>.row{
    align-items:center;
    display: flex;
    flex-wrap: wrap;
}
.item-ss-2 .container>.row:before,
.item-ss-2 .container>.row:after{
    content:unset;
}
.ct-code-block{
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
}
.ct-code-block svg{
    width: 100%;
    height: 100%;
}
.ct-code-block svg polygon {
    fill: #2a63b0;
}
.item-ss-2:nth-child(4n) {background-image: url(../images/img-bg-ss-2.jpg);background-size: cover;background-repeat: no-repeat;background-position: 50% 100%;padding-top: 150px;}
.item-ss-2:nth-child(4n) .ct-code-block{
    top: 0;
    bottom: unset;
}
.item-ss-2:nth-child(4n+1) {

}
.item-ss-2:nth-child(4n+2) {
    background-color: #2666ab;
    padding-top: 0;
    padding-bottom: 100px;
}
.item-ss-2:nth-child(4n+3) {
    background-color: #2666ab;
    padding-top: 0;
    padding-bottom: 0;
}
.item-ss-2:nth-child(2n) .left{
    order: 1;
}
.item-ss-2:nth-child(2n) .right .content-ss-2{
    text-align: right;
}



.category-dot-1 .slick-dots {
    bottom: 20px;
}

.category-dot-1 .slick-dots li {
    border-radius: 100%;
    width: 12px;
    height: 12px;
    /* position: absolute; */
    background: rgba(153, 153, 153, 1);
    border: 1px solid rgba(0,0,0, 0.9);
    border-radius: 50%;
    cursor: pointer;
    box-sizing: content-box;
    box-shadow: 0px 0px 2px 1px rgba(130, 130, 130, 0.3);
}

.category-dot-1 .slick-dots li.slick-active {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 1);
}

.category-dot-1 .slick-dots li button {
    width: 12px;
    height: 12px;
}

.category-dot-1 .slick-dots li button:before {
    width: 12px;
    height: 12px;
}

.category-arrow-1 :hover .slick-prev {
    left: 20px;
}

.category-arrow-1 :hover .slick-next {
    right: 20px;
}

.category-arrow-1 .slick-prev:before,
.category-arrow-1 .slick-next:before {
    display: none;
}

.category-arrow-1 .slick-prev,
.category-arrow-1 .slick-next {
    margin: 0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    opacity: 1;
    /* background-color: #fff; */
    /* border-radius: 100%; */
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: rgba(0, 0, 0, 0.4); */
    background-size: 40px 40px;
}

.category-arrow-1 .slick-prev i,
.category-arrow-1 .slick-next i {
    color: #00a9da;
    line-height: 24px;
    font-size: 14px;
    opacity: 0;
}

.category-arrow-1 .slick-prev {
    left: 15px;
    background-image: url(../images/arrow-left.svg);
}

.category-arrow-1 .slick-next {
    right: 15px;
    background-image: url(../images/arrow-right.svg);
}

.ss-3{
    padding-bottom: 50px;
    padding-top: 50px;
    background-color: #fff;
}
.ss-3 .list-slide{
    padding-bottom: 70px;
}
.item-slide-pro{}
.item-slide-pro .container>.row{
    display:flex;
    /* align-items:center; */
    flex-wrap: wrap;
}
.item-slide-pro .container>.row:before,
.item-slide-pro .container>.row:after{
    content:unset;
}
.item-slide-pro .content-pro{}
.item-slide-pro .content-pro h2{
    margin: 0;
    color: #2a63b0;
    font-size: 82px;
    font-weight: bold;
}
.item-slide-pro .content-pro h4{
    color: #8f8f8f;
    font-size: 33px;
    font-weight: bold;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
}
.item-slide-pro .content-pro .desc-pro{
    font-size: 20px;
}
.item-slide-pro .image-pro{}
.item-slide-pro .image{}
.item-slide-pro .image img{}

.bg-1{
      background-image: url(../images/bg-img-1.jpg);
}
.ss-4{

    padding-top: 75px;
    padding-bottom: 50px;
}
.box-ss-4{
    display: flex;
    flex-wrap: wrap;
}
.box-ss-4 .left{
    width: 50%;
    padding-right: 40px;
}
.box-ss-4 .left .image{}
.box-ss-4 .left .image img{}
.box-ss-4  .right{
    width: 50%;
    padding-left: 40px;
}
.box-ss-4  .right >h3{
    margin: 0;
    color: #2a63b0;
    font-weight: bold;
    font-size: 60px;
    font-weight: bold;
}
.box-ss-4  .right >h4{
    font-size: 22px;
    font-weight: bold;
}
.box-ss-4  .right .desc{
    font-size: 20px;
}
.box-ss-4  .right .desc ul{
    margin-top: 10px;
}
.box-ss-4  .right .desc ul li{
    padding-left: 15px;
    /* font-size: 21px; */
}
.box-ss-4  .right .desc ul li::before{
    content: '';
    width: 5px;
    height: 5px;
    background: red;
    position: absolute;
    left: 0;
    top: 13px;
    border-radius: 100%;
}

.ss-5{
    background-image: url(../images/bg-img-2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 50px;
}
.box-ss-5{
    /* padding-left: 120px; */
    /* padding-right: 120px; */
    /* padding-top: 60px; */
    /* padding-bottom: 50px; */
    /* background-image: url(../images/bg-img-2.png); */
    /* background-size: 100% 100%; */
    /* background-repeat: no-repeat; */
}
.box-ss-5 .left{}
.content-ss-5{}
.content-ss-5>h3{
    color: #2a63b0;
    font-size: 62px;
    font-weight: bold;
}
.content-ss-5>h4{
    font-size: 35px;
    color: #333;
    font-weight: bold;
}
.content-ss-5 .desc{
    padding-top: 50px;
}
.content-ss-5  .right{}
.content-ss-5  .right .image{}
.ss-6{
    /* padding: 70px 0; */
    /* background-image: url(../images/bg-img-3.jpg); */
    /* background-size: cover; */
}
.item-sl{
        padding: 70px 0;
        background-size: cover;
}
.ss-6 .left{}
.ss-6 .left .content-ss-6{}
.ss-6 .left .content-ss-6 >h3{
    color: #2a63b0;
    font-size: 40px;
    font-weight: bold;
}
.ss-6 .left .content-ss-6 >h4{
    padding: 15px 0px 0px 0px;
    box-shadow: none;
    border-width: 0px;
    border-style: solid;
    border-color: #000000;
    border-color: RGBA(0,0,0,1);
    border-radius: px;
    border-bottom-width: 1px;
    font-weight: bold;
}
.ss-6 .left .content-ss-6 .desc{
    font-size: 16px;
    /* font-weight: bold; */
}
.xemthem{
    background: #2a63b0;
    opacity: 1;
    padding: 12px 20px 8px 20px;
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}
.ss-6 .right{}
.ss-6 .right .image{
    max-width: 400px;
}
.ss-6 .right .image img{
    width: auto;
}

.ss-8{
    padding: 50px 0;
}
.box-content-ss-8{}
.box-content-ss-8 h3{
    margin: 0;
    font-size: 46px;
    color: #2a63b0;
    font-weight: bold;
}
.box-content-ss-8 h4{
    color: #8f8f8f;
    font-size: 46px;
    font-weight: bold;
}
.box-content-ss-8 .phone{
    font-size: 22px;
    margin: 30px 0;
}
.box-form-ss-8{}
.title-form{
    color: #20201f;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 22px;

}

.box-form-ss-8 button{
        padding: 6px 15px 3px 15px !important;
        background-color: #2a63b0;
        border: 1px solid #2a63b0;
        font-weight: bold;
        font-size: 16px;
}
@media (max-width:1199px) {
    .logo-head .image {
    }
    .logo-head .image img{
        height: 28px;
    }
    .list_contact .item{
        margin-right: 20px;
    }
    .box-header-main-right {
        width: 80px
    }
    .logo-head {
        /* margin-left: 40px; */
        justify-content: center;
    }
    .box-header-main {
        padding: 5px 0;
        /* height: 60px; */
    }
    .megamenu-container {
        position: unset;
        display: none;
        /* padding: 20px 15px; */
        box-shadow: none;
    }

    .menu-desktop .nav-main>li:not(:last-child){
        margin-right: 8px;
        padding-right: 8px;
    }

    .nav-main>li>a{
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .header.fixed {
        position: fixed;
    }
    .list-bar {
        display: none;
    }
    .menu-desktop .nav-main>li:hover .nav-sub {
        display: block;
        left: 0;
        visibility: inherit;
        top: 100%;
    }
    .menu-desktop .nav-sub>li:hover>a {
        color: #2a63b0;
    }
    .menu-desktop .nav-sub>li:hover .nav-sub-child {
        /* display: block; */
        visibility: inherit;
        left: 100%;
    }
    .menu-desktop .nav-sub>li .nav-sub-child {
        visibility: hidden;
        transition: left 0.5s;
    }
    .menu-desktop .nav-main>li>.nav-sub {
        visibility: hidden;
        top: calc(100% + 20px);
        transition: top 0.5s;
    }
    .megamenu-container {
        visibility: hidden;
    }
}

@media (max-width: 991px){
    .ss-1 h2{
        font-size:40px;
    }
    .ss-1 h3{
         font-size:40px;
    }
    .ss-1 h4{
        font-size:30px;
    }
    .item-ss-2 .left{
        width:100%;
        margin-bottom:15px;
        order: 0 !important;
    }

    .item-ss-2 .right{
        width:100%;
    }

.ct-code-block{
    display:none;
}
.item-ss-2 .right .content-ss-2{
    font-size:17px;
}

.item-ss-2{
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.item-ss-2 .right .content-ss-2>h3{
    font-size:40px;
}
.item-ss-2 .right .content-ss-2>h4{
    font-size:25px;
}
.item-slide-pro .content-pro h2{
    font-size:40px;
}
.item-slide-pro .content-pro .desc-pro{
    font-size:18px;
}
.box-ss-4 .right >h3{
    font-size:30px;
}
.box-ss-4 .right .desc{
    font-size:16px;
}
.content-ss-5>h3{
    font-size:40px;
}
.content-ss-5>h4{
    font-size:20px;
}
.content-ss-5 .desc{
    padding-top:0;
}
.box-ss-5 .left{
    margin-bottom:20px;
}
.ss-5{
    background-color:#fff;
}
.ss-6 .left .content-ss-6 >h3{
    font-size: 25px;
}
.ss-6 .left .content-ss-6 >h4{
    padding-top: 0;
}
.ss-6 .left{
    margin-bottom:15px;
}
.box-content-ss-8 h3{
    font-size:40px;
}
.box-content-ss-8 h4{
    font-size:30px;
}

.item-slide-pro .content-pro{
    margin-bottom:15px;
}


    .menu-desktop {
        display: none;
    }

    .logo-head .image img{
        height: 40px;
    }

    .box-header-main{
        padding: 0;
        position: relative;
    }

    .header-footer{
        display: none;
    }

    .list_contact{
        display: none;
    }
}
@media (max-width:767px){

    .ss-1 h2{
        font-size:25px;
    }
    .ss-1 h3 {
    font-size: 25px;
}
.ss-1 h4 {
    font-size: 20px;
}
.item-ss-2 .right .content-ss-2{
    font-size:15px;
}
.item-slide-pro .content-pro h2{
    font-size:25px;
}
.item-slide-pro .content-pro h4{
    font-size:18px;
}
.item-slide-pro .content-pro .desc-pro{
    font-size:15px;
}
.box-ss-4 .right >h3{
    font-size:25px;
}
.box-ss-4 .right >h4{
    font-size:18px;
}
.content-ss-5>h3{
    font-size:25px;
}
.content-ss-5>h4{
    font-size:18px;
}
.box-content-ss-8 h3{
    font-size:25px;
}
.box-content-ss-8 h4{
    font-size:18px;
}
.box-content-ss-8 .phone{
    font-size:15px;
}

    .box-ss-4 .left{
        width:100%;
        padding-right: 0;
        margin-bottom: 15px;
    }
    .box-ss-4 .right{
        width:100%;
        padding-left: 0;
    }
}

@media (max-width:550px) {
    .logo-head .image img{
        height: 30px;
    }
    .logo-head{
        padding: 20px 0;
    }
    .box-header-main-right>ul>li>a>i {
        font-size: 20px;
    }
    .box-header-main-right>ul>li {
        margin: 0 5px;
    }
    .group-social {
        margin-left: 10px;
    }
    .box-social-header-top .box-info ul li {
        margin-right: 10px;
    }
}


/*end css header*/


/* 2) css footer.css */

.footer {
    background-color: #fff;
    /* margin-top: 10px; */
    color: #000;
}

.footer-main {
    padding: 40px 0 25px;
}

.footer-main>.container>.row {
    display: flex;
    flex-wrap: wrap;
}

.wrap_techno{width: 100%;position: relative;padding: 100px 0;background-color: #fff; min-height: 100vh;}

.wrap_techno .bground{position: absolute;height: calc(100% - 60px);width: 75%;background-position: center center;background-repeat: no-repeat;background-size: cover;top: 30px;left: 0;}

.wrap_techno .info{
    height: 600px;
    width: 430px;
    float: right;
    background-color: #2a63b0;
    padding: 107px 55px 0;
    box-shadow: 0 3rem 10rem 0 rgba(0, 0, 0, 0.4);
}

.wrap_techno .info .title{color: #fff;display: inline-block;font-size: 26px;line-height: 28px;text-transform: uppercase;margin-bottom: 28px;font-weight: 700;}

.wrap_techno .info .desc{color: #fff;font-size: 17px;text-align: justify;font-weight: 300;line-height: 28px;margin-bottom: 40px;}

.wrap_techno .info .link_more{

}

.wrap_techno .info .link_more a{display: inline-block;color: #fff;border: 1px solid #fff;line-height: 44px;font-size: 15px;text-transform: uppercase;font-weight: 500;padding: 0 16px;}


.wrap_techno .info .link_more .question{
    width: 31px;
    height: 31px;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 31px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 7px;
}

.wrap_tuvan{width: 100%;position: relative;padding: 100px 0;background-color: #2a63b0;min-height: 100vh;}

.wrap_tuvan .bground{position: absolute;height: calc(100% - 60px);width: 75%;background-position: center center;background-repeat: no-repeat;background-size: cover;top: 30px;right: 0;}

.wrap_tuvan .info{
    height: 600px;
    width: 430px;
    float: left;
    background-color: #0d94e0;
    padding: 107px 55px 0;
    box-shadow: 0 3rem 10rem 0 rgba(0, 0, 0, 0.4);
}

.wrap_tuvan .info .title{color: #fff;display: inline-block;font-size: 26px;line-height: 28px;text-transform: uppercase;margin-bottom: 28px;font-weight: 700;}

.wrap_tuvan .info .desc{color: #fff;font-size: 17px;text-align: justify;font-weight: 300;line-height: 28px;margin-bottom: 40px;}

.wrap_tuvan .info .link_more{
    display: flex;
    align-items: center;
}

.wrap_tuvan .info .link_more a{display: inline-block;color: #fff;border: 1px solid #fff;line-height: 44px;font-size: 15px;text-transform: uppercase;font-weight: 500;padding: 0 16px;}


.wrap_tuvan .info .link_more .question{
    width: 31px;
    height: 31px;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 31px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 7px;
}

.wrap_video{width: 100%;position: relative;padding: 100px 0;margin: 0;background-color: #e7e7e7;min-height: 100vh;}

.wrap_video .bground{
    position: absolute;
    height: calc(100% - 60px);
    width: 75%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 30px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap_video .bground:before{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
}

.wrap_video .bground .play{
    display: inline-block;
    position: relative;
}

.wrap_video .bground .play img{
    width: auto;
    height: 100px;
}

.wrap_video .col-xs-12{
    position: unset;
}

.wrap_video .info{
    height: 600px;
    width: 430px;
    float: left;
    background-color: #333333;
    padding: 107px 55px 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 3rem 10rem 0 rgba(0, 0, 0, 0.4);
}

.wrap_video .info .title{color: #fff;display: inline-block;font-size: 26px;line-height: 28px;text-transform: uppercase;margin-bottom: 28px;font-weight: 700;}

.wrap_video .info .desc{color: #fff;font-size: 17px;text-align: justify;font-weight: 300;line-height: 28px;margin-bottom: 40px;}

.wrap_video .info .link_more{

}

.wrap_video .info .link_more a{display: inline-block;color: #fff;border: 1px solid #fff;line-height: 44px;font-size: 15px;text-transform: uppercase;font-weight: 500;padding: 0 16px;background-color: #2a63b0;}


.connect{width: 100%;background-color: #2a63b0;padding: 30px 0;}

.connect .title{text-align: center;font-weight: 600;font-size: 17px;color: #fff;margin-bottom: 15px;}

.list_connect{display: flex;justify-content: center;}

.list_connect .item{
    margin-right: 25px;
}

.list_connect .item:last-child{
    margin-right: 0;
}

.list_connect .item .box{
    height: 50px;
    border: 2px solid #dbdbdb;
    width: 202px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
}

.list_connect .item .box:hover{background-color: #2a63b0;color: #fff;border: 2px solid #fff;}

.list_connect .item i{
    margin-right: 7px;
}

.content-box {
    margin-bottom: 10px;
}

.content-box:nth-child(1){width: 36%;}

.content-box:nth-child(2){width: 20%;}

.content-box:nth-child(3){width: 24%;}

.content-box:nth-child(4){width: 20%;}

.footer-layer {
    color: inherit;
}

.footer-layer .title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    line-height: 25px;
    color: #2a63b0;
}

.pt_desc_name {
    color: #fff;
    margin-bottom: 5px;
    line-height: 25px;
}

.pt_desc_name h2 {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    margin-top: 0;
}

.pt_list_addres {
    line-height: 30px;
    color: inherit;
    font-size: 14px;
}

.pt_list_addres li i {
    margin-right: 5px;
}
.pt_list_addres ul li {
    list-style: disc !important;
    margin-left: 20px;
}

.certificate{width: 100%;display: flex;align-items: center;margin-top: 20px;}

.certificate .bct{

}

.certificate .bct img{width: auto;}

.certificate .dmca{
    margin-left: 23px;
}

.certificate .dmca img{width: auto;margin: 0;}

.footer__other {
    width: 100%;
    color: #000;
    float: left;
}

.footer__other .title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    line-height: 25px;
    color: #2666ab;
}

.footer__policy {
    float: left;
    width: 100%;
}

.map_ft .image img {
    height: 170px;
    object-fit: cover;
}

.dmca {
    text-align: left;
}

.dmca img {
    width: 120px;
    margin-top: 20px;
}

.search_mobile{
    display: none;
    position: absolute;
    top: 20px;
    right: 40px;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.search_mobile i{
    font-size: 16px;
}

.footer__policy iframe {
    width: 100%;
    height: 210px;
}

.footer__policy a {
    color: #000;
    width: 100%;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    position: relative;
    padding-left: 0;
}

.footer__policy a:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: #2a63b0;
    top: 19px;
    left: 0px;
    display: none;
}

.footer__policy.map_ft a {
    padding: 0;
}

.footer__policy.map_ft a:before {
    display: none;
}

.pt_box_desc_form {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #000;
}

.pt_box_form .pt_box {
    display: flex;
}

.pt_box_form .pt_box input {
    height: 40px;
    padding: 10px 15px;
    border: 1px solid rgb(255, 255, 255, 0.5);
    background: transparent;
    border-right: unset;
    width: calc(100% - 40px);
    color: rgb(255, 255, 255, 0.5);
    outline: 0;
}

.pt_box_form .pt_box input::placeholder {
    color: rgb(255, 255, 255, 0.5);
}

.pt_box_form .pt_box button {
    width: 40px;
    outline: none;
    border: 1px solid rgb(255, 255, 255, 0.5);
    border-left: unset;
    background: transparent;
    position: relative;
}

.pt_box_form .pt_box button i {
    transform: rotate(30deg);
    font-size: 12px;
    color: #fff;
}

.pt_social {
    display: flex;
    margin-top: 10px;
    margin-bottom: 0px;
}

.pt_social li:not(:last-child) {
    margin-right: 10px;
}

.pt_social li a {
    display: inline-block;
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    float: left;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #fff;
}

.pt_social li a i {
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.pt_box_thke {
    font-weight: 400;
    width: 100%;
    padding: 0 10px 10px 0px;
    border-top: 0;
    overflow: hidden;
    /* border: 1px solid #eee; */
}

.pt_box_thke p {
    text-align: left;
    padding-top: 12px;
    margin: 0;
    font-size: 14px;
    color: inherit;
}

.pt_box_thke p i {
    margin-right: 10px;
    width: 17px;
    text-align: center;
}

.pt_box_thke p span {
    font-weight: 600;
    color: #000;
}

.address .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-main-left {
    padding-left: 230px;
    position: relative;
    margin-top: 15px;
}

.logo-foot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.footer-bottom {
    overflow: hidden;
    background: #2a63b0;
    padding: 23px 0;
    position: relative;
}

.cpy p {
    margin-bottom: 0;
    color: #fff;
}

.cpy a{
    color: #fff;
}

.cpy a:hover{
    color: #fff;
}

.coppy-right {
    color: #fff;
    float: left;
}

.pt_contact_vertical {
    position: fixed;
    display: block !important;
    bottom: 85px;
    z-index: 100;
    left: 25px;
}

.contact-mobile .contact-item a {
    margin-bottom: 8px;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}

.contact-mobile .contact-item a i {
    color: #fff;
    line-height: inherit;
}

.contact-mobile .contact-item .fb-mess {
    background-color: #4b76bd;
}

.tel_phone {
    border-radius: 30px;
    line-height: 45px;
    position: absolute;
    height: 45px;
    color: #fff;
    font-size: 17px;
    text-align: center;
    background-color: #e9242d;
    color: white;
    top: 73px;
    left: 90px;
    padding: 0;
    font-weight: 600;
    width: 0;
    overflow: hidden;
    padding-left: 29px;
    transition: all 0.5s;
    opacity: 0;
}

.quick-alo-phone:hover .tel_phone {
    width: 165px;
    left: 90px;
    opacity: 1;
}

.tel_phone a {
    margin: 0;
    color: #fff;
    display: block;
    width: 135px;
}

.quick-alo-phone.quick-alo-show {
    visibility: visible;
}

.quick-alo-phone {
    position: fixed;
    visibility: hidden;
    background-color: transparent;
    width: 200px;
    height: 200px;
    display: block;
    cursor: pointer;
    z-index: 98;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility 0.5s;
    -moz-transition: visibility 0.5s;
    -o-transition: visibility 0.5s;
    transition: visibility 0.5s;
    left: -50px;
    bottom: -50px;
}

.quick-alo-ph-circle {
    width: 100px;
    height: 100px;
    top: 45px;
    left: 45px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    border: 2px solid #3a71aa 9;
    opacity: 0.1;
    -webkit-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle {
    border-color: #e9242d;
    opacity: 0.5;
}

.quick-alo-ph-circle-fill {
    width: 80px;
    height: 80px;
    top: 55px;
    left: 55px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 0.1;
    -webkit-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle-fill {
    background-color: #e9242d;
    opacity: 0.75;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle {
    background-color: #e9242d;
}

.quick-alo-ph-img-circle {
    width: 50px;
    height: 50px;
    top: 70px;
    left: 70px;
    position: absolute;
    background: rgba(30, 30, 30, 0.1) url(../images/quick-call-button.png) no-repeat center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle {
    background-color: #e9242d;
}

@-moz-keyframes quick-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-webkit-keyframes quick-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-o-keyframes quick-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@keyframes quick-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-moz-keyframes quick-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-webkit-keyframes quick-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-o-keyframes quick-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@keyframes quick-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

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

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

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

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

.back_to_top {
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to bottom, #f8d61b, #df9a19);
    padding: 6.5px 10px;
    border-radius: 50px;
    z-index: 99;
    overflow: hidden;
}

.back_to_top span {
    display: inline-block;
    float: left;
    line-height: 27px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.5s;
    width: 0;
}

.back_to_top img {
    width: auto;
    float: left;
    margin-top: 3px;
}

@media (max-width:991px) {
    .content-box:not(:last-child) {
        border: unset;
    }

    .search_mobile{
        display: block;
    }
}


/* 4) stylesheet-2.css */

* {
    margin: 0;
    padding: 0;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 10px 0;
    padding: 0;
}

table {
    width: 100%;
}

table,
th,
td {
    font-size: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    padding-left: 10px;
    border-color: #ddd;
}

tr {
    margin-bottom: 10px;
}

td {
    vertical-align: central;
    padding: 5px !important;
    border-color: #ddd;
}

ul li {
    list-style: none;
    position: relative;
}

p {
    padding: 0;
    margin: 0;
}

i.fa {
    line-height: inherit;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff!important;
}

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

a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: inherit;
}

a:focus {
    outline: none;
}

ol,
ul {
    margin: 0;
}

a:focus,
a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #2a63b0;
}

html {
    scroll-behavior: smooth;
}

.slick-slider {
    margin-bottom: 0;
}

.main {
    background-color: #fff;
}


/*css slide home*/

.slide .slick-dots {
    bottom: 20px;
}

.slide .slick-dots li {
    border-radius: 100%;
    width: 12px;
    height: 12px;
    /* position: absolute; */
    background: rgba(153, 153, 153, 1);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    box-sizing: content-box;
    box-shadow: 0px 0px 2px 1px rgba(130, 130, 130, 0.3);
}

.slide .slick-dots li.slick-active {
    background: rgba(255, 255, 255, 1);
    border: 3px solid rgba(0, 0, 0, 1);
}

.slide .slick-dots li button {
    width: 12px;
    height: 12px;
}

.slide .slick-dots li button:before {
    width: 12px;
    height: 12px;
}

.slide :hover .slick-prev {
    left: 20px;
}

.slide :hover .slick-next {
    right: 20px;
}

.slide .slick-prev:before,
.slide .slick-next:before {
    display: none;
}

.slide .slick-prev,
.slide .slick-next {
    margin: 0;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    opacity: 1;
    /* background-color: #fff; */
    /* border-radius: 100%; */
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    background-size: 20px 30px;
}

.slide .slick-prev i,
.slide .slick-next i {
    color: #00a9da;
    line-height: 24px;
    font-size: 14px;
    opacity: 0;
}

.slide .slick-prev {
    left: 15px;
    background-image: url(../images/ic_previous_black.png);
}

.slide .slick-next {
    right: 15px;
    background-image: url(../images/ic_next_black.png);
}

.slide {
    width: 100%;
    position: relative;
}

.slide .box-slide .item-slide{
    height: auto;
}

.slide .box-slide img {
    object-fit: cover;
}

.under-content {
    position: absolute;
    top: 50%;
    color: #fff;
    text-transform: uppercase;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.content_slide {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content_slide .box_info {
    max-width: 442px;
    float: left;
}

.item-two {
    color: #2a63b0;
    line-height: 40px;
    font-size: 29px;
    font-weight: 600;
}

.slide .desc {
    color: #000;
    text-transform: uppercase;
    padding: 10px 0 0 0;
    margin: 0;
    text-align: left;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
}

.group-more {
    margin-top: 15px;
}

a.learn-more {
    background-color: #fff;
    border: 1px solid #2a63b0;
    display: inline-block;
    color: #2a63b0;
    padding: 0px 6px;
    text-align: center;
    border-radius: 5px;
    margin-right: 20px;
    line-height: 36px;
    outline: 0;
    width: 100px;
    font-size: 12px;
}

a.learn-more i {
    color: #000;
    margin-left: 5px;
    font-size: 15px;
}

/*end css slide home*/

.section-1 {
    padding: 40px 0 20px;
}

.group-title {
    text-align: center;
    margin-bottom: 30px;
}

.group-title .title {
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: normal;
}

.group-title .title-underline {
    position: relative;
    margin-bottom: 7px;
    color: #2a63b0;
}

.group-title .title-underline:before {
    content: "";
    width: 100px;
    height: 2px;
    background: #000;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -10px;
    display: none;
}

.group-title .desc {
    color: #222;
    margin-bottom: 0;
    line-height: 24px;
    max-width: 750px;
    font-size: 16px;
    text-align: center;
    margin: auto;
}

.section-1 .list-card {}

.section-1 .list-card .card {
    text-align: center;
    margin-bottom: 20px;
    transition: all .3s;
}

.section-1 .list-card .card:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.24);
    transform: translateY(-5px);
    transition: all .3s;
}

.section-1 .list-card .box {
    display: block;
}

.section-1 .list-card .box .image {}

.section-1 .list-card .box .image img {
    padding: 20px;
    background: #fff;
}

.section-1 .list-card .box h3 {
    color: #222;
    font-size: 15px;
    margin-top: 7px;
    margin-bottom: 0;
    line-height: 18px;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 600;
}

.section-1 .list-card .card:hover .box h3 {
    color: #2a63b0;
}

.page_product{
    padding: 60px 0;
    position: relative;
    width: 100%;
    background-color: #fff;
}

.box_tab_pro{
    text-align: center;
}

.box_tab_pro .nav-pills{
    display: inline-block;
    border-bottom: 1px solid #d4d4d4;
    margin-bottom: 60px;
}

.box_tab_pro .nav-pills>li{

}

.box_tab_pro .nav-pills>li+li {
    margin-left: 40px;
}

.box_tab_pro .nav-pills>li>a {
    border-radius: 0;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    padding: 3px 0;
    border-bottom: 8px solid transparent;
}

.box_tab_pro .nav>li>a:focus, .box_tab_pro .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

.box_tab_pro .nav-pills>li.active>a, .box_tab_pro .nav-pills>li.active>a:focus, .box_tab_pro .nav-pills>li.active>a:hover{
    background-color: transparent;
    border-bottom: 8px solid #2a63b0;
    font-weight: 700;
    color: #000;
}

.box_tab_pro .tab-content{

}

.box_tab_pro .tab-content h3{font-size: 30px;padding-bottom: 30px;margin: 0;font-weight: 700;}

.box_tab_pro .tab-content .content{
    max-width: 666px;
    margin: 0 auto;
    padding-bottom: 60px;
    font-size: 24px;
    line-height: 34px;
}

.box_specifications{
    text-align: center;
    margin-top: 60px;
}

.box_specifications .nav-pills{
    display: inline-block;
    border-bottom: 1px solid #d4d4d4;
    margin-bottom: 40px;
}

.box_specifications .nav-pills>li{

}

.box_specifications .nav-pills>li+li {
    margin-left: 40px;
}

.box_specifications .nav-pills>li>a {
    border-radius: 0;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    padding: 3px 0;
    border-bottom: 8px solid transparent;
}

.box_specifications .nav>li>a:focus, .box_specifications .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

.box_specifications .nav-pills>li.active>a, .box_specifications .nav-pills>li.active>a:focus, .box_specifications .nav-pills>li.active>a:hover{
    background-color: transparent;
    border-bottom: 8px solid #2a63b0;
    font-weight: 700;
    color: #000;
}

.box_specifications .tab-content{text-align: left;}

.box_specifications .tab-content h3{font-size: 30px;padding-bottom: 30px;margin: 0;font-weight: 500;}

.box_specifications .tab-content .content{
    max-width: 666px;
    margin: 0 auto;
    padding-bottom: 60px;
    font-size: 24px;
    line-height: 34px;
}

.l-tabbed-content__content-section {
    position: relative;
    padding: 0;
}

@keyframes slide-left-short{
    0%{
        -webkit-transform:translateX(60px);
        transform:translateX(60px);
        opacity:0
    }
    100%{
        -webkit-transform:translateX(0);
        transform:translateX(0);
        opacity:1
    }
}

.blog-news{
    padding: 30px 0;
}

.l-section {
    position: relative;
    padding: 25px 0;
}

.tab-content>.l-tabbed-content__content-section.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-animation: slide-left-short .5s;
    animation: slide-left-short .5s;
}

.l-tabbed-content__image-container {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    text-align: center;
}

.l-tabbed-content__list-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
}

.l-tabbed-content__content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 40px;
}

.l-tabbed-content__content-item:last-child{
    margin-bottom: 0;
}

.l-tabbed-content__icon-text .c-text--spacer-half-xxs {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
}

.l-tabbed-content__icon-text .c-text{
    font-size: 16px;
}

.box_sort{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.box_sort .sort_by{
    display: inline-flex;
    align-items: center;
}

.sort_by button{
    border: 0;
    background-color: transparent;
    box-shadow: unset;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.sort_by button.active{font-weight: 700;}

.sort_by .grid-switch-divider{margin: 0 10px;font-size: 20px;}

.box_sort .compare{
    display: inline-flex;
}

.box_sort .compare a{
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: auto;
    height: 50px;
    padding: 0 30px;
    border-radius: 0;
    border: 0;
    outline: 0;
    line-height: 50px;
    text-decoration: none;
    text-align: center;
    text-overflow: ellipsis;
    cursor: pointer;
    background: #2a63b0;
    box-shadow: none;
    color: #fff;
}

.box_sort .compare button::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -10%;
    left: 100%;
    height: 120%;
    width: 200%;
    opacity: .15;
    -webkit-transform: skew(-45deg) translateX(25px);
    transform: skew(-45deg) translateX(25px);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 1s;
    transition: all 1s;
    background: #000;
}

.box_sort .compare button:hover::before{
    -webkit-animation-name: button-animate-hover;
    animation-name: button-animate-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@keyframes button-animate-hover{
    from{
        left:100%;
        -webkit-transform:skew(-45deg) translateX(25px);
        transform:skew(-45deg) translateX(25px)
    }
    to{
        left:-200%;
        -webkit-transform:skew(-45deg) translateX(-25px);
        transform:skew(-45deg) translateX(-25px)
    }
}

.box_pro_list{
    width: 100%;
    padding-top: 40px;
    display: none;
}

.box_pro_list.is-active{
    display: block;
}

.box_pro_grid{
    width: 100%;
    padding-top: 40px;
    display: none;
}

.box_pro_grid.is-active{
    display: block;
}

.c-download-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0;
    background-color: #d4d4d4;
    color: #000;
    font-size: 16px;
}

.l-search-results__list-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-left: 15px;
}

.c-download-list__item:first-of-type {
    margin-top: 0;
}

.c-download-list__item:last-of-type {
    margin-bottom: 0;
}

.c-download-list__item .c-download-list__file {
    position: relative;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 60px;
    padding: 15px;
}

.c-download-list__item .c-download-list__file .c-download-list__name {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
    word-break: break-all;
}

.c-download-list__item .c-download-list__file .c-download-list__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.c-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
}

.c-checkbox__placeholder {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    outline: 1px solid #0a9bcd;
    outline-offset: 2px;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-left: 3px;
    cursor: pointer;
}

.c-checkbox__placeholder.is-checked {
    background: #0a9bcd;
}

.c-checkbox__input[type=checkbox], .c-checkbox__input[type=radio] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
}

.c-checkbox__label {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 22px;
    line-height: normal;
    cursor: pointer;
    pointer-events: none;
}

.l-search-results__item-button {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
    background: #0a9bcd;
    color: #fff;
}

.c-download-list__item .c-download-list__file .c-download-list__button {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    z-index: 1;
    display: block;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    text-overflow: ellipsis;
    cursor: pointer;
}

.c-download-list__button:hover::before{
    -webkit-animation-name: button-animate-hover;
    animation-name: button-animate-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.c-button--primary {
    background: #2a63b0;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.c-button::before, .cc_InlineButton_button__3GHf7::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -10%;
    left: 100%;
    height: 120%;
    width: 200%;
    opacity: .15;
    -webkit-transform: skew(-45deg) translateX(25px);
    transform: skew(-45deg) translateX(25px);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.c-button::before, .cc_InlineButton_button__3GHf7::before {
    background: #000;
}

.c-button--primary::before {
    background: #000;
}

.c-icon {
    display: inline-block;
    color: inherit;
    width: 32px;
    height: 32px;
}

.c-button__icon {
    display: inline-block;
    vertical-align: middle;
}

.c-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    fill: currentColor;
}

.main_specifications{
    padding: 40px 0;
    width: 100%;
    background-color: #f2f2f2;
}

.main_specifications .title{
    font-size: 32px;
    text-align: center;
    font-weight: 700;
}

.options_and_consumables{
    padding: 40px 0;
    width: 100%;
    background-color: #f2f2f2;
}

.options_and_consumables .title{
    font-size: 32px;
    text-align: center;
    font-weight: 700;
}

.box_consumables{
    text-align: center;
    margin-top: 60px;
}

.box_consumables .nav-pills{
    display: inline-block;
    border-bottom: 1px solid #d4d4d4;
    margin-bottom: 20px;
}

.box_consumables .nav-pills>li{

}

.box_consumables .nav-pills>li+li {
    margin-left: 40px;
}

.box_consumables .nav-pills>li>a {
    border-radius: 0;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    padding: 3px 0;
    border-bottom: 8px solid transparent;
}

.box_consumables .nav>li>a:focus, .box_consumables .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

.box_consumables .nav-pills>li.active>a, .box_consumables .nav-pills>li.active>a:focus, .box_consumables .nav-pills>li.active>a:hover{
    background-color: transparent;
    border-bottom: 8px solid #2a63b0;
    font-weight: 700;
    color: #000;
}

.box_consumables .tab-content{text-align: left;}

.box_consumables .tab-content h3{font-size: 30px;padding-bottom: 30px;margin: 0;font-weight: 500;}

.box_consumables .tab-content .content{
    max-width: 666px;
    margin: 0 auto;
    padding-bottom: 60px;
    font-size: 24px;
    line-height: 34px;
}

.l-pho-table {
    display: grid;
    grid-auto-flow: row;
    width: 100%;
    font-size: 16px;
}

.l-pho-table__header-row {
    display: none;
}

.l-pho-table__items-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.l-pho-table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #d4d4d4;
}

.l-pho-table__item-name {
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 20px;
}

.l-pho-table__feature-label {
    font-weight: 700;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 5px 0 5px 10px;
}

.l-pho-table__feature-value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
}

.l-pho-table__placeholder {
    width: 40px;
    height: 2px;
    background-color: #ccc;
}

.l-pho-table__item:last-of-type {
    border-bottom: none;
}

.section-2 {
    padding: 40px 0 0;
}

.section-2 .banner {}

.section-2 .banner a {
    overflow: hidden;
    display: block;
    position: relative;
}

.section-2 .banner a:after,
.section-2 .banner a:before {
    background: rgba(255, 255, 255, 0.1);
    content: '';
    z-index: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.section-2 .banner a:before {
    left: -100%;
    top: -100%;
}

.section-2 .banner a:after {
    left: 100%;
    top: 100%;
}

.section-2 .banner a:hover:after,
.section-2 .banner a:hover:before {
    left: 0;
    top: 0;
}

.section-2 .banner a img {
    min-height: 200px;
    object-fit: cover;
}

.pt_section_61 {
    background: #f5f5f1;
    position: relative;
    padding-bottom: 10px;
    padding-top: 20px;
}

.pt_section_61 .pt_chitiet {
    display: inline-block;
    background: #44973c;
    padding: 5px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.block-compare{padding: 30px 0;}

.wrap-list-compare{

}

.wrap-list-compare .title-compare{margin: 0 0 30px;font-size: 24px;font-weight: 600;display: flex;flex-wrap: wrap;align-items: center;}

.wrap-list-compare .clear-compare{padding: 6px 12px;font-weight: 600;margin-left: 15px;}

.list-compare{

}

.compare-wrapper{display: flex; flex-wrap: wrap;}

.list-compare .col-compare{width: 33.3333%; margin-bottom: 20px;}

.list-compare .compare-card{border: 1px solid #d4d4d4;border-top: 10px solid #2a63b0;}

.list-compare .box{

}

.list-compare .box .image{

}

.list-compare .box .image img{

}

.list-compare .content{

}

.list-compare .row_item{text-align: center;padding: 20px 15px;width: 100%;border-bottom: 1px solid #d4d4d4;}

.list-compare .row_item:nth-child(odd){background-color: #f1f1f1;}

.list-compare .row_item:nth-child(even){
    background-color: #fff;
}

.list-compare .row_item .name{color: #000;font-weight: 700;margin-bottom: 7px;font-size: 18px;}

.list-compare .row_item .delete_compare{
}

.list-compare .row_item .delete_compare a{display: inline-block;padding: 6px 12px;font-weight: 600;color: #fff;background-color: #2a63b0;border-color: #2a63b0;border-radius: 5px;}

.list-compare .row_item .lab{font-size: 17px;color: #000;font-weight: 600;margin-bottom: 7px;}

.list-compare .row_item .value{min-height: 44px;font-size: 15px;line-height: 22px;}

.list-compare .view-more{text-align: center;}

.list-compare .view-more .btn-primary{background-color: #2a63b0;border-color: #2a63b0;}

.pt_item_new_3 {
    margin-bottom: 35px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 40px;
}

.news_row .pt_item_new_3 {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.pt_item_new_3:last-child {
    margin: 0;
    border-bottom: unset;
}

.pt_item_new_3 .pt_box {
    display: flex;
    flex-wrap: wrap;
}

.pt_item_new_3 .pt_images {
    width: 100%;
    overflow: hidden;
    /* margin-bottom: 15px; */
    /* border-radius: 20px; */
}

.pt_item_new_3 .pt_images img {
    transition: all 0.5s;
    object-fit: cover;
    width: 100%;
    height: 250px;
}

.pt_item_new_3:hover .pt_images img {
    transform: scale(1.1);
}

.pt_item_new_3 .pt_box_in {
    /* width: calc(100% - 200px); */
    width: 100%;
    /* padding-left: 20px; */
    padding-left: 0;
    /* max-width: 710px; */
    margin: 0 auto;
    padding: 15px 15px 15px;
    background: #fff;
}

.pt_item_new_3 .pt_box_in h3 {
    margin: 0;
}

.pt_item_new_3 .pt_box_in .pt_date {
    font-size: 11px;
    margin: 10px 0 5px;
}

.pt_item_new_3 .pt_box_in .pt_desc {
    line-height: 22px;
    font-size: 15px;
    margin-top: 25px;
    font-weight: 300;
}

.news_row .pt_item_new_3 .pt_box_in .pt_desc {
    margin-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pt_item_new_3 .pt_box_in .pt_date span {
    margin-right: 10px;
    display: inline-block;
    color: #222;
    /* border-bottom: 1px dotted #ccc; */
    padding-bottom: 1px;
}

.pt_item_new_3 .pt_box_in .pt_date span:last-child {
    margin: 0;
}

.pt_item_new_3 .pt_box_in .pt_date span i {
    margin-right: 5px;
}

.pt_item_new_3 .pt_box_in h3 a {
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
    height: auto;
}

.pt_item_new_3 .pt_box_in h3 a:hover {
    color: #44973c;
}

.pt_box_text_new_3 {
    padding: 25px 25px;
    background: #fff;
}

.pt_box_text_new_3 h3 {
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    margin: 0 0 15px;
    color: #44973c;
    line-height: normal;
}

.pt_box_text_new_3 .pt_desc {
    line-height: 24px;
    font-size: 15px;
}

.pt_section_61 .pt_list_images {}

.pt_section_61 .pt_list_images .pt_images {
    margin-bottom: 25px;
    height: 202px;
    position: relative;
}

.pt_section_61 .pt_list_images .pt_images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pt_section_61 .pt_action .pt_icon {
    width: 100%;
    height: 30px;
    margin: 0;
    margin-bottom: 10px;
}

.pt_section_61 .pt_action .pt_icon img {
    width: auto;
}

.pt_section_61 .pt_images:hover .pt_action {
    /* display: block; */
    opacity: 1;
    /* align-items: center; */
}

.pt_section_61 .pt_action {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to top, #44973c 0, rgba(68, 151, 60, 0.7) 100%);
    color: #fff;
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
    /* display: none; */
    opacity: 0;
    transition: all 0.5s;
}

.pt_section_61 .pt_action>h3 {
    font-size: 19px;
    margin: 0;
}

.pt_section_61 .pt_action>h3 {
    color: #fff;
}

.pt_section_61 .pt_action>h3 {
    font-size: 19px;
    margin: 0;
    overflow: hidden;
    height: 60px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pt_section_61 .pt_action>h3 {
    color: #fff;
}

.pt_section_62 {
    padding: 40px 0 40px;
}

.pt_section_62 .cate-dot-1 .slick-dots{
    margin-top: 0;
}

.pt_section_62 .cate-arrows-1 .slick-prev{
    left: -25px;
}

.pt_section_62 .cate-arrows-1 .slick-next{
    right: -25px;
}

.pt_section_62 .cate-arrows-1 .slick-prev, .pt_section_62 .cate-arrows-1 .slick-next{
    top: 30%;
}

.pt_group_title {
    text-align: center;
    margin-bottom: 25px;
}

.pt_group_title .pt_title_icon_top {
    font-size: 40px;
}

.pt_group_title .pt_title_sup {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #65a59d;
}

.cate-dot-1 .slick-dots {
    width: auto;
    bottom: unset;
    right: 80px;
    position: unset;
    margin-top: 20px;
}

.cate-dot-1 .slick-dots li {
    border-radius: 100%;
    width: 14px;
    height: 14px;
    /* position: absolute; */
    background-image: linear-gradient(147deg, #898989, #898989);
    /* border: 3px solid rgba(255, 255, 255, 0.9); */
    border-radius: 50%;
    cursor: pointer;
    box-sizing: content-box;
    box-shadow: 0px 0px 2px 1px rgba(130, 130, 130, 0.3);
}

.cate-dot-1 .slick-dots li.slick-active {
    background-image: linear-gradient(1deg, #2a63b0, #2a63b0);
    /* border: 3px solid rgba(0, 0, 0, 1); */
}

.cate-dot-while-1.cate-dot-1 .slick-dots li.slick-active {
    background-color: #707070;
}

.cate-dot-while-1.cate-dot-1 .slick-dots li {
    background-color: #fff;
}

.cate-dot-1 .slick-dots li button {
    width: 14px;
    height: 14px;
}

.cate-dot-1 .slick-dots li button:before {
    width: 14px;
    height: 14px;
}

.cate-arrows-1 .slick-prev,
.cate-arrows-1 .slick-next {
    opacity: 1;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    margin: 0;
    width: 25px;
    height: 50px;
    background-color: transparent;
    color: #000;
}

.cate-arrows-1 .slick-prev {
    left: 0px;
}

.cate-arrows-1 .slick-next {
    right: 0px;
}

.cate-arrows-1 .slick-prev i,
.cate-arrows-1 .slick-next i {
    font-size: 20px;
    color: inherit;
}

.cate-arrows-1-sm .slick-prev,
.cate-arrows-1-sm .slick-next {
    width: 10px;
    height: 30px;
}

.cate-arrows-1-sm .slick-prev i,
.cate-arrows-1-sm .slick-next i {
    font-size: 10px;
}

.wrap-news-card .pt_list_item {
    padding: 0 5px;
    float: left;
}

.wrap-news-card .pt_list_item.slider{
    float: unset;
}

.wrap-news-card .pt_item {
    padding: 0 10px;
    margin-bottom: 15px;
    height: auto;
}

.wrap-news-card .pt_item .pt_images {
    overflow: hidden;
    position: relative;
}

.wrap-news-card .pt_item .pt_images a:hover{
    color: #fff;
}

.wrap-news-card .pt_item .pt_box_item {
    overflow: hidden;
}

.wrap-news-card .pt_item .date {
    margin-bottom: 10px;
    font-size: 13px;
    color: #898989;
}

.wrap-news-card .pt_item .pt_images img {
    transition: all 0.5s;
    width: 100%;
    height: 254px;
    object-fit: cover;
}

.wrap-news-card .pt_item .pt_images:hover img {
    transform: scale(1.1);
}

.wrap-news-card .pt_item h3 {
    font-weight: 500;
    font-size: 17px;
    color: #333;
    line-height: 20px;
    margin: 30px 0 5px;
    position: relative;
}

.wrap-news-card .pt_item h3 a {
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

.wrap-news-card .pt_item h3:before {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #2a63b0;
    position: absolute;
    top: -15px;
    left: 0;
}

.wrap-news-card .pt_item h3 a:hover {
    color: #2a63b0;
}

.wrap-news-card .pt_item .desc {
    font-size: 15px;
    line-height: 23px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.section-3 {
    padding: 40px 0 10px;
}

.banner-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.banner-wrapper .image {
    overflow: hidden;
}

.banner-wrapper .image img {
    backface-visibility: hidden;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 1s ease 0s, transform 1s ease 0s;
    transition: opacity 1s ease 0s, transform 1s ease 0s;
    min-height: 400px;
    object-fit: cover;
}

.banner-wrapper:hover .image img {
    filter: alpha(opacity=80);
    transform: scale3d(1.1, 1.1, 1);
}

.banner-wrapper-infor {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-wrapper-infor .info {
    width: 100%;
    text-align: center;
    padding: 65px 15px 80px;
    border: 2px solid #fff;
    max-width: 500px;
}

.banner-wrapper-infor .content {}

.banner-wrapper-infor .content .sup-title {
    text-transform: uppercase;
    color: #fff;
}

.banner-wrapper-infor .content .title-banner {
    margin: 0 0 15px;
    font-size: 50px;
    color: #fff;
}

.banner-wrapper-infor .content .button {
    font-size: 16px;
    line-height: 38px;
    display: inline-block;
    padding: 0 28px;
    color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background: #f79a00;
}

.banner-wrapper-infor .content .button:hover {
    background: #171717;
}

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

.wrap-navtab .title {
    font-size: 25px;
    position: relative;
    width: 20%;
    padding-bottom: 10px;
    font-weight: 600;
}

.wrap-navtab .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 48px;
    height: 2px;
    left: 0;
    background: #ff6f00;
}

.tab-category-1 .box-view-all {
    width: 130px;
    text-align: right;
}

.tab-category-1 .view-all {
    display: block;
    display: inline-block;
    position: relative;
    border: 1px solid #000;
    padding: 0 20px;
    line-height: 39px;
}

.box-view-all-mobile {
    text-align: center;
}

.tab-category-1 .view-all:hover {
    background: #ff6f00;
    color: #fff;
    border-color: #ff6f00;
}

.tab-category-1 .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: unset;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-category-1 .nav-tabs>li {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0px;
    background: #d8d8d8;
    padding: 0;
    line-height: 30px;
    position: relative;
    height: 40px;
}

.tab-category-1 .nav-tabs>li:after {
    content: "";
    border-width: 20px;
    border-left: 20px solid #eee;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #eee;
    border-top: 20px solid transparent;
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

.tab-category-1 .nav-tabs>li.active:after {
    border-bottom-color: #4B4E51;
    border-left-color: #4B4E51;
    display: none;
}

.tab-category-1 .nav-tabs>li+li.active:before {
    border-right-color: #4B4E51;
    border-top-color: #4B4E51;
}

.tab-category-1 .nav-tabs>li+li:before {
    content: "";
    border-width: 20px;
    border-left: 20px solid transparent;
    border-right: 20px solid #eee;
    border-bottom: 20px solid transparent;
    border-top: 20px solid #eee;
    position: absolute;
    top: 0;
    right: 100%;
    display: none;
}

.tab-category-1 .nav-tabs>li.active>a,
.tab-category-1 .nav-tabs>li.active>a:focus {
    color: #fff;
}

.tab-category-1 .nav>li>a:focus,
.tab-category-1 .nav>li>a:hover {
    background-color: unset;
    border: unset;
    color: #2a63b0;
}

.tab-category-1 .nav-tabs>li.active {
    background-color: #2a63b0;
    border: 0;
    padding: 0;
}


/*
.tab-category-1 .nav-tabs>li.active:before,
.tab-category-1 .nav-tabs>li:hover:before {
    width: calc(100% - 3.2px);
}

.tab-category-1 .nav-tabs>li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #000;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
*/

.tab-category-1 .nav-tabs>li.active>a {
    border: none;
    box-shadow: none;
    outline: none;
    color: #fff;
    background-color: transparent;
    font-weight: 600;
    /* padding: 5px 20px; */
    line-height: 30px;
    margin: 0 0px 0 0;
}

.tab-category-1 .nav-tabs>li>a {
    padding: 0;
    border-radius: 0;
    line-height: 30px;
    background-color: unset;
    border: unset;
    margin-right: 0;
    padding: 5px 20px;
    font-size: 15px;
    font-weight: 600;
}

.section-4 {
    padding: 40px 0 35px;
    background-color: #fff;
}

.section-4 .cate-dot-1 .slick-dots{
    margin-top: 0;
}

.section-4 .cate-arrows-1 .slick-prev{
    left: -25px;
}

.section-4 .cate-arrows-1 .slick-next{
    right: -25px;
}

.section-4 .cate-arrows-1 .slick-prev, .section-4 .cate-arrows-1 .slick-next{
    top: 31%;
}

.section-4 .tab-content {}

.wrap-list-product {
    padding-top: 20px;
}

.list-product-card {
    padding-left: 5px;
    padding-right: 5px;
}

.list-product-card>.row .col-xs-6 {
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
}

.list-product-card>.row {
    display: flex;
    flex-wrap: wrap;
}

.list-product-card>.row:before, .list-product-card>.row:after{
    content: unset;
}

.wrap-tab .list-product-card>.row{
    display: block;
}

.product-card {}

.product-card .box {
    margin-bottom: 20px;
    margin-top: 5px;
    background: #fff;
    transition: all .3s ease;
}

.product-card .box:hover {
    /* box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1); */
    transform: translateY(-5px);
}

.product-card .card-top {
    position: relative;
    overflow: hidden;
}

.product-card .card-top .image {
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: #ccc;
}

.c-card__button {
    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;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    z-index: 1;
    overflow: hidden;
}

.c-card__button:hover::before {
    -webkit-animation-name: button-animate-hover;
    animation-name: button-animate-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.sale-1 {
    position: absolute;
    top: 0;
    left: 20px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 1px 0px 0px;
    padding-bottom: 4px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    width: 40px;
    height: 36px;
    background-image: url(../images/bg-sale.webp);
    background-size: 40px 36px;
    background-position: 0px 0px;
}

.product-card .card-top .image a:hover{
   color: #fff;
}

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

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

.product-card .card-top .image-card {
    width: auto;
    object-fit: cover;
    transition: all 1s;
    height: 250px;
    margin: auto;
}

.product-card .card-top .image-hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.product-card .box:hover .image-hover {
    opacity: 1;
}

.product-card .card-top .list-status {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    z-index: 1;
}

.product-card .card-top .list-status>li {
    position: relative;
    width: auto;
    margin-bottom: 5px;
}

.product-card .card-top .list-status>li>span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
}

.product-card .card-top .list-status .new span {
    color: #ffffff;
    background-color: #5eb100;
}

.product-card .card-top .list-status .sale span {
    color: #ffffff;
    background-color: #90c7e0;
}

.product-card .card-top .list-status .hot span {
    color: #ffffff;
    background-color: #f20600;
}

.product-card .card-top .list-quick {
    display: flex;
    position: absolute;
    bottom: 30px;
    right: -30px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    z-index: 10;
    width: 35px;
    /* padding: 10px; */
    /* background: rgba(0, 0, 0, 0.3); */
    flex-direction: column;
}

.product-card .box:hover .card-top .list-quick {
    /* bottom: 15px; */
    opacity: 1;
    visibility: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* left: 0; */
    right: 10px;
    /* padding: 10px; */
    /* bottom: 0; */
}

.product-card .card-top .list-quick>li {
    transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    margin-bottom: 5px;
}

.product-card .card-top .list-quick>li>a {
    background: #fff;
    border: 1px solid #000;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all .3s linear;
    display: block;
    /* margin-left: 5px; */
    color: #000;
}

.product-card .card-top .list-quick>li>a:hover {
    background: #2a63b0;
    color: #fff;
    border-color: #2a63b0;
}

.product-card .card-body {
    padding: 15px 0 0;
    text-align: left;
}

.product-card .card-body .card-name {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 5px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-card .card-body .card-name a {
    color: #333;
    text-decoration: underline;
}

.product-card .card-body .card-name a:hover {
    color: #2a63b0;
}

.product-card .card-body .card-price {
    margin-top: 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
}

.product-card .card-body .card-price .new-price {
    font-size: 15px;
    color: #888;
    font-weight: 600;
}

.product-card .card-body .card-price .old-price {
    color: #8d8d8d;
    margin-left: 8px;
    font-weight: 500;
}

.product-card .card-body .desc{
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .card-body .rate {
    margin-top: 8px;
    line-height: 1;
}

.product-card .card-body .rate span {
    display: inline-block;
    width: 91px;
}

.product-card .card-body .rate span:before {
    content: "\f006\f006\f006\f006\f006";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    letter-spacing: 4px;
    color: #fabe00;
    width: attr(data-foo);
}

.product-card .card-body .rate span i {}

.product-card .card-body .action-button {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product-card .card-body .add-to-cart {
    display: inline-block;
    font-size: 14px;
    background: #e9242d;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 7px 20px;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    font-size: 16px;
    width: calc(100% - 40px);
    padding: 5px 10px;
    height: 35px;
    text-align: center;
}

.product-card .card-body .add-to-cart:hover {
    background-color: #fff;
    color: #e9242d;
    border-color: #e9242d;
}

.product-card .card-body .add-to-withlist {
    border: 1px solid #e9242d;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all .3s linear;
    display: block;
    background: #fff;
    color: #e9242d;
    margin-left: 5px;
}

.product-card .card-body .add-to-withlist:hover {
    background: #e9242d;
    color: #fff;
}

.product_hover-block:hover {
    background: #2a63b0;
}

.product_hover-block {
    left: 0;
    position: absolute;
    bottom: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    z-index: 99;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: flex-end;
    background: #000;
    border-radius: 100%;
    padding: 5px;
    transform: translate(-50%, 50%) scale(0);
}

.product_hover-block .actions {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}

.product_hover-block .actions a {
    color: #fff;
}

.product-card .box:hover .product_hover-block {
    transform: translate(-50%, 50%) scale(1);
}

button.btn-cart {
    overflow: visible;
    width: auto;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
}

.button.btn-cart {
    float: left;
    width: 66%;
    border: none;
}

.button.btn-cart>a {
    display: block;
    background: #e9242d;
    height: auto;
    line-height: 18px;
    padding: 7px 12px 3px;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    border: 1px solid #e9242d;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0 7px;
    width: 100%;
}

.button.btn-cart>a:before {
    color: #ffffff;
    content: "\f07a";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 14px;
    margin: 0 5px 0 0;
}

.button.btn-cart span {
    border: medium none;
    color: #ffffff;
    font-weight: normal;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 20px;
}

.add-to-links {
    margin: 5px 0 0;
    font-size: 12px;
}

.product_hover-block .actions .add-to-links,
.list-center-outer .add-to-links {
    float: right;
    margin: 0;
    vertical-align: middle;
    width: 34%;
}

.product_hover-block .add-to-links li:first-child,
.list-center-outer .add-to-links li:first-child {
    background: #e9242d;
    float: left;
    font-size: 0;
    height: 36px;
    vertical-align: middle;
    width: 50%;
    box-sizing: border-box;
    border-left: 1px solid #fff;
}

.add-to-links li a.quickview {
    display: block;
    height: 100%;
    width: 100%;
}

.add-to-links li a.quickview:before {
    color: #fff;
    content: "\f002";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 14px;
    line-height: 38px;
    vertical-align: top;
    text-align: center;
    width: 100%;
}

.product_hover-block .add-to-links li:first-child+li {
    background: #e9242d;
    float: left;
    font-size: 0;
    height: 36px;
    vertical-align: middle;
    width: 50%;
    box-sizing: border-box;
    border-left: 1px solid #fff;
}

.add-to-links li a.link-detail {
    line-height: 38px;
    vertical-align: top;
}

.add-to-links li a.link-detail {
    display: block;
    height: 100%;
    width: 100%;
}

.add-to-links li a.link-detail:before {
    color: #fff;
    content: "\f037";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 14px;
    line-height: 40px;
    vertical-align: top;
    text-align: center;
    width: 100%;
}

.category-slide-1 .slick-prev,
.category-slide-1 .slick-next {
    opacity: 1;
    font-size: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    margin: 0;
}

.category-slide-1 .slick-prev {
    left: -10px;
}

.category-slide-1 .slick-next {
    right: -10px;
}

.category-slide-1 .slick-prev i,
.category-slide-1 .slick-next i {
    font-size: 25px;
    color: #2a63b0;
}

.wrap-partner {
    padding: 25px 0;
}

.wrap-partner .list-item {}

.wrap-partner .list-item .item {
    padding: 10px;
    float: left;
    width: 20%;
    height: auto;
}

.wrap-partner .list-item .box {
    border: 1px solid #eee;
    padding: 10px;
}

.wrap-partner .list-item img {}

.section-5 {
    background-image: url(../images/bg-about.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0;
}

.section-5 .box-text {}

.section-5 .box-text h4 {
    margin: 0;
    color: #a3a3a3;
    font-size: 14px;
    text-transform: uppercase;
}

.section-5 .box-text h3 {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    padding: 0 0 25px;
    position: relative;
    margin-bottom: 20px;
    margin-top: 10px;
}

.section-5 .box-text h3:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 48px;
    height: 2px;
    left: 0;
    background: #ff6f00;
}

.section-5 .box-text .desc {
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #a3a3a3;
}

.pro_details{background-color: #f2f2f2;padding: 60px 0 40px 0;}

.image_product_detail{

}

.image_product_detail img{

}

.info_product_detail{

}

.info_product_detail .title{

}

.info_product_detail h1{line-height: 1.1;font-size: 40px;padding-bottom: 14px;margin: 0;font-weight: 600;}

.info_product_detail .infomation{line-height: 20px;font-size: 16px;margin-bottom: 20px;}

.info_product_detail .infomation ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.info_product_detail .infomation ul li{
    line-height: 1.3;
    margin: 10px 0;
    padding-left: 24px;
    position: relative;
    padding-bottom: 0;
    display: inline-block;
    text-indent: unset;
    font-size: 16px;
    width: 100%;
}

.info_product_detail .infomation ul li:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 12px;
    width: 14px;
    background: url(../images/check-blue.svg) no-repeat 50%;
    position: absolute;
    left: 0;
    top: 5px;
}

.info_product_detail ul{padding-top: 40px;}

.info_product_detail ul li {
    padding-bottom: 25px;
    display: block;
    margin: 0;
    line-height: 1.3;
    padding-left: 30px;
    text-indent: -26px;
    font-size: 16px;
}

.info_product_detail ul li::before {
    content: '';
    display: inline-block;
    vertical-align: baseline;
    width: 12px;
    height: 12px;
    margin-right: 14px;
    background: #f06400;
}

.info_product_detail ul li:last-child{
    padding-bottom: 0;
}

.box-buy {
    margin-bottom: 10px;
    overflow: hidden;
}

.box-buy a {
    display: inline-flex;
    height: 44px;
    align-items: center;
    line-height: 44px;
    float: left;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    padding: 0 25px;
    background-color: #a3a3a3;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.box-buy .addnow {
    background-image: linear-gradient(to right, #2a63b0, #2a63b0);
}

.box-buy a img {
    width: auto;
    margin-right: 13px;
}

.box-buy .add-to-cart {
    background-image: linear-gradient(to right, #7f7f7f, #7f7f7f);
    color: #fff;
    margin-left: 10px;
}

.icon_row{
    padding: 40px 0;
    position: relative;
    display: block;
    overflow: hidden;
}

.box_icon_row{
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(0,0,0,.2);
}

.box_icon_row .list_item{
    display: block;
}

.box_icon_row .list_item .item{
    width: 33.33333%;
    padding: 0 15px;
}

.box_icon_row .box .image{
    text-align: center;
}

.box_icon_row .box .image img{width: 40px;height: 40px;display: inline-block;}

.box_icon_row .box{
    text-align: center;
}

.box_icon_row .box .info .title{padding-top: 30px;padding-bottom: 20px;margin: 0;font-size: 17px;font-weight: 600;}

.box_icon_row .box .info .desc{font-size: 16px;}

.box-about {}

.box-about a {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 50px;
    fill: #fff;
    color: #fff;
    background-color: #ff6f00;
    padding: 0 30px 0 18px;
    display: inline-flex;
    align-items: center;
}

.box-about a:hover {
    background-color: #cc5900;
}

.box-about a svg {
    height: 23px;
    width: auto;
    margin-right: 10px;
}

.peripherals{
    padding: 30px 0;
    width: 100%;
    background-color: #f2f2f2;
}

.peripherals .c-download-list__file {
    background-color: #fff;
}

.section-6 {
    padding: 30px 0;
}

.section-6 .container>.row {
    display: flex;
    align-items: center;
}

.wrap-left {
    display: flex;
    align-items: center;
}

.wrap-left .wrap-1 {
    margin: 0;
    position: relative;
    font-size: 24px;
    color: #000;
    display: inline-flex;
    align-items: center;
    border-right: 1px solid #dbdada;
    padding: 5px 35px 10px 0;
    margin-right: 40px;
    max-width: 420px;
}

.wrap-left .wrap-1 .wrap-email {}

.wrap-left .wrap-1 .wrap-email .box {
    display: flex;
    align-items: center;
}

.wrap-left .wrap-1 .wrap-email .icon {
    margin-right: 20px;
    position: relative;
    font-size: 38px;
    color: #ff6f00;
    width: 80px;
    height: 80px;
    border: 2px solid #ff6f00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.wrap-left .wrap-1 .wrap-email h3 {
    width: calc(100% - 100px);
    font-weight: 500;
}

.wrap-left .wrap-2 {}

.wrap-left .wrap-2 .text {
    color: #a3a3a3;
    border-bottom: none;
    font-size: 15px;
    z-index: 2;
    line-height: 24px;
}

.box-form {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.box-form form {
    max-width: 400px;
    width: 100%;
}

.box-form .input-group .form-control {
    height: 50px;
    padding-left: 20px;
}

.box-form .input-group-btn>.btn {
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
}


/*css footer*/

.pt_back_to_top {
    width: 35px;
    height: 35px;
    line-height: 33px;
    display: block;
    position: fixed;
    right: 10px;
    bottom: 15px;
    font-size: 15px;
    color: #fff;
    border-radius: 6px;
    background: #44973c;
    text-align: center;
}

.pt_back_to_top i {
    line-height: inherit;
}

/*end css footer*/

.banner_quangcao{
    width: 100%;
    position: sticky;
    top: 20px;
}

.banner_quangcao .image{
    margin-bottom: 5px;
}

.banner_quangcao .image:last-child{
    margin-bottom: 0;
}

.breadcrumbs {
    position: relative;
    width: 100%;
    /* padding-top: 20px; */
    background-color: #2a63b0;
}

.breadcrumbs:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #2b2b2b; */
    z-index: 1;
}

.breadcrumbs ul {
    float: left;
    width: 100%;
    padding: 15px 0;
    /* border-bottom: 1px solid #ddd; */
    /* margin-bottom: 20px; */
}

.breadcrumbs ul>li {
    display: inline-block;
    float: left;
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: #a8a8a8;
    font-weight: 400;
}

.breadcrumbs ul>li>a {
    color: #fff;
    font-weight: 400;
}

.breadcrumbs ul>li>a:after {
    content: "\f101";
    margin: 0px 10px;
    font: normal normal normal 14px/1 FontAwesome;
}

.breadcrumbs ul>li:last-child a:last-child:after {
    content: unset;
}

.breadcrumbs ul>li span {
    display: inline-block;
    color: #fff;
}

.side-bar {
    background-color: #ffffff;
    box-shadow: 0px 0px 2px #d9dadb;
    margin: 0 0 30px 0;
}

.side-bar:last-child {
    margin-bottom: 0;
}

.title-sider-bar {
    font-size: 18px;
    margin: 0;
    color: #fff;
    font-weight: 600;
    padding: 12px 15px 12px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 26px;
    text-transform: uppercase;
    background-color: #2a63b0;
}

.list-category {}

.menu-side-bar {}

.list-category ul>li>a>img {
    /*width: 18px;
    height: 18px;
    margin-right: 16px;*/
}

.list-category ul>li>a .pt_icon_right {
    position: absolute;
    right: 0;
    top: 3px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    transition: all 0.5s;
    opacity: 0.4;
}

.list-category ul>li>a .pt_icon_right2 {
    position: absolute;
    right: 0;
    top: 2px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    transition: all 0.5s;
    opacity: 0.4;
}

.list-category ul>li>a .pt_icon_right:before {
    content: "\f067";
}

.list-category ul>li>a .pt_icon_right2:before {
    content: "\f067";
}

.list-category ul>li.nav_item.active a .pt_icon_right:before {
    content: "\f068";
}

.list-category ul>li.nav_item1.active a .pt_icon_right2:before {
    content: "\f068";
}

.list-category ul>li.active a .pt_icon_right {
    /* transform: rotate(90deg); */
}

.list-category ul>li>a {
    position: relative;
    user-select: none;
    display: block;
    height: 48px;
    line-height: 48px;
    text-decoration: none;
    clear: both;
    font-weight: 400;
    font-size: 14px;
    overflow: hidden;
    -webkit-text-overflow: ellipsis;
    -khtml-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 20px;
    /* color: #222222; */
    position: relative;
}

.list-category>ul>li>a {
    padding-left: 20px;
    font-size: 15px;
}

.list-category ul>li>a:before {
    content: "\f105";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    left: 20px;
    top: 18px;
}

.list-category ul>li>a>span {
    padding-left: 16px;
    /* border-left: 1px solid #e5e5e5; */
}

.menu-side-bar-leve-2 {
    display: none;
}

.menu-side-bar-leve-3 {
    display: none;
}

.list-category .menu-side-bar-leve-2>li>a {
    padding-left: 40px;
    line-height: 35px;
    height: 35px;
}

.list-category .menu-side-bar-leve-2>li>a:before {
    left: 30px;
    top: 11px;
}

.list-category .menu-side-bar-leve-3>li>a {
    padding-left: 70px;
    line-height: 35px;
    height: 35px;
}

.list-category .menu-side-bar-leve-3>li>a:before {
    left: 58px;
    top: 11px;
}

.list-tag {
    padding: 20px;
}

.list-tag>ul {
    /* margin-top: 20px; */
}

.list-tag>ul>li {
    display: inline-block;
}

.list-tag>ul>li>a {
    position: relative;
    display: block;
    margin: 0 10px 10px 0;
    padding: 0 20px 0 23px;
    line-height: 26px;
    height: 26px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 14px !important;
    -webkit-transition: all 0.4s;
    -khtml-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    font-weight: 500;
}

.list-tag>ul>li>a:hover {
    background-color: #e9242d;
    border-color: #e9242d;
    color: #ffffff;
}

.list-tag>ul>li>a:before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    -webkit-transition: all 0.4s;
    -khtml-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.list-trending {}

.list-trending ul {
    display: flex;
    flex-wrap: wrap;
}

.list-trending ul>li {
    font-size: 13px;
    margin-top: 0;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.list-trending ul>li>.box {
    display: flex;
    flex-wrap: wrap;
}

.list-trending ul>li>.box .xemthem {
    display: inline-block;
    padding: 5px 15px;
    background-color: #2a63b0;
    color: #fff;
    border-radius: 5px;
    margin-top: 5px;
}

.list-trending .box .icon {
    width: 75px;
    overflow: hidden;
    height: 80px;
}

.list-trending .box .icon img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.list-trending .box .icon:hover img {
    transform: scale(1.1);
}

.list-trending .box .content {
    width: calc(100% - 75px);
    padding-left: 10px;
}

.list-trending .box .content .name {
    font-size: 16px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 20px;
}

.list-trending .box .content .name a {
    /* color: inherit; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}

.list-trending .box .content .name a:hover {}

.list-trending .box .content .desc {
    line-height: 1.42857143;
    color: #333333;
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-bar-search {
    padding: 10px 20px 20px;
}

.side-bar-search input {
    /* margin-top:7px; */
    margin-right: 5px;
}

.side-bar-search label {}

.side-bar-search label a {}

.side-bar-search .checkbox {
    margin-bottom: 20px
}

.side-bar-search h4 {
    font-size: 14px;
    display: block;
    max-width: 100%;
    margin: 0;
    margin-bottom: 5px;
    font-weight: 400;
    color: #333333;
}

.box-checkbox {}

.list-checkbox {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 7px 0 16px;
    padding-left: 1px;
}

.list-checkbox>li {
    border-radius: 0;
    width: 33.33333%;
    margin-left: -1px;
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-touch-action: manipulation;
    -khtml-touch-action: manipulation;
    -moz-touch-action: manipulation;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-cursor: pointer;
    -khtml-cursor: pointer;
    -moz-cursor: pointer;
    -ms-cursor: pointer;
    cursor: pointer;
    user-select: none;
    background-image: none;
    box-sizing: border-box;
}

.list-checkbox>li input[type="checkbox"] {
    display: none;
}

.list-checkbox>li input[type="checkbox"]:checked+label {
    border-color: #f0f0f0;
    background: rgba(110, 140, 215, 0.07000000000000001);
    box-shadow: none;
}

.list-checkbox>li input[type="checkbox"]:checked+label i {
    color: #e9242d;
}

.list-checkbox>li label {
    border-color: #f0f0f0;
    /* background: rgba(110, 140, 215, 0.07000000000000001); */
    box-shadow: none;
    border-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    line-height: 1.5;
    border: 1px solid #f0f0f0;
    padding: 6px 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 400;
}

.list-checkbox>li label>i {
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 21px;
    display: block;
    padding-bottom: 8px;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.list-checkbox>li label>span {}

.box-keyword {
    margin-bottom: 15px;
}

.box-keyword input {
    line-height: 1.42857143;
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #f0f0f0;
    background-color: #ffffff;
    background-image: none;
    box-shadow: none;
    color: #333333;
    box-sizing: border-box;
    padding: 9px 10px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
    border-radius: 2px;
    -webkit-transition: all 0.3s linear 0s;
    -khtml-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none !important;
    margin: 0;
}

.box-select {
    display: flex;
    justify-content: space-between;
}

.box-select>.box-select-1,
.box-select>.box-select-2 {
    width: 48%;
    margin-bottom: 25px;
}

.box-select select {}

.box-submit {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    /* padding-left: 15px !important; */
    /* padding-right: 15px !important; */
    font-size: 15px;
    max-width: 190px;
}

.box-submit button {
    font-size: 14px;
    font-weight: 400;
    text-transform: Capitalize;
    background-color: #e9242d;
    color: #ffffff;
    outline: 0;
    outline-offset: 0;
    display: inline-block;
    width: auto;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-touch-action: manipulation;
    -khtml-touch-action: manipulation;
    -moz-touch-action: manipulation;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    margin: 0;
    text-decoration: none;
    box-shadow: none;
    padding: 0 15px;
    border: none;
    border-radius: 3px !important;
    position: relative;
    line-height: 40px;
    width: 80%;
    font-weight: 600;
}

.select2-drop.select2-drop-active {
    border: 1px solid #e5e5e5 !important;
}

.select2-drop .select2-search {
    padding: 4px;
}

.select2-search input {
    width: 100%;
    height: auto!important;
    padding: 4px 20px 4px 5px!important;
    margin: 0;
    outline: 0;
    font-family: sans-serif;
    font-size: 1em;
    border: 1px solid #ccc;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: url(../images/select2.png) 100% -22px no-repeat #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 6px 10px;
    /* height:40px; */
    display: inline-block;
}

.select2-container--default .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.template-detail {
    padding-top: 20px;
    padding-bottom: 20px;
}

.title-template-news {
    margin: 10px 0 10px 0;
    font-size: 25px;
    text-align: left;
    font-weight: 600;
}

.noidung_in {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
}

.noidung_in ul {
    list-style: disc;
    padding-left: 20px;
}

.noidung_in ul>li {
    list-style: disc;
}

.block-content-right {
    float: right;
}


/*end css link category*/

.product-detail-left-content .image {
    /* border-radius: 5px; */
    border: 1px solid #dedede;
    margin-bottom: 5px;
}

.product-detail-left-content .image {
    position: relative;
}

.product-detail-left-content .sale-1 {
    right: 0;
    left: unset;
}

.product-detail-left-content .column {
    /* float: left; */
    /* width: 25%; */
    padding: 5px;
}

.product-detail-left-content .column img {
    opacity: 0.8;
    cursor: pointer;
    height: 50px;
    object-fit: cover;
    padding: 5px;
    border: 1px solid #dedede;
}

.product-detail-left-content .column img:hover {
    opacity: 1;
}

.list-image-small {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
}

.list-image-small:after {
    content: "";
    display: table;
    clear: both;
}

.list-image-small .slick-prev,
.list-image-small .slick-next {
    opacity: 1;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    margin: 0;
}

.list-image-small .slick-prev {
    left: -30px;
}

.list-image-small .slick-next {
    right: -30px;
}

.list-image-small .slick-prev i,
.list-image-small .slick-next i {
    font-size: 18px;
    color: #2a63b0;
}

.title-product-detail {
    font-size: 25px;
    margin: 0;
    margin-bottom: 25px;
}

.wrap-top {
    background-color: #fff;
    padding: 30px 20px 10px;
}

.product-information {}

.name-product {
    color: rgb(51, 51, 51);
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 6px;
}

.code-product {
    color: rgb(120, 120, 120);
    margin-bottom: 15px;
}

.detail-info-bottom {
    padding: 20px 0;
    border: 2px solid #ddd;
}

.detail-info-bottom ul li {
    width: 25%;
}

.detail-info {
    margin-bottom: 15px;
}

.detail-info-top {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px
}

.detail-info>ul {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-info>ul>li {
    padding: 10px;
}

.detail-info-top>ul>li {
    width: 33.3333%;
}

.detail-info>ul>li .icon {
    margin-bottom: 10px;
    height: 40px;
}

.detail-info>ul>li .icon img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.detail-info>ul>li .icon i {
    font-size: 40px;
}

.detail-info>ul>li .desc {}

.box-price-detail {
    /* display: flex; */
    margin-bottom: 20px;
    background-color: #2a63b0;
    padding: 10px 15px;
}

.box-price-detail .new-price {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    line-height: 40px;
    display: inline-block;
    letter-spacing: 0px;
}

.gioi_thieu ul {
    list-style: disc;
    padding-left: 15px;
}

.gioi_thieu ul>li {
    list-style: disc;
}

.vat {
    display: inline-block;
}

.box-price-detail .desc-price {
    margin-top: 5px;
}

.box-price-detail .desc-price .txt-color {
    color: #b88e40;
}

.box-price-detail .old-price {
    color: #c2c1bf;
    font-size: 20px;
    margin-left: 15px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 0px;
    text-decoration: line-through;
    display: inline-block;
    vertical-align: bottom;
}

.product-detail-right-content {}

.wrap-uu-dai {
    display: flex;
    /* padding: 20px 0; */
    /* border: 2px solid #ddd; */
}

.item-uu-dai {
    padding: 0 5px;
    width: 33.333%;
}

.item-uu-dai .box {
    text-align: center;
}

.item-uu-dai .icon {
    text-align: center;
}

.item-uu-dai .icon img {
    width: 20px;
}

.item-uu-dai h3 {
    margin: 0;
    margin-top: 10px;
    font-size: 12px;
}

.item-uu-dai h3 span {
    display: inline-block;
    margin: 3px 0;
    font-size: 12px;
    font-weight: 700;
}

.wrap-detail-1 {
    margin-bottom: 30px;
    padding: 10px 0;
    border: 2px solid #ddd;
}

.title-product-brand {
    font-size: 15px;
    font-weight: 500;
    padding: 0px 10px 10px 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wrap-product-brand {}

.item-product-brand {}

.item-product-brand .box {
    display: flex;
    align-items: center;
}

.item-product-brand .image {
    width: 75px;
}

.item-product-brand .image img {}

.item-product-brand .content {
    width: calc(100% - 75px);
    padding-left: 15px;
}

.item-product-brand .content h3 {
    margin: 0;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: normal;
}

.item-product-brand .content h3 a {}

.item-product-brand .box-price {}

.item-product-brand .new-price {
    font-size: 15px;
    color: #f79a00;
    white-space: nowrap;
}

.item-product-brand .old-price {
    color: #1f2022;
    font-size: 15px;
    margin-left: 5px;
    text-decoration: line-through;
}

.giaonhanh {
    background-color: rgba(0, 153, 0, 0.05);
    padding: 8px 12px;
    -webkit-box-align: center;
    align-items: center;
    margin: 12px 0px -8px;
    border-radius: 4px;
    color: #f79a00;
}

.giaonhanh img {
    height: 22px;
    margin-right: 2px;
    vertical-align: middle;
}

.giaonhanh img {
    height: 22px;
    margin-right: 2px;
    vertical-align: middle;
    width: auto;
}

#Lu__tgnhanhang {
    display: inline;
}

.product-action {
    margin-top: 10px;
    border-top: 1px solid #ddd;
}

.product-action>button:not(:last-child),
.product-action .list-store:not(:last-child) {
    margin-right: 10px;
}

.product-action .list-store,
.product-action .list-store button {
    width: 100%;
    text-align: center;
}

.product-action>button,
.product-action .list-store {
    display: inline-block;
    vertical-align: middle;
    margin-top: 15px;
    position: relative;
    width: 110px;
}

.product-action .list-store:hover .dropdown-menu {
    display: block;
}

.product-action button.btn-store {
    font-size: 13px;
    line-height: 14px;
    background: #2a63b0;
    border-color: #2a63b0;
    color: rgb(74, 74, 74);
    padding: 12px 10px 10px 30px;
    font-weight: 400;
    position: relative;
    text-align: left;
}

.product-action .list-store .dropdown-menu {
    padding: 10px;
    background: #fff;
    color: #464646;
    font-size: 12px;
    width: 280px;
}

.product-action button:not(.no-icon):before {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    width: 16px;
    height: 20px;
    left: 8px;
    top: 10px;
    content: "";
    position: absolute;
}

.product-action button.btn-store:before {
    background-image: url(../images/icon_marker_white.svg);
    left: 6px;
    top: 14px;
}

.product-action button.btn-store span {
    font-weight: 600;
    color: rgb(74, 74, 74);
}

.product-action .stores li.available .available {
    color: #ce9614;
}

.product-action button {
    border-radius: 2px;
    background: #f2f2f2;
    border: 1px solid #ddd;
    color: #464646;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    text-align: left;
    position: relative;
}

.product-action .list-store .dropdown-menu {
    padding: 10px;
    background: #fff;
    color: #464646;
    font-size: 12px;
    width: 280px;
    /* max-width: 100%; */
    top: calc(100% - 14px);
}

.product-action .stores li.available .out-of-stock,
.product-action .stores li:not(.available) .available {
    display: none;
}

.product-action button.btn-buynow,
.product-action button.btn-add-cart {
    padding: 15px 15px 15px 15px;
    border-color: #e9242d;
    color: #fff;
    min-width: 11.25rem;
    background: #e9242d;
    font-size: 14px;
    font-weight: 400;
}

.product-action button.btn-add-cart {
    background: rgba(255, 87, 34, .1);
    border: 1px solid #e9242d;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .03);
    color: #e9242d;
    position: relative;
    padding: 15px 5px 15px 30px;
}

.product-action button.btn-add-cart:before {
    background-image: url(../images/cart-shopee.webp);
    width: 22px;
    height: 22px;
    left: 10px;
    top: 12px;
}

.product-action button.btn-buynow:before {
    background-image: url(../images/cart-shopee.png);
    width: 22px;
    height: 22px;
    left: 28px;
    top: 12px;
}

.product-action.out-of-stock .list-store,
.product-action.out-of-stock .btn-add-cart,
.product-action.out-of-stock .btn-buynow,
.product-action:not(.out-of-stock) .btn-out-of-stock,
.product-action:not(.out-of-stock) .btn-subscribe {
    display: none;
}

.list-btn-action.clearfix {
    display: flex !important;
    flex-wrap: wrap;
}

.product-action .list-btn-action {
    margin-top: 15px;
    width: calc(100% - 120px);
}

.product-action .list-btn-action a:hover {
    color: inherit;
}

.product-action:not(.out-of-stock) .list-btn-action button {
    width: calc(100% / 2 - 5px);
    text-align: center;
    margin-bottom: 15px;
}

.product-action .list-btn-action button:first-child {
    margin-right: 14px;
}

.wrap-tab-product-detail {
    margin-top: 40px;
}

.wrap-tab-product-detail .tab-content {
    padding: 25px 30px;
    background-color: #fff;
}

.wrap-tab-product-detail .tab-content .tab-text ul {
    list-style: disc;
    padding-left: 20px;
}

.wrap-tab-product-detail .tab-content .tab-text ul>li {
    list-style: disc;
}

.product-relate {
    margin-top: 30px;
    padding: 0;
    position: relative;
}

.product-relate .list-product-card {
    background-color: #fff;
    padding: 30px 20px 0;
}

.product-relate .list-product-card>.row{
    display: block;
}

.product-relate .product-card .box {
    box-shadow: none;
}

.product-relate .product-card .card-top .list-status>li>span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 10px;
}

.title-1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    padding: 0 10px;
}

.product-relate .slick-prev,
.product-relate .slick-next {
    opacity: 1;
    font-size: 25px;
    top: 32%;
    transform: translateY(-50%);
    z-index: 3;
    margin: 0;
}

.product-relate .slick-prev {
    left: -25px;
}

.product-relate .slick-next {
    right: -25px;
}

.product-relate .slick-prev i,
.product-relate .slick-next i {
    font-size: 25px;
    color: #2a63b0;
}

.product-relate .product-card .card-top .list-quick {
    /* left: 0; */
    /* right: unset; */
    /* width: 100%; */
    /* background-color: rgba(0, 0, 0, 0.3); */
    /* padding: 10px; */
}

.product-relate .product-card .card-top {
    overflow: hidden;
}


/*end css sp chi tiet*/

.list-news {}

.list-news .news-item {
    border-bottom: 1px solid #ddd;
    /* background: #fff; */
    padding: 0;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.list-news .news-item .box {}

.list-news .news-item .author {
    display: flex;
    line-height: 26px;
    margin-bottom: 20px;
    color: #88898b;
}

.list-news .news-item .author .name {
    margin-right: 20px;
}

.list-news .news-item .author .date {}

.list-news .news-item .author span {
    color: #e9242d;
}

.list-news .news-item .image {
    margin-bottom: 30px;
    overflow: hidden;
}

.list-news .news-item .image:hover img {
    transform: scale(1.1);
}

.list-news .news-item .image img {
    transition: all 0.3s;
}

.list-news .news-item .content {}

.list-news .news-item .content .name-news {
    margin: 0;
    margin-bottom: 15px;
}

.list-news .news-item .content .name-news a {
    font-size: 22px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
}

.list-news .news-item .content .desc {
    color: #4a4d4f;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.list-news .news-item .article-social {
    display: flex;
}

.list-news .news-item .article-social>li {}

.list-news .news-item .article-social>li+li {
    margin-left: 10px;
}

.list-news .news-item .article-social>li>a {}

.list-news .news-item .article-social>li>a>i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    transition: all .3s linear;
}

.article-social i.fa.fa-twitter {
    background: #1fb8ff;
}

.article-social i.fa.fa-pinterest {
    background: #da4545;
}

.article-social i.fa.fa-google-plus {
    background: #ffba00;
}

.article-social i.fa.fa-linkedin {
    background: #2c2b2b;
}

.article-social i.fa.fa-reddit {
    background: #ff9292;
}


/*end css news*/


/*css news-detail*/

.d-flex{
    display: flex;
    flex-wrap: wrap;
}

.before-after-unset:before{
    content: unset;
}

.before-after-unset:after{
    content: unset;
}

.fix-sidebar{
    position: relative;
    top: 0;
}

.blog-news-detail{
    width: 100%;
    padding: 30px 0;
}

.news-detail {
    padding: 0px 0 20px;
    text-align: justify;
}

.news-detail .title-detail{
    font-size: 22px;
    font-weight: 700;
}

.news-detail ul {
    list-style: disc;
    padding-left: 16px;
}

.news-detail ul>li {
    list-style: disc;
}

.news-detail>.image {}

.news-detail .news_note {
    margin-top: 15px;
    margin-bottom: 15px;
}

.news-detail>.image>img {
    max-width: 100%;
    height: auto;
}

.news-detail .author {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-detail .author .date {
    display: flex;
    align-items: center;
}

.news-detail .author .day {
    font-size: 17px;
    line-height: 1.42857143;
}

.news-detail .author .year {
    text-transform: none;
    font-size: 13px;
    border: 1px solid #ccc;
    padding: 0px 10px;
    width: 46px;
    height: 50px;
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    line-height: 1.42857143;
    padding: 6px 10px;
    width: auto;
    height: 30px;
    margin-left: 0px;
    /* margin-top: 14px; */
}

.news-detail .author .name-author {
    line-height: 50px;
    color: #999;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.news-detail .news-title {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    font-weight: 500;
    margin-bottom: 20px;
}

.news-detail .content-news {
    font-size: 15px;
    color: #535252;
}

.news-detail .content-news h2{font-size: 20px;}

.news-detail .content-news h3{
    font-size: 17px;
}

.news-detail .content-news p{
    margin-bottom: 16px;
}

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

.news-detail .content-news ul,
.news-detail .content-news ul>li {
    list-style: disc;
}

.news-detail .content-news ul {
    padding-left: 20px;
}

.share-with {
    width: 100%;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

.social-sharing a {
    display: inline-block;
    border-radius: 2px;
    text-decoration: none;
    font-weight: normal;
    background-color: #fff;
    border: 1px solid #ececec;
    color: #333;
    height: 30px;
    line-height: 30px;
    margin: 0 5px 10px 0;
}

.social-sharing span {
    display: inline-block;
    vertical-align: top;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}

.social-sharing.is-clean .icon-facebook {
    color: #3b5998;
}

.social-sharing .icon {
    padding: 0 5px 0 10px;
}

.social-sharing.is-clean a .share-title {
    font-weight: normal;
}

.share-count {
    position: relative;
    background-color: #fff;
    padding: 0 8px;
    margin-right: -2px;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    border-radius: 0 2px 2px 0;
    border: 1px solid #ececec;
    opacity: 1;
    top: -1px;
}

.social-sharing.is-clean .icon-twitter {
    color: #00aced;
}

.social-sharing.is-clean .icon-google-plus {
    color: #dd4b39;
}

.list_tab {
    margin-bottom: 15px;
    margin-top: 20px;
    display: none;
}

.list_tab li {
    display: inline-block;
}

.list_tab a {
    display: inline-block;
}

.list_tab li:first-child {
    display: inline-block;
    /* float: left; */
    height: 36px;
    font: normal 18px/36px 'Roboto-Bold', sans-serif;
    /* background: url(../images/ico-tag.png) left 6px no-repeat; */
    /* padding-left: 35px; */
    color: #000;
    font-weight: 700;
    margin-right: 10px;
}

.list_tab a {
    height: 36px;
    line-height: 36px;
    /* background-color: #ebebeb; */
    /* float: left; */
    padding: 0 10px;
    border-radius: 5px;
    margin: 0 5px 5px 0;
    background: #ccc;
    border-color: #ccc;
    color: #000;
}

.wrap-relate {
    background-color: #f9f9f9;
    box-shadow: unset;
}

.news-related-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 7px 15px;
    background-color: #2a63b0;
}

.list-news-related {
    padding: 15px;
    background-color: #eee;
}

.news-related-item {
    margin-bottom: 25px;
}

.list-news-related ul{

}

.list-news-related li{

margin-bottom: 5px;
}

.list-news-related li a{

font-size: 15px;

font-weight: 500;
}

.list-news-related li a:hover{

color: #2a63b0;
}

.news-related-item .box {
    display: flex;
    flex-wrap: wrap;
}

.news-related-item .image {
    width: 50%;
}

.news-related-item .content {
    width: 50%;
    padding-left: 25px;
}

.news-related-item .content .date {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 10px;
}

.news-related-item .content .day {
    font-size: 40px;
}

.news-related-item .content .year {
    text-transform: uppercase;
    font-size: 13px;
    border: 1px solid #ccc;
    padding: 8px;
    width: 46px;
    height: 50px;
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    line-height: 1.42857143;
}

.news-related-item .content .name {
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    padding-right: 25px;
    letter-spacing: 0.05em;
}

.news-related-item .content .loadmore {
    display: inline-block;
    text-transform: uppercase;
    margin-top: 15px;
    position: relative;
    letter-spacing: 0.05em;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}


/*end css news-detail*/

#pagination {
    text-align: center;
    margin: 10px 0 !important;
    float: left;
    width: 100%;
}

.pagination {
    display: inline-block;
    margin: 15px 0;
}

.pagination li span {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    border: 1px solid #034ea2;
    background-color: #fff;
    color: #034ea2;
    font-size: 14px;
    padding: 0 12px;
}

.pagination li a{
    width: 30px;
    padding: 0 12px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    font-size: 14px;
}

.pagination li.active a {
    border: 1px solid #2a63b0;
    background-color: #2a63b0;
    color: #fff;
}


/*css template contact */

.wrap-template-contact {
    padding-top: 30px;
}

.contact-form {
    margin-bottom: 20px;
}

.contact-form .form {}

.contact-form .form p {
    margin: 0 0 10px;
    font-size: 15px;
}

.contact-form .form input {
    font-size: 14px;
    color: #333333;
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 0px;
    height: 35px;
    padding: 0 15px;
    margin-bottom: 15px;
    outline: 0;
}

.contact-form .form textarea {
    font-size: 14px;
    color: #333333;
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 15px;
    outline: 0;
}

.contact-form .form button {
    font-size: 14px;
    color: #fff;
    background: #2a63b0;
    border: none;
    height: 35px;
    width: 150px;
    border-radius: 0px;
    cursor: pointer;
    outline: 0;
}

.contact-infor {
    margin-bottom: 20px;
}

.contact-infor .infor {
    margin-bottom: 20px !important;
    line-height: 20px;
}

.contact-infor .infor .address {}

.contact-infor .infor .address .title {
    padding-bottom: 0;
}

.contact-infor .infor .address .pt_list_addres {
    margin-bottom: 15px;
}

.contact-infor .infor .address .pt_list_addres>li {
    line-height: 25px;
}

.contact-infor .infor .map {}

.contact-infor .infor .map iframe {
    height: 220px;
    width: 100%;
}
/*end css template contact*/

.download_wrap{
    width: 100%;
    padding: 0;
    background-color: #f2f2f2;
}

.download_wrap .about_download{padding: 50px 0 30px;}

.about_download .title{text-align: center;color: #333333;font-weight: 700;font-size: 30px;margin-bottom: 30px;}

.about_download .desc{
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
}

.story-preview{
    background-color: #d4d4d4;
    padding: 40px 0;
}

.story-preview .story-preview-header {
    text-align: left;
}

.story-preview .story-preview-header h2 {
    font-size: 30px;
    padding-bottom: 30px;
    margin: 0;
    font-weight: 700;
}

.story-preview .story-preview-header .dec {
    padding-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
}

.story-preview .content_modal{
    width: 100%;
    display: none;
}

.story-preview .content_modal .item{
    width: 100%;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.story-preview .content_modal .item.active{
    display: -ms-flexbox;
    display: flex;
}

.story-preview .content_modal .mal_close{
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    -ms-flex-order: 3;
    order: 3;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

.story-preview .mal_close .close-button{
    width: 50px;
    height: 50px;
    padding: 0;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    background: #0a9bcd;
    position: relative;
}

.story-preview .mal_close .close-button-image{
    position: absolute;
    display: flex;
    top: 14px;
    left: 14px;
    width: 21px;
    height: 21px;
}

.story-preview .mal_close .close-button-image svg{
    fill: #fff;
}

.story-preview .content_modal .mal_content{
    -ms-flex-order: 1;
    order: 1;
        -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.story-preview .content_modal .mal_content .mal_title{
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
}

.story-preview .content_modal .mal_content .mal_desc{
    font-size: 16px;
    line-height: 24px;
}

.story-preview .content_modal .mal_image{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    order: 2;
    padding: 0 15px;
}

.story-preview .content_modal .mal_image .image{

}

.story-preview .content_modal .mal_image .image img{width: auto;}

.download_sp{
    width: 100%;
    padding: 0 0 30px;
}

.download_sp .content{
    background-color: #d7d7d7;
    padding: 30px 15px;
    display: flex;
}

.download_sp .box_left{
    width: 50%;
    padding: 0 15px;
    float: left;
}

.download_sp .box_right{
    width: 50%;
    padding: 0 15px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download_sp .list_sp_download{max-height: 290px;background-color: #fff;overflow-y: auto;padding: 20px 30px 20px 35px;}

.download_sp .list_sp_download ul{

}

.download_sp .list_sp_download li{margin-bottom: 5px;}

.download_sp .list_sp_download li a{font-size: 16px;font-weight: 700;}

.download_sp .list_sp_download li a:hover{
    text-decoration: underline;
    color: #000;
}

.download_sp .slide_step_download{width: 100%;}

.download_sp .slide_step_download .image{

}

.download_sp .slide_step_download .image img{
    width: auto;
    margin: auto;
}

.sp_download_detail{

}

.sp_download_detail .image{background-color: #d4d4d4;}

.sp_download_detail .image img{

}

.sp_download_detail .box_info{

}

.sp_download_detail .box_info h2{font-size: 32px;margin: 0 0 20px;font-weight: 600;line-height: normal;}

.sp_download_detail .box_info .product_khac{width: 100%;margin-bottom: 20px;}

.sp_download_detail .box_info .product_khac a{color: #0a9bcd;text-decoration: underline;font-weight: 800;}

.sp_download_detail .select_opera_system{margin-bottom: 20px;}

.sp_download_detail .select_opera_system label{
    font-size: 16px;
    font-weight: 600;
}

.sp_download_detail .select_opera_system select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px 30px 5px 30px;
    border: none;
    background: url(../images/select_arw.png) right 50% no-repeat;
    background-color: #d4d4d4;
    background-size: contain;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    cursor: pointer;
}

.taixuong{padding: 50px 0 30px;width: 100%;background-color: #fff;}

.taixuong h2{font-size: 36px;font-weight: 600;line-height: normal;margin: 0 0 40px;text-align: center;}

.taixuong .box_tab_pro .nav-pills{margin-bottom: 31px;}

.box_tab_download{
    padding: 30px;
}

.box_tab_download .please{
    text-align: left;
    line-height: normal;
    padding-top: 10px;
    font-weight: 600;
}

.dl-table > .dl-table-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 14px;
}

.dl-table > .dl-table-col:nth-child(odd) {
    background-color: #f3f3f3;
}

.dl-table > .dl-table-col:nth-child(even) {
    background-color: #fff;
}

.dl-table > .dl-table-col.title {
    background-color: #d0d0d0;
    font-weight: 700;
}

.dl-table > .dl-table-col > div {
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dl-table > .dl-table-col.title > div {
    padding: 10px 0 10px 20px;
    display: block;
    text-align: left;
}

.dl-table > .dl-table-col > div.name {
    width: 40%;
    position: relative;
}

.dl-table > .dl-table-col > div.name > span.comment {
    display: none;
    position: absolute;
    left: 20px;
    bottom: calc( 100% + 2px );
    background-color: #0a9bcd;
    color: #fff;
    padding: 2px 5px;
    width: 80%;
}

.dl-table > .dl-table-col > div.version {
    width: 15%;
    justify-content: left;
}

.dl-table > .dl-table-col > div.date {
    width: 15%;
    justify-content: left;
}

.dl-table > .dl-table-col > div.size {
    width: 15%;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.dl-table > .dl-table-col > div.dl {
    position: relative;
    width: 15%;
    justify-content: left;
}

.dispN {
    display: none !important;
}

.dl-table > .dl-table-col > div.dl > p.info > span.info {
    display: none;
    position: absolute;
    right: 0;
    bottom: calc( 100% + 5px );
    background-color: #0a9bcd;
    color: #fff;
    padding: 2px 5px;
    width: 150%;
    z-index: 1000;
}

.dl-table > .dl-table-col > div.dl > p.link {
    margin-left: 20px;
}

p.link > a.modal {
    position: relative;
    z-index: 1;
    display: block;
    width: 33px;
    height: 33px;
    background-color: #0a9bcd;
    overflow: hidden;
}

p.link > a.modal::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -10%;
    left: 100%;
    height: 120%;
    width: 200%;
    opacity: .15;
    -webkit-transform: skew(
-45deg) translateX(25px);
    transform: skew(
-45deg) translateX(25px);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 1s;
    transition: all 1s;
    background: #000;
}

p.link > a.modal:focus::before, p.link > a.modal:hover::before {
    -webkit-animation-name: button-animate-hover;
    animation-name: button-animate-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.list_story{width: 100%;}

.list_story .item{width: 33.33333%;padding: 0 15px;float: left;}

.list_story .box{

}

.list_story .box .image{
    position: relative;
}

.list_story .box .image img{

}

.list_story .c-card__button{
    color: #fff;
}

.eye-button-image {
    position: absolute;
    display: flex;
    top: 18px;
    left: 18px;
    width: 28px;
    height: 28px;
}

.list_story .info{padding-top: 20px;width: 100%;}

.list_story .info h3{
    margin: 0 0 10px;
    font-size: 18px;
    padding-bottom: 20px;
    font-weight: 700;
    line-height: normal;
}

.list_story .info .desc{
    font-size: 16px;
    line-height: 24px;
}

.wrap-video-home{
    height: calc(100vh - 170px);
    position: relative;
    overflow: hidden;
}
.wrap-video-home .box-video{
    /* position: relative; */
    height: 100%;
    width: 100%;
    /* overflow: hidden; */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* z-index: -1; */
}
.wrap-video-home .box-video video{
    /* width: 100%; */
    /* height: 100%; */
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
}
.icon-scroll {
    position: absolute;
    top: 95%;
    left: 50%;
    width: 1em;
    height: 3.125em;
    transform: translateX(-50%) scale(2);
    z-index: 99999;
}
.icon-scroll .mouse {
    height: 17px;
    width: 10px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 2em;
}
.icon-scroll .wheel {
    position: relative;
    display: block;
    height: 2px;
    width: 2px;
    margin: 0.1875em auto 0;
    background: rgba(255,255,255,.8);
    animation: mouse-wheel 1.2s ease infinite;
    border-radius: 50%;
}

@keyframes mouse-wheel {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(.375em);
	}
}

@keyframes mouse-scroll {
	0%   { opacity: 0; }
	50%  { opacity: .5; }
	100% { opacity: 1; }
}


@media (min-width: 1250px) {
    .container {
        /* width: 1130px; */
    }
}

@media (min-width:1200px) {
    .product-action .list-btn-action button {
        float: left;
    }
    .product-action .list-btn-action button:nth-of-type(2n+1) {
        margin-right: 9px;
    }
    .product-action {
        display: flex;
    }

    .l-pho-table {
        display: grid;
    }

    .l-pho-table__header-row {
        display: grid;
        grid-template-columns: repeat(3,1fr) repeat(2,1.5fr);
        position: relative;
        top: unset;
    }

    .l-pho-table__header-item {
        display: grid;
        background-color: #fff;
        padding: 15px 20px;
        font-weight: 700;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .l-pho-table__item {
        display: grid;
        grid-template-columns: 1fr 5fr;
        grid-column-gap: 20px;
    }

    .l-pho-table__item-features-list {
        display: grid;
        grid-template-columns: repeat(2,1fr) repeat(2,1.5fr);
        grid-column-gap: 20px;
    }

    .l-pho-table__item-feature {
        display: inline-block;
    }

    .l-pho-table__feature-label {
        display: none;
    }

    .l-pho-table__feature-value {
        height: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding: 0;
    }

    .l-pho-table__item-feature:last-of-type {
        padding-right: 20px;
    }

    .l-pho-table__placeholder {
        margin-top: 1em;
    }
}

@media (max-width:1280px){
    .section-4 .cate-arrows-1 .slick-prev{
        left: -16px;
    }

    .section-4 .cate-arrows-1 .slick-next{
        right: -16px;
    }
}

@media (max-width:1199px) {
    .home-top-block .list-item {}
    .wrap-search .box-search>h2 {
        font-size: 45px;
    }
    .product-action .list-store,
    .product-action .list-store button {
        width: 100%;
        text-align: center;
    }
    .product-action:not(.out-of-stock) .list-btn-action button {
        width: calc(100% / 2 - 7px);
        text-align: center;
        margin-bottom: 15px;
    }
    .product-action .list-btn-action button:first-child {
        margin-right: 14px;
    }
    .product-action .list-btn-action {
        width: 100%;
    }

    .content-box:nth-child(1) {
        width: 34%;
    }

    .content-box:nth-child(2) {
        width: 21%;
    }

    .content-box:nth-child(3) {
        width: 24%;
    }

    .content-box:nth-child(4) {
        width: 21%;
    }

    .wrap_video .bground{
        height: 400px;
        width: 100%;
        position: relative;
        top: unset;
        left: unset;
    }

    .wrap_video{
        padding: 15px 0;
        min-height: unset;
    }

    .wrap_video .info {
        width: 100%;
        height: auto;
        padding: 50px 55px;
        float: left;
        margin-top: 15px;
    }
}

@media (min-width: 0px) and (max-width: 1199px){
    .l-pho-table__item-feature:nth-of-type(odd) {
        background-color: #fff;
    }

    .l-pho-table__item-feature {
        display: grid;
        grid-template-columns: 40% 60%;
    }
}

@media(min-width: 992px){
    .l-tabbed-content__content-section {
        margin-top: 0;
    }

    .l-tabbed-content__image-container {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        width: 40%;
        text-align: left;
    }

    .l-tabbed-content__list-container {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        width: 60%;
        padding-left: 30px;
    }

    .l-tabbed-content__content-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
    }

    .l-tabbed-content__content-section>.l-tabbed-content__content-item {
        -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
        width: 48%;
    }
}

@media( max-width: 991px){
    .content-box:nth-child(1) {
        width: 50%;
    }

    .list-compare .col-compare{
        width: 50%;
    }

    .content-box:nth-child(2) {
        width: 50%;
    }

    .content-box:nth-child(3) {
        width: 50%;
    }

    .content-box:nth-child(4) {
        width: 50%;
    }

    .image_product_detail {
        margin-bottom: 20px;
    }

    .content-box:not(:last-child){
        margin-bottom: 25px;
    }

    .pro_details {
        padding: 30px 0 30px 0;
    }

    .footer__other .title{
        padding-bottom: 8px;
    }

    .footer-layer .title{
        padding-bottom: 8px;
    }

    .main_specifications{
        padding: 30px 0;
    }

    .box_specifications{
        margin-top: 25px;
    }

    .box_specifications .nav-pills{
        margin-bottom: 20px;
    }

    .l-tabbed-content__image-container {
        margin-bottom: 20px;
    }

    .l-tabbed-content__content-item{
        margin-bottom: 20px;
    }

    .options_and_consumables{
        padding: 30px 0;
    }

    .download_sp .content{
        flex-wrap: wrap;
    }

    .download_sp .box_left{
        width: 100%;
        margin-bottom: 30px;
    }

    .download_sp .box_right{
        width: 100%;
    }

    .sp_download_detail .image{
        margin-bottom: 20px;
    }

    .story-preview .content_modal .mal_content {
        -ms-flex-order: 1;
        order: 1;
        -ms-flex: 0 0 39%;
        flex: 0 0 39%;
        max-width: 39%;
    }

    .story-preview .content_modal .mal_image {
        -ms-flex-order: 2;
        order: 2;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        max-width: 48%;
    }

    .story-preview .content_modal .mal_close {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 20px;
        -ms-flex: 0 0 13%;
        flex: 0 0 13%;
        max-width: 13%;
        -ms-flex-order: 3;
        order: 3;
    }
}

@media (min-width:768px){
    .c-download-list__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .l-search-results__list-item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-left: 0;
    }

    .c-download-list__item:first-of-type {
        margin-top: 0;
    }

    .c-download-list__item .c-download-list__file {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px 30px;
    }

    .c-download-list__item .c-download-list__file .c-download-list__name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 2;
        -ms-flex-positive: 2;
        flex-grow: 2;
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        margin: 0;
        line-height: 20px;
    }

    .c-download-list__item .c-download-list__file .c-download-list__name--with-details {
        -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    }

    .c-download-list__item .c-download-list__file .c-download-list__details {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin: 0 60px 0 30px;
        line-height: 1rem;
    }

    .c-download-list__item .c-download-list__file .c-download-list__details--checkbox {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: -15px 60px;
    }

    .c-download-list__item .c-download-list__file .c-download-list__button {
        top: 0;
        bottom: auto;
        width: 60px;
        height: 60px;
        line-height: 60px;
        color: #fff;
    }

    .l-tabbed-content__content-section {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .l-pho-table__item-feature {
        grid-template-columns: 25% 75%;
    }
}

@media (max-width:767px) {
    .store-item {
        width: 33.333%;
    }
    .list-tab-link ul>li {
        width: 33.333%;
    }

    .story-preview .content_modal .mal_content {
        -ms-flex-order: 3;
        order: 3;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .story-preview .content_modal .mal_image {
        -ms-flex-order: 2;
        order: 2;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        display: none;
    }

    .story-preview .content_modal .mal_close {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 20px;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -ms-flex-order: 1;
        order: 1;
    }

    .box_specifications .nav-pills>li+li {
        margin-left: 20px;
    }

    .box_specifications .nav-pills>li>a{
        font-size: 15px;
    }

    .main_specifications .title{
        font-size: 24px;
    }

    .box_consumables {
        margin-top: 25px;
    }

    .box_consumables .nav-pills>li>a{
        font-size: 15px;
    }

    .box_consumables .nav-pills>li+li{
        margin-left: 20px;
    }

    .options_and_consumables .title{
        font-size: 24px;
    }

    .box_specifications .nav-pills>li>a{
        border-bottom: 3px solid transparent;
    }

    .box_specifications .nav-pills>li.active>a, .box_specifications .nav-pills>li.active>a:focus, .box_specifications .nav-pills>li.active>a:hover{
        border-bottom: 3px solid #2a63b0;
    }

    .tab-category-1 .nav-tabs>li:after {
        display: none;
    }
    .tab-category-1 .nav-tabs>li+li:before {
        display: none;
    }
    .tab-category-1 .nav-tabs>li {
        margin-right: 5px;
        font-size: 13px;
    }
    .tab-category-1 .nav-tabs>li>a {
        padding-left: 10px;
        padding-right: 10px;
    }
    .tab-category-1 .nav-tabs {
        width: 100%;
    }
    .title-1 {
        font-size: 25px;
    }

    .item-two {
        font-size: 34px;
        line-height: 34px;
    }

    .wrap_techno .bground{
        height: 400px;
        width: 100%;
        position: unset;
    }

    .wrap_techno .info{
        width: 100%;
        height: auto;
        padding: 50px 55px;
        float: left;
        margin: 15px 0;
    }

    .wrap_techno{
        padding: 0;
        min-height: unset;
    }

    .wrap_tuvan .bground{
        height: 400px;
        width: 100%;
        position: unset;
    }

    .wrap_tuvan .info{
        width: 100%;
        height: auto;
        padding: 50px 55px;
        float: left;
        margin: 15px 0;
    }

    .wrap_tuvan{
        padding: 0;
        min-height: unset;
    }

    .list_connect .item .box{
        width: 120px;
        height: 40px;
    }

    .list_connect .item{
        margin-right: 10px;
    }

    .box_tab_pro .nav-pills>li+li{
        margin-left: 18px;
    }

    .box_tab_pro .nav-pills{
        margin-bottom: 18px;
    }

    .box_tab_pro .nav-pills>li>a{
        font-size: 15px;
        border-bottom: 3px solid transparent;
    }

    .box_tab_pro .nav-pills>li.active>a, .box_tab_pro .nav-pills>li.active>a:focus, .box_tab_pro .nav-pills>li.active>a:hover{
        border-bottom: 3px solid #2a63b0;
    }

    .box_tab_pro .tab-content h3{
        font-size: 24px;
    }

    .box_tab_pro .tab-content .content {
        padding-bottom: 40px;
        font-size: 18px;
        line-height: 26px;
    }

    .page_product{
        padding: 30px 0;
    }

    .c-download-list__item .c-download-list__file .c-download-list__name{
        line-height: 20px;
        margin-bottom: 0;
    }

    .c-download-list__item .c-download-list__file{
        min-height: 50px;
    }

    .box_tab_download {
        padding: 0;
    }

    .spdispB {
        display: block !important;
    }

    .dl-table > .dl-table-col {
        font-size: 12px;
    }

    .dl-table > .dl-table-col > div {
        padding: 5px 10px;
    }

    .dl-table > .dl-table-col.title > div {
        padding: 10px 0 10px 10px;
    }

    .dl-table > .dl-table-col > div.name {
        width: 50%;
    }

    .dl-table > .dl-table-col > div.name > span {
        padding-right: 15%;
    }

    .dl-table > .dl-table-col > div.version {
        display: none;
    }

    .dl-table > .dl-table-col > div.date {
        display: none;
    }

    .dl-table > .dl-table-col > div.size {
        justify-content: center;
        width: 25%;
    }

    .dl-table > .dl-table-col > div.dl {
        width: 25%;
    }

    .dl-table > .dl-table-col > div.dl > p.link {
        width: inherit;
        margin-left: 10px;
    }

    .taixuong{
        padding: 30px 0;
    }

    .taixuong h2{
        margin: 0 0 20px;
        font-size: 30px;
    }
}

@media (max-width: 550px) {
    .product-action .list-store .dropdown-menu {
        width: 400px;
    }

    .download_sp .content{
        padding: 15px 0;
    }

    .download_wrap .about_download {
        padding: 30px 0 30px;
    }

    .about_download .title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .info_product_detail h1{
        font-size: 30px;
        font-weight: 700;
    }

    .box_icon_row .list_item .item{
        padding: 0 10px;
    }

    .box_icon_row .box .info .desc{
        font-size: 14px;
    }

    .pro_details{
        padding: 30px 0 15px 0;
    }

    .box-buy{
        margin-bottom: 0;
    }

    .box-buy a{
        padding: 0 10px;
    }

    .info_product_detail .infomation{
        font-size: 17px;
    }

    .title-template-news{
        font-size: 20px;
    }

    .box_sort .compare a {
        height: 40px;
        padding: 0 22px;
        line-height: 40px;
    }

    .list-product-card>.row .col-xs-6{
        width: 100%;
    }

    .sort_by button{
        font-size: 18px;
    }

    .wrap-news-card .pt_item{
        width: 100%;
    }

    .product-card .box{
        margin-bottom: 15px;
    }

    .box_download a i {
        font-size: 13px;
    }

    .connect .title{
        font-size: 15px;
    }

    .cate-dot-1 .slick-dots {
        margin-top: 10px;
    }

    .pt_section_62 {
        padding: 30px 0 25px;
    }

    .footer-main {
        padding: 30px 0 10px;
    }

    .certificate{
        margin-top: 10px;
    }

    .content-box:nth-child(1) {
        width: 100%;
    }

    .content-box:nth-child(2) {
        width: 100%;
    }

    .content-box:nth-child(3) {
        width: 100%;
    }

    .content-box:nth-child(4) {
        width: 100%;
    }

    .wrap_video .bground .play img{
        height: 64px;
    }

    .footer-bottom{
        padding: 8px 0;
    }

    .connect{
        padding: 20px 0;
    }

    .connect .title{
        margin-bottom: 6px;
    }

    .list_connect .item .box {
        width: 100px;
        height: 34px;
        font-size: 13px;
    }

    .wrap_techno .bground, .wrap_tuvan .bground{
        height: 300px;
    }

    .wrap_video .bground{
        height: 300px;
    }

    .wrap_techno .info, .wrap_video .info, .wrap_tuvan .info{
        padding: 40px 35px;
    }

    .wrap_techno .info .title, .wrap_video .info .title, .wrap_tuvan .info .title{
        margin-bottom: 15px;
    }

    .wrap_techno .info .desc, .wrap_video .info .desc, .wrap_tuvan .info .desc{
        margin-bottom: 25px;
    }

    .box_download a {
        height: 38px;
        line-height: 36px;
        width: 200px;
        margin: 0 5px;
        font-size: 11px;
    }

    .support_download{
        padding: 15px 0;
    }

    .tab-category-1 .nav-tabs>li>a{
        font-size: 13px;
    }

    .slide .slick-dots{
        bottom: 10px;
    }
    .slide .desc{
        font-size: 15px;
    }
    .slide .box-slide img{
        height: 250px;
        object-fit: cover;
    }
    .item-two {
        font-size: 20px;
        line-height: 20px;
    }
    .product-action:not(.out-of-stock) .list-btn-action button {
        width: 100%;
    }
    .product-action .list-btn-action button:first-child {
        margin-right: 0;
    }
    .product-action button.btn-buynow,
    .product-action button.btn-add-cart {
        padding: 15px 30px;
        font-size: 13px;
    }
    .product-action button.btn-add-cart {
        padding: 15px 10px 15px 35px;
    }
}
