/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 2px 1px 3px 2px rgba(0, 0, 0, 0.356);
    border-top: 1px var(--color-main) solid;
}

.header .hd-voucher {
    background: var(--color-main);
    color: #fff;
    padding: 3px;
    justify-content: space-between;
    display: flex;
}

.header .hd-voucher .hd-voucher-content {
    font-size: 15px;
    margin: auto;
}

.header .hd-voucher .hd-voucher-icon {
    color: black;
    font-size: 18px;
}

.header .hd-voucher .hd-voucher-icon:hover {
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
}

 .header .container {
    max-width: 1120px;
    margin-inline: 1.5rem;
  }
  
  /*=============== HEADER ===============*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-family: var(--body-font);
    background-color: #fff;
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
    border-top: #43766c78 1px solid;
  }
  
  /*=============== NAV ===============*/
  .header .nav {
    height: var(--header-height);
  }
  
  .header .nav__logo, 
  .nav__burger, 
  .nav__close {
    color: #43766C;
  }
  
  .header .nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .nav__logo img {
    height: 35px;
    width: auto;
    margin-left: -25px;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
  }
  
  
  .header .nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
  }
  
  .header .nav__burger {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
  }
  .header .nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
  }
  
  .header .nav__close {
    opacity: 0;
  }
  
  /* Navigation for mobile devices */
  @media screen and (max-width: 1118px) {
    .header .nav__menu {
    background: #fff;
      position: absolute;
      left: 0;
      top: 2.5rem;
      width: 100%;
      height: calc(100vh - 3.5rem);
      overflow: auto;
      pointer-events: none;
      opacity: 0;
      transition: top .4s, opacity .3s;
    }
    .header .nav__menu::-webkit-scrollbar {
      width: 0;
    }
    .header .nav__list {
      background-color: var(--black-color);
      padding-top: 1rem;
    }
  }
  
  .header .nav__link {
    font-size: 20px;
    color: #000;
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
  }
  
  .header .nav__link:hover {
    color: #43766C;
  }
  
  /* Show menu */
  .header .show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
  }
  
  /* Show icon */
  .header .show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
    color: #43766C;
  }
  .header .show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
    color: #43766C;
  }
  
  /*=============== DROPDOWN ===============*/
  .header .dropdown__item {
    cursor: pointer;
  }
  
  .header .dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
  }
  
  .header .dropdown__link, 
  .dropdown__sublink {
    padding: 10px;
    width: 220px;
    color: #fff;
    background-color: #43766C;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
  }
  
  .header .dropdown__link i, 
  .dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
  }
  
  .header .dropdown__link:hover, 
  .dropdown__sublink:hover {
    background-color: #a7bbb7;
  }
  
  .header .dropdown__menu, 
  .dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
  }
  
  /* Show dropdown menu & submenu */
  .header .dropdown__item:hover .dropdown__menu, 
  .dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
  }
  
  /* Rotate dropdown icon */
  .header .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 575.99px) {
    .header .container {
      margin-inline: 1rem;
    }
  
    .header .nav__link {
      padding-inline: 1rem;
    }

    .header .hd-voucher {
        display: none;
    }
  }
  
  /* For large devices */
  @media screen and (min-width: 1118px) {
    .header .container {
      margin-inline: auto;
    }
  
    .header .nav {
      height: calc(var(--header-height) + 2rem);
      display: flex;
      justify-content: space-between;
    }
    .header .nav__toggle {
      display: none;
    }
    .header .nav__list {
      height: 100%;
      display: flex;
      column-gap: 3rem;
    }
    .header .nav__link {
      height: 100%;
      padding: 0;
      justify-content: initial;
      column-gap: .25rem;
    }
    .header .nav__link:hover {
      background-color: transparent;
    }
  
    .header .dropdown__item, 
    .dropdown__subitem {
      position: relative;
    }
  
    .header .dropdown__menu, 
    .dropdown__submenu {
      max-height: initial;
      overflow: initial;
      position: absolute;
      left: 0;
      top: 6rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, top .3s;
    }
  
    .header .dropdown__link, 
    .dropdown__sublink {
      padding-inline: 1rem 3.5rem;
    }
  
    .header .dropdown__subitem .dropdown__link {
      padding-inline: 1rem;
    }
  
    .header .dropdown__submenu {
      position: absolute;
      left: 100%;
      top: .5rem;
    }
  
    /* Show dropdown menu */
    .header .dropdown__item:hover .dropdown__menu {
      opacity: 1;
      top: 5.5rem;
      pointer-events: initial;
      transition: top .3s;
    }
  
    /* Show dropdown submenu */
    .header .dropdown__subitem:hover > .dropdown__submenu {
      opacity: 1;
      top: 0;
      pointer-events: initial;
      transition: top .3s;
    }
  }

/* .header .hd-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: var(--color-text-2);
}

.header .hd-main .inner-logo img {
    height: 27px;
    width: auto;
}

.header .hd-main .inner-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}

.header .hd-main .inner-menu-box {
    display: flex;
    align-items: center;
}

.header .hd-main .inner-menu-box i {
    cursor: pointer;
}

.header .hd-main .inner-menu ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--color-text-1);
    font-size: 20px;
    font-weight: 500;
    transition: all 0.2s;
    margin-left: 38px;
}

.header .hd-main .inner-menu ul li a:hover {
    color: var(--color-main);
}

.header .hd-main .inner-icon ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}

.header .hd-main .inner-icon ul li {
    margin-left: 5px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: inline-flex;
    font-size: 22.4px;
    color: var(--color-text-1);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .hd-main .inner-icon ul li a {
    color: var(--color-text-1);
} */
/* End Header */

/* Section-1 */
.section-1 {
    position: relative;
    top: 51px;
    /* background-image: url(../image/bg-trang-chu.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; */
    height: 80vh;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.605);
    overflow: hidden;
}

.section-1 .inner-main .container {
    top: 30%;
    /* height: 90vh; */
    position: absolute;
    transform: translate(-50%, -50%);
}

.section-1 .inner-main .container .inner-wrap {
    width: 80vw;
    display: flex;
    animation: slide 12s infinite;
    z-index: 0;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(-100%);
    }

    55% {
        transform: translateX(-200%);
    }

    75% {
        transform: translateX(-200%);
    }

    80% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-300%);
    }
}

.section-1 .inner-main .inner-wrap img {
    width: 100%;
}

.section-1 .inner-main .inner-box {
    margin-left: 300px;
    text-align: center;
}

.section-1 .inner-main .inner-title {
    font-weight: 600;
    position: relative;
    font-size: 70px;
    color: var(--color-main);
    -webkit-text-stroke: 0.4px #ffffff88;
    text-shadow: 0 2px 3px #ffffffd0;
    -webkit-background-clip: text;
}

.section-1 .inner-main .inner-desc {
    font-size: 28px;
    color: var(--color-main);
    margin-bottom: 40px;
    position: relative;
    -webkit-text-stroke: 1px #00000088;
    text-shadow: 0 2px 3px #ffffffd0;
    -webkit-background-clip: text;
}

.section-1 button {
    position: relative;
    width: 200px;
    padding: 15px 0;
    text-align: center;
    font-size: 25px;
    margin: 20px 10px;
    border: 1px var(--color-text-1) solid;
    background: #ffffffac;
    color: var(--color-main);
    -webkit-text-stroke: 1px #00000088;
    text-shadow: 0 2px 3px #ffffffac;
    /* -webkit-background-clip: text; */
    overflow: hidden;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 8px;
}

.section-1 button span {
    background: #144e0e39;
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.8s;
}

.section-1 button:hover span {
    width: 100%;
}
/* End Section-1 */

/* Section 2 */
.section-2 {
    position: relative;
    margin-top: 50px;
    padding: 70px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.094);
}

.section-2 .inner-title {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-2 .inner-title-box {
    color: var(--color-main);
    font-size: 50px;
    font-weight: 500;
    padding: 5px 80px;
    border: 2px var(--color-main) solid;
}

.section-2 .inner-product {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-left: 60px;
}

.section-2 .inner-product .inner-box {
    border: 1.5px var(--color-main) solid;
    border-radius: 8px;
    margin-right: 50px;
    box-shadow: 0 3px 4px var(--color-main);
    transition: all 0.3s;
}

.section-2 .inner-product .inner-box:hover {
    margin-top: -20px;
}

.section-2 .inner-product .inner-box .inner-img {
    background: var(--color-highlight);
    border-radius: 8px 8px 0 0;
}

.section-2 .inner-product .inner-box .inner-infor {
    padding: 10px;
}

.section-2 .inner-product .inner-box .inner-infor .inner-infor-title {
    font-size: 22px;
    color: var(--color-text-1);
    font-weight: 600;
}

.section-2 .inner-product .inner-box .inner-infor .inner-infor-desc {
    color: var(--color-main);
    font-size: 15px;
}

.section-2 .inner-product .inner-box .inner-infor .inner-infor-price {
    color: var(--color-text-1);
    font-weight: 500;
}

.section-2 .inner-product .inner-box .inner-infor .inner-infor-price .inner-infor-price-mini {
    color: var(--color-main);
    font-size: 13px;
}
/* End Section 2 */

/* Section 3 */
.section-3 {
    position: relative;
}

.section-3 .box {
    padding: 80px 20px 80px 120px;
}

.section-3 .box .inner-title {
    letter-spacing: 1.5px;
    font-size: 50px;
    font-weight: 600;
    color: var(--color-text-1);
}

.section-3 .box .inner-desc {
    font-size: 25px;
    font-weight: 600;
    color: var(--color-text-1);
    margin-top: 30px;
}

.section-3 .box .inner-infor {
    font-size: 16px;
    color: var(--color-main);
    margin-top: 30px;
}

.section-3 .box .button {
    background: #fff;
    border: 1.5px var(--color-text-1) solid;
    padding: 20px 60px;
    display: inline-block;
    border-radius: 10px;
    margin-top: 50px;
    position: relative;
    transition: all 0.3s;
}

.section-3 .box .button::before {
    content: "";
    display: block;
    width: 360px;
    height: 75px;
    background: transparent;
    border: 1.5px var(--color-text-1) solid;
    position: absolute;
    top: -10px;
    left: -10px;
    border-radius: 10px;
    z-index: -1;
}

.section-3 .box .button:hover {
    background: var(--bg-1);
}

.section-3 .box .button .button-content {
    color: var(--color-text-1);
    font-size: 23px;
}

.section-3 .box .inner-more {
    margin-top: 10px;
    color: var(--color-main);
    font-size: 16px;
    text-decoration: underline;
}

.section-3 .inner-img {
    text-align: center;
    padding-top: 100px;
}
/* End Section 3 */

/* Section 4 */
.section-4 {
    position: relative;
    padding: 30px;
    background: var(--bg-1);
}

.section-4 .inner-title {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 60px;
    font-weight: 600;
}

.section-4 .inner-line {
    margin-left: 5px;
    margin-bottom: 80px;
    margin-top: 20px;
}

.section-4 .inner-box img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: #000;
    border: 1px #859186 solid;
}

/* End Section 4 */

/* Section 5 */
.section-5 {
    position: relative;
    padding: 80px 0;
    border-top: 1px var(--color-text-1) solid;
    border-bottom: 1px var(--color-text-1) solid;
}

.section-5 .wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: mymove 12s linear 0s infinite reverse;
}

@keyframes mymove {
    from {left: 0px;}
    to {left: -100%;}
  }

.section-5 .box {
    border-radius: 12px;
    display: inline-block;
    background: var(--color-main);
    color: var(--color-text-2);
    padding: 5px 10px;
    font-size: 12px;
}

.section-5 .bao-hanh {
    font-size: 40px;
    color: var(--color-text-1);
}
/* End Section 5 */

/* Section 6 */
.section-6 {
    position: relative;
    margin: 120px 60px 0 60px;
}

.section-6 .box-img {
    background-image: url(/assets/image/bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 180px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 12px;
}

.section-6 .box-img .box-img-content {
    margin-left: 20px;
    background: var(--color-text-2);
    border: 1px var(--color-main) solid;
    border-radius: 8px;
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
}

.section-6 .box-img .box-img-content .inner-title {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.section-6 .box-img .box-img-content .inner-desc {
    color: var(--color-main);
}

.section-6 .box-img .button {
    margin-top: 50px;
    background: #fff;
    color: var(--color-main);
    border: 1.5px var(--color-main) solid;
    padding: 20px 40px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s;
}

.section-6 .box-img .button::before {
    content: "";
    display: block;
    width: 160px;
    height: 65px;
    background: transparent;
    border: 1.5px var(--color-main) solid;
    position: absolute;
    top: -7px;
    left: -7px;
    border-radius: 10px;
}

.section-6 .box-img .button:hover {
    background: var(--bg-1);
}

.section-6 .row-2 {
    margin-top: 50px;
}

.section-6 .row-2 .product {
    margin-left: 0;
    margin-right: 40px;
}

.section-6 .row-2 .img-chair {
    margin-left: 30px;
    border-right: 3px #eac1397f solid;
}
/* End Section 6 */

/* Section 7 */
.section-7 {
    position: relative;
    margin-top: 80px;
    background: var(--bg-1);
}
.section-7 .container {
    height: 70vh;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-7  .testimonial {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
  }
  .section-7  .testimonial .image {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
  }
  .section-7  .testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
  }
  .section-7  .slide p {
    text-align: center;
    padding: 0 160px;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-1);
  }
  .section-7  .slide .quote-icon {
    font-size: 28px;
    color: var(--color-main);
  }
  .section-7  .slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section-7  .details .name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }
  .section-7  .details .job {
    font-size: 12px;
    font-weight: 400;
    color: #333;
  }
  /* swiper button css */
  .section-7  .nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
  }
  .section-7  .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .section-7  .nav-btn::after,
  .section-7  .nav-btn::before {
    font-size: 20px;
    color: #fff;
  }
  .section-7  .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .section-7  .swiper-pagination-bullet-active {
    background-color: #4070f4;
  }
  @media screen and (max-width: 768px) {
    .slide p {
      padding: 0 20px;
    }
    .nav-btn {
      display: none;
    }
  }
/* End Section 7 */

/* Section 8 */
.section-8 {
    position: relative;
    margin-top: 80px;
}

.section-8 .inner-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 50px;
    letter-spacing: 3px;
}

.section-8 .line {
    background: #0000003e;
    margin-left: 48.2%;
    width: 80px;
    height: 3px;
    margin-top: -40px;
    margin-bottom: 40px;
}

.section-8 .line-1 {
    margin-top: 40px;
}

.section-8 .column {
    padding: 0 80px;
}

.section-8 .img-1 {
    margin-bottom: 40px;
    margin-left: 150px;
}

.section-8 .img-2 {
    margin-left: 60px;
}

.section-8 .img-3 {
    margin-bottom: 40px;
}

.section-8 .img-4 {
    margin-left: -100px;
}

.section-8 .img-5 {
    margin-bottom: 40px;
    margin-left: -80px;
    width: 257px;
    height: 200px;
}

.section-8 .img-6 {
    width: 350px;
    height: 55px;
    margin-left: -80px;
    margin-top: 10px;
}

.section-8 .img-7 {
    margin-top: 70px;
    margin-left: -80px;
}
/* End Section 8 */

/* Section 9 */
.section-9 {
    position: relative;
}

.section-9 .block {
    margin: 80px auto 0 auto;
    text-align: center;
}

.section-9 .block-1 {
    margin-left: 50px;
}

.section-9 .block img {
    width: 50px;
    height: 50px;
}
/* End Section 9 */

/* Footer */
.footer {
    position: relative;
    margin-top: 60px;
    background: var(--color-main);
    padding: 10px;
}

.footer .footer-box-1 {
    margin-left: 100px;
}

.footer .footer-box-1 .footer-box-1-img {
    background: #fff;
    padding: 10px;
    display: inline-block;
    margin-top: 30px;
}

.footer .footer-box-1 .footer-box-1-img img {
    width: auto;
    height: 30px;
}

.footer .footer-box-1 .footer-box-1-content-1 {
    color: var(--color-text-2);
    font-size: 24px;
    opacity: 0.85;
    font-weight: 500;
    font-family: var(--font);
    margin-top: 30px;
    margin-bottom: 5px;
}

.footer .footer-box-1 .footer-box-1-content-2 {
    color: var(--color-text-2);
    font-size: 18px;
    opacity: 0.85;
    font-family: var(--font);
}

.footer .footer-box-1 .footer-box-1-signup-button {
    border: 1px #ffffff89 solid;
    border-radius: 12px;
    padding: 10px 30px;
    background: var(--color-text-2);
    text-align: center;
    display: inline;
    align-items: center;
    transition: all 0.3s;
}

.footer .footer-box-1 .footer-box-1-signup-button a {
    text-align: center;
    color: var(--color-text-1);
    font-size: 20px;
}

.footer .footer-box-1 .footer-box-1-signup-button:hover {
    background: var(--color-highlight);
}

.footer .footer-box-2 {
    margin-left: 70px;
    margin-top: 20px;
}

.footer .footer-box-2 .footer-box-2-inner {
    margin-right: 50px;
}

.footer .footer-box-2 .footer-box-2-inner p {
    color: var(--color-text-2);
    font-size: 18px;
}

.footer .footer-box-2 .footer-box-2-inner p a {
    color: var(--color-text-2);
    font-size: 18px;
}

.footer .footer-box-2 .footer-box-2-inner .underline {
    text-decoration: underline;
}

.footer .footer-box-2 .footer-box-2-inner .footer-box-2-title {
    color: var(--color-text-2);
    font-size: 30px;
    font-weight: 600;
}

.footer .footer-box-2 .footer-box-2-inner .footer-box-2-icon a {
    font-size: 22px;
    margin-right: 15px;
    color: var(--color-text-2);
}

.footer .footer-navbar {
    content: "";
    background: var(--color-text-2);
    width: calc(100% - 170px);
    height: 0.5px;
    position: absolute;
    bottom: 35px;
    margin-left: 100px;
}

.footer .footer-cs {
    color: var(--color-text-2);
    margin-left: 100px;
}

/* End Footer */

@media screen and (max-width: 575.98px) {
  .section-1 {
    height: 30vh;
    top: 51px;
  }
  .section-1 .inner-main .container {
    top: 40%;
}
.section-1 .inner-main .inner-title {
    font-size: 20px;
}
.section-1 .inner-main .inner-box {
  margin-top: 30px;
  margin-left: 80px;
  text-align: center;
}

.section-1 .inner-main .inner-desc {
  font-size: 15px;
  color: var(--color-main);
}

.section-1 button {
  position: relative;
  width: 100px;
  padding: 12px 0;
  font-size: 15px;
}

.section-2 .inner-title-box {
  font-size: 25px;
  text-align: center;
}

.section-2 .inner-product .inner-box {
  margin-bottom: 20px;
}
}
