.displayResposive {
    display: none;
  }
  @media screen and (min-width: 1px) and (max-width: 576px) {
    .displayResposive.show-xs {
      display: block;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .displayResposive.show-sm {
      display: block;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .displayResposive.show-md {
      display: block;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .displayResposive.show-lg {
      display: block;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    .displayResposive.show-xl {
      display: block;
    }
  }
  @media screen and (min-width: 1401px) and (max-width: 1920px) {
    .displayResposive.show-xxl {
      display: block;
    }
  }
  @media screen and (min-width: 1921px) {
    .displayResposive.show-3xl {
      display: block;
    }
  }
  
  html.debugMode:before {
    z-index: 10000;
    content: "";
    position: fixed;
    right: 5px;
    top: 5px;
    background: red;
    color: #fff;
    display: none;
    width: 35px;
    height: 35px;
    padding: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  html.debugMode:after {
    z-index: 10000;
    content: "";
    position: fixed;
    right: 40px;
    top: 5px;
    background: blue;
    color: #fff;
    display: none;
    width: 35px;
    height: 35px;
    padding: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  
  @media screen and (min-width: 1px) {
    html.debugMode:after {
      content: "xs";
      display: flex;
    }
  }
  @media screen and (min-width: 577px) {
    html.debugMode:after {
      content: "sm";
      display: flex;
    }
  }
  @media screen and (min-width: 769px) {
    html.debugMode:after {
      content: "md";
      display: flex;
    }
  }
  @media screen and (min-width: 993px) {
    html.debugMode:after {
      content: "lg";
      display: flex;
    }
  }
  @media screen and (min-width: 1201px) {
    html.debugMode:after {
      content: "xl";
      display: flex;
    }
  }
  @media screen and (min-width: 1401px) {
    html.debugMode:after {
      content: "xxl";
      display: flex;
    }
  }
  @media screen and (min-width: 1921px) {
    html.debugMode:after {
      content: "3xl";
      display: flex;
    }
  }
  @media screen and (min-width: 2561px) {
    html.debugMode:after {
      content: "4xl";
      display: flex;
    }
  }
  @media screen and (max-width: 2559px) {
    html.debugMode:before {
      content: "4xl";
      display: flex;
    }
  }
  @media screen and (max-width: 1919px) {
    html.debugMode:before {
      content: "3xl";
      display: flex;
    }
  }
  @media screen and (max-width: 1399px) {
    html.debugMode:before {
      content: "xxl";
      display: flex;
    }
  }
  @media screen and (max-width: 1199px) {
    html.debugMode:before {
      content: "xl";
      display: flex;
    }
  }
  @media screen and (max-width: 991px) {
    html.debugMode:before {
      content: "lg";
      display: flex;
    }
  }
  @media screen and (max-width: 767px) {
    html.debugMode:before {
      content: "md";
      display: flex;
    }
  }
  @media screen and (max-width: 575px) {
    html.debugMode:before {
      content: "sm";
      display: flex;
    }
  }
  @media screen and (max-width: -1px) {
    html.debugMode:before {
      content: "xs";
      display: flex;
    }
  }
  @media screen and (max-width: 576px) {
    header .langueSelect, header .login {
      display: none;
    }
    header .logo {
      height: 20px;
    }
    header .openMegaMenu {
      margin-left: 10px;
    }
    header .openMegaMenu .icon {
      width: 42px;
    }
    header .cart {
      margin: 0 10px 0 auto;
    }
    header .cart .left {
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    header .cart .right {
      display: none;
    }
    header .fastMenuArea {
      position: unset;
    }
    header .fastMenuArea .fastMenu {
      overflow: hidden;
      overflow-y: auto;
      border-radius: 0;
      position: fixed;
      width: 100vw;
      height: 100vh;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      background: #fff;
    }
    header .fastMenuArea .fastMenu::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    header .fastMenuArea .fastMenu .close {
      display: flex;
      pointer-events: auto;
    }
    header .fastMenuArea .fastMenu .login, header .fastMenuArea .fastMenu .langueSelect {
      padding: 0 50px;
    }
    header .fastMenuArea .fastMenu .login.mobile, header .fastMenuArea .fastMenu .langueSelect.mobile {
      display: flex;
    }
    header .fastMenuArea .fastMenu .langueSelect {
      margin-top: 20px;
      background: transparent;
    }
    header .fastMenuArea .fastMenu .langueSelect .selectedLang .iconArea {
      display: none;
    }
    header .fastMenuArea .fastMenu .langueSelect .selectedLang .lang {
      font-weight: 600;
    }
    header .fastMenuArea .fastMenu .langueSelect .otherLangs {
      flex-direction: row;
      transform: translateY(0);
      background: transparent;
      position: relative;
      top: unset;
      bottom: unset;
      right: unset;
      left: unset;
      opacity: 1;
      pointer-events: auto;
      max-height: 100%;
    }
    .pageIndex header .login {
      display: none;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    header .logo {
      max-height: 25px;
    }
    header .langueSelect {
      margin-left: auto;
      padding: 12px;
    }
    header .cart {
      margin: 0 10px;
    }
    header .cart .left {
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    header .cart .right {
      display: none;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    header .container {
      max-width: 785px;
    }
    header .logo {
      height: 30px;
    }
  }
  @media screen and (max-width: 576px) {
    .footerTop .titleArea {
      margin-bottom: 90px;
    }
    .footerTop .titleArea span {
      font-size: 16px;
      line-height: 26px;
    }
    .footerTop .titleArea .title {
      font-size: 24px;
      line-height: 36px;
    }
    .footerTop .titleArea .text {
      font-size: 16px;
    }
    footer .imgArea:after {
      width: 100vw;
      height: 90%;
      aspect-ratio: unset;
    }
    footer .content .top {
      flex-direction: column;
      text-align: center;
      gap: 35px;
      margin-bottom: 35px;
    }
    footer .content .top .titleArea .social {
      justify-content: center;
    }
    footer .content .top .titleArea .logo {
      margin: 0 auto;
    }
    footer .content .top .content {
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }
    footer .content .top .content .item {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    footer .content .middle {
      padding-bottom: 30px;
    }
    footer .content .middle .footerPart > .text {
      text-align: center;
      font-size: 15px;
    }
    footer .content .middle .footerPart > .text b {
      justify-content: center;
    }
    footer .content .middle .footerPart .productDropdown {
      display: none;
    }
    footer .content .middle .menus {
      display: none;
    }
    .footerBottom .copyright {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      gap: 20px;
    }
    .footerBottom .bottom {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      gap: 20px 40px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .footerTop .titleArea {
      margin-bottom: 90px;
    }
    .footerTop .titleArea span {
      font-size: 16px;
      line-height: 26px;
    }
    .footerTop .titleArea .title {
      font-size: 24px;
      line-height: 36px;
    }
    .footerTop .titleArea .text {
      font-size: 16px;
    }
    footer .imgArea:after {
      width: 100vw;
      height: 90%;
      aspect-ratio: unset;
    }
    footer .content .top {
      flex-direction: column;
      text-align: center;
      gap: 35px;
      margin-bottom: 35px;
    }
    footer .content .top .titleArea .logo {
      margin: 0 auto;
    }
    footer .content .top .titleArea .social {
      justify-content: center;
    }
    footer .content .top .content {
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }
    footer .content .top .content .item {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    footer .content .middle {
      padding-bottom: 30px;
      flex-direction: column;
      align-items: center;
    }
    footer .content .middle .footerPart > .text {
      text-align: center;
      font-size: 15px;
    }
    footer .content .middle .footerPart > .text b {
      justify-content: center;
    }
    footer .content .middle .menus {
      margin-top: 40px;
    }
    .footerBottom .copyright {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      gap: 20px;
    }
    .footerBottom .bottom {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      gap: 20px 40px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .footerTop .titleArea {
      margin-bottom: 90px;
    }
    .footerTop .titleArea span {
      font-size: 16px;
      line-height: 26px;
    }
    .footerTop .titleArea .title {
      font-size: 24px;
      line-height: 36px;
    }
    .footerTop .titleArea .text {
      font-size: 16px;
    }
    footer .imgArea:after {
      width: 100vw;
      height: 90%;
      aspect-ratio: unset;
    }
    footer .content .top {
      flex-direction: column;
      gap: 35px;
      margin-bottom: 35px;
    }
    footer .content .top .titleArea {
      text-align: center;
    }
    footer .content .top .titleArea .logo {
      margin: 0 auto;
    }
    footer .content .top .titleArea .social {
      justify-content: center;
    }
    footer .content .top .content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 25px;
    }
    footer .content .top .content .item {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    footer .content .middle {
      padding-bottom: 30px;
      flex-direction: column;
      align-items: center;
    }
    footer .content .middle .footerPart > .text {
      text-align: center;
      font-size: 15px;
    }
    footer .content .middle .footerPart > .text b {
      justify-content: center;
    }
    footer .content .middle .menus {
      margin-top: 40px;
    }
    .footerBottom .copyright {
      justify-content: center;
      text-align: center;
      gap: 20px;
    }
    .footerBottom .bottom {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      gap: 20px 40px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .footerTop .titleArea {
      margin-bottom: 160px;
    }
    footer .imgArea:after {
      width: 100vw;
      height: 90%;
      aspect-ratio: unset;
    }
    footer .content .top {
      flex-direction: column;
      gap: 35px;
      margin-bottom: 35px;
    }
    footer .content .top .titleArea .logo {
      margin: 0 auto;
    }
    footer .content .top .titleArea .social {
      justify-content: center;
    }
    footer .content .middle {
      padding-bottom: 30px;
      flex-direction: column;
      align-items: center;
    }
    footer .content .middle .footerPart > .text {
      text-align: center;
      font-size: 15px;
    }
    footer .content .middle .footerPart > .text b {
      justify-content: center;
    }
    footer .content .middle .menus {
      margin-top: 40px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    footer .imgArea:after {
      width: 100vw;
      height: 90%;
      aspect-ratio: unset;
    }
    footer .content .top .content {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }
    footer .content .middle {
      gap: 40px;
      align-items: flex-start;
    }
    footer .content .middle .footerPart {
      max-width: 680px;
    }
  }
  @media screen and (max-width: 576px) {
    .row {
      margin: 0;
    }
    body.pageIndex {
      background: #F7F7F7;
    }
  }
  @media screen and (max-width: 576px) {
    .productListSlider:before, .productListSlider:after {
      display: none;
    }
    .qrCode {
      display: flex;
      margin-top: auto;
    }
    .mainTitleArea {
      flex-wrap: wrap;
      gap: 15px 30px;
    }
    section.mainSlider .container {
      padding: 0;
    }
    section.mainSlider .swiper-slide {
      aspect-ratio: unset;
      height: 570px;
    }
    section.mainSlider .swiper-slide .background {
      border-radius: 0;
      height: 100%;
    }
    section.mainSlider .swiper-slide .background img.main {
      display: none;
    }
    section.mainSlider .swiper-slide .background img.mobile {
      display: block;
    }
    section.mainSlider .swiper-slide .content {
      padding: 140px 20px 20px;
    }
    section.mainSlider .swiper-slide .content .subTitle {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 15px;
    }
    section.mainSlider .swiper-slide .content .title {
      font-size: 33px;
      font-weight: 900;
      text-transform: uppercase;
      background: linear-gradient(90deg, #0B4556 0%, #ADCBC9 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    section.mainSlider .swiper-slide .content .description {
      display: none;
    }
    section.mobileNewProducts {
      display: block;
      margin-top: 50px;
      margin-bottom: -30px;
    }
    section.mainNewProducts {
      margin-top: -40px;
      margin-bottom: 20px;
      padding: 0;
    }
    section.mainNewProducts .newProductsTitle {
      display: none;
    }
    section.mainNewProducts .partFilter {
      padding: 0;
      overflow: hidden;
    }
    section.mainNewProducts .partFilter .title {
      background: #fff;
      padding: 40px 50px 70px;
      margin-bottom: -110px;
      font-size: 18px;
      text-align: center;
    }
    section.mainNewProducts .partFilter > .text {
      padding: 0 20px 35px;
      text-align: center;
    }
    section.mainNewProducts .partFilter .row {
      padding: 10px;
    }
    section.mainNewProducts .partFilter .row > div {
      padding: 0;
    }
    section.mainNewProducts .row .col-grid10-xl-2 {
      display: none;
    }
    section.mainNewProducts.type2 {
      margin-top: -50px;
      display: block;
    }
    section.mainBestsellers {
      margin-bottom: 0;
    }
    section.testimonial {
      padding-bottom: 0;
    }
    section.testimonial .sectionTitle {
      font-size: 22px;
      line-height: 32px;
      margin-bottom: 30px;
    }
    .pageIndex header {
      background: transparent;
      left: 0;
      right: 0;
      top: 0;
      position: absolute;
      z-index: 3;
    }
    .pageIndex header:after {
      display: none;
    }
    section.partSteps {
      margin-bottom: 0;
      padding: 70px 0;
    }
    section.partSteps .titleArea {
      flex-direction: column;
      text-align: center;
      margin-bottom: 30px;
    }
    section.partSteps .titleArea .title {
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      margin-bottom: 20px;
    }
    section.partSteps .row {
      padding: 30px 0;
      flex-wrap: nowrap;
      overflow: hidden;
      overflow-x: auto;
    }
    section.partSteps .row::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    section.partSteps .step.bigStep {
      padding: 10px;
    }
    section.partSteps .step.bigStep .imgArea {
      width: 50%;
    }
    section.mainDiffrence {
      margin-bottom: 50px;
    }
    section.mainDiffrence > .title {
      font-size: 24px;
      line-height: 34px;
      margin-bottom: 40px;
    }
    section.mainDiffrence .row {
      padding: 30px 0;
      flex-wrap: nowrap;
      overflow: hidden;
      overflow-x: auto;
    }
    section.mainDiffrence .row::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    section.mainSlider2 {
      margin: 0;
    }
    section.mainSlider2 .container {
      padding: 0;
      height: 100%;
    }
    section.mainSlider2 .swiper-slide {
      aspect-ratio: unset;
      height: 570px;
    }
    section.mainSlider2 .swiper-slide .slide {
      width: 100%;
      margin-left: 0 !important;
    }
    section.mainSlider2 .swiper-slide .background {
      border-radius: 0;
      height: 100%;
    }
    section.mainSlider2 .swiper-slide .background img.main {
      display: none;
    }
    section.mainSlider2 .swiper-slide .background img.mobile {
      display: block;
    }
    section.mainSlider2 .swiper-slide .content {
      height: 100%;
      display: flex;
      flex-direction: column;
      padding: 100px 20px 70px;
    }
    section.mainSlider2 .swiper-slide .content .subTitle {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 15px;
    }
    section.mainSlider2 .swiper-slide .content .slideTitle {
      font-size: 30px;
      margin-top: 5px;
      font-weight: 900;
    }
    section.mainSlider2 .swiper-slide .content .description {
      display: none;
    }
    section.mainSlider2 .swiper-slide .mainTitleArea {
      margin-bottom: 10px;
    }
    section.mainSlider2 .swiper-slide .mainTitleArea .seeAll {
      display: none;
    }
    .slideSearch {
      display: none;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .productListSlider:before, .productListSlider:after {
      display: none;
    }
    .qrCode {
      display: flex;
      margin-top: auto;
    }
    .mainTitleArea {
      flex-wrap: wrap;
      gap: 15px 30px;
    }
    section.mobileNewProducts {
      display: block;
      margin-top: 50px;
      margin-bottom: -30px;
    }
    section.mainSlider .container {
      padding: 0;
    }
    section.mainSlider .swiper-slide {
      aspect-ratio: unset;
      height: 570px;
    }
    section.mainSlider .swiper-slide .background {
      border-radius: 0;
      height: 100%;
    }
    section.mainSlider .swiper-slide .background img.main {
      display: none;
    }
    section.mainSlider .swiper-slide .background img.mobile {
      display: block;
    }
    section.mainSlider .swiper-slide .content {
      padding: 140px 20px 20px;
    }
    section.mainSlider .swiper-slide .content .subTitle {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 15px;
    }
    section.mainSlider .swiper-slide .content .title {
      font-size: 33px;
      font-weight: 900;
      text-transform: uppercase;
      background: linear-gradient(90deg, #0B4556 0%, #ADCBC9 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    section.mainSlider .swiper-slide .content .description {
      display: none;
    }
    section.mainNewProducts {
      margin-top: -40px;
      margin-bottom: 20px;
      padding: 0;
    }
    section.mainNewProducts .newProductsTitle {
      display: none;
    }
    section.mainNewProducts .partFilter {
      padding: 0;
      overflow: hidden;
    }
    section.mainNewProducts .partFilter .title {
      background: #fff;
      padding: 40px 50px 70px;
      margin-bottom: -110px;
      font-size: 18px;
      text-align: center;
    }
    section.mainNewProducts .partFilter > .text {
      padding: 0 20px 35px;
      text-align: center;
    }
    section.mainNewProducts .partFilter .row {
      padding: 10px;
      margin: 0;
    }
    section.mainNewProducts .partFilter .row > div {
      padding: 0;
    }
    section.mainNewProducts .row .col-grid10-xl-2 {
      display: none;
    }
    section.mainNewProducts.type2 {
      margin-top: -50px;
      display: block;
    }
    section.mainBestsellers {
      margin-bottom: 0;
    }
    section.testimonial {
      padding-bottom: 0;
    }
    section.testimonial .sectionTitle {
      font-size: 22px;
      line-height: 32px;
      margin-bottom: 30px;
    }
    .pageIndex header {
      background: transparent;
      left: 0;
      right: 0;
      top: 0;
      position: absolute;
      z-index: 3;
    }
    .pageIndex header:after {
      display: none;
    }
    section.partSteps {
      margin-bottom: 0;
      padding: 70px 0;
    }
    section.partSteps .titleArea {
      flex-direction: column;
      text-align: center;
      margin-bottom: 30px;
    }
    section.partSteps .titleArea .title {
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      margin-bottom: 20px;
    }
    section.partSteps .row {
      padding: 30px 0;
      flex-wrap: nowrap;
      overflow: hidden;
      overflow-x: auto;
    }
    section.partSteps .row::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    section.mainDiffrence {
      margin-bottom: 50px;
    }
    section.mainDiffrence > .title {
      font-size: 24px;
      line-height: 34px;
      margin-bottom: 40px;
    }
    section.mainDiffrence .row {
      padding: 30px 0;
      flex-wrap: nowrap;
      overflow: hidden;
      overflow-x: auto;
    }
    section.mainDiffrence .row::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    section.mainSlider2 {
      margin: 0;
    }
    section.mainSlider2 .container {
      padding: 0;
      height: 100%;
    }
    section.mainSlider2 .swiper-slide {
      aspect-ratio: unset;
      height: 570px;
    }
    section.mainSlider2 .swiper-slide .slide {
      width: 100%;
    }
    section.mainSlider2 .swiper-slide .background {
      border-radius: 0;
      height: 100%;
    }
    section.mainSlider2 .swiper-slide .background img.main {
      display: none;
    }
    section.mainSlider2 .swiper-slide .background img.mobile {
      display: block;
    }
    section.mainSlider2 .swiper-slide .content {
      padding: 100px 20px 80px;
      display: flex;
      height: 100%;
      flex-direction: column;
    }
    section.mainSlider2 .swiper-slide .content .mainTitleArea {
      margin-bottom: 10px;
    }
    section.mainSlider2 .swiper-slide .content .mainTitleArea .title {
      font-size: 13px;
    }
    section.mainSlider2 .swiper-slide .content .slideTitle {
      font-size: 35px;
    }
    .slideSearch {
      display: none;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .productListSlider:before, .productListSlider:after {
      width: 150px;
    }
    section.testimonial {
      padding-bottom: 30px;
    }
    section.testimonial .sectionTitle {
      margin-bottom: 40px;
    }
    section.mainNewProducts {
      margin-top: -40px;
      margin-bottom: 20px;
      padding: 0;
    }
    section.mainNewProducts .newProductsTitle {
      display: none;
    }
    section.mainNewProducts .row .col-grid10-xl-2 {
      display: none;
    }
    section.mainNewProducts.type2 {
      margin-top: -50px;
      display: block;
    }
    section.partSteps {
      margin-bottom: 50px;
      padding: 70px 0;
    }
    section.partSteps .titleArea {
      flex-direction: column;
      text-align: center;
      margin-bottom: 30px;
    }
    section.partSteps .titleArea .title {
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      margin-bottom: 20px;
    }
    section.mainBestsellers {
      margin-bottom: 0;
    }
    section.mobileNewProducts {
      display: block;
      margin-top: 50px;
      margin-bottom: -30px;
    }
    section.mainSlider .swiper-slide .content .title {
      font-size: 28px;
    }
    section.mainSlider .swiper-slide .content .description {
      display: none;
    }
    section.mainSlider2 {
      margin-bottom: 0;
    }
    section.mainSlider2 .swiper-slide .mainTitleArea .seeAll {
      display: none;
    }
    section.mainSlider2 .swiper-slide .slide {
      max-width: 100%;
      aspect-ratio: unset;
      width: 100%;
    }
    section.mainSlider2 .swiper-slide .content {
      padding: 30px 20px;
    }
    section.mainSlider2 .swiper-slide .content .slideTitle {
      font-size: 40px;
    }
    .slideSearch {
      display: none;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.mainBestsellers {
      margin-bottom: 0;
    }
    section.mainNewProducts {
      margin-top: -260px;
    }
    section.mainSlider .swiper-slide .content {
      padding-top: 80px;
    }
    section.mainSlider .swiper-slide .content .title {
      font-size: 28px;
    }
    section.mainSlider .swiper-slide .content .description {
      max-width: 400px;
    }
    section.mainSlider2 .swiper-slide {
      aspect-ratio: unset;
      height: 600px;
    }
    section.mainSlider2 .swiper-slide .content {
      padding: 50px 30px;
    }
    section.mainSlider2 .swiper-slide .content .mainTitleArea {
      margin-bottom: 70px;
      flex-wrap: wrap;
    }
    section.mainSlider2 .swiper-slide .content .mainTitleArea .title {
      font-size: 11px;
    }
    section.mainSlider2 .swiper-slide .content .slideTitle {
      margin-top: 40px;
      font-size: 40px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    section.mainSlider .swiper-slide .content {
      padding-top: 80px;
    }
    section.mainSlider .swiper-slide .content .description {
      max-width: 400px;
    }
    section.partSteps .titleArea {
      gap: 20px;
    }
    section.mainSlider2 .swiper-slide {
      aspect-ratio: unset;
      height: 600px;
    }
    section.mainSlider2 .swiper-slide .content {
      padding: 50px 30px;
    }
    section.mainSlider2 .swiper-slide .content .mainTitleArea {
      margin-bottom: 70px;
    }
    section.mainSlider2 .swiper-slide .content .mainTitleArea .title {
      font-size: 11px;
    }
    section.mainSlider2 .swiper-slide .content .slideTitle {
      margin-top: 40px;
      font-size: 40px;
    }
  }
  @media screen and (max-width: 576px) {
    .owl-carousel .owl-stage:after {
      display: none;
    }
    .blogCard {
      padding: 25px 20px;
    }
    .blogCard .content {
      margin-top: 30px;
    }
    .blogCard .content .description {
      margin: 25px 0;
    }
    .blogCard .content .title {
      font-size: 20px;
    }
    .blogCard .content .bottom {
      margin-top: 30px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .owl-carousel .owl-stage:after {
      display: none;
    }
    .blogCard {
      padding: 40px 45px;
    }
    .blogCard .content {
      margin-top: 30px;
    }
    .blogCard .content .description {
      margin: 25px 0;
    }
    .blogCard .content .title {
      font-size: 20px;
    }
    .blogCard .content .bottom {
      margin-top: 30px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.blogContent .carouselMask:after {
      width: 500px;
    }
    .blogCard {
      padding: 40px 45px;
    }
    .blogCard .content {
      margin-top: 30px;
    }
    .blogCard .content .description {
      margin: 25px 0;
    }
    .blogCard .content .title {
      font-size: 20px;
    }
    .blogCard .content .bottom {
      margin-top: 30px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.blogContent .carouselMask:after {
      width: 500px;
    }
    .blogCard {
      padding: 40px 45px;
    }
    .blogCard .content {
      margin-top: 30px;
    }
    .blogCard .content .description {
      margin: 25px 0;
    }
    .blogCard .content .title {
      font-size: 20px;
    }
    .blogCard .content .bottom {
      margin-top: 30px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    .blogCard {
      padding: 55px;
    }
  }
  @media screen and (max-width: 576px) {
    section.parts > .container > .text {
      padding: 0 20px;
      margin: 30px 0;
    }
  }
  @media screen and (max-width: 576px) {
    section.successContent .successArea .top {
      padding: 55px 30px 55px;
    }
    section.successContent .successArea .top .title {
      font-size: 20px;
      line-height: 28px;
    }
    section.successContent .successArea .info {
      flex-direction: column;
      padding: 30px;
      text-align: center;
    }
    section.successContent .successArea .bottom {
      padding: 30px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.successContent .successArea .top {
      padding: 55px 30px 55px;
    }
    section.successContent .successArea .top .title {
      font-size: 20px;
      line-height: 28px;
    }
    section.successContent .successArea .info {
      flex-wrap: wrap;
      justify-content: center;
      padding: 30px;
      text-align: center;
    }
    section.successContent .successArea .bottom {
      padding: 30px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.successContent .successArea .top {
      padding: 65px 40px 65px;
    }
    section.successContent .successArea .top .title {
      font-size: 20px;
      line-height: 28px;
    }
    section.successContent .successArea .info {
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px;
      text-align: center;
    }
    section.successContent .successArea .bottom {
      padding: 40px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.successContent .successArea .info {
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px;
      text-align: center;
    }
  }
  @media screen and (max-width: 576px) {
    .loginForm .titleArea {
      min-height: 275px;
      padding: 30px 30px 65px;
    }
    .loginForm .titleArea:after {
      display: none;
    }
    .loginForm form {
      padding: 0 30px 30px;
    }
    .loginForm form .formContent .row > div {
      padding: 0;
    }
    .loginForm .bottom {
      flex-wrap: wrap;
      gap: 20px 10px;
      margin-bottom: 40px;
    }
    .loginForm .loginBtn {
      padding: 20px 65px;
      margin: 0 auto;
      display: block;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .loginForm .titleArea {
      min-height: 275px;
      padding: 30px 30px 65px;
    }
    .loginForm form {
      padding: 0 30px 30px;
    }
    .loginForm .bottom {
      flex-wrap: wrap;
      gap: 20px 10px;
      margin-bottom: 40px;
    }
    .loginForm .loginBtn {
      padding: 20px 65px;
      margin: 0 auto;
      display: block;
    }
    .loginForm.type2 .titleArea:after {
      width: 165px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .loginForm .titleArea {
      min-height: 275px;
      padding: 50px 50px 65px;
    }
    .loginForm form {
      padding: 0 50px 50px;
    }
    .loginForm .bottom {
      flex-wrap: wrap;
      gap: 20px 10px;
      margin-bottom: 40px;
    }
    .loginForm .loginBtn {
      padding: 20px 65px;
      margin: 0 auto;
      display: block;
    }
    .loginForm.type2 .titleArea:after {
      width: 165px;
      top: 120px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .loginForm .titleArea {
      min-height: 275px;
      padding: 30px 30px 65px;
    }
    .loginForm form {
      padding: 0 30px 30px;
    }
    .loginForm .bottom {
      flex-wrap: wrap;
      gap: 20px 10px;
      margin-bottom: 40px;
    }
    .loginForm .loginBtn {
      padding: 20px 65px;
      margin: 0 auto;
      display: block;
    }
    .loginForm.type2 .titleArea:after {
      width: 165px;
      top: 120px;
    }
  }
  @media screen and (max-width: 576px) {
    .campaignItemCard {
      padding: 20px;
      flex-direction: column;
      gap: 20px;
    }
    .campaignItemCard .content .info {
      font-size: 20px;
      line-height: 30px;
    }
    section.campaignsContent .approachingCampaigns {
      margin-top: 30px;
    }
    section.campaignsContent .approachingCampaigns .title {
      margin-bottom: 15px;
      padding-left: 20px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .campaignItemCard {
      padding: 20px;
      gap: 20px;
    }
    .campaignItemCard .content .info {
      font-size: 20px;
      line-height: 30px;
    }
  }
  @media screen and (max-width: 576px) {
    section.blogDetailContent .content {
      margin-top: 30px;
    }
    section.blogDetailContent .content .text {
      transform: translateY(0);
      margin-bottom: 20px;
    }
    section.blogDetailContent .content .text .title {
      font-size: 20px;
      padding: 25px 30px;
    }
    .otherBlogsCard {
      padding: 20px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.blogDetailContent .content {
      margin-top: 30px;
    }
    section.blogDetailContent .content .text {
      transform: translateY(0);
      margin-bottom: 20px;
    }
    section.blogDetailContent .content .text .title {
      font-size: 20px;
      padding: 25px 30px;
    }
    .otherBlogsCard {
      padding: 20px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.blogDetailContent .content .text {
      transform: translateY(-95px);
      margin-bottom: -75px;
    }
    section.blogDetailContent .content .text .title {
      font-size: 21px;
      padding: 35px 0;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.blogDetailContent .content .text {
      transform: translateY(-95px);
      margin-bottom: -75px;
    }
    section.blogDetailContent .content .text .title {
      padding: 35px 0;
    }
  }
  @media screen and (max-width: 576px) {
    section.cargoContent .cargoArea .titleArea {
      padding: 30px 30px 100px;
    }
    section.cargoContent .cargoArea .titleArea .title {
      font-size: 18px;
    }
    section.cargoContent .cargoArea .titleArea .imgArea {
      z-index: -1;
      opacity: 0.5;
    }
    section.cargoContent .cargoArea .cargo {
      padding: 0 15px 30px;
    }
    section.cargoContent .cargoArea .cargo .cargoForm {
      flex-direction: column;
    }
    section.cargoContent .cargoArea .cargo .text {
      margin: 0;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.cargoContent .cargoArea .titleArea {
      padding: 30px 30px 100px;
    }
    section.cargoContent .cargoArea .titleArea .title {
      font-size: 18px;
    }
    section.cargoContent .cargoArea .titleArea .imgArea {
      z-index: -1;
      opacity: 0.5;
    }
    section.cargoContent .cargoArea .cargo {
      padding: 0 15px 30px;
    }
    section.cargoContent .cargoArea .cargo .cargoForm {
      flex-direction: column;
    }
    section.cargoContent .cargoArea .cargo .cargoForm .customInput1 {
      max-width: 100%;
    }
    section.cargoContent .cargoArea .cargo .text {
      margin: 0;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.cargoContent .cargoArea .titleArea .imgArea {
      z-index: -1;
      opacity: 0.5;
    }
    section.cargoContent .cargoArea .cargo .cargoForm .cargoBtn {
      white-space: nowrap;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.cargoContent .cargoArea .titleArea .imgArea {
      right: 40px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    section.cargoContent .cargoArea .titleArea .imgArea {
      right: 40px;
    }
  }
  @media screen and (max-width: 576px) {
    .account .top .profileInfo {
      flex-direction: column;
      align-items: center;
      padding: 40px 30px;
      gap: 20px;
    }
    .account .top .profileInfo .out, .account .top .profileInfo .name {
      margin: 0;
    }
    .account .top .userInfo {
      text-align: center;
      padding: 0 30px 30px;
    }
    .account .bottom {
      padding: 40px 30px;
    }
    .orderItem .title {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 20px;
    }
    .orderItem .title .item {
      text-align: center;
    }
    .orderItem .title .item span {
      justify-content: center;
    }
    .orderItem .title .item.stage {
      margin: 0;
    }
    .orderItem .title:after, .orderItem .title:before {
      display: none;
    }
    .orderItem .menu {
      padding: 0 30px;
      text-align: center;
    }
    .orderItem .menu .orderDetail {
      justify-content: center;
    }
    .orderItem .menu .orderDetail .addressItem span, .orderItem .menu .orderDetail .address span {
      justify-content: center;
    }
    .orderItem.active .menu {
      padding: 20px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .account .top .profileInfo {
      padding: 40px 30px;
      gap: 20px;
    }
    .account .top .userInfo {
      text-align: center;
      padding: 0 30px 30px;
    }
    .account .bottom {
      padding: 40px 30px;
    }
    .orderItem .title {
      gap: 20px;
      padding: 40px 60px 40px 20px;
    }
    .orderItem .title .item {
      font-size: 13px;
      white-space: nowrap;
    }
    .orderItem .title .item.stage {
      margin: 0;
    }
    .orderItem .title:after {
      right: 25px;
    }
    .orderItem .title:before {
      right: 32px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .account .top .profileInfo {
      padding: 40px 50px;
      gap: 20px;
    }
    .account .top .userInfo {
      text-align: center;
      padding: 0 50px 30px;
    }
    .account .bottom {
      padding: 40px 50px;
    }
    .orderItem .menu .orderDetail {
      gap: 30px;
    }
    .orderItem .title {
      gap: 20px;
      padding: 40px 60px 40px 20px;
    }
    .orderItem .title .item {
      white-space: nowrap;
    }
    .orderItem .title .item.stage {
      margin: 0;
    }
    .orderItem .title:after {
      right: 25px;
    }
    .orderItem .title:before {
      right: 32px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .orderItem .title {
      gap: 70px;
      padding: 40px 60px 40px 40px;
    }
    .orderItem .title .item {
      white-space: nowrap;
    }
    .orderItem .title .item.stage {
      margin-left: 100px;
    }
    .orderItem .title:after {
      right: 35px;
    }
    .orderItem .title:before {
      right: 42px;
    }
  }
  @media screen and (max-width: 576px) {
    section.paymentContent .content .tabs .navlist2 {
      padding: 30px;
      gap: 30px;
    }
    section.paymentContent .content .bottom {
      padding: 20px;
    }
    section.paymentContent .content .bottom .row > div {
      padding: 0;
    }
    section.paymentContent .content .bottom .paymentCard {
      display: none;
    }
    section.paymentContent .content .bottom .paymentCardContent .btnPayment {
      padding: 25px 45px;
      display: flex;
      width: 100%;
      margin: 0 auto;
      max-width: 320px;
      justify-content: center;
    }
    .cartTop {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 20px;
      text-align: center;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.paymentContent .content .tabs .navlist2 {
      padding: 30px;
      justify-content: center;
      gap: 30px;
    }
    section.paymentContent .content .bottom {
      padding: 30px;
    }
    section.paymentContent .content .bottom .paymentCard {
      display: none;
    }
    section.paymentContent .content .bottom .paymentCardContent .btnPayment {
      padding: 25px 45px;
      display: flex;
      width: 100%;
      margin: 0 auto;
      max-width: 320px;
      justify-content: center;
    }
    .cartTop {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 20px;
      text-align: center;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.paymentContent .content .tabs .navlist2 {
      padding: 30px;
      justify-content: center;
      gap: 30px;
    }
    section.paymentContent .content .bottom {
      padding: 30px;
    }
    section.paymentContent .content .bottom .paymentCard {
      display: none;
    }
    section.paymentContent .content .bottom .paymentCardContent .btnPayment {
      padding: 25px 45px;
      display: flex;
      width: 100%;
      margin: 0 auto;
      max-width: 320px;
      justify-content: center;
    }
    .cartTop {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 20px;
      text-align: center;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.paymentContent .content .bottom {
      padding: 30px;
    }
    .cartTop {
      align-items: center;
      gap: 10px;
      padding: 20px;
      text-align: center;
    }
  }
  @media screen and (max-width: 576px) {
    section.addressesContent .row > div {
      padding: 0;
    }
    section.addressesContent .addressContent {
      padding: 30px 15px;
    }
    section.addressesContent .addressContent .titleArea {
      margin: 0 0 20px;
      text-align: center;
    }
    section.addressesContent .addressContent .addressArea {
      padding: 15px;
    }
    section.addressesContent .addressContent .addressArea .userInfos {
      margin-bottom: 10px;
    }
    section.addressesContent .addressContent .addressArea .userInfos .text {
      margin-top: 15px;
    }
    section.addressesContent .addressContent .bottom {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    section.addressesContent .cargoSelect {
      padding: 20px;
    }
    section.addressesContent .cargoSelect .cargoBrand {
      gap: 5px;
    }
    section.addressesContent .cargoSelect .cargoBrand .imgArea {
      height: 25px;
    }
    section.addressesContent .cargoSelect .cargoBrand .text {
      font-size: 12px;
    }
    .addressCard {
      padding: 30px;
    }
    .addressCard .check {
      width: 25px;
      height: 25px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.addressesContent .addressContent {
      padding: 30px 15px;
    }
    section.addressesContent .addressContent .titleArea {
      margin: 0 0 30px;
      text-align: center;
    }
    section.addressesContent .addressContent .addressArea .userInfos {
      margin-bottom: 40px;
    }
    section.addressesContent .addressContent .addressArea .userInfos .text {
      margin-top: 15px;
    }
    section.addressesContent .addressContent .bottom {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    section.addressesContent .cargoSelect {
      padding: 20px;
    }
    section.addressesContent .cargoSelect .cargoBrand {
      gap: 5px;
    }
    section.addressesContent .cargoSelect .cargoBrand .imgArea {
      height: 25px;
    }
    section.addressesContent .cargoSelect .cargoBrand .text {
      font-size: 12px;
    }
  }
  @media screen and (max-width: 576px) {
    .cartApproval .approvalContent {
      padding: 25px;
    }
    .cartApproval .approvalContent .approvalInfo .totalPrice {
      margin-bottom: 25px;
    }
    .cartApproval .approvalContent .approvalInfo .appBtn {
      padding: 25px;
    }
    .cartApproval .approvalContent .chechkboxArea {
      margin-top: 25px;
    }
    .cartApproval .approvalContent.summary {
      padding: 25px;
    }
    section.cartContent .bottom {
      flex-wrap: wrap;
      padding: 10px;
      gap: 10px 30px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .cartApproval .approvalContent {
      padding: 25px;
    }
    .cartApproval .approvalContent .approvalInfo .totalPrice {
      margin-bottom: 25px;
    }
    .cartApproval .approvalContent .approvalInfo .appBtn {
      padding: 25px;
    }
    .cartApproval .approvalContent .chechkboxArea {
      margin-top: 25px;
    }
    .cartApproval .approvalContent.summary {
      padding: 25px;
    }
  }
  @media screen and (max-width: 576px) {
    section.productDetail .productInfo .top {
      padding: 25px 15px;
      flex-direction: column;
      justify-content: center;
      gap: 15px;
      text-align: center;
    }
    section.productDetail .productInfo .info .item {
      padding: 15px;
      font-size: 15px;
    }
    section.productDetail .productInfo .info .priceItem {
      width: 100%;
      padding: 25px 15px;
      align-items: center;
    }
    section.productDetail .productInfo .info .compatibleItem {
      width: 100%;
      justify-content: center;
      padding: 15px;
    }
    section.productDetail .productInfo .bottom {
      flex-direction: column;
    }
    section.productDetail .productInfo .bottom .bottomItem {
      padding: 15px;
      width: 100%;
      border-right: 0;
    }
    section.productDetail .productInfo .bottom .bottomItem.whatsApp {
      border-bottom: 1px solid #E6F4F8;
    }
    section.productDetail .productUsageImage {
      padding: 30px 15px;
    }
    section.productDetail .productUsageImage .title {
      font-size: 20px;
    }
    section.productDetail .productUsage {
      padding: 25px;
    }
    section.productDetail .productUsage .title {
      font-size: 20px;
      line-height: 28px;
    }
    section.productDetail .productUsage .tabs .tabTitle {
      padding: 15px;
    }
    section.productDetail .productUsage .tabs .tabTitle:after {
      width: 25px;
      height: 25px;
      right: 15px;
    }
    section.productDetail .productUsage .tabs .tabTitle:before {
      width: 14px;
      height: 14px;
      right: 21px;
    }
    section.productDetail .productUsage .tabs .customTabNavs {
      padding: 20px;
    }
    section.productDetail .productUsage .productUsageInfo {
      padding: 15px;
    }
    section.productDetail .userComments .title {
      font-size: 24px;
      line-height: 32px;
      margin-bottom: -50px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.productDetail .productImage {
      padding: 20px;
    }
    section.productDetail .productImage .productDetailSlide .imgArea {
      max-width: 370px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.productDetail .productImage {
      padding: 20px;
    }
    section.productDetail .productImage .productDetailSlide .imgArea {
      max-width: 370px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.productDetail .productInfo .top {
      padding: 25px 15px;
      flex-direction: column;
      justify-content: center;
      gap: 15px;
      text-align: center;
    }
    section.productDetail .productInfo .info .item {
      padding: 15px;
      font-size: 15px;
    }
    section.productDetail .productInfo .info .priceItem {
      width: 100%;
      padding: 25px 15px;
      align-items: center;
    }
    section.productDetail .productInfo .info .compatibleItem {
      width: 100%;
      justify-content: center;
      padding: 15px;
    }
    section.productDetail .productInfo .bottom {
      flex-direction: column;
    }
    section.productDetail .productInfo .bottom .bottomItem {
      padding: 15px;
      width: 100%;
      border-right: 0;
    }
    section.productDetail .productInfo .bottom .bottomItem.whatsApp {
      border-bottom: 1px solid #E6F4F8;
    }
    section.productDetail .productUsageImage {
      padding: 30px 15px;
    }
    section.productDetail .productUsageImage .title {
      font-size: 20px;
    }
    section.productDetail .productUsage {
      padding: 25px;
    }
    section.productDetail .productUsage .title {
      font-size: 20px;
      line-height: 28px;
    }
    section.productDetail .productUsage .tabs .tabTitle {
      padding: 15px;
    }
    section.productDetail .productUsage .tabs .tabTitle:after {
      width: 25px;
      height: 25px;
      right: 15px;
    }
    section.productDetail .productUsage .tabs .tabTitle:before {
      width: 14px;
      height: 14px;
      right: 21px;
    }
    section.productDetail .productUsage .tabs .customTabNavs {
      padding: 20px;
    }
    section.productDetail .productUsage .productUsageInfo {
      padding: 35px 15px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    section.productDetail .productInfo .info .priceItem {
      width: 100%;
      align-items: center;
    }
    section.productDetail .productInfo .info .compatibleItem {
      width: 100%;
      justify-content: center;
    }
    section.productDetail .productInfo .bottom .bottomItem {
      padding: 25px;
    }
  }
  @media screen and (max-width: 576px) {
    section.qrDetail .content .detailArea {
      padding-bottom: 20px;
    }
    section.qrDetail .content .detailArea .top .item {
      padding: 25px 15px;
      flex-direction: column;
      gap: 10px;
    }
    section.qrDetail .content .detailArea .top .item .text {
      font-size: 12px;
    }
    section.qrDetail .content .detailArea .top .item .text span {
      margin: 0;
    }
    section.qrDetail .content .detailArea .top .item .icon {
      width: 22px;
      height: 18px;
    }
    .qrArea {
      padding: 45px 20px;
      gap: 50px;
    }
    .qrArea .title {
      font-size: 19px;
      line-height: 27px;
    }
    .qrArea .imgArea {
      height: 180px;
    }
    .qrArea .text {
      font-size: 16px;
      line-height: 22px; /* 137.5% */
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.qrDetail .content .detailArea {
      padding-bottom: 20px;
    }
    section.qrDetail .content .detailArea .imgArea {
      max-width: 70%;
    }
    section.qrDetail .content .detailArea .top .item {
      padding: 25px 15px;
      flex-direction: column;
      gap: 20px;
    }
    section.qrDetail .content .detailArea .top .item .text {
      font-size: 18px;
    }
    section.qrDetail .content .detailArea .top .item .text span {
      margin-bottom: 10px;
    }
    section.qrDetail .content .detailArea .top .item .icon {
      width: 28px;
      height: 24px;
    }
    .qrArea {
      padding: 45px 20px;
      gap: 50px;
    }
    .qrArea .title {
      font-size: 19px;
      line-height: 27px;
    }
    .qrArea .imgArea {
      height: 180px;
    }
    .qrArea .text {
      font-size: 16px;
      line-height: 22px; /* 137.5% */
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.qrDetail .content .detailArea {
      padding-bottom: 20px;
    }
    section.qrDetail .content .detailArea .imgArea {
      max-width: 70%;
    }
    section.qrDetail .content .detailArea .top .item {
      padding: 25px 15px;
      flex-direction: column;
      gap: 20px;
    }
    section.qrDetail .content .detailArea .top .item .text {
      font-size: 18px;
    }
    section.qrDetail .content .detailArea .top .item .text span {
      margin-bottom: 10px;
    }
    section.qrDetail .content .detailArea .top .item .icon {
      width: 28px;
      height: 24px;
    }
    .qrArea {
      padding: 45px 20px;
      gap: 50px;
    }
    .qrArea .title {
      font-size: 19px;
      line-height: 27px;
    }
    .qrArea .imgArea {
      height: 190px;
    }
    .qrArea .text {
      font-size: 16px;
      line-height: 22px; /* 137.5% */
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.qrDetail .content .detailArea {
      padding-bottom: 20px;
    }
    section.qrDetail .content .detailArea .imgArea {
      max-width: 70%;
    }
    section.qrDetail .content .detailArea .top .item {
      padding: 25px 15px;
      flex-direction: column;
      gap: 20px;
    }
    section.qrDetail .content .detailArea .top .item .text {
      font-size: 18px;
    }
    section.qrDetail .content .detailArea .top .item .text span {
      margin-bottom: 10px;
    }
    section.qrDetail .content .detailArea .top .item .icon {
      width: 28px;
      height: 24px;
    }
    .qrArea {
      padding: 80px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    .qrArea {
      padding: 80px;
    }
  }
  @media screen and (max-width: 576px) {
    section.corporateBanner .content {
      text-align: center;
      padding-bottom: 50px;
    }
    section.corporateBanner .content .title {
      font-size: 20px;
      margin-bottom: 15px;
    }
    section.corporateBanner .content .description {
      margin-bottom: 25px;
      line-height: 24px;
    }
    section.banner1 {
      text-align: center;
      padding-top: 40px;
    }
    section.banner1 .container {
      gap: 20px;
      align-items: center;
      flex-direction: column;
    }
    section.banner1 .bannerImg {
      max-width: 400px;
    }
    section.banner1 .bannerTitleArea {
      padding-bottom: 60px;
    }
    section.banner1 .bannerTitleArea .title {
      font-size: 28px;
      line-height: 39px;
    }
    section.banner1 .bannerTitleArea .description {
      font-size: 16px;
      line-height: 24px;
    }
    section.banner1 .bannerTitleArea a {
      margin: 40px 0;
    }
    section.banner1 .bannerTitleArea span {
      margin: 0 auto;
    }
    section.banner1:after {
      width: 100%;
      left: 50%;
      height: auto;
    }
    section.banner2 {
      margin-bottom: 60px;
      height: auto;
      aspect-ratio: unset;
      padding-top: 40px;
    }
    section.banner2 .container {
      flex-direction: column;
    }
    section.banner2 .bannerTitleArea {
      text-align: center;
      width: 100%;
    }
    section.banner2 .bannerTitleArea .title {
      font-size: 26px;
      line-height: 36px;
    }
    section.banner2 .bannerTitleArea a {
      margin-top: 40px;
    }
    section.banner2 .bannerImg {
      max-width: 100%;
    }
    section.banner2 .bannerImg .image-1 {
      right: 46%;
      width: 102px;
      height: 98px;
    }
    section.banner2 .bannerImg .image-3 {
      right: 32%;
    }
    section.banner2:after {
      aspect-ratio: 1/1;
      width: 100%;
      left: 50%;
    }
    section.banner3 {
      height: auto;
      padding-top: 40px;
    }
    section.banner3 .container {
      flex-direction: column;
    }
    section.banner3 .bannerTitleArea {
      text-align: center;
      width: 100%;
    }
    section.banner3 .bannerTitleArea .title {
      font-size: 26px;
      line-height: 36px;
    }
    section.banner3 .bannerTitleArea a {
      margin-top: 40px;
    }
    section.banner3 .bannerImg {
      max-width: 100%;
    }
    section.banner3 .bannerImg .image-1 {
      right: 46%;
      width: 102px;
      height: 98px;
    }
    section.banner3 .bannerImg .image-3 {
      right: 32%;
    }
    section.banner3:after {
      width: 100%;
      left: 0;
      transform: unset;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    section.corporateBanner .content {
      padding-bottom: 50px;
    }
    section.corporateBanner .content .title {
      font-size: 33px;
    }
    section.banner1 {
      text-align: center;
      padding-top: 40px;
    }
    section.banner1 .container {
      align-items: center;
      flex-direction: column;
    }
    section.banner1 .bannerImg {
      max-width: 400px;
    }
    section.banner1 .bannerTitleArea {
      padding-bottom: 60px;
    }
    section.banner1 .bannerTitleArea .title {
      font-size: 34px;
      line-height: 56px;
    }
    section.banner1 .bannerTitleArea .description {
      font-size: 16px;
      line-height: 24px;
    }
    section.banner1 .bannerTitleArea a {
      margin: 40px 0;
    }
    section.banner1 .bannerTitleArea span {
      margin: 0 auto;
    }
    section.banner1:after {
      height: 55%;
      left: 50%;
    }
    section.banner2 {
      height: auto;
      aspect-ratio: unset;
      padding-top: 40px;
    }
    section.banner2 .container {
      flex-direction: column;
      gap: 30px;
    }
    section.banner2 .bannerTitleArea {
      text-align: center;
      width: 100%;
    }
    section.banner2 .bannerTitleArea a {
      margin: 30px 0;
    }
    section.banner2 .bannerTitleArea .title {
      font-size: 31px;
      line-height: 41px;
    }
    section.banner2 .bannerTitleArea .text {
      margin: 0 auto;
    }
    section.banner2:after {
      width: 540px;
      height: 540px;
    }
    section.banner3 {
      height: auto;
      padding-top: 40px;
    }
    section.banner3 .container {
      flex-direction: column;
    }
    section.banner3 .bannerTitleArea {
      text-align: center;
      width: 100%;
    }
    section.banner3 .bannerTitleArea .title {
      font-size: 31px;
      line-height: 41px;
    }
    section.banner3:after {
      width: 540px;
      height: 540px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    section.corporateBanner .content {
      padding-bottom: 50px;
    }
    section.corporateBanner .content .title {
      font-size: 25px;
      line-height: 35px;
      margin-bottom: 15px;
    }
    section.corporateBanner .content .description {
      line-height: 28px;
    }
    section.banner1 {
      text-align: center;
      padding-top: 40px;
    }
    section.banner1 .container {
      align-items: center;
      flex-direction: column;
    }
    section.banner1 .bannerImg {
      max-width: 400px;
    }
    section.banner1 .bannerTitleArea {
      padding-bottom: 60px;
    }
    section.banner1 .bannerTitleArea .title {
      font-size: 34px;
      line-height: 56px;
    }
    section.banner1 .bannerTitleArea .description {
      font-size: 16px;
      line-height: 24px;
    }
    section.banner1 .bannerTitleArea a {
      margin: 40px 0;
    }
    section.banner1 .bannerTitleArea span {
      margin: 0 auto;
    }
    section.banner1:after {
      height: 60%;
      left: 50%;
    }
    section.banner2 {
      height: auto;
      aspect-ratio: unset;
      padding-top: 40px;
    }
    section.banner2 .container {
      flex-direction: column;
      gap: 30px;
    }
    section.banner2 .bannerTitleArea {
      text-align: center;
      width: 100%;
    }
    section.banner2 .bannerTitleArea a {
      margin: 30px 0;
    }
    section.banner2 .bannerTitleArea .title {
      font-size: 31px;
      line-height: 41px;
    }
    section.banner2 .bannerTitleArea .text {
      margin: 0 auto;
    }
    section.banner2 .bannerImg {
      width: 80%;
    }
    section.banner2:after {
      width: 540px;
      height: 540px;
    }
    section.banner3 {
      height: auto;
      padding-top: 40px;
    }
    section.banner3 .container {
      flex-direction: column;
    }
    section.banner3 .bannerTitleArea {
      text-align: center;
      width: 100%;
    }
    section.banner3 .bannerTitleArea .title {
      font-size: 38px;
      line-height: 50px;
    }
    section.banner3:after {
      width: 540px;
      height: 540px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    section.corporateBanner .content {
      padding-bottom: 50px;
    }
    section.corporateBanner .content .title {
      font-size: 33px;
    }
    section.banner1 {
      padding-top: 60px;
    }
    section.banner1 .bannerImg {
      max-width: 400px;
    }
    section.banner1 .bannerTitleArea {
      padding-bottom: 60px;
    }
    section.banner1 .bannerTitleArea .title {
      font-size: 34px;
      line-height: 56px;
    }
    section.banner1 .bannerTitleArea .description {
      font-size: 16px;
      line-height: 24px;
    }
    section.banner1 .bannerTitleArea a {
      margin: 40px 0;
    }
    section.banner1:after {
      height: 100%;
      left: 50%;
    }
    section.banner2 {
      aspect-ratio: unset;
      height: auto;
      padding-top: 70px;
    }
    section.banner2 .container {
      align-items: flex-end;
    }
    section.banner2 .bannerTitleArea {
      width: 50%;
      padding-bottom: 40px;
    }
    section.banner2 .bannerTitleArea .title {
      font-size: 32px;
      line-height: 42px;
    }
    section.banner2 .bannerTitleArea a {
      margin: 40px 0;
    }
    section.banner2 .bannerImg {
      width: 50%;
    }
    section.banner2:after {
      width: 540px;
      height: 540px;
    }
    section.banner3 {
      height: auto;
      padding-top: 70px;
    }
    section.banner3 .container {
      align-items: flex-end;
    }
    section.banner3 .bannerTitleArea .title {
      font-size: 38px;
      line-height: 50px;
    }
    section.banner3:after {
      width: 540px;
      height: 540px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    section.corporateBanner .content {
      padding-bottom: 50px;
    }
    section.corporateBanner .content .title {
      font-size: 33px;
    }
    section.banner1 .bannerImg {
      max-width: 530px;
    }
    section.banner2 {
      aspect-ratio: unset;
      height: auto;
      padding-top: 70px;
    }
    section.banner2 .container {
      align-items: flex-end;
    }
    section.banner2 .bannerTitleArea {
      width: 50%;
      padding-bottom: 40px;
    }
    section.banner2 .bannerTitleArea .title {
      font-size: 32px;
      line-height: 42px;
    }
    section.banner2 .bannerTitleArea a {
      margin: 40px 0;
    }
    section.banner2 .bannerImg {
      width: 50%;
    }
    section.banner2:after {
      width: 540px;
      height: 540px;
    }
    section.banner3 {
      height: 630px;
    }
    section.banner3 .container {
      align-items: flex-end;
    }
    section.banner3 .bannerTitleArea .title {
      font-size: 38px;
      line-height: 50px;
    }
  }
  @media screen and (min-width: 1401px) and (max-width: 1919px) {
    section.corporateBanner .content {
      padding-bottom: 50px;
    }
    section.corporateBanner .content .title {
      font-size: 33px;
    }
  }
  @media screen and (max-width: 576px) {
    .campaignTop .top {
      padding: 25px 35px;
      font-size: 18px;
      text-align: center;
    }
    .campaignTop .bottom {
      padding: 25px 35px;
      text-align: center;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .campaignTop .top {
      padding: 25px 35px;
    }
    .campaignTop .bottom {
      padding: 25px 35px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .campaignTop .top {
      padding: 25px 35px;
    }
    .campaignTop .bottom {
      padding: 25px 35px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .campaignTop .top {
      padding: 25px 35px;
    }
    .campaignTop .bottom {
      padding: 25px 35px;
    }
  }
  @media screen and (max-width: 576px) {
    .politicasEditor {
      padding: 30px;
    }
    .politicasEditor .title {
      margin-bottom: 30px;
    }
    .politicasEditor .text {
      font-size: 18px;
      line-height: 28px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .politicasEditor {
      padding: 30px;
    }
    .politicasEditor .title {
      margin-bottom: 30px;
    }
    .politicasEditor .text {
      font-size: 18px;
      line-height: 28px;
    }
  }
  @media screen and (max-width: 576px) {
    .editorContent h1 {
      font-size: 26px;
      line-height: 36px;
    }
  }
  @media screen and (max-width: 576px) {
    .partFilter {
      padding: 25px;
    }
    .partFilter .title {
      margin: 0;
      font-size: 20px;
    }
    .partFilter > .text {
      margin: 0;
      line-height: 20px;
    }
    .partFilter.type2 .content {
      flex-direction: column;
    }
    .partFilter.type2 .content .productDropdown .info {
      padding: 35px 55px 35px 20px;
      width: 100%;
      max-width: 100%;
    }
    .partFilter.type2 .content .productDropdown.iconProduct {
      width: 100%;
    }
    .partFilter.type2 .content .searchProductDropdown {
      max-width: 100%;
      padding: 27px 30px 27px 20px;
    }
    .partsCard {
      padding: 30px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .partFilter {
      padding: 25px;
    }
    .partFilter .title {
      margin: 0;
      font-size: 20px;
    }
    .partFilter > .text {
      margin: 0;
      line-height: 20px;
    }
    .partFilter.type2 .content {
      flex-wrap: wrap;
      gap: 20px;
    }
    .partFilter.type2 .content .productDropdown, .partFilter.type2 .content .searchProductDropdown {
      max-width: calc(50% - 10px);
    }
    .partFilter.type2 .content .productDropdown .info, .partFilter.type2 .content .searchProductDropdown .info {
      padding: 35px 30px 35px 20px;
    }
    .partFilter.type2 .content .productDropdown.iconProduct, .partFilter.type2 .content .searchProductDropdown.iconProduct {
      max-width: calc(50% - 10px);
    }
    .partFilter.type2 .content .searchProductDropdown {
      padding: 27px 30px 27px 20px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .partFilter {
      padding: 25px;
    }
    .partFilter .title {
      margin: 0;
      font-size: 20px;
    }
    .partFilter > .text {
      margin: 0;
      line-height: 20px;
    }
    .partFilter.type2 .content {
      flex-wrap: wrap;
      gap: 20px;
    }
    .partFilter.type2 .content .productDropdown, .partFilter.type2 .content .searchProductDropdown {
      max-width: calc(50% - 10px);
    }
    .partFilter.type2 .content .productDropdown .info, .partFilter.type2 .content .searchProductDropdown .info {
      padding: 35px 30px 35px 20px;
    }
    .partFilter.type2 .content .productDropdown.iconProduct, .partFilter.type2 .content .searchProductDropdown.iconProduct {
      max-width: calc(50% - 10px);
    }
    .partFilter.type2 .content .searchProductDropdown {
      padding: 35px 30px 35px 20px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .partFilter {
      padding: 25px;
    }
    .partFilter .title {
      margin: 0;
      font-size: 20px;
    }
    .partFilter > .text {
      margin: 0;
      line-height: 20px;
    }
    .partFilter.type2 .content {
      flex-wrap: wrap;
      gap: 20px;
    }
    .partFilter.type2 .content .productDropdown, .partFilter.type2 .content .searchProductDropdown {
      max-width: calc(50% - 10px);
    }
    .partFilter.type2 .content .productDropdown .info, .partFilter.type2 .content .searchProductDropdown .info {
      padding: 35px 30px 35px 20px;
    }
    .partFilter.type2 .content .productDropdown.iconProduct, .partFilter.type2 .content .searchProductDropdown.iconProduct {
      max-width: calc(50% - 10px);
      width: 100%;
    }
    .partFilter.type2 .content .searchProductDropdown {
      padding: 35px 30px 35px 20px;
    }
  }
  @media screen and (max-width: 576px) {
    .campaignCardBig {
      flex-direction: column;
      padding: 25px 15px;
    }
    .campaignCardBig .cardContent {
      order: 2;
    }
    .campaignCardBig .cardContent a {
      margin-top: 30px;
      justify-content: space-between;
    }
    .campaignCard {
      padding: 25px 15px;
    }
    .campaignCard .imgArea {
      z-index: 0;
      opacity: 0.5;
    }
    .campaignCard .cardContent {
      position: relative;
      z-index: 2;
    }
    .campaignCard.type2 .imgArea {
      max-width: 100%;
      opacity: 1;
    }
    .maincampaigns .top {
      margin-bottom: 20px;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .campaignCardBig {
      flex-direction: column;
      padding: 45px;
    }
    .campaignCardBig .cardContent {
      order: 2;
    }
    .campaignCardBig .cardContent a {
      margin-top: 30px;
    }
    .campaignCard {
      padding: 45px;
    }
    .campaignCard .imgArea {
      z-index: 0;
      max-width: 100%;
    }
    .campaignCard .cardContent {
      position: relative;
      z-index: 2;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .campaignCard .imgArea {
      max-width: 100%;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .campaignCardBig {
      flex-direction: column;
      padding: 40px;
    }
    .campaignCardBig .cardContent {
      order: 2;
    }
    .campaignCardBig .cardContent a {
      margin-top: 30px;
      justify-content: space-between;
    }
    .campaignCard {
      padding: 40px;
    }
    .campaignCard .imgArea {
      z-index: 0;
      opacity: 0.5;
      max-width: 100%;
    }
    .campaignCard .cardContent {
      position: relative;
      z-index: 2;
    }
    .campaignCard.type2 .imgArea {
      max-width: 100%;
      opacity: 1;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    .campaignCard .cardContent {
      position: relative;
      z-index: 2;
    }
    .campaignCard .imgArea {
      z-index: 0;
      opacity: 0.5;
      max-width: 100%;
    }
    .campaignCard.type2 .imgArea {
      opacity: 1;
    }
  }
  @media screen and (max-width: 576px) {
    .productItem {
      background: #f7f7f7;
    }
    .productItem .imgArea {
      background: #f7f7f7;
      max-width: 320px;
      margin: 0 auto;
    }
    .productItem:before {
      background: #fff;
    }
    .cartProductItem {
      padding: 20px;
      flex-direction: column;
      gap: 30px;
    }
    .cartProductItem .cardContent {
      flex-direction: column;
    }
    .cartProductItem .cardContent .infos {
      flex-wrap: wrap;
      margin: 0;
    }
    .cartProductItem .cardContent .infos .price {
      width: 100%;
      order: 1;
    }
    .cartProductItem .cardContent .infos .iconArea, .cartProductItem .cardContent .infos .changePiece {
      order: 2;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .cartProductItem {
      padding: 20px;
      gap: 30px;
    }
    .cartProductItem .cardContent {
      flex-direction: column;
    }
    .cartProductItem .cardContent .infos {
      flex-wrap: wrap;
      margin: 0;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .cartProductItem {
      padding: 20px;
      gap: 30px;
    }
    .cartProductItem .cardContent {
      flex-direction: column;
    }
    .cartProductItem .cardContent .infos {
      flex-wrap: wrap;
      margin: 0;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .cartProductItem {
      padding: 20px;
      gap: 30px;
    }
    .cartProductItem .cardContent {
      flex-direction: column;
    }
    .cartProductItem .cardContent .infos {
      flex-wrap: wrap;
      margin: 0;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    .cartProductItem {
      padding: 20px;
      gap: 30px;
    }
    .cartProductItem .cardContent .infos {
      flex-wrap: wrap;
      margin: 0;
    }
  }
  @media screen and (max-width: 576px) {
    .breadcrumb ul {
      overflow: hidden;
      overflow-x: auto;
      width: 100%;
    }
    .breadcrumb ul::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    .breadcrumb ul li a {
      white-space: nowrap;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .breadcrumb ul {
      overflow: hidden;
      overflow-x: auto;
      width: 100%;
    }
    .breadcrumb ul::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    .breadcrumb ul li a {
      white-space: nowrap;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .breadcrumb ul {
      overflow: hidden;
      overflow-x: auto;
      width: 100%;
    }
    .breadcrumb ul::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    .breadcrumb ul li a {
      white-space: nowrap;
    }
  }
  @media screen and (max-width: 576px) {
    .accordionItem {
      padding: 25px 20px;
    }
    .accordionItem .accordionHeader {
      font-size: 16px;
      line-height: 26px;
    }
    .questionsCard {
      padding: 25px;
    }
    .questionsCard .iconArea {
      width: 35px;
      height: 35px;
    }
    .questionsCard .iconArea .icon {
      width: 16px;
      height: 16px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .accordionItem {
      padding: 25px 20px;
    }
    .accordionItem .accordionHeader {
      font-size: 16px;
      line-height: 26px;
    }
    .questionsCard .iconArea {
      width: 40px;
      height: 40px;
    }
    .questionsCard .iconArea .icon {
      width: 20px;
      height: 20px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .accordionItem {
      padding: 35px 40px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .accordionItem {
      padding: 45px 50px;
    }
  }
  @media screen and (max-width: 576px) {
    .navlist2 {
      padding: 0 30px 30px;
      overflow: hidden;
      overflow-x: auto;
      gap: 20px;
    }
    .navlist2::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    .navlist2 li a {
      white-space: nowrap;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .navlist2 {
      padding: 0 30px 30px;
      overflow: hidden;
      overflow-x: auto;
    }
    .navlist2::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    .navlist2 li a {
      white-space: nowrap;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .navlist2 {
      padding: 0 50px 50px;
      overflow: hidden;
      overflow-x: auto;
    }
    .navlist2::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background-color: #9f0829;
    }
    .navlist2 li a {
      white-space: nowrap;
    }
  }
  @media screen and (max-width: 576px) {
    .customInput1 {
      padding: 25px 20px 32px;
    }
    .customInput2 input {
      font-size: 16px;
      padding: 10px 20px;
      height: 70px;
    }
    .customInput2.cardInput input {
      padding: 10px 20px;
    }
    .customInput2.cardInput input.placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-ms-input-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-webkit-input-placeholder {
      font-size: 14px;
    }
    .customcheckbox4 {
      padding: 20px;
      gap: 20px;
    }
    .customcheckbox4 .checkboxText {
      flex-wrap: wrap;
    }
    .customcheckbox4 .checkboxText .item {
      display: flex;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .customcheckbox4 {
      padding: 20px;
      gap: 20px;
    }
    .customcheckbox4 .checkboxText .item {
      font-size: 14px;
    }
    .customInput2 input {
      font-size: 16px;
      padding: 10px 20px;
      height: 70px;
    }
    .customInput2.cardInput input {
      padding: 10px 20px;
      font-size: 14px;
    }
    .customInput2.cardInput input.placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-ms-input-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-webkit-input-placeholder {
      font-size: 14px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .customInput2 input {
      font-size: 16px;
      padding: 10px 20px;
      height: 70px;
    }
    .customInput2.cardInput input {
      padding: 10px 20px;
      font-size: 14px;
    }
    .customInput2.cardInput input.placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-ms-input-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-webkit-input-placeholder {
      font-size: 14px;
    }
    .customcheckbox4 {
      padding: 20px;
      gap: 20px;
    }
  }
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .customInput2 input {
      font-size: 16px;
      padding: 10px 20px;
      height: 70px;
    }
    .customInput2.cardInput input {
      padding: 10px 20px;
      font-size: 14px;
    }
    .customInput2.cardInput input.placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-moz-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input:-ms-input-placeholder {
      font-size: 14px;
    }
    .customInput2.cardInput input::-webkit-input-placeholder {
      font-size: 14px;
    }
    .customcheckbox4 {
      padding: 20px;
      gap: 20px;
    }
    .customcheckbox4 .checkboxText .item {
      font-size: 14px;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    .customInput2 input {
      font-size: 16px;
      padding: 10px 20px;
      height: 70px;
    }
    .customInput2.cardInput input {
      padding: 10px 20px;
      font-size: 22px;
    }
    .customInput2.cardInput input.placeholder {
      font-size: 22px;
    }
    .customInput2.cardInput input:-moz-placeholder {
      font-size: 22px;
    }
    .customInput2.cardInput input::-moz-placeholder {
      font-size: 22px;
    }
    .customInput2.cardInput input:-ms-input-placeholder {
      font-size: 22px;
    }
    .customInput2.cardInput input::-webkit-input-placeholder {
      font-size: 22px;
    }
    .customcheckbox4 {
      padding: 20px;
      gap: 20px;
    }
    .customcheckbox4 .checkboxText .item {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 576px) {
    .testimonialItem {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .testimonialItem {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  @media screen and (max-width: 576px) {
    .alert {
      padding: 15px;
      gap: 15px;
    }
  }/*# sourceMappingURL=mobile.css.map */