:root {

  /*========== Color ==========*/
  --first-color: #0A654F;
  --second-color: #29EE2F;
  --third-color: #73EB54;
  --text-color: #3B3B3B;
  --text-color-gray: #999999;
  --white-color: #FAF9F6;

  /*========== Font and typography ==========*/
  --prompt-100: "Prompt-100", sans-serif;
  --prompt-300: "Prompt-300", sans-serif;
  --prompt-400: "Prompt-400", sans-serif;
  --prompt-500: "Prompt-500", sans-serif;
  --prompt-600: "Prompt-600", sans-serif;
  --prompt-700: "Prompt-700", sans-serif;
  --prompt-800: "Prompt-800", sans-serif;
  --prompt-900: "Prompt-900", sans-serif;

  --noto-400: "noto-400", sans-serif;
  --noto-500: "noto-500", sans-serif;
  --noto-600: "noto-600", sans-serif;
  --noto-700: "noto-700", sans-serif;
  --topic-font-size: 46px;
  --normal-font-size: 16px;
  --biggest-font-size: 1.95rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: all .3s ease;
  --img-hidden: hidden;
  --img-scale: scale(1.1);

  /*========== Margin ==========*/
  --margin-1: 15px;
  --margin-2: 30px;
  --margin-3: 40px;
  --margin-4: 50px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--prompt-400);
  font-size: var(--normal-font-size);
  line-height: 24px;
  color: var(--text-color);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  @media screen and (max-width: 767px) {
    line-height: 22px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.3;
  font-weight: normal;
}

strong {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

a {
  color: #3B3B3B;
  text-decoration: none !important;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

p{
  margin: 0;
}

button {
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

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

button {
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

/*=============== Checkbox ===============*/
.checkboxDefault{
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  position: relative;
  & span{
    color: #fff;
    font-size: 16px;
    margin-left: 5px;
    @media screen and (max-width: 767px) {
      font-size: 14px;
    }
  }
  & input{
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  & input.check {
    position: absolute;
    opacity: 0;
    &:checked + label svg path {
      stroke-dashoffset: 0;
    }
    &:focus + label {
      transform: scale(1.03);
    }
  }
}
.checkboxDefault .check + label {
  display: block;
  border: 1px solid var(--first-color);
  background-color: #fff;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0;
  &:active {
    transform: scale(1.0);
  }
  & svg {
    pointer-events: none;
    vertical-align: top;
    & path {
      fill: none;
      stroke: var(--first-color);
      stroke-width: 7px;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
      transition: all 350ms cubic-bezier(1, 0, 0.37, 0.91);
    }
  }
}

/*=============== Checkbox ===============*/

/*=============== Wrapper ===============*/
.d-grid{
  display: grid !important;
}
.textReview{
  background-color: var(--first-color);
  width: 93px;
  padding: 0 23px;
  height: 243px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(0, -50%);
  @media screen and (max-width: 1390px) {
    width: 50px;
    height: 140px;
  }
  & p{
    writing-mode: tb-rl;
    transform: rotate(180deg);
    & img{
      transform: rotate(18deg);
      margin-bottom: 10px;
      @media screen and (max-width: 1390px) {
        height: 18px;
      }
    }
  }
  & p{
    color: var(--white-color);
    font-family: var(--prompt-500);
    font-size: 35px;
    @media screen and (max-width: 1390px) {
      font-size: 18px;
    }
  }
}
.iconTop{
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1;
  background-color: #fff;
  border-radius: 100%;
  @media screen and (max-width: 767px) {
    width: 25px;
    height: 25px;
    bottom: 10px;
    left: 10px;
  }
}
.wrapper {
  min-height: 64vh;
  padding-top: 123px;
  overflow: hidden;
  @media screen and (max-width: 991px) {
    padding-top: 108px;
  }
  @media screen and (max-width: 767px) {
    padding-top: 85px;
  }
  .topicPage{
    font-size: 24px;
    font-family: var(--prompt-500);
    color: var(--first-color);
    margin-bottom: 40px;
    @media screen and (max-width: 767px) {
      margin-bottom: 30px;
      font-size: 22px;
    }
  }
}
.scrollDescription{
  &::-webkit-scrollbar {
    width: 10px;
  }
  &::-webkit-scrollbar-track {
    background: #E6F9E1; 
  }
  &::-webkit-scrollbar-thumb {
    background: var(--second-color); 
  }
}

.container {
  @media screen and (min-width: 1390px) {
    max-width: 1240px;
  }
}
.btnDefault{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #303030;
  color: var(--second-color);
  font-size: 22px;
  font-family: var(--prompt-500);
  border-radius: 5px;
  height: 43px;
  padding: 0 12px;
  min-width: 133px;
  max-width: fit-content;
  @media screen and (max-width: 991px) {
    font-size: 18px !important;
  }
  @media screen and (max-width: 991px) {
    font-size: 14px !important;
  }
}
/*=============== Wrapper ===============*/

/*=============== section--youknow ===============*/
.sectionYouknow{
  padding-top: 100px;
  padding-bottom: 174px;
  @media screen and (max-width: 991px) {
    padding-bottom: 100px;
  }
  z-index: 1;
  .container{
    position: relative;
  }
  .bgSection{
    position: absolute;
    top: -40px;
    right: 0;
    z-index: -1;
    & img{
      /* width: 100%; */
    }
  }
  .rightYouknow{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   
    & h1{
      font-size: 52px;
      line-height: 62px;
      color: var(--second-color);
      font-family: var(--prompt-500);
      margin-bottom: 20px;
      @media screen and (max-width: 991px) {
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 10px;
      }
      @media screen and (max-width: 767px) {
        font-size: 26px;
        line-height: 32px;
      }
    }
    & p{
      font-size: var(--normal-font-size);
      max-width: 400px;
      @media screen and (max-width: 991px) {
        max-width: 100%;
      }
    }
    & button{
      margin-bottom: 30px;
    }
    .controlBtn{
      max-width: 400px;
      @media screen and (max-width: 991px) {
        max-width: 100%;
      }
      .btnDefault{
        display: flex;
        margin-top: 70px;
        @media screen and (max-width: 991px) {
          margin-top: 25px;
        }
      }
    }
  }
  .gridYouknow{
    display: grid;
    gap: 50px;
    grid-template-columns: 55% auto;
    @media screen and (max-width: 991px) {
      grid-template-columns: 100%;
      gap: 30px;
    }
  }
}
.sliderYouknow{
  &.slick-dotted.slick-slider{
    margin-bottom: 0;
  }
  .imageYouknow{
    border: 2px solid #707070;
    height: 335px;
    background-color: #fff;
    & img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .slick-dots{
    position: relative;
    bottom: 0;
    display: flex;
    justify-content: center;
    margin-top: 22px;
    gap: 19px;
    & li{
      width: 30px;
      height: 30px;
      margin: 0;
      @media screen and (max-width: 991px) {
        width: 20px;
        height: 20px;
      }
      &.slick-active button:before{
        background-color: #C3FFBE;
        border-color: #29EE2F;
      }
      & button:before{
        content: '';
        width: 30px;
        height: 30px;
        border: 1px solid #707070;
        border-radius: 100%;
        opacity: 1;
        @media screen and (max-width: 991px) {
          width: 20px;
          height: 20px;
        }
      }
    }
  }
}
/*=============== section--youknow ===============*/

/*=============== section--review ===============*/
.sectionReview{
  background-color: #e6fbe2;
  padding: 55px 0;
  position: relative;
  margin-bottom: 45px;
  .topicReview{
    font-size: 48px;
    line-height: 54px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    @media screen and (max-width: 991px) {
      font-size: 38px;
      line-height: 44px;
      margin-bottom: 10px;
    }
    @media screen and (max-width: 767px) {
      font-size: 26px;
      line-height: 32px;
    }
    & span{
      color: var(--second-color);
      font-size: 48px;
      display: block;
      @media screen and (max-width: 991px) {
        font-size: 38px;
      }
      @media screen and (max-width: 767px) {
        font-size: 26px;
        line-height: 32px;
      }
    }
  }
  .topicDes{
    font-size: 43px;
    line-height: 50px;
    color: #245E0E;
    padding-top: 35px;
    margin-bottom: 25px;
    font-family: var(--prompt-500);
    & span{
      font-size: 49px;
      display: block;
    }
  }
  .detailReview{
    margin-bottom: 50px;
    @media screen and (max-width: 991px) {
      margin-bottom: 30px;
    }
    & p{
      color: var(--first-color);
      margin-bottom: 30px;
    }
  }
  .gridReview{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    @media screen and (max-width: 991px) {
      grid-template-columns: 100%;
      gap: 30px;
    }
  }
  .imageReview{
    position: relative;
    @media screen and (max-width: 991px) {
      max-width: 400px;
      margin: 0 auto;
    }
    & img{
      z-index: 1;
      position: relative;
      @media screen and (max-width: 991px) {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .bgImageReview{
      position: absolute;
      top: -70px;
      right: 0;
    }
  }
}
/*=============== section--review ===============*/

/*=============== section--howtouse ===============*/
.sectionHowtouse{
  position: relative;
  .bgReview{
    position: absolute;
    bottom: -19%;
    right: -5%;
    max-width: 822px;
    z-index: -1;
    @media screen and (max-width: 991px) {
      max-width: 700px;
      bottom: -16%;
      right: -6%;
    }
    @media screen and (max-width: 767px) {
      right: -8%;
      bottom: -7%;
      max-width: 400px;
    }
  }
  .topcicHowtoues{
    font-size: 48px;
    line-height: 54px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    margin-bottom: 10px;
    @media screen and (max-width: 991px) {
      font-size: 38px;
      line-height: 44px;
      margin-bottom: 0;
    }
    @media screen and (max-width: 767px) {
      font-size: 26px;
      line-height: 32px;
    }
    & span{
      font-size: 48px;
      padding-left: 100px;
      color: var(--second-color);
      display: block;
      @media screen and (max-width: 991px) {
        font-size: 38px;
        line-height: 44px;
        padding-left: 50px;
      }
      @media screen and (max-width: 767px) {
        font-size: 26px;
        line-height: 32px;
        padding-left: 30px;
      }
    }
  }
  .topicDes{
    font-size: 32px;
    line-height: 40px;
    color: var(--first-color);
    margin-bottom: 15px;
    @media screen and (max-width: 991px) {
      font-size: 28px;
      line-height: 38px;
    }
    @media screen and (max-width: 991px) {
      font-size: 16px;
      line-height: 28px;
    }
    & img{
      margin-left: 15px;
      @media screen and (max-width: 991px) {
        height: 20px;
      }
      @media screen and (max-width: 991px) {
        height: 15px;
      }
    }
  }
  .scrollDescription{
    height: 150px;
    overflow-y: scroll;
    padding-right: 30px;
    margin-bottom: 90px;
    & p{
      color: var(--first-color);
      margin-bottom: 30px;
      &:last-child{
        margin-bottom: 0;
      }
    }
  }
  .gridHowtouse{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    @media screen and (max-width: 991px) {
      grid-template-columns: 100%;
    }
    .imageProduct{
      @media screen and (max-width: 991px) {
        max-width: 400px;
        margin: 0 auto;
      }
      & img{
        width: 100%;
      }
    }
    .rightGrid{
      padding-right: 60px;
      @media screen and (max-width: 767px) {
        padding-right: 0;
      }
      & h3{
        font-size: 46px;
        line-height: 50px;
        color: var(--first-color);
        margin-bottom: 15px;
        @media screen and (max-width: 991px) {
          font-size: 38px;
          line-height: 44px;
        }
        @media screen and (max-width: 767px) {
          font-size: 26px;
          line-height: 32px;
        }
      }
      & > p{
        color: var(--first-color);
        height: 72px;
        overflow: hidden;
        margin-bottom: 15px;
        @media screen and (max-width: 991px) {
          height: auto;
        }
      }
    }
    .collapseHowtouse{
      .collapseItem{
        margin-bottom: 15px;
      }
      .card-header{
        background-color: transparent;
        padding: 0;
        border-bottom: 0;
      }
      .card-body{
        padding-bottom: 0;
      }
      & button{
        padding: 0;
        color: var(--second-color);
        font-size: 20px;
        display: inline-flex;
        align-items: center;
        text-decoration: none !important;
        position: relative;
        @media screen and (max-width: 767px) {
          font-size: 16px;
        }
        &::before{
          content: '';
          background-image: url(../images/icons/collapse-up.svg);
          background-size: 12.49px;
          width: 12.49px;
          height: 12.49px;
          position: absolute;
          top: 9px;
          right: -20px;
          transition: all .3s;
          @media screen and (max-width: 767px) {
            top: 6px;
          }
        }
        &.collapsed{
          &::before{
            transform: rotate(180deg);
          }
        }
        & img{
          margin-right: 10px;
          @media screen and (max-width: 767px) {
            height: 15px;
          }
        }
      }
    }
  }
  .layoutHowto{
    padding: 0 5%;
    padding-bottom: 110px;
    @media screen and (max-width: 767px) {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 50px;
    }
    & h2{
      font-size: 46px;
      line-height: 51px;
      color: var(--first-color);
      position: relative;
      margin-bottom: 50px;
      @media screen and (max-width: 991px) {
        font-size: 38px;
        line-height: 42px;
      }
      @media screen and (max-width: 767px) {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 30px;
      }
      .lineTopic{
        right: -60%;
        bottom: 0;
        position: absolute;
        width: 100%;
        @media screen and (max-width: 767px) {
          display: none;
        }
        .borderIn{
          background-color: var(--second-color);
          height: 4px;
          position: relative;
          &::after{
            content: '';
            height: 4px;
            background-color: var(--first-color);
            position: absolute;
            top: 0;
            right: 0;
            width: 80%;
          }
        }
      }
    }
    .gridHowto{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      justify-items: center;
      margin-bottom: 30px;
      @media screen and (max-width: 767px) {
        grid-template-columns: 100%;
        gap: 25px;
      }
      .itemHowto{
        display: flex;
        flex-direction: column;
        align-items: center;
        .imageItem{
          margin-bottom: 20px;
          max-width: 150px;
        }
        & p{
          color: var(--first-color);
          font-size: 18px;
          line-height: 28px;
          max-width: 205px;
          text-align: center;
          @media screen and (max-width: 991px) {
            font-size: var(--normal-font-size);
            line-height: 24px;
          }
        }
      }
    }
  }
  .detailHowto{
    & p{
      margin-bottom: 30px;
      color: var(--first-color);
      &:last-child{
        margin-bottom: 0;
      }
    }
  }
}
/*=============== section--howtouse ===============*/

/*=============== section--review--user ===============*/
.sectionReviewUser{
  position: relative;
  background-color: #73EB54;
  .container{
    padding-bottom: 80px;
  }
  .borderSection{
    height: 8px;
    background-color: #898B88;
    position: relative;
    &::after{
      content: '';
      height: 100%;
      background-color: var(--first-color);
      position: absolute;
      top: 0;
      right: 0;
      width: 66.6%;
    }
  }
  .boxTextTop{
    background-color: var(--first-color);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    color: #fff;
    max-width: 326px;
    width: 100%;
    margin-bottom: 80px;
    @media screen and (max-width: 991px) {
      margin-bottom: 40px;
      font-size: 26px;
      line-height: 32px;
      max-width: 250px;
    }
    @media screen and (max-width: 767px) {
      margin-bottom: 30px;
      max-width: 230px;
      height: 50px;
    }
  }
  .gridReview{
    .col-lg-8{
      position: relative;
    }
    .reviewFor{
      height: 100%;
      @media screen and (max-width: 991px) {
        margin-bottom: 70px;
      }
      .slick-arrow{
        width: 53px;
        height: 53px;
        background-repeat: no-repeat;
        background-size: 100%;
        @media screen and (max-width: 991px) {
          width: 40px;
          height: 40px;
        }
        &::before{
          content: '';
        }
        &.slick-prev{
          left: 0;
          bottom: -60px;
          top: auto;
          background-image: url(../images/icons/review-left.svg);
          @media screen and (max-width: 991px) {
            bottom: 0px;
          }
        }
        &.slick-next{
          left: 65px;
          bottom: -60px;
          top: auto;
          background-image: url(../images/icons/review-right.svg);
          @media screen and (max-width: 991px) {
            bottom: 0px;
            left: 47px;
          }
        }
      }
    }
    .rating{
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      gap: 5px;
      & img{
        width: 26px;
        height: 24px;
      }
    }
    .text{
      font-size: var(--normal-font-size);
      color: var(--first-color);
      height: 126px;
      overflow: hidden;
      margin-bottom: 20px;
      @media screen and (max-width: 991px) {
        height: auto;
      }
    }
    .nameReview{
      font-size: var(--normal-font-size);
      color: var(--first-color);
      font-family: var(--prompt-500);
    }
    .desReview{
      font-size: var(--normal-font-size);
      color: var(--first-color);
    }
   
    .imageReview{
      width: 205px;
      height: 255px;
      opacity: 0.55;
      &.slick-current{
        opacity: 1;
      }
      & img{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
  .btnSlider{
    display: inline-flex;
    gap: 8px;
    & button{
      background-color: transparent;
      padding: 0;
      box-shadow: none;
      outline: none;
      border: none;
    }
  }
}
/*=============== section--review--user ===============*/

/*=============== online-shop ===============*/
.sectionPromotion{
  padding-top: 40px;
  margin-bottom: 75px;
  @media screen and (max-width: 767px) {
    margin-bottom: 50px;
  }
  .sliderPromotion{
    padding: 0 55px;
    @media screen and (max-width: 991px) {
      padding: 0 30px;
    }
    .imageTicket{
      position: relative;
      margin: 0 10px;
      @media screen and (max-width: 991px) {
        margin: 0 5px;
      }
      & img{
        width: 100%;
      }
      .textIn{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-55%, -54%);
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        
        & p{
          font-size: 16px;
          line-height: 24px;
          color: var(--first-color);
          @media screen and (max-width: 991px){
            font-size: 14px;
            line-height: 20px;
          }
        }
        & h3{
          font-size: 30px;
          line-height: 32px;
          margin-bottom: 5px;
          font-family: var(--prompt-700);
          @media screen and (max-width: 991px){
            font-size: 20px;
            line-height: 24px;
          }
        }
        .linkMore{
          background-color: #000;
          display: block;
          color: #fff;
          font-size: var(--normal-font-size);
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 3px;
          max-width: 143px;
          width: 100%;
          &:hover{
            background-color: var(--second-color);
          }
        }
      }
    }
    .slick-arrow{
      background-size: 100%;
      width: 39px;
      height: 39px;
      background-repeat: no-repeat;
      @media screen and (max-width: 991px) {
        width: 29px;
        height: 29px;
      }
      @media screen and (max-width: 991px) {
        width: 20px;
        height: 20px;
      }
      &.slick-prev{
        background-image: url(../images/icons/slide-left.svg);
        left: 0;
      }
      &.slick-next{
        background-image: url(../images/icons/slide-right.svg);
        right: 0;
      }
      &::before, &::before{
        content: '';
      }
    }
  }
}

.sectionShop{
  background-image: url(../images/bg-online-center.webp);
  background-position: left bottom 20%;
  background-size: 95% auto;
  background-repeat: no-repeat;
  padding-bottom: 179px;
  @media screen and (max-width: 991px) {
    padding-bottom: 100px;
  }
  & > .container{
    position: relative;
    .controlBgIn{
      max-width: 564px;
      position: absolute;
      bottom: -179px;
      z-index: -1;
      @media screen and (max-width: 991px) {
        bottom: -100px;
      }
      left: 0;
      & img{
        max-width: 100%;
      }
    }
  }
  .listShop{
    padding: 0 85px;
    @media screen and (max-width: 991px) {
      padding: 0;
    }
    .itemShop{
      margin-bottom: 37px;
      &:last-child{
        margin-bottom: 0;
      }
      .gridShop{
        display: grid;
        grid-template-columns: 320px auto;
        gap: 90px;
        @media screen and (max-width: 991px) {
          gap: 40px;
        }
        @media screen and (max-width: 767px) {
          grid-template-columns: 100%;
          gap: 25px;
        }
        .imageShop{
          border: 1px solid #707070;
          position: relative;
          width: 100%;
          padding-top: 99.377%;
          .shopNew{
            position: absolute;
            top: 0;
            left: 15px;
            width: 45px;
            height: 26px;
            background-color: var(--second-color);
            color: #000;
            font-size: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
          }
          & img{
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
        .detailShop{
          & h4{
            font-size: 30px;
            line-height: 42px;
            color: #000;
            font-family: var(--prompt-700);
            @media screen and (max-width: 991px) {
              font-size: 26px;
              line-height: 30px;
            }
            @media screen and (max-width: 767px) {
              font-size: 22px;
              line-height: 28px;
            }
          }
          & p{
            font-size: 26px;
            line-height: 34px;
            margin-bottom: 10px;
            @media screen and (max-width: 991px) {
              font-size: 20px;
              line-height: 30px;
            }
            @media screen and (max-width: 767px) {
              font-size: 16px;
              line-height: 22px;
            }
          }
          .btnDefault{
            height: 39px;
            font-size: 22px;
            @media screen and (max-width: 767px) {
              height: 30px;
            }
          }
        }
      }
    }
  }
}

.controlBg{
  background-image: url(../images/bg-online-top-2.webp);
  background-size: 94% auto;
  background-repeat: no-repeat;
  background-position: top -11.5vw center;
}

.listProduct{
  background-image: url(../images/bg-online-center.webp);
  background-position: left top -10vw;
  background-size: 95% auto;
  background-repeat: no-repeat;
  padding-bottom: 53px;
  & > .container{
    position: relative;
    .controlBgIn{
      max-width: 564px;
      position: absolute;
      bottom: -53px;
      left: 0;
      z-index: -1;
      & img{
        max-width: 100%;
      }
    }
  }
  .gridProduct{
    display: grid;
    grid-template-columns: repeat(3 ,1fr);
    gap: 55px 20px;
    margin-bottom: 80px;
    @media screen and (max-width: 991px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (max-width: 767px) {
      grid-template-columns: repeat(1, 1fr);
      margin-bottom: 50px;
    }
    .itemProduct{
      .imageProduct{
        display: block;
        width: 100%;
        padding-top: 100%;
        position: relative;
        margin-bottom: 10px;
        border: 1px solid #707070;
        & img{
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .nameProduct{
        font-size: 20px;
        line-height: 30px;
        font-family: var(--prompt-600);
        display: flex;
        align-items: center;
        justify-content: space-between;
        &:hover{
          color: var(--second-color);
        }
      }
      & p{
        font-size: 16px;
        line-height: 24px;
      }
      .priceDiscount{
        width: 40px;
        height: 19px;
        border-radius: 3px;
        background-color: rgb(255, 0, 0, .30);
        color: #FF0000;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        
      }
    }
  }
  .waySocial{
    margin-top: 75px;
    @media screen and (max-width: 767px) {
      margin-top: 30px;
    }
  }
}

.sectionPackage{
  & > .container{
    position: relative;
    .controlBgIn{
      max-width: 564px;
      & img{
        max-width: 100%;
      }
    }
  }
  .layoutIn{
    background-image: url(../images/bg-package.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-color: #45B139;
    padding: 0 0 50px 0;
    .flexPackage{
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
      margin-bottom: 35px;
      .topicPackage{
        font-size: 58px;
        line-height: 62px;
        font-style: italic;
        color: var(--white-color);
        font-family: var(--prompt-600);
        margin-bottom: 5px;
        @media screen and (max-width: 991px){
          font-size: 38px;
          line-height: 44px;
        }
        @media screen and (max-width: 767px) {
          font-size: 26px;
          line-height: 32px;
        }
      }
      .textPackage{
        font-size: 33px;
        line-height: 39px;
        font-family: var(--prompt-100);
        font-style: italic;
        color: var(--white-color);
        @media screen and (max-width: 991px) {
          font-size: 26px;
          line-height: 32px;
        }
        @media screen and (max-width: 767px) {
          font-size: 22px;
          line-height: 28px;
        }
      }
      .btnPackage{
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--first-color);
        height: 77px;
        padding: 0 16px;
        border-radius: 11px;
        gap: 25px;
        & div p{
          color: var(--second-color);
          font-size: 18px;
          line-height: 28px;
          font-family: var(--prompt-500);
          &:last-child{
            color: var(--white-color);
          }
        }
      }
    }
    & .sliderPackage, & .sliderYear{
      max-width: 90%;
      .itemPackage{
        border-radius: 23px;
        background-color: rgb(255, 255, 255, 0.53);
        box-shadow: 0 3px 6px rgb(0,0,0,.16);
        margin: 0 10px;
        padding: 35px 25px;
        @media screen and (max-width: 991px) {
          padding: 30px 20px;
        }
        @media screen and (max-width: 767px) {
          padding: 15px;
        }
        .nameItem{
          font-size: 22px;
          line-height: 28px;
          color: var(--first-color);
          font-family: var(--prompt-700);
          font-style: italic;
          margin-bottom: 25px;
          padding-left: 10px;
          @media screen and (max-width: 991px) {
            font-size: 18px;
            line-height: 28px;
            margin-bottom: 20px;
          }
        }
        .topItem{
          display: flex;
          justify-content: center;
          gap: 10px;
          align-items: center;
          margin-bottom: 21px;
          padding-bottom: 20px;
          padding-left: 10px;
          padding-right: 10px;
          border-bottom: 3.85px solid var(--first-color);
          @media screen and (max-width: 991px) {
            padding: 0 0 20px 0;
          }
          @media screen and (max-width: 767px) {
            flex-direction: column;
          }
          .imagePackage{
            width: 155px;
            height: 155px;
            line-height: 0;
            @media screen and (max-width: 991px) {
              height: 140px;
              width: 140px;
            }
            & img{
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          }
          .pricePackage{
            color: #000;
            font-size: 42px;
            line-height: 52px;
            font-family: var(--prompt-600);
            font-style: italic;
            @media screen and (max-width: 991px) {
              font-size: 26px;
              line-height: 36px;
            }
            & p:last-child{
              font-size: 18px;
              line-height: 24px;
              color: #898B88;
              font-family: var(--prompt-300);
              @media screen and (max-width: 991px) {
                font-size: 12px;
              }
              & span{
                text-decoration-line: line-through;
              }
            }
          }
        }
        .bottomItem{
          text-align: center;
          & p{
            &:first-child{
              color: #F00328;
              font-size: 27px;
              line-height: 34px;
              font-family: var(--prompt-600);
              @media screen and (max-width: 991px) {
                font-size: 22px;
                line-height: 30px;
              }
            }
            &:nth-child(2), &:nth-child(3){
              font-size: 22px;
              line-height: 26px;
              color: #000;
              @media screen and (max-width: 991px) {
                font-size: 18px;
                line-height: 24px;
              }
            }
            &:last-child{
              font-size: 38px;
              line-height: 50px;
              color: #000;
              font-style: italic;
              font-family: var(--prompt-600);
              @media screen and (max-width: 991px) {
                font-size: 32px;
                line-height: 40px;
              }
              @media screen and (max-width: 767px) {
                font-size: 26px;
                line-height: 36px;
              }
            }
          }
        }
      }
      .slick-arrow{
        background-size: 100%;
        width: 29px;
        height: 29px;
        @media screen and (max-width: 991px){
          width: 20px;
          height: 20px;
        }
        &.slick-prev{
          display: none;
        }
        &.slick-next{
          background-image: url(../images/icons/right-package.svg);
          right: -0;
          transform: translate(150%, -50%);
        }
        &::before, &::before{
          content: '';
        }
      }
    }
  }
  .borderHeader{
    height: 8px;
    background-color: #E6FBE2;
    position: relative;
    margin-bottom: 35px;
    &::after{
      content: '';
      height: 8px;
      background-color: var(--first-color);
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
    }
  }
}

.waySocial{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  & p{
    font-size: var(--normal-font-size);
    font-family: var(--prompt-500);
    margin-bottom: 10px;
    @media screen and (max-width: 767px) {
      margin-bottom: 4px;
    }
  }
  .listSocial{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    & a{
      display: block;
      width: 41px;
      height: 41px;
      @media screen and (max-width: 767px) {
        width: 30px;
        height: 30px;
      }
    }
  }
}

.detailProduct{
  padding-top: 40px;
  .topicPage{
    margin-bottom: 47px;
    @media screen and (max-width: 767px) {
      margin-bottom: 30px;
    }
  }
  .gridDetail{
    display: grid;
    gap: 25px;
    grid-template-columns: 340px auto;
    /* margin-bottom: 60px; */
    @media screen and (max-width: 991px) {
      grid-template-columns: 100%;
    }
    .slideNavFor{
      .slideFor{
        margin-bottom: 15px;
        .imageDetail{
          & img{
            max-height: 340px;
          }
        }
      }
      .slideNav{
        margin: 0 -3px;
        .imageDetail{
          cursor: pointer;
          margin: 0 3px;
          & img{
            max-height: 108px;
          }
        }
      }
      .imageDetail{
        background-color: #EAFAE4;
        border: 1px solid #707070;
        & img{
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
    }
    .rightDetail{
      max-width: 450px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      @media screen and (max-width: 991px) {
        max-width: 100%;
      }
      .desDetail{
        height: 245px;
        overflow-y: scroll;
        margin-bottom: 45px;;
      }
      .nameProduct{
        font-size: 30px;
        line-height: 46px;
        font-family: var(--prompt-700);
        margin-bottom: 5px;
        @media screen and (max-width: 991px){
          font-size: 30px;
          line-height: 40px;
        }
        @media screen and (max-width: 767px) {
          font-size: 22px;
          line-height: 28px;
        }
      }
      & p{
        white-space: pre-line;
        font-size: 14px;
        font-family: var(--prompt-300);
        @media screen and (max-width: 767px) {
          font-size: 12px;
        }
        &.topicDetail{
          font-family: var(--prompt-400);
        }
      }
      .boxPrice{
        .topBoxPrice{
          display: flex;
          align-items: flex-end;
          justify-content: space-between;
          border-bottom: 2px solid #303030;
          padding-bottom: 10px;
          margin-bottom: 15px;
          .price{
            font-size: 21px;
            line-height: 32px;
            font-family: var(--prompt-500);
          }
          .d-flex{
            font-size: 13px;
            line-height: 18px;
            font-family: var(--prompt-300);
            color: #808080;
            text-decoration-line: line-through;
            & span{
              width: 40px;
              height: 19px;
              border-radius: 3px;
              background-color: rgb(255, 0, 0, .30);
              color: #FF0000;
              font-size: 10px;
              display: flex;
              align-items: center;
              justify-content: center;
              margin-left: 5px;
            }
          }
        }
        .bottomBoxPrice{
          display: flex;
          align-items: center;
          justify-content: space-between;
          .actionCounter{
            display: flex;
            gap: 10px;
            align-items: center;
            & p{
              font-size: 24px;
              font-family: var(--prompt-500);
              width: 25.4px;
              text-align: center;
            }
            & button{
              width: 38px;
              height: 38px;
              display: flex;
              align-items: center;
              justify-content: center;
              border: 1px solid #000;
              border-radius: 100%;
              background-color: transparent;
              font-family: var(--prompt-500);
              font-size: 24px;
              outline: 0;
              box-shadow: none;
            }
          }
          .btnDefault{
            font-size: 16px;
            & img{
              height: 25px;
            }
          }
        }
      }
    }
  }
}

.yourProduct{
  padding-top: 150px;
  padding-bottom: 20px;
  position: relative;
  @media screen and (max-width: 767px) {
    padding-top: 30px;
    background-color: #EAFAE4;
    margin-top: 50px;
  }
  .container{
    position: relative;
    z-index: 1;
    padding-top: 40px;
    @media screen and (max-width: 767px) {
      padding-top: 0;
    }
  }
  & h3{
    font-size: 30px;
    line-height: 46px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    margin-bottom: 20px;
    text-align: center;
    @media screen and (max-width: 991px){
      font-size: 38px;
      line-height: 44px;
    }
    @media screen and (max-width: 767px) {
      font-size: 26px;
      line-height: 32px;
    }
  }
  .slideYour{
    margin: 0 13%;
    margin-bottom: 30px;
    @media screen and (max-width: 991px) {
      margin: 0 5%;
    }
    .imageYour{
      margin: 0 10px;
      border: 1px solid #707070;
    }
    .slick-arrow{
      background-size: 100%;
      width: 39px;
      height: 39px;
      @media screen and (max-width: 991px){
        width: 20px;
        height: 20px;
      }
      &.slick-prev{
        background-image: url(../images/icons/slide-left.svg);
        left: -5%;
        z-index: 1;
      }
      &.slick-next{
        background-image: url(../images/icons/slide-right.svg);
        right: -5%;
      }
      &::before, &::before{
        content: '';
      }
    }
  }
  .waySocial{
    @media screen and (max-width: 991px) {
      margin-top: 30px;
    }
  }
}
.controlBgYour{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  @media screen and (max-width: 767px) {
    display: none;
  }
  & img{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    @media screen and (max-width: 991px) {
      object-fit: cover;
    }
  }
}

.sectionBenefits{
  .tabsBenefits{
    padding-top: 60px;
    position: relative;
    @media screen and (max-width: 767px) {
      padding-top: 40px;
    }
    .nav{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 47px;
      @media screen and (max-width: 767px) {
        gap: 10px;
        margin-bottom: 30px;
      }
      .nav-item{
        .nav-link{
          background-color: #E6F6E0;
          border-radius: 6px;
          color: var(--first-color);
          font-size: 23px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-family: var(--prompt-500);
          height: 68px;
          width: 100%;
          @media screen and (max-width: 991px) {
            font-size: 16px;
          }
          @media screen and (max-width: 767px) {
            font-size: 12px;
            line-height: 16px;
            padding: 10px;
            text-align: center;
            height: 55px;
          }
          &.active, &:hover{
            background-color: var(--second-color);
          }
        }
      }
    }
  }
  .benefitsMember{
    position: relative;
    background-image: url(../images/bg-benefits.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 100px 0;
    background-color: #45AF37;
    @media screen and (max-width: 991px) {
      background-position: bottom;
      padding: 80px 0;
    }
    @media screen and (max-width: 767px) {
      padding: 50px 0;
    }
    .bgPointTop{
      position: absolute;
      bottom: 0;
      left: 0;
      transform: translate(10%, 55%);
      z-index: -1;
      max-width: 610px;
      @media screen and (max-width: 991px) {
        max-width: 500px;
        transform: translate(10%, 45%);
      }
      & img{
        width: 100%;
      }
    }
    
    .gridMember{
      display: grid;
      grid-template-columns: 60% auto;
      @media screen and (max-width: 991px) {
        grid-template-columns: 100%;
      }
      .leftMember{
        background-color: rgb(255, 249, 246, .80);
        backdrop-filter: blur(16px);
        height: 370px;
        padding: 20px 27px;
        & h3{
          font-size: 40px;
          line-height: 52px;
          color: var(--second-color);
          font-family: var(--prompt-600);
          @media screen and (max-width: 991px){
            font-size: 36px;
            line-height: 40px;
          }
          @media screen and (max-width: 767px) {
            font-size: 26px;
            line-height: 32px;
          }
        }
        & p{
          font-size: 23px;
          line-height: 32px;
          color: var(--first-color);
          font-family: var(--prompt-500);
          margin-bottom: 5px;
          @media screen and (max-width: 991px){
            font-size: 18px;
            line-height: 24px;
          }
          @media screen and (max-width: 767px) {
            font-size: 16px;
            line-height: 20px;
          }
        }
        & table{
          border: 1px solid var(--first-color);
          font-size: 16px;
          font-family: var(--prompt-500);
          text-align: center;
          color: var(--first-color);
          @media screen and (max-width: 767px) {
            font-size: 14px;
          }
          & td, & th{
            border: none;
            vertical-align: middle;
            /* height: 66px; */
          }
          & thead tr{
            border-bottom: 1px solid var(--first-color);
            height: 66px;
            &:first-child{
              height: 50px;
              & th:first-child{
                border: 1px solid var(--first-color);
                vertical-align: bottom;
              }
            }
          }
          & tbody tr{
            height: 66px;
            &:first-child{
              & td:first-child{
                border: 1px solid var(--first-color);
              }
            }
          }
        }
        .detailTable{
          display: block;
          font-size: 12px;
          line-height: 16px;
          color: #000;
        }
      }
      .rightMember{
        background-color: rgba(10, 101, 79, .65);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
        text-align: center;
        & h3{
          color: var(--white-color);
          font-size: 28px;
          line-height: 32px;
          font-family: var(--prompt-500);
          margin-bottom: 5px;
          @media screen and (max-width: 767px) {
            font-size: 24px;
            line-height: 30px;
          }
        }
        & p{
          font-size: 23px;
          line-height: 32px;
          color: #67F031;
          font-family: var(--prompt-500);
          @media screen and (max-width: 991px) {
            font-size: 16px;
            line-height: 24px;
          }
        }
        .btnMember{
          display: flex;
          gap: 24px;
          justify-content: center;
          width: 100%;
          margin-top: 20px;
          & button{
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
            height: 38.5px;
            max-width: 150px;
            width: 100%;
            border-radius: 0;
            outline: 0;
            box-shadow: none;
            @media screen and (max-width: 767px) {
              font-size: 14px;
              max-width: 130px;
              height: 34px;
            }
          }
          .btnRegister{
            background-color: #73EB54;
            color: #303030;
          }
          .btnLogin{
            border: 1px solid #67F031;
            background-color: #fff;
            color: var(--first-color);
          }
        }
      }
    }
  }
  .tabFirst{
    .benefitsPoint{
      padding-top: 50px;
      position: relative;
      .bgPointTop{
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translate(-10%, 79%);
        z-index: -1;
        max-width: 610px;
        @media screen and (max-width: 767px) {
          max-width: 300px;
        }
        & img{
          width: 100%;
        }
      }
      .topicPoint{
        background-image: url(../images/topic-point.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        max-width: 583px;
        height: 126px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
        @media screen and (max-width: 991px) {
          max-width: 450px;
          height: 97px;
        }
        @media screen and (max-width: 767px) {
          max-width: 400px;
          height: 75px;
          margin-bottom: 30px;
        }
        & span{
          font-size: 32px;
          font-family: var(--prompt-500);
          color: var(--first-color);
          line-height: 32px;
          position: relative;
          top: 2px;
          @media screen and (max-width: 991px){
            font-size: 25px;
            line-height: 30px;
          }
          @media screen and (max-width: 767px) {
            font-size: 19px;
            line-height: 24px;
            position: relative;
            top: -2px;
          }
        }
      }
      .gridPoint{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 30px;
        max-width: 700px;
        margin: 0 auto;
        justify-items: center;
        align-items: flex-end;
        margin-bottom: 50px;
        @media screen and (max-width: 991px) {
          gap: 40px 30px;
        }
        @media screen and (max-width: 767px) {
          grid-template-columns: repeat(2 ,1fr);
          gap: 20px;
        }
        .itemPoint{
          text-align: center;
          color: var(--first-color);
          & img{
            margin-bottom: 10px;
            max-height: 90px;
            max-width: 100%;
            @media screen and (max-width: 767px) {
              max-height: 70px;
            }
          }
          & p{
            font-size: 22px;
            line-height: 22px;
            font-family: var(--prompt-500);
            @media screen and (max-width: 767px) {
              font-size: 16px;
            }
          }
          & span{
            font-size: 16px;
            line-height: 22px;
            @media screen and (max-width: 767px) {
              font-size: 12px;
            }
          }
        }
      }
    }
    .detailBenefits{
      padding-top: 85px;
      padding-bottom: 115px;
      background-image: url(../images/bg-bottom-benefits.webp);
      background-repeat: no-repeat;
      background-size: 80% auto;
      background-position: bottom;
      background-color: #EAFAE4;
      @media screen and (max-width: 991px) {
        padding-top: 50px;
        padding-bottom: 80px;
      }
      @media screen and (max-width: 767px) {
        padding: 40px 0;
      }
      & h3{
        font-size: 32px;
        line-height: 42px;
        color: var(--first-color);
        font-family: var(--prompt-500);
        margin-bottom: 45px;
        text-align: center;
        @media screen and (max-width: 991px){
          font-size: 25px;
          line-height: 38px;
        }
        @media screen and (max-width: 767px) {
          font-size: 20px;
          line-height: 30px;
        }
        & br{
          @media screen and (max-width: 767px) {
            display: none;
          }
        }
      }
      .gridBenefits{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-content: center;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        @media screen and (max-width: 767px) {
          grid-template-columns: 100%;
        }
        .itemBenefit{
          .circle{
            width: 145px;
            height: 145px;
            border-radius: 100%;
            background-color: var(--first-color);
            color: var(--second-color);
            font-size: 27px;
            line-height: 30px;
            font-family: var(--prompt-600);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            @media screen and (max-width: 991px) {
              width: 130px;
              height: 130px;
              font-size: 22px;
              line-height: 24px;
            }
            & span{
              display: block;
              font-size: 15px;
              line-height: 21px;
              font-family: var(--prompt-100);
              @media screen and (max-width: 991px) {
                font-size: 12px;
                line-height: 18px;
              }
            }
          }
          & p{
            font-size: 19px;
            color: var(--first-color);
            line-height: 22px;
            max-width: 160px;
            margin: 0 auto;
            @media screen and (max-width: 991px) {
              font-size: 16px;
              line-height: 20px;
            }
          }
        }
      }
    }
  }
  .tabSecondary{
    .sectionPackage{
      padding: 25px 0;
      background-image: url(../images/bg-year.png);
      background-repeat: no-repeat;
      background-size: cover;
      & h2{
        font-size: 31px;
        line-height: 37px;
        font-family: var(--prompt-600);
        font-style: italic;
        color: var(--first-color);
        @media screen and (max-width: 767px) {
          font-size: 26px;
          line-height: 32px;
        }
      }
      & h4{
        font-size: 20px;
        line-height: 32px;
        color: var(--white-color);
        font-family: var(--prompt-500);
        font-style: italic;
        margin-bottom: 10px;
        @media screen and (max-width: 767px) {
          font-size: 16px;
          line-height: 26px;
        }
      }
      .layoutIn{
        padding: 0;
        background-image: none;
        background-color: unset;
        max-width: 1000px;
        margin: 0 auto;
        /* .sliderPackage{
          max-width: 100%;
        } */
      }
    }
    .sectionTrust{
      padding-top: 50px;
      padding-bottom: 160px;
      .topicTrust{
        position: relative;
        font-size: 37px;
        line-height: 47px;
        color: var(--first-color);
        font-family: var(--prompt-500);
        margin-bottom: 30px;
        @media screen and (max-width: 991px) {
          font-size: 26px;
          line-height: 32px;
        }
        & div{
          display: inline-block;
        }
        & span{
          font-size: 39px;
          line-height: 47px;
          color: var(--second-color);
          display: block;
          text-align: right;
          @media screen and (max-width: 991px) {
            font-size: 26px;
            line-height: 32px;
          }
        }
        .lineTopic{
          right: -20%;
          bottom: 0;
          position: absolute;
          width: 80%;
          @media screen and (max-width: 991px) {
            width: 60%;
            right: -10%;
          }
          @media screen and (max-width: 767px) {
            display: none;
          }
          .borderIn{
            background-color: var(--second-color);
            height: 4px;
            position: relative;
            width: 100%;
            &::after{
              content: '';
              height: 4px;
              background-color: var(--first-color);
              position: absolute;
              top: 0;
              right: 0;
              width: 80%;
            }
          }
        }
      }
      .detailTrust{
        font-size: 14px;
        line-height: 27px;
        color: #84C17E;
        font-family: var(--prompt-500);
        font-style: italic;
        display: flex;
        align-items: flex-start;
        max-width: 470px;
        margin-left: auto;
        margin-right: 20%;
        margin-bottom: 50px;
        @media screen and (max-width: 767px) {
          max-width: 100%;
          margin-right: 0;
          margin-bottom: 40px;
          font-size: 12px;
          line-height: 20px;
        }
        & span{
          padding-top: 20px;
          @media screen and (max-width: 991px) {
            padding-top: 10px;
          }
        }
        & img{
          margin-right: 5px;
          @media screen and (max-width: 991px) {
            width: 30px;
          }
          @media screen and (max-width: 767px) {
            width: 20px;
          }
        }
      }
      .sliderTrust{
        margin: 0 -10px;
        padding: 0 25px;
        .itemImage{
          background-color: #C5C5C5;
          /* width: 150px;
          height: 150px; */
          border-radius: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 10px;
          & img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100%;
          }
        }
        .slick-arrow{
          background-size: 100%;
          width: 22px;
          height: 22px;
          &.slick-prev{
            background-image: url(../images/icons/left-gray.svg);
            left: 0;
            z-index: 1;
          }
          &.slick-next{
            background-image: url(../images/icons/right-gray.svg);
            right: 0;
          }
          &::before, &::before{
            content: '';
          }
        }
      }
    }
  }
  .tabThrid{
    .joinUs{
      .topBanner{
        margin-bottom: 50px;
        background-image: url(../images/bg-join.png);
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        & h2{
          color: var(--second-color);
          font-size: 28px;
          line-height: 28px;
          font-family: var(--prompt-500);
          @media screen and (max-width: 767px) {
            font-size: 24px;
            line-height: 26px;
          }
        }
        & h4{
          font-size: 21px;
          line-height: 28px;
          color: var(--white-color);
          @media screen and (max-width: 767px) {
            font-size: 18px;
            line-height: 20px;
          }
        }
      }
    }
    .btnMember{
      display: flex;
      gap: 24px;
      justify-content: center;
      width: 100%;
      margin-top: 35px;
      & button{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        height: 38.5px;
        max-width: 150px;
        width: 100%;
        border-radius: 0;
        outline: 0;
        box-shadow: none;
        @media screen and (max-width: 767px) {
          font-size: 14px;
          max-width: 130px;
          height: 34px;
        }
      }
      .btnRegister{
        background-color: #73EB54;
        color: #303030;
      }
      .btnLogin{
        border: 1px solid #67F031;
        background-color: #fff;
        color: var(--first-color);
      }
    }
    .gridJoin{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      justify-content: center;
      max-width: 1000px;
      margin: 0 auto 60px;
      @media screen and (max-width: 767px) {
        grid-template-columns: 100%;
      }
      .itemJoin{
        text-align: center;
        .imageJoin{
          width: 165px;
          height: 165px;
          padding: 6px;
          background-color: #fff;
          box-shadow: 0 3px 6px rgba(0,0,0,0.16);
          border-radius: 100%;
          margin: 0 auto 20px;
          position: relative;
          @media screen and (max-width: 767px) {
            width: 155px;
            height: 155px;
          }
          & img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100%;
          }
          .itemAbsolute{
            width: 49px;
            height: 49px;
            position: absolute;
            bottom: 0;
            left: 0;
            @media screen and (max-width: 767px) {
              width: 35px;
              height: 35px;
            }
          }
        }
        & p{
          font-size: 25px;
          line-height: 24px;
          color: var(--first-color);
          font-family: var(--prompt-500);
          margin-bottom: 5px;
          @media screen and (max-width: 767px) {
            font-size: 22px;
            line-height: 22px;
          }
        }
        & span{
          display: block;
          font-size: 12px;
          line-height: 18px;
          color: var(--first-color);
          max-width: 190px;
          margin: 0 auto;
          word-break: break-word;
        }
      }
    }
    .gridTwo{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      justify-content: center;
      max-width: 800px;
      padding-bottom: 135px;
      margin: 0 auto;
      @media screen and (max-width: 767px) {
        grid-template-columns: 100%;
        padding-bottom: 50px;
      }
      .itemJoin{
        text-align: center;
        .imageJoin{
          width: 102px;
          height: 102px;
          padding: 6px;
          background-color: #fff;
          border-radius: 100%;
          margin: 0 auto 20px;
          position: relative;
          & img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100%;
          }
        }
        & p{
          font-size: 25px;
          line-height: 24px;
          color: var(--first-color);
          font-family: var(--prompt-500);
          margin-bottom: 5px;
          @media screen and (max-width: 767px) {
            font-size: 22px;
            line-height: 22px;
          }
        }
        & span{
          display: block;
          font-size: 12px;
          line-height: 18px;
          color: var(--first-color);
          max-width: 190px;
          margin: 0 auto;
          word-break: break-word;
        }
      }
    }
  }
}

.listFaq{
  padding: 100px 0;
  background-image: url(../images/bg-faq.png);
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  @media screen and (max-width: 991px) {
    padding: 40px 0;
  }
  .boxFaq{
    display: grid;
    grid-template-columns: 240px auto;
    gap: 20px;
    margin-bottom: 25px;
    @media screen and (max-width: 767px) {
      grid-template-columns: 100%;
    }
    .imageFaq{
      border: 1px solid #707070;
    }
    .detailFaq{
      .topicFaq{
        font-size: 18px;
        line-height: 27px;
        font-family: var(--prompt-500);
        margin-bottom: 10px;
        color: var(--first-color);
        @media screen and (max-width: 767px) {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .answerFaq{
        font-size: 14px;
        line-height: 27px;
        color: var(--first-color);
        @media screen and (max-width: 767px) {
          font-size: 13px;
          line-height: 24px;
        }
        & span{
          font-size: 18px;
          font-family: var(--prompt-500);
          @media screen and (max-width: 767px) {
            font-size: 16px;
          }
        }
      }
    }
  }
}

.listCustomer{
  padding-top: 40px;
  padding-bottom: 320px;
  background-image: url(../images/bg-customer.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  @media screen and (max-width: 991px) {
    padding-bottom: 100px;
  }
  @media screen and (max-width: 767px) {
    padding-bottom: 50px;
  }
  .topicTrust{
    position: relative;
    font-size: 37px;
    line-height: 47px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    margin-bottom: 30px;
    @media screen and (max-width: 991px) {
      font-size: 26px;
      line-height: 32px;
    }
    @media screen and (max-width: 767px) {
      font-size: 24px;
      line-height: 28px;
    }
    & div{
      display: inline-block;
    }
    & span{
      font-size: 39px;
      line-height: 47px;
      color: var(--second-color);
      display: block;
      text-align: right;
      @media screen and (max-width: 991px) {
        font-size: 26px;
        line-height: 32px;
      }
    }
    .lineTopic{
      right: -20%;
      bottom: 0;
      position: absolute;
      width: 80%;
      @media screen and (max-width: 991px) {
        width: 60%;
        right: -10%;
      }
      @media screen and (max-width: 767px) {
        display: none;
      }
      .borderIn{
        background-color: var(--second-color);
        height: 4px;
        position: relative;
        width: 100%;
        &::after{
          content: '';
          height: 4px;
          background-color: var(--first-color);
          position: absolute;
          top: 0;
          right: 0;
          width: 80%;
        }
      }
    }
  }
  .detailTrust{
    font-size: 14px;
    line-height: 27px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    font-style: italic;
    display: flex;
    align-items: flex-start;
    max-width: 470px;
    margin-left: auto;
    margin-right: 20%;
    margin-bottom: 50px;
    @media screen and (max-width: 991px) {
      font-size: 12px;
      line-height: 22px;
    }
    @media screen and (max-width: 767px) {
      max-width: 100%;
      margin-right: 0;
    }
    & span{
      padding-top: 20px;
      @media screen and (max-width: 767px) {
        padding-top: 5px;
      }
    }
    & img{
      margin-right: 5px;
      @media screen and (max-width: 991px) {
        width: 25px;
      }
      @media screen and (max-width: 767px) {
        width: 20px;
      }
    }
  }
  .gridCustomer{
    display: grid;
    gap: 25px;
    max-width: 80%;
    margin: 0 auto 160px;
    @media screen and (max-width: 991px) {
      margin-bottom: 50px;
    }
    @media screen and (max-width: 767px) {
      max-width: 100%;
      margin-bottom: 30px;
    }
    &:last-child{
      margin-bottom: 0;
    }
    .imageCustomer{
      height: 270px;
      border: 1px solid #707070;
      & img{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .rightCustomer{
      height: 270px;
      overflow-y: auto;
      color: var(--first-color);
      @media screen and (max-width: 991px) {
        order: 2;
      }
      .logoCustomer{
        width: 65px;
        height: 65px;
        border-radius: 100%;
        background-color: #84C17E;
        margin-bottom: 10px;
        @media screen and (max-width: 767px) {
          width: 50px;
          height: 50px;
        }
        & img{
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 100%;
        }
      }
      .partnerCustomer{
        font-size: 14px;
        line-height: 27px;
        font-family: var(--prompt-500);
        margin-bottom: 5px;
      }
      .detailCustomer{
        font-size: 12px;
        line-height: 27px;
        display: flex;
        align-items: flex-start;
        position: relative;
        text-indent: 30px;
        margin-bottom: 10px;
        @media screen and (max-width: 767px) {
          line-height: 24px;
        }
        & img{
          margin-right: 10px;
          width: 20px;
          height: 35px;
          position: absolute;
          top: 5px;
          left: 0;
        }
      }
    }
    &.left{
      grid-template-columns: 420px auto;
      @media screen and (max-width: 991px) {
        grid-template-columns: 100%;
      }
    }
    &.right{
      grid-template-columns: auto 420px;
      @media screen and (max-width: 991px) {
        grid-template-columns: 100%;
      }
      .scrollDescription{
        direction: rtl;
        padding-left: 20px;
        .detailCustomer{
          direction: ltr;
        }
      }
    }
  }
}

.whoUse{
  padding-top: 90px;
  padding-bottom: 100px;
  @media screen and (max-width: 991px) {
    padding-top: 40px;
  }
  .controlBackGround{
    background-image: url(../images/ttt.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 100px;
    @media screen and (max-width: 767px) {
      padding-top: 60px;
    }
  }
  .banner{
    margin-bottom: 40px;
    .sliderBanner{
      .slick-list{
        padding:80px 0 !important;
        @media screen and (max-width: 767px) {
          padding: 0 !important;
        }
      }
      .imageBanner{
        transition: all .3s ease;
        & img{
          width: 100%;
          height: 100%;
        }
      }
      & .slick-active.slick-center{
        transform: scale(1.66);
        box-shadow: 0 3px 6px rgba(0,0,0,0.18);
        @media screen and (max-width: 767px) {
          transform: scale(1);
        }
      }
    }
  }
}

.maxWidthPage{
  max-width: 830px;
  margin: 0 auto;
}

.textOxygen{
  /* margin-bottom: 100px; */
  .topic{
    display: inline-block;
    color: var(--first-color);
    font-family: var(--prompt-500);
    font-size: 70px;
    line-height: 72px;
    margin-bottom: 20px;
    @media screen and (max-width: 991px) {
      font-size: 38px;
      line-height: 44px;
      margin-bottom: 10px;
    }
    @media screen and (max-width: 767px) {
      font-size: 26px;
      line-height: 32px;
    }
    & span{
      color: var(--second-color);
      display: block;
      text-align: right;
      @media screen and (max-width: 991px) {
        font-size: 38px;
        line-height: 44px;
      }
      @media screen and (max-width: 767px) {
        font-size: 26px;
        line-height: 32px;
      }
    }
  }
  .subTopic{
    font-size: 42px;
    line-height: 52px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    margin-bottom: 10px;
    @media screen and (max-width: 991px){
      font-size: 32px;
      line-height: 36px;
    }
    @media screen and (max-width: 767px) {
      font-size: 26px;
      line-height: 32px;
    }
  }
  & p{
    font-size: var(--normal-font-size);
    color: #0C7319;
    margin-bottom: 30px;
  }
  & strong{
    font-size: 20px;
    font-family: var(--prompt-500);
    color: var(--first-color);
  }
}

.contentOxygen{
  .topic{
    display: inline-block;
    color: var(--first-color);
    font-family: var(--prompt-500);
    font-size: 60px;
    line-height: 62px;
    margin-bottom: 25px;
    @media screen and (max-width: 991px){
      font-size: 38px;
      line-height: 44px;
      margin-bottom: 15px;
    }
    @media screen and (max-width: 767px) {
      font-size: 26px;
      line-height: 32px;
    }
    & span{
      color: var(--second-color);
      display: block;
      text-align: right;
    }
  }
  .gridContent{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    margin-bottom: 175px;
    @media screen and (max-width: 768px) {
      grid-template-columns: 100%;
    }
    @media screen and (max-width: 767px) {
      margin-bottom: 60px;
    }
  }
  .imageGrid{
    @media screen and (max-width: 991px) {
      max-width: 400px;
      margin: 0 auto;
    }
  }
  .detailGrid{
    .topicDetail{
      font-size: 28px;
      line-height: 31px;
      color: var(--first-color);
      font-family: var(--prompt-500);
      margin-bottom: 15px;
      @media screen and (max-width: 991px){
        font-size: 20px;
        line-height: 26px;
      }
      @media screen and (max-width: 767px) {
        font-size: 18px;
        line-height: 24px;
      }
    }
    & p{
      color: var(--first-color);
      font-size: var(--normal-font-size);
      margin-bottom: 25px;
      & strong{
        font-family: var(--prompt-700);
      }
    }
    & ul{
      list-style: inside;
      margin-bottom: 25px;
      & li{
        color: var(--first-color);
        font-size: var(--normal-font-size);
      }
    }
    .textSecondary{
      font-size: 18px;
      color: var(--second-color);
      margin-bottom: 5px;
    }
  }
  .scrollDescription{
    height: 310px;
    overflow-y: scroll;
  }
  .btnDefault{
    height: 39px;
    font-size: 22px;
    min-width: 105px;
    margin: 50px auto 0;
    display: flex;
    @media screen and (max-width: 767px) {
      margin-top: 30px;
    }
  }
  .sliderWho{
    margin: 0 -10px;
    padding: 0 25px;
    .itemImage{
      background-color: #C5C5C5;
      /* width: 150px;
      height: 150px; */
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 10px;
      & img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 100%;
      }
    }
    .slick-arrow{
      background-size: 100%;
      width: 22px;
      height: 22px;
      &.slick-prev{
        background-image: url(../images/icons/left-gray.svg);
        left: 0;
        z-index: 1;
      }
      &.slick-next{
        background-image: url(../images/icons/right-gray.svg);
        right: 0;
      }
      &::before, &::before{
        content: '';
      }
    }
  }
  .topicWho{
    position: relative;
    font-size: 37px;
    line-height: 47px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    margin-bottom: 30px;
    @media screen and (max-width: 991px){
      font-size: 34px;
      line-height: 38px;
    }
    @media screen and (max-width: 767px) {
      font-size: 26px;
      line-height: 32px;
    }
    & div{
      display: inline-block;
    }
    & span{
      font-size: 39px;
      line-height: 47px;
      color: var(--second-color);
      display: block;
      text-align: right;
      @media screen and (max-width: 991px){
        font-size: 34px;
        line-height: 38px;
      }
      @media screen and (max-width: 767px) {
        font-size: 26px;
        line-height: 32px;
      }
    }
    .lineTopic{
      right: -50%;
      bottom: 0;
      position: absolute;
      width: 100%;
      @media screen and (max-width: 991px) {
        width: 60%;
        right: -10%;
      }
      @media screen and (max-width: 767px) {
        display: none;
      }
      .borderIn{
        background-color: var(--second-color);
        height: 4px;
        position: relative;
        width: 100%;
        &::after{
          content: '';
          height: 4px;
          background-color: var(--first-color);
          position: absolute;
          top: 0;
          right: 0;
          width: 80%;
        }
      }
    }
  }
  .detailWho{
    font-size: 14px;
    line-height: 27px;
    color: var(--first-color);
    font-family: var(--prompt-500);
    font-style: italic;
    display: flex;
    align-items: flex-start;
    max-width: 470px;
    margin-left: auto;
    margin-right: 20%;
    margin-bottom: 50px;
    @media screen and (max-width: 767px) {
      font-size: 12px;
      line-height: 20px;
      max-width: 100%;
      margin-right: 0;
    }
    & span{
      padding-top: 20px;
      @media screen and (max-width: 991px) {
        padding-top: 10px;
      }
    }
    & img{
      margin-right: 5px;
      @media screen and (max-width: 991px) {
        width: 30px;
      }
      @media screen and (max-width: 767px) {
        width: 20px;
      }
    }
  }
}

.cartPage{
  padding-top: 40px;
  padding-bottom: 60px;
  .gridCart{
    display: grid;
    grid-template-columns: auto 30%;
    gap: 30px;
    @media screen and (max-width: 991px) {
      grid-template-columns: 100%;
      gap: 20px;
    }
    .leftCart{
      .tableCart{
        @media screen and (max-width: 501px) {
          overflow: auto;
        }
        & table{
          color: var(--first-color);
          border: 1px solid var(--first-color);
          margin-bottom: 0;
          border-radius: 6px;
          @media screen and (max-width: 501px) {
            width: 600px;
          }
          & thead{
            & tr{
              border-bottom: 1pxs solid var(--first-color);
              border-top-left-radius: 6px;
              & th{
                border-color: var(--first-color);
                border-bottom-width: 1px;
                color: var(--first-color);
                font-family: var(--prompt-500);
                &:first-child{
                  border-top-left-radius: 6px;
                  border-bottom-left-radius: 6px;
                }
                &:last-child{
                  border-top-right-radius: 6px;
                  border-bottom-right-radius: 6px;
                }
              }
            }
          }
        }
        & tbody{
          & tr{
            &:first-child{
              & td{
                border-top: none;
              }
            }
            & td{
              vertical-align: middle;
              border-color: var(--first-color);
              .itemCart{
                display: flex;
                align-items: center;
                gap: 10px;
                .imageCart{
                  max-width: 100px;
                  width: 100%;
                  height: 100px;
                  border: 1px solid #303030;
                }
                .nameCart{
                  font-family: var(--prompt-500);
                  font-size: 18px;
                }
                & p{
                  font-size: 14px;
                  line-height: 16px;
                  color: #9f9b9b;
                  overflow: hidden;
                  display: -webkit-box;
                  -webkit-line-clamp: 2;
                  -webkit-box-orient: vertical;
                  max-width: 189px;
                }
              }
              .resultCart{
                font-family: var(--prompt-500);
              }
              .btnDelete{
                padding: 0;
                box-shadow: none;
                outline: none;
                border: none;
                color: var(--first-color);
              }
              .valueCart{
                display: flex;
                border: 1px solid var(--first-color);
                border-radius: 6px;
                justify-content: space-between;
                height: 30px;
                max-width: 80px;
                @media screen and (max-width: 501px) {
                  min-width: 80px;
                }
                & p{
                  width: 15.12px;
                  text-align: center;
                  line-height: 30px;
                }
                & button{
                  box-shadow: none;
                  outline: none;
                  border: none;
                  background-color: transparent;
                  color: var(--first-color);
                  font-family: var(--prompt-500);
                  font-size: 20px;
                  width: 25px;
                }
              }
            }
          }
        }
      }
    }
  }
  .rightCart{
    box-shadow: 0 3px 10px rgb(0,0,0,.18);
    border-radius: 6px;
    padding: 30px;
    .boxSumCart{
      color: var(--first-color);
      height: 100%;
      display: flex;
      flex-direction: column;
      .headSum{
        font-family: var(--prompt-500);
        color: var(--first-color);
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 30px;
      }
      .listSum{
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #dee2e6;
        color: var(--first-color);
        height: 50px;
        &:last-child{
          font-family: var(--prompt-500);
          font-size: 20px;
          border-bottom: none;
          margin-bottom: 25px;
        }
      }
      .btnDefault{
        font-size: 16px;
        display: flex;
        width: 100%;
        max-width: 100%;
        margin-top: auto;
        background-color: #73EB54;
        color: var(--first-color);
      }
    }
  }
}

.checkoutPage{
  .btnLogin{
    background-color: transparent;
    color: var(--first-color);
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 18px;
    margin-bottom: 30px;
    & span{
      font-family: var(--prompt-500);
    }
  }
  .gridCheckout{
    display: grid;
    grid-template-columns: auto 30%;
    gap: 30px;
    @media screen and (max-width: 991px) {
      grid-template-columns: 100%;
    }
    
    .leftCheckout{
      box-shadow: 0 3px 10px rgb(0,0,0,.18);
      border-radius: 6px;
      padding: 30px;
      & h4{
        font-family: var(--prompt-500);
        color: var(--first-color);
        margin-bottom: 20px;
      }
    }
    .form-group{
      & label{
        color: var(--first-color);
      }
    }
    .checkRule{
      & span{
        font-size: 12px;
        color: var(--first-color);
      }
    }
  }
  .formLogin{
    display: none;
    grid-template-columns: 35% 35% auto;
    gap: 15px;
    align-items: flex-end;
    margin-bottom: 30px;
    transition: display .3s ease;
    .form-group{
      margin-bottom: 0;
    }
    .btnDefault{
      font-size: 16px;
      display: flex;
      width: 100%;
      max-width: 100%;
      margin-top: auto;
      background-color: #73EB54;
      color: var(--first-color);
      height: 38px;
      min-width: inherit;
    }
  }
}
/*=============== online-shop ===============*/

@media screen and (max-width: 767px) {
  :root{
    --normal-font-size: 14px;
  }
}