﻿:root {
  --light-red-color: #e30017;
  --dark-red-color: #c20013;
  --heading-title-font: 'ROG-Fonts-vn';
}

@font-face {
  font-family: 'RobotoCondensed';
  src: url(../webfonts/RobotoCondensed.ttf);
}

@font-face {
  font-family: 'ROG-Fonts-vn';
  src: url(../webfonts/ROG-Fonts-vn.woff);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'RobotoCondensed';
  font-size: 14px;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

a {
  display: inline-block;
  text-decoration: none;
}

button,
button:focus,
button:active {
  border: none;
  outline: none;
}

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

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .3);
  display: none;
}

h2.title {
  text-transform: uppercase;
  margin-bottom: 36px;
  font-size: 54px;
  line-height: 54px;
  text-align: center;
}

.more-btn {
  display: inline;
  align-items: center;
  text-transform: uppercase;
  color: var(--light-red-color);
  font-weight: 600;
  transition: all .3s ease-in-out;
}

.more-btn i {
  font-size: 12px;
}

.more-btn span {
  position: relative;
  display: inline-block;
}

.more-btn span::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark-red-color);
  transition: all .3s ease-in-out;
}

.more-btn:hover {
  color: var(--dark-red-color);
}

.more-btn:hover span::after {
  width: 100%;
}

.more-btn:hover i {
  margin-left: 5px;
}

/* HEADER CSS START */
header {
  position: relative;
  background: #000;
  padding: 0 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  z-index: 999;
}

header .logo {
  width: 200px;
}

header .logo svg {
  fill: var(--light-red-color)
}

header .nav .nav-item{
  position: relative;
  height: 60px;
  line-height: 60px;
}

header .nav li .nav-link {
  color: #fff;
  margin: 0 10px;
  padding: 0;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

header .nav .nav-item .nav-link:hover {
  color: var(--light-red-color);
}

header .nav .nav-item .dropdown-menu{
  top: 100%;
  background: #fff;
  border-radius: 0;
  padding: 50px;
  width: 260px;
}

header .nav .nav-item:hover .dropdown-menu{
  display: block;
}

header .nav .nav-item .dropdown-menu li{
  line-height: normal;
  margin-bottom: 15px;
}

header .nav .nav-item .dropdown-menu a{
  font-weight: 500;
  color: #000;
  background-image: linear-gradient(var(--light-red-color),var(--light-red-color));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: all .3s ease-in-out;
}

header .nav .nav-item .dropdown-menu a:hover{
  color: var(--light-red-color);
  background-size: 100% 1px;
}

header .search {
  position: relative;
  padding-left: 25px;

}

header .search::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
  background: #424242;
}

header .search a {
  color: #fff;
  transition: all .3s ease-in-out;
}

header .search a:hover,
header .search a.active {
  color: var(--light-red-color);
}

header .search-body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 35px 0;
  background: #202020;
  display: none;
  z-index: 2;
}

header .search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 800px;
  margin: auto;
}

header .search-container .search-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 760px;
  height: 50px;
  padding: 11px;
  border: 1px solid #757575;
}

header .search-container .search-input .search-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  color: #757575;
}

header .search-container .search-input input {
  width: 100%;
  color: var(--light-red-color);
  border: none;
  outline: none;
  background: transparent;
  font-weight: 600;
}

header .search-container .search-close {
  color: #757575;
  margin-left: 20px;
  font-weight: 600;
}

header .search-results {
  width: 800px;
  margin: auto;
  margin-top: 20px;
}

header .search-results .result-item {
  width: 100%;
  color: #757575;
  border-bottom: 1px solid #2d2d2d;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

header .search-results .result-item p {
  padding: 7px 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}

header .search-results .result-item a {
  color: #757575;
  display: block;
  padding: 7px 16px;
  transition: all .3s ease-in-out;
}

header .search-results .result-item a:hover {
  color: var(--light-red-color);
  background: #292929;
}

.menu-btn {
  display: none;
  font-size: 24px;
  color: #fff;
}

.menu-btn:hover {
  color: #fff;
}

/* HEADER CSS END */
/* MOBILE MENU CSS START */
.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
  background: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.mobile-menu .heading {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 25px;
}

.mobile-menu .heading .close-menu {
  color: #202020;
  font-size: 22px;
}

.mobile-menu .nav {
  display: block;
  position: relative;
}

.mobile-menu .nav li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 25px;
}

.mobile-menu .nav li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu .nav li .sub-menu{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transform: translateX(100%);
  background: #fff;
  transition: all .3s ease-in-out;
}

.mobile-menu .nav li .sub-menu.open{
  transform: translateX(0);
}

.mobile-menu .nav li a {
  font-size: 22px;
  color: #202020;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.mobile-menu .nav li a:hover{
  color: var(--light-red-color);
}

.mobile-menu .nav li .sub-menu li i{
  margin-right: 20px;
  color: var(--light-red-color);
  font-weight: 600;
}

.mobile-menu .nav li .sub-menu li:not(.heading){
  padding-left: 70px;
}

.mobile-menu .nav li .sub-menu li a{
  text-transform: none;
  font-size: 18px;
  justify-content: start;
}

/* MOBILE MENU CSS END */
/* BANNER CSS START */
.banner {
  position: relative;
}

.banner .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, .8);
  border: 1px solid hsla(0, 0%, 100%, .1);
  color: #fff;
  width: 46px;
  height: 66px;
  font-size: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  transition: all .3s ease-in-out;
}

.banner:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.banner .slick-arrow:hover {
  color: var(--light-red-color);
}

.banner .slick-prev {
  left: 8px;
}

.banner .slick-next {
  right: 0;
}

.banner .slick-slide img {
  height: 100%;
  object-fit: cover;
}

.banner .progress-bar-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.banner .progress-bar-container .progress-bar {
  position: relative;
  display: inline-block;
  transform: skewX(-40deg);
  background-color: hsla(0, 0%, 47%, .5);
  height: 3px;
  width: 60px;
  margin: 0 5px;
  cursor: pointer;
}

.banner .progress-bar-container .progress-bar .in-progress {
  background: var(--light-red-color);
  height: 3px;
  transform: skewX(-40deg);
}

/* BANNER CSS END */
/* MAIN CSS START */
main section {
  position: relative;
  padding: 65px 0;
}

#product-cate-slider .item {
  display: flex;
}

#product-cate-slider .item .product-cate {
  width: 100%;
  text-align: center;
}

#product-cate-slider .item .product-cate .thumb {
  height: unset;
}

#product-cate-slider .item .product-cate img {
  width: 240px;
  margin: auto;
}

#product-cate-slider .item .product-cate .title {
  color: #202020;
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  display: inline-block;
  transition: all .3s ease-in-out;
}

#product-cate-slider .item .product-cate .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--light-red-color);
  transition: all .3s ease-in-out;
}

#product-cate-slider .item .product-cate:hover .title {
  color: var(--light-red-color);
}

#product-cate-slider .item .product-cate:hover .title::after {
  width: 100%;
}

#product-cate-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  font-size: 36px;
  color: var(--light-red-color);
}

#product-cate-slider .slick-next {
  right: -2%;
}

#product-cate-slider .slick-prev {
  left: -2%;
}

#product-cate-slider .slick-arrow i {
  transition: all .3s ease-in-out;
}

#product-cate-slider .slick-arrow:hover {
  color: var(--dark-red-color);
  transform: translateY(-50%) scale(1.05);
}

.section-2 {
  background-image: url(../images/rog_bg_pattern.2e3d71a.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-2 h2.title {
  color: #fff;
}

.section-2 .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
}

.section-2 .item.style-1 {
  height: 490px;
}

.section-2 .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
}

section .item .thumb {
  height: 100%;
}

section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.section-2 .item:hover img {
  transform: scale(1.1);
}

.section-2 .item .text {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 50px;
  color: #fff;
  z-index: 2;
}

section .item .title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

section .item .desc {
  font-size: 14px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.section-3 .item:hover .content {
  color: var(--light-red-color);
}

.section-3 .item .thumb {
  height: 255px;
}

.section-3 .item {
  margin-bottom: 30px;
  width: 100%;
}

.section-3 .item .content {
  margin-top: 15px;
  color: #202020;
}

.section-3 .item .content .tag {
  position: relative;
  color: var(--light-red-color);
  text-transform: uppercase;
  font-weight: 600;
}

.section-3 .item .content .tag::before {
  content: '';
  display: inline-block;
  height: 0;
  width: 30px;
  border-left: 0 solid rgba(0, 0, 0, 0);
  border-right: 10px solid rgba(0, 0, 0, 0);
  margin-right: 6px;
  border-bottom: 13px solid var(--light-red-color);
}

.section-3 .item .content .tag::after {
  content: '';
  display: inline-block;
  height: 12px;
  width: 17px;
  margin-left: 7px;
  transform: skew(32deg);
  background: var(--light-red-color);
}

.section-4 {
  padding: 0;
  background-image: url(../images/FDFFE426-0A29-40D5-8E26-C838EB26CA8F.jpg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  height: 395px;
}
.section-4 .main-inner{
  height: 395px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.section-4 .text {
  width: 580px;
}

.section-4 h2.title {
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  text-transform: none;
}

.section-4 .desc {
  color: #fff;
  font-size: 18px;
}

/* MAIN CSS END */
/* FOOTER CSS START */
footer {
  padding: 0 65px;
  background-image: url(../images/07B097A3-E9C2-4AFF-9196-3ADE8F5BCEA1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #bfbfbf;
  height: 420px;
}

.footer-top {
  position: relative;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.footer-top::after {
  content: "";
  height: 0;
  position: absolute;
  bottom: -5px;
  width: 50px;
  border-top: 6px solid #424242;
  border-left: 10px solid rgba(0, 0, 0, 0);
  right: 0;
}

.footer-top::before {
  bottom: 0;
  content: "";
  height: 0;
  position: absolute;
  width: 50px;
  border-bottom: 6px solid #424242;
  border-right: 10px solid rgba(0, 0, 0, 0);
  left: 0;
}

.footer-top ul {
  display: flex;
  align-items: center;
}

.footer-top ul li a {
  position: relative;
  color: #bfbfbf;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.footer-top ul li a:hover {
  color: var(--light-red-color);
}

.footer-top ul li a svg {
  width: 24px;
  height: 24px;
  fill: #bfbfbf;
  transition: all .3s ease-in-out;
}

.footer-top ul li a svg path {
  fill: #bfbfbf;
}

.footer-top ul li a:hover svg path {
  fill: var(--light-red-color);
}

.footer-top ul li a:hover svg {
  fill: var(--light-red-color);
}

.footer-top .nav li a {
  margin-right: 50px;
}

.footer-top .nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--light-red-color);
  transition: all .3s ease-in-out;
}

.footer-top .nav li a:hover::after {
  width: 100%;
}

.footer-top .social li a {
  margin-left: 50px;
}

.footer-content p {
  padding: 12px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #333;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-bottom .left,
.footer-bottom .right {
  display: flex;
  align-items: center;
}

.footer-bottom .left p {
  margin-left: 10px;
  margin-bottom: 0;
}

.footer-bottom a {
  position: relative;
  color: #bfbfbf;
  transition: all .3s ease-in-out;
}

.footer-bottom a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--light-red-color);
  transition: all .3s ease-in-out;
}

.footer-bottom a:hover {
  color: var(--light-red-color);
}

.footer-bottom a:hover::after {
  width: 100%;
}

.footer-bottom .right p {
  margin-bottom: 0;
  margin-left: 20px;
}

.footer-bottom .right .nav {
  display: flex;
  align-items: center;
}

.footer-bottom .right .nav li a {
  margin-left: 20px;
  color: #bfbfbf;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.footer-bottom .right .nav li a:hover {
  color: var(--light-red-color);
}

.breadcrumb {
  padding-top: 20px;
  align-items: center;
}

.breadcrumb a {
  color: #bfbfbf;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.breadcrumb a:hover {
  color: var(--light-red-color);
}

.breadcrumb a:hover svg path {
  fill: var(--light-red-color);
}

.breadcrumb a:hover svg path:first-child {
  fill: transparent;
}

footer.no-background {
  background-image: none;
  background: #000;
  height: auto !important;
}

/* FOOTER CSS END */
/* BLOG SECTION CSS START */
.blog-section {
  background-color: #000;
}

.blog-section .heading {
  margin-bottom: 25px;
}

.blog-section .heading h2.title {
  font-family: var(--heading-title-font);
  color: #fff;
  margin-bottom: 0;
  font-size: 100px;
  line-height: 70px;
}

.blog-section .heading .sub-title {
  color: var(--light-red-color);
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}

.blog-item {
  padding: 25px 30px 30px;
  border-right: 1px solid #313131;
  transition: all .3s ease-in-out;
}

.blog-item:hover {
  background: #1d1d1d;
}

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

.blog-item .blog-thumb {
  display: block;
  height: 200px;
}

.blog-item .blog-content .title {
  color: #fff;
  padding: 5px 0;
  transition: all .3s ease-in-out;
}

.blog-item .blog-content .title:hover {
  color: var(--light-red-color);
}

.blog-item .blog-content .title h3 {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-item p {
  color: #767676;
  margin-bottom: 0;
}

.blog-item p.date {
  padding: 5px 0;
}

.blog-item p.desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item .more-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-top: 50px;
  color: #fff;
  transition: all .3s ease-in-out;
}

.blog-item .more-btn:hover {
  color: var(--light-red-color);
}

.blog-item .more-btn i {
  font-size: 26px;
}

.pagination {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li {
  color: #fff;
}

.pagination li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  width: 25px;
  height: 25px;
  color: #fff;
  border-radius: 5px;
  transition: all .3s ease-in-out;
}

.pagination li a:hover,
.pagination li a.active {
  background: var(--light-red-color);
}

/* BLOG SECTION CSS END */
/* BLOG DETAIL CSS START */
.blog-detail {
  background: #000;
  color: #959595;
  padding: 65px 0;
}

.blog-detail .heading {
  border-bottom: 1px solid #313131;
  padding-bottom: 30px;
}

.blog-detail .blog-info {
  height: 24px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-detail .blog-info .share-btn {
  font-size: 22px;
  color: #fff;
  transition: all .3s ease-in-out;
}

.blog-detail .blog-info .share-btn:hover {
  color: var(--light-red-color);
}

.blog-detail .blog-info ul {
  display: flex;
  align-items: center;
}

.blog-detail .blog-info li {
  display: flex;
  align-items: center;
  color: #959595;
  text-transform: uppercase;
}

.blog-detail .blog-info li i {
  margin-right: 8px;
}

.blog-detail .blog-info li span::after {
  content: '';
  height: 24px;
  border-right: 1px solid #313131;
  margin: 0 15px;
}

.blog-detail .heading h2.title {
  text-align: left;
  color: #fff;
  font-size: 30px;
  margin: 12px 0;
}

.blog-detail .heading .blog-category,
.blog-detail .heading .blog-tags {
  padding: 5px 0;
  color: #959595;
}

.blog-detail .heading .blog-category a,
.blog-detail .heading .blog-tags a {
  color: #fff;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.blog-detail .heading .blog-tags a::after {
  content: ',';
}

.blog-detail .heading .blog-tags a:last-child::after {
  content: none;
}

.blog-detail .heading .blog-category a:hover,
.blog-detail .heading .blog-tags a:hover {
  color: var(--light-red-color);
}

.detail-content {
  padding: 20px 0;
  border-bottom: 1px solid #313131;
}

.detail-content a {
  color: #fff;
  transition: all .3s ease-in-out;
}

.detail-content a:hover {
  color: var(--light-red-color);
}

.detail-content p {
  margin: 15px 0;
}

.detail-content h3.title {
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 10px;
}

.detail-content iframe {
  width: 100%;
}

.blog-tags2 {
  display: flex;
  align-items: center;
  padding-top: 30px;
}

.blog-tags2 img {
  margin-right: 6px;
}

.blog-tags2 ul {
  display: flex;
  align-items: center;
}

.blog-tags2 ul a {
  color: #fff;
  border-top: 0 solid #313131;
  margin-right: 4px;
  transition: all .3s ease-in-out;
}

.blog-tags2 ul a::after {
  color: #959595;
  content: "•";
  display: inline-block;
  font-size: 10px;
  font-style: normal;
  height: 28px;
  line-height: 28px;
  vertical-align: middle;
  margin-left: 6px;
}

.blog-tags2 ul a:hover {
  color: var(--light-red-color);
}

.related-blogs {
  background-color: #1c1c1c;
  padding: 0 0 30px 0;
}

.related-blogs h2.title {
  font-family: var(--heading-title-font);
  color: #fff;
  margin: 12px 0 0;
  padding: 20px 0 30px;
  font-size: 36px;
}

.related-blogs .blog-item {
  border: none;
}

.related-blogs .blog-item .title {
  padding-top: 10px;
}

/* BLOG DETAIL CSS END */
/* HỖ TRỢ CSS START */
.ho-tro .banner {
  background-image: url(../images/kv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 500px;
  position: relative;
}

.main-inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
}

.banner-content h1.title {
  color: #fff;
  font-size: 63px;
  font-family: var(--heading-title-font);
}

.banner-content p {
  margin: 35px 0;
  color: #fff;
  text-shadow: 2px 0 5px rgba(0, 0, 0, .75);
}

.banner-content p a {
  text-decoration: underline;
  color: #fff;
  transition: all .3s ease-in-out;
}

.banner-content p a:hover {
  color: var(--light-red-color);
}

.banner-search {
  position: relative;
  width: 590px;
  margin: 0 auto;
}

.banner-search input {
  width: 100%;
  height: 60px;
  color: #fff;
  background: #202020 url(../images/download.png);
  background-size: 25px;
  background-position: 0.9em;
  background-repeat: no-repeat;
  padding: 0 50px;
  font-size: .9em;
  border: 0;
  outline: none;
  border-radius: 0;
}

.banner-search a {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  color: #878787;
  font-size: 20px;
}

.ho-tro h2.title {
  font-family: var(--heading-title-font);
}

.ho-tro .section-1 {
  background: #f5f5f5;
  padding-bottom: 100px;
}

.ho-tro .section-1 .product-cate {
  padding-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ho-tro .section-1 .product-cate img {
  width: 150px;
  padding-bottom: 20px;
}

.ho-tro .section-1 .product-cate p.title {
  color: #202020;
  position: relative;
  margin-bottom: 0;
  font-size: 18px;
  display: inline-block;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.ho-tro .section-1 .product-cate:hover p.title {
  color: var(--light-red-color);
  text-decoration: underline;
}

.ho-tro .more-btn {
  display: block;
  margin-top: 20px;
  font-weight: 300;
  font-size: 18px;
}

.ho-tro .more-btn span::after {
  content: none;
}

.ho-tro .more-btn:hover span {
  text-decoration: underline;
}

.ho-tro .more-btn i {
  margin-left: 5px;
  display: inline-block;
}

.ho-tro .more-btn.active i {
  transform: rotateX(180deg);
  ;
}

.ho-tro .section-2 {
  background: #fff;
  position: relative;
}

.ho-tro .section-2 .nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-top: -145px;
}

.ho-tro .section-2 .nav-tabs .nav-link.active {
  color: #606060;
  border-top-color: var(--light-red-color);
  background: #fff;
}

.ho-tro .section-2 .nav-tabs .nav-link {
  display: block;
  padding: 1em 2.6em;
  position: relative;
  color: #fff;
  background: #4f4f4f;
  line-height: 1.4em;
  border-radius: 0;
  box-shadow: -2px -2px 0 transparent;
  border-top: 3px solid transparent;
  width: fit-content;
  height: 80px;
  font-size: 16px;
}

.ho-tro .section-2 .nav-tabs .nav-link:hover {
  background: #404040;
  text-decoration: underline;
}

.ho-tro .section-2 .tab-pane {
  text-align: center;
  padding-top: 30px;
}

.ho-tro .section-2 .tab-pane .item {
  margin-bottom: 0;
  overflow: unset;
  padding: 20px 0 40px 0;
  border-bottom: 1px solid #d6d6d6;
}

.section-2 .tab-pane .item::after {
  content: none;
}

.ho-tro .section-2 .tab-pane .item .icon {
  font-size: 62px;
  color: var(--light-red-color);
}

.ho-tro .section-2 .tab-pane .item h2.title {
  font-family: var(--heading-title-font);
  color: #000;
  font-size: 63px;
  padding: 0.5rem 0;
  display: block;
}

.ho-tro .section-2 .tab-pane .item .sub-title {
  margin: 1rem 0;
  font-size: 16px;
}

.btn2 {
  background-color: var(--light-red-color);
  border-radius: 0;
  border: 0;
  transition: all .3s ease-in-out;
  position: relative;
  line-height: unset;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  min-width: 210px;
  height: 3.2em;
  margin-top: 1.8em;
  padding: 0 2.5em;
  vertical-align: middle;
  color: #fff;
}

.btn2::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 15px 0 0 15px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn2:hover {
  background: var(--dark-red-color);
  color: #fff;
}

.ho-tro .section-2 .tab-pane .item h3.title {
  font-family: var(--heading-title-font);
  color: #000;
  font-size: 48px;
  margin-bottom: 50px;
}

a.box {
  display: inline-block;
  width: 100%;
  text-align: left;
  position: relative;
  background: #fff;
  padding: 0.7em 1em;
  border: 1px solid #e0e0e0;
  top: 0;
  overflow: hidden;
  margin-bottom: 25px;
  color: #000;
  transition: all .3s ease-in-out;
}

a.box:hover {
  border-color: var(--light-red-color);
}

a.box .title {
  display: block;
  font-size: 18px;
  line-height: 21px;
  min-height: 42px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

a.box:hover .title {
  color: var(--light-red-color);
  border-color: var(--light-red-color);
  text-decoration: underline;
}

a.box .desc {
  font-size: 14px;
  line-height: 18px;
  height: 35px;
  margin-bottom: 0;
  color: #606060;
  margin-top: 0.9em;
}

.ho-tro .section-3 {
  background: #2c2c2c;
  color: #fff;
  padding: 20px 0;
}

.ho-tro .section-3 .heading {
  display: flex;
  align-items: center;
}

.ho-tro .section-3 h3 {
  margin-bottom: 0;
}

.ho-tro .section-3 .more-btn {
  margin-top: 0;
  margin-left: 50px;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.ho-tro .section-3 .more-btn:hover {
  text-decoration: underline;
  color: var(--light-red-color);
}

.ho-tro .section-3 a {
  color: #fff;
  padding: 15px 0;
  margin-bottom: 0;
}

.ho-tro .section-3 a p {
  margin-bottom: 0;
}

.ho-tro .section-3 a .title {
  display: block;
  font-size: 16px;
  padding-right: 10em;
}

.ho-tro .section-3 a:hover .title {
  color: var(--light-red-color);
  text-decoration: underline;
}

.ho-tro .section-3 .new-blogs {
  border-right: 1px solid #909090;
  padding-right: 4em;
}

.ho-tro .section-3 .contact-info h2.title {
  text-align: left;
}

.ho-tro .section-3 .contact-info ul li a {
  padding: 5px 0;
  margin-bottom: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: 300;
}

.ho-tro .section-3 .contact-info ul li a i {
  display: inline-block;
  font-size: 30px;
  margin-right: 15px;
}

.ho-tro .section-2 .icon-box {
  position: relative;
  padding: 4.5em 1.2em 0;
  min-height: 3em;
  margin-bottom: 15px;
  padding-bottom: 15px
}

.ho-tro .section-2 .icon-box::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;

  background-repeat: no-repeat;
  background-size: 100%;
}

.ho-tro .section-2 .icon-box.item1::after{
  background-image: url(../images/icon-step01-rog.png);
}
.ho-tro .section-2 .icon-box.item2::after{
  background-image: url(../images/icon-step02-rog.png);
}
.ho-tro .section-2 .icon-box.item3::after{
  background-image: url(../images/icon-step03-rog.png);
}

.ho-tro .section-2 .icon-box::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 3.2em);
  width: 20px;
  height: 20px;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background: var(--light-red-color);
  border-radius: 50%;
}
.ho-tro .section-2 .icon-box.item1::before{
  content: '1';
}
.ho-tro .section-2 .icon-box.item2::before{
  content: '2';
}
.ho-tro .section-2 .icon-box.item3::before{
  content: '3';
}
.ho-tro .section-2 .list a{
  padding: 5px 0;
  color: var(--light-red-color);
  transition: aa .3s ease-in-out;
}
.ho-tro .section-2 .list a:hover{
  color: var(--dark-red-color);
  text-decoration: underline;
}
.ho-tro .section-2 .icon-box h4.title{
  font-family: var(--heading-title-font);
  font-size: 33px;
  margin-bottom: 15px;
}
.all-product{
  padding: 30px 0;
  display: none;
}
.all-product a{
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  height: 60px;
  color: #000;
  transition: all .3s ease-in-out;
}
.all-product a span{
  display: inline-block;
  padding-left: 20px;
}
.all-product a:hover{
  color: var(--light-red-color);
}
.all-product a:hover span{
  text-decoration: underline;
}
.ho-tro .all-product .item img{
  width: 48px;
  height: auto;
  object-fit: unset;
}
.icon-sp-external-graphic-docks:before {
  content: "\E981"
}

/* HỖ TRỢ CSS END */
/* ĐẠI LÝ SECTION CSS START */
.dai-ly-section h2.title {
  text-transform: none;
  text-align: left;
  margin-bottom: 15px;
  font-size: 26px;
}

.dai-ly-item .nav-tabs {
  display: block;
  border-bottom: none;
  border-right: 1px solid #ddd;
}

.dai-ly-item .nav-tabs button {
  width: 100%;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 18px;
  text-align: left;
  color: #337ab7;

}

.dai-ly-item .nav-tabs .nav-link.active {
  border-color: transparent;
  background: #2a91f1;
  color: #fff;
  pointer-events: none;
}

.dai-ly-item .nav-tabs .nav-link:hover {
  border-color: transparent;
  background: #eee;
}

.dai-ly-item .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #2a91f1;
  display: block;
  width: 0;
}

.dai-ly-item .item {
  line-height: 20px;
  padding: 20px;
  border-radius: 40px 8px;
  box-shadow: 0 11px 20px rgb(123 149 162 / 15%);
  min-height: 640px;
  background: #fff;
  border-bottom: 4px solid #2a91f1;
  transition: 1.2s cubic-bezier(.17, .85, .438, .99);
  margin-bottom: 25px;
}

.dai-ly-item .item:hover {
  transform: translateY(-7.5px);
}

.dai-ly-item .item .thumb {
  height: 250px;
}

.dai-ly-item .item .content {
  margin-top: 20px;
}

.dai-ly-item .item .content h4 {
  margin-bottom: 0;
  font-size: 18px;
}

.dai-ly-item .item .content p {
  margin-bottom: 0;
}

.dai-ly-item .item .content .phone {
  margin-top: 10px;
}

.dai-ly-item .item .content .phone .icon {
  color: #fff;
  text-align: center;
  display: inline-block;
  box-shadow: 0 10px 15px 0 rgb(3 35 68 / 10%);
  line-height: 40px;
  background: #848484;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  border: 2px solid #dcdcdc;
}

.dai-ly-item .item .content .phone .text {
  margin-left: 15px;
  font-size: 16px;
  color: #333;
}

.dai-ly-item .item .content .phone:hover .text {
  color: #2a91f1;
  text-decoration: underline;
}

.dai-ly-item .item .content .phone:hover .icon {
  background-color: #fff;
  color: #2a91f1;
}

.dai-ly-item .item .content .service-list {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.dai-ly-item .item .content .service-list li {
  list-style: none;
  padding: 0 15px;
  border-right: 1px solid #d4d4d4;
  display: inline-block;
}

.dai-ly-item .item .content .service-list li a {
  font-size: 18px;
  color: #050748;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 5px;
  display: inline-block;
  font-weight: 700;
}

.dai-ly-item .item .content .service-list li a span {
  text-align: center;
  margin-left: 15px;
}

.dai-ly-item .item .content .service-list li a.direction:hover {
  color: #d13147;
}

.dai-ly-item .item .content .service-list li a.website:hover {
  color: #2a91f1;
}

/* ĐẠI LÝ SECTION CSS END */
/* RESPONSIVE */
@media only screen and (min-width: 1630px) {
  body {
    font-size: 16px;
  }

  .section-3 .item .thumb{
    height: 350px;
  }
}

@media only screen and (max-width: 991.98px) {
  main section {
    padding: 30px 0;
  }

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

  h2.title {
    font-size: 35px;
    line-height: 35px;
  }

  header {
    height: unset;
    padding: 14px 20px;
  }

  header .nav {
    display: none;
  }

  .banner .progress-bar-container .progress-bar {
    width: 30px;
    margin: 0 3px;
  }

  .menu-btn {
    display: block;
  }

  .section-2 .item.style-1 {
    height: 350px;
  }

  .section-4 {
    height: 260px;
  }

  .section-4 .text {
    width: 500px;
  }

  .section-3 .item .thumb {
    height: 160px;
  }

  .section-3 .item .content {
    margin-top: 5px;
  }

  .footer-bottom,
  .footer-bottom .right {
    display: block;
  }

  .footer-bottom .right .nav li a {
    margin-left: 0;
    margin-right: 20px;
  }

  .footer-bottom .right p {
    margin-left: 0;
  }

  .footer-bottom .left,
  .footer-bottom .right .nav,
  .footer-bottom .right p {
    margin-bottom: 15px;
  }

  .footer-top .social li a {
    margin-left: 30px;
  }

  .footer-top .nav li a {
    margin-right: 30px;
  }

  #product-cate-slider .item .product-cate img {
    width: 150px;
  }

  #product-cate-slider .item .product-cate .title {
    margin-top: 10px;
    font-size: 16px;
  }

  .blog-item .blog-content .title h3 {
    font-size: 16px;
  }

  .blog-section .heading h2.title {
    font-size: 60px;
  }

  .blog-detail .heading h2.title {
    font-size: 28px;
  }
  .ho-tro .section-3 a .title{
    padding-right: 0;
  }
  .ho-tro .section-3 .new-blogs{
    border-right: none;
  }
  .ho-tro .section-2 .nav-tabs{
    margin-top: 0;
  }
  .ho-tro .section-2 .tab-pane .item h2.title{
    font-size: 38px;
  }
  .ho-tro .section-2 .tab-pane .item h3.title{
    font-size: 28px;
  }
  a.box .title{
    font-size: 16px;
  }
  .ho-tro .section-1{
    padding-bottom: 0;
  }

  .mobile-menu .nav li a,.mobile-menu .close-menu{
    font-size: 18px;
  }

  .mobile-menu .nav .sub-menu a{
    font-size: 16px;
  }
}

@media only screen and (max-width: 767.98px) {
  h2.title {
    font-size: 25px;
    line-height: 30px;
  }

  header .search-body {
    padding: 35px;
  }

  header .search-container,
  header .search-results {
    width: 100%;
  }

  .section-2 .item.style-1 {
    width: 100%;
  }

  .section-3 .item .thumb {
    height: 255px;
  }

  .section-3 .item {
    width: 100%;
  }

  .section-4 {
    background-image: url(../images/C2447980-FC01-41FD-B062-184649D61350.jpg);
    height: 93vw;
    padding: 50px 20px 0 20px;
    justify-content: start;
    align-items: start;
    background-size: contain;
    background-color: #000;
  }

  .section-4 .text {
    width: 100%;
  }

  footer {
    background: #000;
    height: auto;
    padding: 0;
  }

  .footer-top {
    display: block;
    padding-top: 0;
  }

  .footer-top .nav {
    display: block;
  }

  .footer-top .nav li a {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #333;
  }

  .footer-top ul {
    justify-content: center;
  }

  .footer-content p {
    padding: 20px;
  }

  .footer-top .social {
    margin-top: 30px;
  }

  .footer-top .social li a {
    margin: 0 15px;
  }

  .footer-bottom {
    padding: 20px;
  }

  #product-cate-slider .item .product-cate img {
    width: 100%;
  }

  .breadcrumb {
    margin-bottom: 0;
    padding: 20px 20px 0 20px;
  }

  .blog-item {
    padding: 15px;
  }

  .related-blogs .blog-item {
    display: flex;
    border-bottom: 1px solid #313131;
    border-top: 1px solid #313131;
  }

  .related-blogs .blog-item .blog-thumb {
    width: 100px;
    height: auto;
  }

  .related-blogs .blog-item .title h3 {
    font-size: 12px;
  }

  .related-blogs .blog-item .title {
    padding-left: 20px;
  }

  .dai-ly-item .item .content .service-list li a {
    font-size: 13px;
  }

  .all-product a{
    font-size: 14px;
  }
  .banner-search{
    width: 100%;
  }
  .main-inner{
    padding: 0 30px;
  }
  .banner-content h1.title{
    font-size: 38px;
  }
  .ho-tro .section-2 .nav-tabs .nav-link{
    padding: 15px;
    height: auto;
  }
  .icon-box{
    border-bottom: 1px solid #e0e0e0;
  }
  .dai-ly-item .nav-tabs{
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 575.98px) {
  main section {
    padding: 20px 0;
  }

  .blog-detail {
    padding: 20px 0;
  }

  #product-cate-slider .slick-arrow {
    display: none !important;
  }

  #product-cate-slider .item .product-cate img {
    width: 100px;
  }

  #product-cate-slider .item .product-cate .title {
    font-size: 10px;
  }

  .section-2 .item,
  .section-2 .item.style-1 {
    height: 200px;
  }

  .section-4 {
    height: 600px;
    background-size: cover;
    padding: 20px 20px 0 20px;
  }

  .ho-tro .section-2 .item{
    height: auto;
  }
  .blog-section .heading {
    margin-bottom: 10px;
  }

  .blog-detail .heading h2.title {
    font-size: 18px;
  }

  .blog-detail .blog-info li span::after {
    margin: 0 10px;
  }

  .blog-detail .blog-info li i {
    margin-right: 5px;
    display: none;
  }

  .blog-detail .blog-info ul li {
    color: var(--light-red-color);
  }

  .detail-content {
    padding: 0;
  }

  .blog-tags2 {
    padding-top: 20px;
  }

  .related-blogs h2.title {
    font-size: 24px;
  }

  .banner-content h1.title{
    font-size: 25px;
  }

  .banner-content p{
    font-size: 12px;
    margin: 15px 0;
  }
  .ho-tro .section-3 .new-blogs{
    padding-right: 0;
  }
  .ho-tro .section-2 .nav-tabs .nav-link{
    padding: 10px;
    font-size: 10px;
  }
  .ho-tro .section-2 .tab-pane .item h2.title{
    font-size: 24px;
  }
  .ho-tro .section-2 .tab-pane .item h3.title{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ho-tro .section-2 .icon-box h4.title{
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {

  main section {
    padding: 20px 0;
  }

  .blog-detail {
    padding: 20px 0;
  }

  .blog-section .heading h2.title {
    font-size: 55px;
    line-height: 50px;
  }
}