/* open-sans-regular - latin_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'SF Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/SF-Pro-Text-Regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'SF Pro';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/SF-Pro-Text-Medium.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'SF Pro';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/SF-Pro-Text-Semibold.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'SF Pro';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/SF-Pro-Text-Bold.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'SF Pro';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/SF-Pro-Text-Heavy.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.fs-15{
    font-size: 1.5rem !important;
}
.fs-16{
    font-size: 1.6rem !important;
}
.fs-17{
    font-size: 1.7rem !important;
}
.fs-18{
    font-size: 1.8rem !important;
}
.fs-20{
    font-size: 2rem !important;
}
.color-text{
    color: var(--color-text);
}
.font-weight-500{
    font-weight: 500;
}
.font-weight-600{
    font-weight: 600;
}
.py-50 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.4;
}
.rounded{
    border-radius: 0.5rem !important;
}
.hover-img{
    overflow: hidden;
}
.hover-img img {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
}
.hover-img:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
	transition: all 0.9s ease 0s;
	-webkit-transition: all 0.9s ease 0s;
	-moz-transition: all 0.9s ease 0s;
	-o-transition: all 0.9s ease 0s;
	-ms-transition: all 0.9s ease 0s;
}
.object-scale {
    object-fit: scale-down !important;
}
.bg-main{
    background:var(--color-main);
}

html {
    scroll-behavior: smooth;
    font-family: 'SF Pro';
}

.bg-light-highlight {
    background-color: var(--color-light-highlight);
}



/*HEADER*/
.setting-menu > .container > .row > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.setting-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    right: 0;
    background: var(--white);
    animation: 0.9s ease 0s normal both 1 running fixedAnim;
    -webkit-animation: 0.9s ease 0s normal both 1 running fixedAnim;
    -moz-animation: 0.9s ease 0s normal both 1 running fixedAnim;
    -o-animation: 0.9s ease 0s normal both 1 running fixedAnim;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@-moz-keyframes fixedAnim {
      0% {
          top: -100%
      }
      100% {
          top: 0
      }
  }

  @keyframes fixedAnim {
      0% {
          top: -100%
      }
      100% {
          top: 0
      }
  }
#member-info img {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: cover;
}
.action-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-picker {
    background-color: #F5F6F7;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}
.language-picker img {
    border-radius: 3px;
}
.btn-hotline {
    background-color: var(--color-highlight);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.search-section svg {
    width: 40px;
}
.search-section .form-dropdown {
    position: absolute;
    padding: 10px;
    background-color: #ffffff;
    width: 300px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
}
.search-section:hover .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

/*END HEADER*/

/*MAIN*/
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}
.hero-content .hero-top {
    display: inline-flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid #ECECF0;
    background: rgba(255, 255, 255, 0.50);
    margin-bottom: 20px;
    color: #1D1D1F;
    font-size: 17px;
    font-weight: 500;
    line-height: 150%;
}
.hero-content .hero-title {
    color: black;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.64px;
    margin-bottom: 24px;
}
.hero-content .hero-title span {
    color: var(--color-highlight);
    display: block;
}
.hero-content .hero-desc {
    color: #1D1D1F;
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}
.hero-action {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}
.btn-action {
    display: flex;
    height: 56px;
    padding: 0 32px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 24px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.btn-action .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--white);
    border-radius: 50%;
}
.btn-book {
    background: var(--color-highlight);
    color: var(--white);
}
.hero-action .btn-hotline ,
.footer-top .btn-hotline {
    background: var(--white);
    color: var(--color-highlight);
}
.btn-hotline i {
    font-size: 19px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 54px;
}
.hero-feature .item {
    font-weight: 500;
}
.hero-feature svg {
    margin-right: 8px;
}

.swiper-slider-main .swiper-slide img {
    width: 55%;
    float: right;
}
.swiper-slider-main .swiper-slide svg {
    position: absolute;
    z-index: 1;
    animation: svg_scale 11.983984s linear;
    animation-iteration-count: infinite;
}
.swiper-slider-main .swiper-slide-0 svg {
    left: -307px;
    bottom: -318px;
}
.swiper-slider-main .swiper-slide-1 svg {
    right: -51px;
    top: -256px;
}
@keyframes svg_scale {
  0% {
    animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
    scale: 1 1;
  }
  11.661% {
    animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
    scale: 1.054 1.054;
  }
  100% {
    scale: 0.821 0.821;
  }
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-highlight) !important;
    width: 18px !important;
    border-radius: 5rem;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-button-prev.swiper-btn, .swiper-button-next.swiper-btn {
    background-color: var(--gray);
    width: 3rem;
    height: 3rem;
    border: none;
    line-height: 3rem;
    transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    border-radius: 5px;
    top: 0;
    transform: inherit;
    font-size: 1.6rem;
    color: var(--color-main);
}

.swiper-btn.swiper-button-next {
    right: 0;
}

.swiper-btn.swiper-button-prev {
    left: auto;
    right: 3.5rem;
}
.swiper-btn.swiper-button-prev:hover, .swiper-btn.swiper-button-next:hover{
    background-color: var(--color-highlight);
    color:white
}
.wrp-effect-change-img .effect-change-img img {
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 10;
    transform: scaleX(0);
}
.wrp-effect-change-img:hover .effect-change-img img {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    transform: scaleX(1)
}



.title-section {
    color: var(--color-blue);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 30px;
    text-transform: uppercase;
}


.features-section {
    position: relative;
    z-index: 1;
    margin-top: -50px;
    padding: 48px 32px;
    border-radius: 32px;
    border: 1px solid #E8E8ED;
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}
.features-section > .row > div {
    padding: 0;
    border-right: 1px solid #E8E8ED;
}
.features-section > .row > div:last-child {
    border-right: 0;
}
.features-section .item-feature {
    display: flex;
    height: 106px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0 25px;
}
.features-section .item-feature .icon {
    width: 26.5%;
    flex: 0 0 26.5%;
}
.features-section .item-feature .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 10px;
}
.features-section .item-feature .desc {
    /*width: 220px;*/
    color: #102B83;
    line-height: 135%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-vertical {
    width: 1px;
    height: 106px;
    background-color: #E8E8ED;
}

.card-section {
    display: flex;
    justify-content: space-between;
    align-self: stretch;
    gap: 30px;
}
.card-section .item-card {
    display: flex;
    flex: 1;
    width: 330px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    border: 2px solid var(--light);
    background: var(--white);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}
.card-section .item-card .title {
    color: var(--color-blue);
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 16px;
    min-height: 55px;
    display: flex;
    align-items: center;
}
.card-section .item-card .desc {
    min-height: 51px;
    color: #1D1D1F;
    font-size: 17px;
    font-weight: 510;
    line-height: 150%;
}
.card-section .item-card .icon {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}
.card-section .circle-top {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 52px;
    height: 52px;
    justify-content: center;
    align-items: center;
    background-color: var(--color-highlight);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
    border-radius: 50%;
    z-index: 1;
}

.card-section .circle-top,
.card-section .circle-top .number,
.card-section .title .number,
.card-section .arrow {
    display: none;
}

.section-process .circle-top, 
.section-process .circle-top .number,
.section-process .arrow {
    display: flex;
}
.section-process .card-section .arrow{
    align-items: center;
}

.section-solution .item-card {
    padding: 24px 32px;
}

.section-service .circle-top {
    display: flex;
    background-color: var(--white);
    padding: 10px;
}
.section-service .circle-top img {
    position: unset;
}
.section-service .title {
    align-items: flex-start !important;
}
.section-service .title .number {
    display: block;
}
.section-service .card-section .item-card {
    padding: 14px;
}


.categories-section .list-cate {
    margin-bottom: 5rem;
}
.categories-section .item-cate {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 24px;
    border: 2px solid var(--light);
    background-color: var(--white);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}
.categories-section .item-cate .title {
    display: flex;
    height: 58px;
    flex-direction: column;
    justify-content: center;
    color: #00172F;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
}


.item-brand {
    display: block;
    border-radius: 24px;
    border: 2px solid var(--light);
    background: var(--white);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 15px;
}
.item-brand img {
    transform: scale(1.02);
}



.group-action {
    position: absolute;
    transition: all ease-in-out .3s;
    top: 50%;
    right: 15px;
    z-index: 11;
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    flex-direction: column;
}

.product-item:hover .group-action {
    opacity: 1;
    visibility: visible;
}
.star-rating,.star-rating span::before {
    font-size: 1.1rem;
}

.brand-section .swiper-slide>a {
    padding-top: 42%;
}
.brand-section .swiper-slide img {
    filter: grayscale(100%) brightness(300%) contrast(0);
}
.social-section li {
    padding-right: 1rem;
}
.social-section li a {
    color: var(--color-main);
    font-size: 1.5rem;
    width: 3.6rem;
    height: 3.6rem;
    display: block;
    background: white;
    line-height: 3.6rem;
    text-align: center;
    border-radius: 50%;
}
.social-section li a:hover {
    background: var(--color-highlight);
    color: white;
}
footer {
    background: var(--color-bold-highlight);
    color: var(--white);
    font-size: 17px;
}


footer .logo img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.footer-top .text {
    width: 700px;
}
.footer-top .title {
    font-size: 25px;
    font-weight: 700;
    line-height: 130%;
    color: var(--black);
    margin-bottom: 1rem;
}
.footer-top .desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    color: var(--black);
}

.btn-highlight,
.btn-white {
    height: 5.6rem;
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 24px;
    font-size: 16px;
}
.btn-highlight {
    background-color: var(--color-highlight);
    color: var(--white);
}
.btn-white {
    background-color: var(--white);
    color: var(--color-highlight);
}

.btn-hotline:hover ,
.btn-highlight:hover {
    background-color: var(--color-bold-highlight);
    color: var(--white);
}
.btn-white:hover {
    background-color: var(--color-bold-highlight);
    color: var(--white);
}

.company-name {
    color: var(--white);
    font-size: 21px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 15px;
}

.footer-top .action {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.newsletter .invalid-feedback {
    position: absolute;
    bottom: -30px;
    left: 0;
    text-align: left;
}
.newsletter .btn-submit {
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--white);
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 50%;
}
.newsletter .btn-submit:hover {
    color: var(--white);
    background-color: var(--color-highlight);
}
.newsletter .btn-submit:before, 
.newsletter .btn-submit:after {
    background-color: var(--red);
}

.entire-info-website address p {
    display: flex;
    gap: 10px;
}

.form-control {
    font-size: 1.5rem;
    border-radius: 0.5rem;
}

.footer-menu-section ul li {
    margin-bottom: 1.5rem;
}
.footer-menu-section ul li a {
    color: var(--white);
    position: relative;
    font-size: 17px;
    line-height: 1.5;
}
.footer-menu-section ul li a:hover {
    color: var(--white);
}

.title-footer {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 1.5rem;
}

.copyright {
    border-top: 1px solid var(--white);
    padding: 24px 0;
}

footer .title-section h3 {
    color: white;
    font-size: 2rem;
    text-align: left;
    padding-bottom: 1rem;
}

.btn-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-size: 2rem;
    width: 5rem;
    height: 5rem;
    background: rgb(0 0 0 / 30%);
    line-height: 5rem;
    border-radius: 50%;
}
body {
  counter-reset: section;
}

.file-number::before {
  counter-increment: section;
  content: counter(section);
}
.list-file .article-title a{
    color: var(--color-main);
}

/*CHI TIET SAN PHAM*/
.section-banner-product {
    position: relative;
}
.section-banner-product:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 47%;
    height: 100%;
    background-color: var(--black);
    z-index: -1;
}
.product-banner {
    display: flex;
    align-items: center;
}
.product-banner .banner-left {
    width: 54%;
    position: relative;
    overflow: hidden;
}
.product-banner .banner-left svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(1.38);
    z-index: -1;
}
.product-banner .banner-right {
    width: 46%;
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 580px;
}
.product-banner .sub-title {
    color: #AFAFAF;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.product-banner .product-title-detail {
    color: var(--white);
    font-size: 72px;
    font-weight: 800;
    line-height: 115%;
    letter-spacing: 0.72px;
}
.product-banner .product-description {
    color: var(--white);
    font-size: 17px;
    line-height: 150%;
}
.product-detail-head .product-content {
    color: var(--color-main);
    text-align: center;
    font-size: 28px;
    line-height: 150%;
    max-width: 86%;
    margin: auto;
}
.product-detail-head .product-content b,
.product-detail-head .product-content strong {
    font-weight: 700;
}

.product-detail-head .product-info label {
    color: var(--color-main);
    font-size: 17px;
    line-height: 150%;
    margin-right: 10px;
    font-weight: 400;
    margin-bottom: 0;
}
.product-detail-head .product-info b {
    color: var(--color-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
}

.product-detail-head .product-attribute {
    background-color: var(--light);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
}
.product-detail-head .product-attribute .list-color {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.product-detail-head .product-attribute .item-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.product-detail-head .attribute-info {
    color: var(--color-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
}
.product-detail-head .attribute-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: var(--light);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 15px;
}
.product-detail-head .attribute-info ul > li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
}
.product-detail-head .attribute-info ul > li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FF9EA4;
}

.product-image-detail-top .btn-arrow {
    width: 56px;
    height: 56px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 75px;
    font-size: 3rem;
    color: var(--black);
    border: 1px solid rgba(120, 120, 120, 0.20);
    background: var(--white);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

.attribute-featured {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.attribute-featured .feature-left,
.attribute-featured .feature-right {
    display: flex;
    width: 333px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}
.attribute-featured .item-feature {
    display: flex;
    height: 168px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.attribute-featured .title-feature {
    color: var(--color-main);
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
}
.attribute-featured .feature-main {
    flex: 1 0 0;
    align-self: stretch;
}
.attribute-featured .feature-main img {
    width: 100%;
    max-height: 568px;
}

.new-technology {
    color: var(--white);
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
}
.new-technology h2,
.new-technology h3,
.new-technology h4,
.new-technology h2 *,
.new-technology h3 *,
.new-technology h4 * {
    color: var(--white);
    font-size: 48px;
    font-weight: 700 !important;
    line-height: 125%;
    margin-bottom: 1.5rem;
}
.new-technology table {
    border: 0;
    margin-top: 100px;
}
.new-technology table table {
    margin-top: 100px;
}
.new-technology table td {
    border: 0;
}
.new-technology > table > colgroup col:first-child {
    width: 37% !important;
}
.new-technology table table td p {
    font-size: 20px;
    font-weight: 700;
    line-height: 115%;
    margin-bottom: 5px;
}
.new-technology table table td p:nth-child(2) {
    font-size: 28px;
}
.new-technology img {
    max-width: 100%;
    height: auto;
}
.new-technology table img {
    max-width: max-content;
}

.product-image-detail .inner-image {
    padding-top: 100%;
}
.product-content-detail .add-to-cart.add-to-cart-buy {
    background-color: var(--color-main);
    border-color: var(--color-main);
}

.product-content-detail .add-to-cart.add-to-cart-buy:hover {
    background: white;
    color: var(--color-main);
}
.comment-section .list-comment:empty{
    margin: 0;
    padding: 0;
    border: 0;
}
.comment-section .list-comment:empty+.total-comment{
    display: none;
}
.title-left .title-section {
    text-align: left !important;
}

.product-detail-footer .content ul, .product-detail-footer .content ol {
    padding-left: 1.5rem;
}
.search-page .input-group-append .btn {
    z-index: 1;
}
.invalid-feedback {
    color: #dc3545;
}
.toolbar__item a span.items-number {
    top: -1rem;
    right: -1.5rem;
    color: var(--white);
    padding:0;
    display: flex !important;
}
.toolbar__item .toolbar-text {
    margin-top: 0.3rem;
}
.toolbar #member-info img {
    margin: 0 auto !important;
}
.toolbar #member-info span {
    font-size: 1rem !important;
    color: var(--color-main) !important;
}
.toolbar__item .btn-action-header {
    display: block;
}
.toolbar .dropdown {
    text-align: center;
}

.modal button.close {
    font-size: 18px;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
    z-index: 10;
    text-shadow: unset;
}
b, strong {
    font-weight: bold;
}

/*DS SAN PHAM*/
.product-item {
    height: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}
.product-item .product-title a {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    min-height: 40px;
    color: var(--color-main);
    font-size: 15px;
    font-weight: 700;
}
/*DS SAN PHAM*/

.article-item {
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: .8rem;
    overflow: hidden;
}
.article-item .article-title a {
    font-weight: 700;
    font-size: 2rem;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.article-item .icon {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 1.6rem;
    width: 7.7rem;
    height: 7.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.6rem;
    left: 1.6rem;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.article-item .icon img {
    width: 4.8rem;
    height: 4.8rem;
    object-fit: scale-down;
}
.article-item .inner-content {
    padding: 2.4rem;
}
.article-item:hover {
    background-color: var(--color-highlight);
}
.article-item:hover .article-title a {
    color: var(--white);
}
.article-item:hover .icon {
    background-color: var(--color-highlight);
}


/*RESPONSIVE MOBILE*/
.is-mobile .logo-section img {
    height: auto;
}
.is-mobile .hero-content {
    left: 5%;
}
.is-mobile .hero-content .hero-top {
    margin-bottom: 10px;
    padding: 8px 10px;
    font-size: 15px;
}
.is-mobile .hero-content .hero-title {
    font-size: 3.2rem;
    margin-bottom: 15px;
}
.is-mobile .hero-content .hero-desc {
    font-size: 15px;
    margin-bottom: 15px;
}
.is-mobile .hero-content .btn-action {
    height: 40px;
    padding: 0 20px;
    margin-bottom: 15px;
}

.is-mobile .swiper-slider-main .swiper-slide svg {
    width: 70%;
}
.is-mobile .swiper-slider-main .swiper-slide-0 svg {
    left: -20%;
    bottom: -130%;
}
.is-mobile .swiper-slider-main .swiper-slide-1 svg {
    right: 0;
    top: -100%;
}

.is-mobile .action-header .btn-hotline {
    display: none;
}

.is-mobile .features-section {
    margin-top: 0;
    flex-wrap: wrap;
    padding: 3rem;
    gap: 10px;
}
.is-mobile .features-section .item-feature {
    width: calc(50% - 5px);
}
.is-mobile .features-section .item-feature .title {
    font-size: 22px;
}
.is-mobile .features-section .item-feature .desc {
    width: auto;
}
.is-mobile .line-vertical {
    display: none;
}

.is-mobile .footer-menu-section,
.is-mobile .newsletter,
.is-mobile .entire-info-website {
    margin-bottom: 3rem;
}

.is-mobile .title-section {
    font-size: 28px;
}

.is-mobile .card-section {
    flex-wrap: wrap;
}
.is-mobile .card-section .item-card {
    width: calc(50% - 15px);
    flex: unset;
}
.is-mobile .section-process .card-section .arrow {
    display: none;
}
.is-mobile .section-solution .item-card {
    padding: 16px;
}

.is-mobile .footer-top {
    padding: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
}
.is-mobile .footer-top .text {
    width: 100%;
    text-align: center;
}
.is-mobile .company-name {
    font-size: 25px;
}

/*Mobile chi tiet san pham*/
.is-mobile .section-banner-product:before,
.is-mobile .product-banner .banner-left ,
.is-mobile .product-banner .banner-right {
    width: 50%;
}

.is-mobile .product-banner .sub-title {
    font-size: 2rem;
}
.is-mobile .product-banner .product-title-detail {
    font-size: 3rem;
}
.is-mobile .product-banner .product-description {
    font-size: 15px;
}
.is-mobile .product-detail-head .product-content {
    font-size: 2rem;
}
.is-mobile .attribute-featured {
    flex-wrap: wrap;
}
.is-mobile .attribute-featured .feature-left, 
.is-mobile .attribute-featured .feature-right {
    width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
    gap: 20px;
}
.is-mobile .attribute-featured .item-feature {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
}
.is-mobile .attribute-featured .item-feature img {
    width: 50px;
}
.is-mobile .attribute-featured .title-feature {
    font-size: 20px;
    text-align: left;
}
.is-mobile .attribute-featured .feature-main {
    width: 100%;
    flex: 0 0 100%;
    order: 3;
}

.is-mobile .new-technology h3,
.is-mobile .new-technology h2,
.is-mobile .new-technology h4,
.is-mobile .new-technology h2 *,
.is-mobile .new-technology h3 *,
.is-mobile .new-technology h4 * {
    font-size: 30px;
}
.is-mobile .new-technology table {
    margin-top: 50px;
    margin-bottom: 3rem;
}
/*Mobile chi tiet san pham*/

.button-fixed {
    position: fixed;
    bottom: 10%;
    right: 15px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.button-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
}
.button-fixed a.call {
    background-color: var(--color-highlight);
    padding: 10px;
}
.button-fixed a.call img {
    filter: brightness(0) invert(1);
}

.button-fixed a.back-to-top {
    border: 1px solid rgba(120, 120, 120, 0.20);
    background: var(--white);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

.is-mobile .button-fixed a {
    width: 40px;
    height: 40px;
}

@media (min-width: 1024px) {
    .group-action {
        visibility: hidden;
        opacity: 0;
    }
    .btn-submit {
        padding: 1rem 3rem;
        letter-spacing: .5px;
        font-size: 1.4rem;
    }
    
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: var(--width-container);
    }
}

@media (max-width: 1400px) and (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 100%;
    }
}

@media (max-width: 1440px) {
    .features-section .item-feature .title {
        font-size: 21px;
    }
    .features-section .item-feature {
        padding: 0 10px;
    }
    
    .section-process .card-section {
        gap: 20px;
    }
    .section-process .card-section .arrow svg {
        width: 20px;
    }
    
    .footer-top .title {
        font-size: 22px;
    }
    .footer-top .desc {
        font-size: 16px;
    }
    
    .btn-highlight, .btn-white {
        padding: 0 20px;
        height: 5rem;
    }
    
    .attribute-featured .item-feature {
        height: auto;
    }
    .attribute-featured .item-feature img {
        width: 50px;
    }
    .attribute-featured .title-feature {
        font-size: 2rem;
    }
    
    .new-technology h2, .new-technology h3, .new-technology h4, .new-technology h2 *, .new-technology h3 *, .new-technology h4 * {
        font-size: 2.5rem;
    }
    .new-technology {
        font-size: 15px;
    }
    
    .card-section .item-card .title {
        font-size: 1.8rem;
        min-height: 40px;
        margin-bottom: 10px;
    }
    .card-section .item-card .desc {
        16px
    }
}

@media (max-width:1400px) {
    .text-24-7 {
        display: none;
    }
    :root {
        --width-container: 86%;
    }
    
    .footer-top .action {
        flex-direction: column;
        padding: 10px 0;
    }
    
    
    
    .product-banner .product-title-detail {
        font-size: 6rem;
    }
    .product-detail-head .product-content {
        font-size: 2rem;
    }
    .product-detail-head .product-info label,
    .product-detail-head .product-info b,
    .product-detail-head .attribute-info {
        font-size: 15px;
    }
}

@media (max-width: 1280px) {
    body:not(.is-mobile) footer ,
    body:not(.is-mobile) .title-footer,
    body:not(.is-mobile) .footer-menu-section ul li a {
        font-size: 15px;
    }
    
    .card-section .item-card .title {
        font-size: 17px;
        min-height: 40px;
        margin-bottom: 10px;
    }
    .card-section .item-card .desc {
        font-size: 14px;
    }
    
    .categories-section .item-cate .title {
        font-size: 17px;
    }
}

@media (max-width: 1200px) {
    .action-header .btn-hotline {
        display: none;
    }
}
@media (max-width:1024px) {
    .setting-menu-mb>.container>.row>div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width:992px) {
    .is-mobile .search-section{
        padding-left: 0;
    }
    .footer-mb>.container>.row>div {
        flex:  0 0 50%;
        max-width: 50%;
    }
    .social-share .list-social .btn-social a {
        width: 4rem;
        height: 4rem;
        line-height: 4rem;
    }
    .newsletter-input {
        width: 100%;
    }
    .slide-main {
        padding: 3rem 0 0;
    }
    .filter-url{
        border: none !important;
    }
}
@media only screen and (max-width: 991px){
    .search-section {
        padding-left: 3rem;
        margin-left: 0;
    }
    
    .search-section:before {
        opacity: 0;
    }

}
@media (max-width:768px) {
    .swiper-slider-main .swiper-slide img {
        height: 50vw;
    }
}
@media (max-width:767px) {
    .nh-admin-bar ul {
        display: none;
    }
    .is-mobile {
        margin-bottom: 6rem;
    }
    .is-mobile .topbar-section ul.topbar-dropdown {
        left: unset;
    }
    .is-mobile .action-header {
        gap: 5px;
    }
    .is-mobile .title-section {
        font-size: 22px;
    }
    
    .is-mobile .swiper-slider-main .swiper-slide img {
        /*height: 55vh;*/
        width: 100%;
    }
    .is-mobile .hero-content {
        position: unset;
        top: 0;
        transform: unset;
        left: 0;
        padding: 3rem 2rem;
    }
    .is-mobile .hero-content .hero-top {
        font-size: 13px;
    }
    .is-mobile .hero-content .hero-action {
        flex-direction: column;
        gap: 0;
    }
    .is-mobile .hero-content .hero-feature {
        align-items: self-start;
        flex-direction: column;
        gap: 10px;
    }
    
    .is-mobile .features-section {
        padding: 2rem;
        gap: 20px;
    }
    .features-section .item-feature .icon {
        width: 80px;
        flex: 0 0 80px;
    }
    
    .is-mobile .features-section .item-feature {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    .is-mobile .features-section .item-feature .title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .is-mobile .card-section .item-card {
        width: 100%;
    }
    .is-mobile .card-section .item-card .title {
        font-size: 18px;
        margin-bottom: 10px;
        height: auto;
    }
    .is-mobile .card-section .item-card .desc {
        min-height: auto;
        font-size: 15px;
    }
    
    .is-mobile .footer-top .action {
        flex-direction: column;
    }
    
    .is-mobile .product-banner {
        flex-direction: column;
    }
    .is-mobile .section-banner-product:before {
        opacity: 0;
    }
    .is-mobile .product-banner .banner-left, 
    .is-mobile .product-banner .banner-right {
        width: 100%;
        position: relative;
        max-width: 100%;
    }
    
    .is-mobile .product-banner .banner-right {
        padding: 3rem 0;
    }
    .is-mobile .banner-right:before {
        content: '';
        position: absolute;
        top: 0;
        left: -15px;
        width: calc(100% + 30px);
        height: 100%;
        z-index: -1;
        background-color: var(--black);
    }
    .is-mobile .attribute-featured .feature-left, 
    .is-mobile .attribute-featured .feature-right {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .footer-mb>.container>.row>div {
        flex:  0 0 100%;
        max-width: 100%;
    }
    
    .is-mobile .button-mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        padding: 10px 15px;
        background-color: var(--white);
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }
    .is-mobile .button-mobile a {
        color: var(--black);
        font-size: 15px;
        font-weight: 500;
    }
    .is-mobile .button-mobile a i {
        font-size: 2rem;
    }
}
