.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) {
  .mainHeader .headerTop {
    display: none;
  }
  .mainHeader .headerMain .headerInner {
    padding: 15px 0;
    height: auto;
    justify-content: space-between;
  }
  .mainHeader .headerMain .logo {
    width: 100px;
    position: static;
  }
  .mainHeader .headerMain .navRightWrapper {
    margin-right: 0;
    display: flex;
    align-items: center;
  }
  .mainHeader .headerMain .mainNav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 0;
    overflow-y: auto;
  }
  .mainHeader .headerMain .mainNav.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mainHeader .headerMain .mainNav ul {
    flex-direction: column;
    padding: 120px 30px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .mainHeader .headerMain .mainNav ul li {
    margin: 0;
    margin-bottom: 30px;
  }
  .mainHeader .headerMain .mainNav ul li:last-child {
    margin-bottom: 0;
  }
  .mainHeader .headerMain .mainNav ul li a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0B3A52;
    display: block;
    padding: 5px 0;
  }
  .mainHeader .headerMain .mainNav ul li a.active {
    color: #009fe3;
  }
  .mainHeader .headerMain .mainNav ul li a:hover {
    color: #009fe3;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop {
    background: #f8f9fa;
    padding: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #666;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact .separator {
    display: none;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact a {
    color: #0B3A52;
    display: block;
    font-weight: 500;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact a:hover {
    color: #009fe3;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact .highlight {
    color: #009fe3;
    font-weight: 800;
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 2px;
  }
  .mainHeader .headerMain .langSwitch {
    margin-left: 15px;
    font-size: 12px;
  }
  .mainHeader .headerMain .distributorLogo {
    display: none;
  }
  .mainHeader .headerMain .mobileMenuBtn {
    display: flex;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: 15px;
    z-index: 10000;
  }
  .mainHeader .headerMain .mobileMenuBtn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .mainHeader .headerMain .mobileMenuBtn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .mainHeader .headerMain .mobileMenuBtn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .mainHeader .headerMain .mobileMenuBtn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .mainHeader .headerTop {
    display: none;
  }
  .mainHeader .headerMain .headerInner {
    padding: 55px 0 25px 0;
    justify-content: space-between;
  }
  .mainHeader .headerMain .logo {
    width: 120px;
    position: static;
  }
  .mainHeader .headerMain .navRightWrapper {
    margin-right: 0;
    display: flex;
    align-items: center;
  }
  .mainHeader .headerMain .mainNav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 0;
    overflow-y: auto;
  }
  .mainHeader .headerMain .mainNav.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mainHeader .headerMain .mainNav ul {
    flex-direction: column;
    padding: 120px 30px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .mainHeader .headerMain .mainNav ul li {
    margin: 0;
    margin-bottom: 30px;
  }
  .mainHeader .headerMain .mainNav ul li:last-child {
    margin-bottom: 0;
  }
  .mainHeader .headerMain .mainNav ul li a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0B3A52;
    display: block;
    padding: 5px 0;
  }
  .mainHeader .headerMain .mainNav ul li a.active {
    color: #009fe3;
  }
  .mainHeader .headerMain .mainNav ul li a:hover {
    color: #009fe3;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop {
    background: #f8f9fa;
    padding: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #666;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact .separator {
    display: none;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact a {
    color: #0B3A52;
    display: block;
    font-weight: 500;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact a:hover {
    color: #009fe3;
  }
  .mainHeader .headerMain .mainNav .mobileHeaderTop .headerContact .highlight {
    color: #009fe3;
    font-weight: 800;
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 2px;
  }
  .mainHeader .headerMain .langSwitch {
    margin-left: 20px;
  }
  .mainHeader .headerMain .distributorLogo {
    display: none;
  }
  .mainHeader .headerMain .mobileMenuBtn {
    display: flex;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: 20px;
    z-index: 10000;
  }
  .mainHeader .headerMain .mobileMenuBtn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .mainHeader .headerMain .mobileMenuBtn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .mainHeader .headerMain .mobileMenuBtn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .mainHeader .headerMain .mobileMenuBtn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .mainHeader .headerTop .headerContact {
    font-size: 12px;
  }
  .mainHeader .headerTop .headerContact .highlight {
    font-size: 14px;
  }
  .mainHeader .headerMain .headerInner {
    justify-content: space-between;
  }
  .mainHeader .headerMain .logo {
    width: 140px;
    position: static;
  }
  .mainHeader .headerMain .navRightWrapper {
    margin-right: 0;
    display: flex;
    align-items: center;
  }
  .mainHeader .headerMain .mainNav ul li {
    margin-left: 15px;
  }
  .mainHeader .headerMain .mainNav ul li a {
    font-size: 13px;
  }
  .mainHeader .headerMain .langSwitch {
    margin-left: 20px;
  }
  .mainHeader .headerMain .distributorLogo {
    display: none;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .mainHeader .headerMain .navRightWrapper {
    margin-right: 160px;
  }
  .mainHeader .headerMain .mainNav ul li {
    margin-left: 20px;
  }
  .mainHeader .headerMain .distributorLogo {
    padding: 45px 14px 19px;
  }
  .mainHeader .headerMain .distributorLogo img {
    max-width: 100px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .mainHeader .headerMain .navRightWrapper {
    margin-right: 170px;
  }
  .mainHeader .headerMain .mainNav ul li {
    margin-left: 25px;
  }
}
@media screen and (min-width: 1701px) {
  .mainHeader .headerTop .headerContact {
    font-size: 14px;
  }
  .mainHeader .headerTop .headerContact .highlight {
    font-size: 17px;
  }
  .mainHeader .headerMain .logo {
    width: 180px;
  }
  .mainHeader .headerMain .navRightWrapper {
    margin-right: 190px;
  }
  .mainHeader .headerMain .mainNav ul li {
    margin-left: 30px;
  }
  .mainHeader .headerMain .mainNav ul li a {
    font-size: 15px;
  }
  .mainHeader .headerMain .langSwitch {
    margin-left: 35px;
    font-size: 15px;
  }
  .mainHeader .headerMain .distributorLogo {
    padding: 55px 18px 22px;
  }
  .mainHeader .headerMain .distributorLogo img {
    max-width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .mobileHeaderTop {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .mobileHeaderTop {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .footerImageSection {
    height: 400px;
    padding-top: 30px;
  }
  .footerImageSection .curvedTextWrapper {
    max-width: 100%;
    width: 400px;
    height: 150px;
    top: 10px;
  }
  .footerImageSection .curvedTextWrapper .curvedTextSvg .curveText {
    font-size: 16px;
  }
  .footerImageSection .footerHeroImage {
    max-width: 500px;
    bottom: 10px;
  }
  .footerMarquee {
    padding: 8px 0 100px;
  }
  .footerMarquee .track .content {
    font-size: 11px;
    padding: 0 15px;
  }
  .mainFooter {
    padding-top: 50px;
  }
  .mainFooter .footerCol {
    margin-bottom: 30px;
    text-align: center;
  }
  .mainFooter .footerCol:nth-child(2) {
    margin-left: 0;
  }
  .mainFooter .footerLogo .logo {
    width: 120px;
    margin: 0 auto;
  }
  .mainFooter .footerDesc {
    font-size: 13px;
  }
  .mainFooter .socialLinks {
    gap: 8px;
    justify-content: center;
  }
  .mainFooter .socialLinks a {
    width: 35px;
    height: 35px;
  }
  .mainFooter .socialLinks a .social-icon {
    width: 18px;
    height: 18px;
  }
  .mainFooter .footerTitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .mainFooter .footerLinks li {
    margin-bottom: 12px;
  }
  .mainFooter .footerLinks li a {
    font-size: 14px;
    display: inline-block;
  }
  .mainFooter .contactList li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    justify-content: center;
  }
  .mainFooter .contactList li .icon {
    width: 30px;
    margin-right: 12px;
  }
  .mainFooter .contactList li .icon.locate {
    width: 25px;
    margin-right: 18px;
  }
  .mainFooter .contactList li .details {
    text-align: left;
  }
  .mainFooter .contactList li .details strong {
    font-size: 13px;
  }
  .mainFooter .contactList li .details span,
  .mainFooter .contactList li .details a {
    font-size: 12px;
  }
  .mainFooter .footerBottom {
    padding: 20px 0;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .mainFooter .footerBottom .copyright p {
    font-size: 12px;
  }
  .mainFooter .footerBottom .footerLegal {
    font-size: 11px;
  }
  .mainFooter .footerBottom .footerLegal a {
    font-size: 11px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .footerImageSection {
    height: 500px;
    padding-top: 35px;
  }
  .footerImageSection .curvedTextWrapper {
    width: 500px;
    height: 180px;
  }
  .footerImageSection .curvedTextWrapper .curvedTextSvg .curveText {
    font-size: 20px;
  }
  .footerImageSection .footerHeroImage {
    max-width: 650px;
    bottom: 15px;
  }
  .footerMarquee {
    padding: 9px 0 120px;
  }
  .footerMarquee .track .content {
    font-size: 12px;
    padding: 0 20px;
  }
  .mainFooter {
    padding-top: 60px;
  }
  .mainFooter .footerCol {
    text-align: center;
  }
  .mainFooter .footerCol:nth-child(2) {
    margin-left: 0;
  }
  .mainFooter .footerLogo .logo {
    width: 130px;
    margin: 0 auto;
  }
  .mainFooter .socialLinks {
    justify-content: center;
  }
  .mainFooter .footerTitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .mainFooter .footerLinks li a {
    font-size: 14px;
    display: inline-block;
  }
  .mainFooter .contactList li {
    justify-content: center;
  }
  .mainFooter .contactList li .icon {
    width: 32px;
    margin-right: 13px;
  }
  .mainFooter .contactList li .icon.locate {
    width: 27px;
    margin-right: 20px;
  }
  .mainFooter .contactList li .details {
    text-align: left;
  }
  .mainFooter .contactList li .details strong {
    font-size: 14px;
  }
  .mainFooter .contactList li .details span,
  .mainFooter .contactList li .details a {
    font-size: 13px;
  }
  .mainFooter .footerBottom {
    padding: 22px 0;
  }
  .mainFooter .footerBottom .copyright p {
    font-size: 13px;
  }
  .mainFooter .footerBottom .footerLegal {
    font-size: 12px;
  }
  .mainFooter .footerBottom .footerLegal a {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .footerImageSection {
    height: 600px;
    padding-top: 40px;
  }
  .footerImageSection .curvedTextWrapper {
    width: 600px;
    height: 220px;
  }
  .footerImageSection .curvedTextWrapper .curvedTextSvg .curveText {
    font-size: 23px;
  }
  .footerImageSection .footerHeroImage {
    max-width: 750px;
  }
  .footerMarquee {
    padding: 10px 0 130px;
  }
  .footerMarquee .track .content {
    font-size: 13px;
  }
  .mainFooter {
    padding-top: 70px;
  }
  .mainFooter .footerCol:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .mainFooter .footerCol:nth-child(2) {
    margin-left: 0;
  }
  .mainFooter .footerLogo .logo {
    width: 140px;
  }
  .mainFooter .footerTitle {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .mainFooter .contactList li .icon {
    width: 35px;
    margin-right: 14px;
  }
  .mainFooter .contactList li .icon.locate {
    width: 28px;
    margin-right: 21px;
  }
  .mainFooter .footerBottom {
    padding: 24px 0;
  }
  .mainFooter .footerBottom .copyright p {
    font-size: 13px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .footerImageSection {
    height: 650px;
    padding-top: 45px;
  }
  .footerImageSection .curvedTextWrapper {
    width: 650px;
    height: 235px;
  }
  .footerImageSection .curvedTextWrapper .curvedTextSvg .curveText {
    font-size: 25px;
  }
  .footerImageSection .footerHeroImage {
    max-width: 850px;
  }
  .footerMarquee {
    padding: 10px 0 140px;
  }
  .mainFooter {
    padding-top: 75px;
  }
  .mainFooter .footerCol:nth-child(2) {
    margin-left: 55px;
  }
  .mainFooter .footerLogo .logo {
    width: 145px;
  }
  .mainFooter .footerTitle {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .mainFooter .contactList li .icon {
    width: 36px;
  }
  .mainFooter .contactList li .icon.locate {
    width: 29px;
    margin-right: 22px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .footerImageSection {
    height: 700px;
    padding-top: 50px;
  }
  .footerImageSection .curvedTextWrapper {
    width: 700px;
    height: 250px;
  }
  .footerImageSection .curvedTextWrapper .curvedTextSvg .curveText {
    font-size: 26px;
  }
  .footerImageSection .footerHeroImage {
    max-width: 900px;
  }
  .footerMarquee {
    padding: 10px 0 150px;
  }
  .footerMarquee .track .content {
    font-size: 14px;
  }
  .mainFooter {
    padding-top: 80px;
  }
  .mainFooter .footerCol:nth-child(2) {
    margin-left: 60px;
  }
  .mainFooter .footerLogo .logo {
    width: 150px;
  }
  .mainFooter .footerTitle {
    font-size: 28px;
    margin-bottom: 35px;
  }
  .mainFooter .contactList li .icon {
    width: 38px;
    margin-right: 15px;
  }
  .mainFooter .contactList li .icon.locate {
    width: 30px;
    margin-right: 23px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1700px) {
  .footerImageSection {
    height: 750px;
    padding-top: 55px;
  }
  .footerImageSection .curvedTextWrapper {
    width: 750px;
    height: 265px;
  }
  .footerImageSection .curvedTextWrapper .curvedTextSvg .curveText {
    font-size: 28px;
  }
  .footerImageSection .footerHeroImage {
    max-width: 950px;
  }
  .footerMarquee {
    padding: 11px 0 160px;
  }
  .footerMarquee .track .content {
    font-size: 15px;
  }
  .mainFooter {
    padding-top: 85px;
  }
  .mainFooter .footerCol:nth-child(2) {
    margin-left: 65px;
  }
  .mainFooter .footerLogo .logo {
    width: 160px;
  }
  .mainFooter .footerTitle {
    font-size: 30px;
    margin-bottom: 38px;
  }
  .mainFooter .contactList li .icon {
    width: 40px;
    margin-right: 16px;
  }
  .mainFooter .contactList li .icon.locate {
    width: 32px;
    margin-right: 24px;
  }
}
@media screen and (min-width: 1701px) {
  .footerImageSection {
    height: 800px;
    padding-top: 60px;
  }
  .footerImageSection .curvedTextWrapper {
    width: 800px;
    height: 280px;
  }
  .footerImageSection .curvedTextWrapper .curvedTextSvg .curveText {
    font-size: 16px;
  }
  .footerImageSection .footerHeroImage {
    max-width: 1000px;
    bottom: 25px;
  }
  .footerMarquee {
    padding: 12px 0 170px;
  }
  .footerMarquee .track .content {
    font-size: 16px;
    padding: 0 30px;
  }
  .mainFooter {
    padding-top: 90px;
  }
  .mainFooter .footerCol {
    margin-bottom: 50px;
  }
  .mainFooter .footerCol:nth-child(2) {
    margin-left: 70px;
  }
  .mainFooter .footerLogo {
    margin-bottom: 25px;
  }
  .mainFooter .footerLogo .logo {
    width: 170px;
  }
  .mainFooter .footerDesc {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .mainFooter .socialLinks {
    gap: 12px;
  }
  .mainFooter .socialLinks a {
    width: 45px;
    height: 45px;
  }
  .mainFooter .socialLinks a .social-icon {
    width: 22px;
    height: 22px;
  }
  .mainFooter .footerTitle {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .mainFooter .footerLinks li {
    margin-bottom: 18px;
  }
  .mainFooter .footerLinks li a {
    font-size: 16px;
  }
  .mainFooter .contactList li {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  .mainFooter .contactList li .icon {
    width: 42px;
    margin-right: 17px;
  }
  .mainFooter .contactList li .icon.locate {
    width: 33px;
    margin-right: 25px;
  }
  .mainFooter .contactList li .details strong {
    font-size: 16px;
  }
  .mainFooter .contactList li .details span,
  .mainFooter .contactList li .details a {
    font-size: 15px;
  }
  .mainFooter .footerBottom {
    padding: 28px 0;
  }
  .mainFooter .footerBottom .copyright p {
    font-size: 14px;
  }
  .mainFooter .footerBottom .footerLegal {
    font-size: 13px;
  }
  .mainFooter .footerBottom .footerLegal a {
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .pageBanner {
    width: calc(100% - 30px);
    padding: 50px 20px 30px;
    min-height: 250px;
    display: flex;
    align-items: center;
  }
  .pageBanner .bannerContent {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }
  .pageBanner .bannerContent .leftContent .miniTitle {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .pageBanner .bannerContent .leftContent .mainTitle {
    font-size: 32px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .pageBanner {
    width: calc(100% - 40px);
    padding: 80px 30px 40px;
    min-height: 300px;
  }
  .pageBanner .bannerContent .leftContent .mainTitle {
    font-size: 38px;
  }
  .pageBanner .bannerContent .leftContent .miniTitle {
    letter-spacing: 4px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .pageBanner {
    padding: 100px 40px 50px;
  }
  .pageBanner .bannerContent .leftContent .mainTitle {
    font-size: 42px;
  }
}
@media screen and (max-width: 576px) {
  .sectionPadding {
    padding: 30px 0;
  }
  .heroSection {
    height: 470px;
    padding: 0 15px;
    margin-bottom: 50px;
  }
  .heroSection .container {
    padding-bottom: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .heroSection .heroContent {
    margin-top: -40px;
  }
  .heroSection .heroContent .subTitle {
    font-size: 11px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .heroSection .heroContent .heroTitle {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  .heroSection .heroContent .btnCustom {
    padding: 12px 30px;
    font-size: 13px;
  }
  .heroSection .heroSideMenu {
    width: 100%;
    margin-top: 40px;
    max-width: 320px;
  }
  .heroSection .heroNav {
    right: 15px;
    top: 20px;
    display: flex;
    gap: 10px;
    position: absolute;
    z-index: 10;
  }
  .heroSection .heroNav .swiper-button-prev,
  .heroSection .heroNav .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .heroSection .heroNav .swiper-button-prev img,
  .heroSection .heroNav .swiper-button-next img {
    width: 12px;
  }
  .heroSection .heroNav .swiper-button-prev:after,
  .heroSection .heroNav .swiper-button-next:after {
    display: none;
  }
  .infoBar {
    width: calc(100% - 30px);
    padding: 25px 20px;
    -webkit-clip-path: none;
            clip-path: none;
    border-radius: 15px;
    margin-top: -40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .infoBar::after {
    display: none;
  }
  .infoBar.searchBarMode {
    padding: 30px 20px;
  }
  .infoBar.searchBarMode .container form .row > div {
    margin-bottom: 25px;
    padding-bottom: 5px;
  }
  .infoBar.searchBarMode .container form .row > div:last-child {
    margin-bottom: 0;
  }
  .infoBar.searchBarMode .container form .btnSearch {
    margin-left: 0;
    margin-top: 5px;
    width: 100%;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
  }
  .infoBar.searchBarMode .container form label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
  }
  .infoBar.searchBarMode .container form .custom-select-wrapper .custom-select-display {
    height: 45px;
    font-size: 14px;
  }
  .introSection {
    padding: 40px 0;
    text-align: center;
  }
  .introSection .leftInfo .topLabel {
    justify-content: center;
    margin-bottom: 10px;
  }
  .introSection .leftInfo .miniTitle {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .introSection .imageWrapper {
    margin-bottom: 20px;
  }
  .introSection .imageWrapper .mainImg {
    width: 100%;
    height: auto;
  }
  .introSection .introContent {
    padding-left: 0;
  }
  .introSection .introContent .title {
    font-size: 20px;
  }
  .introSection .introContent .text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .introSection .introContent .btnDarkBlue {
    padding: 10px 20px;
    font-size: 12px;
  }
  .marqueeSection .marqueeBar {
    font-size: 10px;
    padding: 8px 0;
  }
  .marqueeSection .marqueeBar span {
    padding-right: 15px;
  }
  .featuresSection .featureList {
    display: none;
  }
  .featuresSection .featuresSwiper {
    padding: 30px 0;
  }
  .featuresSection .centerImage {
    min-height: 200px;
  }
  .featuresSection .centerImage:before {
    width: 250px;
    height: 250px;
  }
  .featuresSection .centerImage .navArrow {
    width: 30px;
    height: 30px;
  }
  .featuresSection .centerImage .navArrow img {
    width: 7px;
  }
  .featuresSection .featureDescription {
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
  }
  .featuresSection .featureDescription .descText {
    font-size: 13px;
  }
  .rentalSection .rentalWrapper {
    flex-direction: column;
  }
  .rentalSection .rentalPart {
    width: 100% !important;
    padding: 25px 15px;
  }
  .rentalSection .rentalPart.left {
    justify-content: center;
    padding-right: 15px;
    text-align: center;
  }
  .rentalSection .rentalPart.left h3 {
    font-size: 24px;
    line-height: normal;
  }
  .rentalSection .rentalPart.left::before {
    display: none;
  }
  .rentalSection .rentalPart.center {
    padding: 30px 15px;
    text-align: center;
  }
  .rentalSection .rentalPart.center .content {
    max-width: 100%;
  }
  .rentalSection .rentalPart.right {
    padding-left: 15px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .sectionPadding {
    padding: 40px 0;
  }
  .heroSection {
    height: 470px;
    padding: 0 15px;
    margin-bottom: 20px;
  }
  .heroSection .container {
    padding-bottom: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .heroSection .heroContent {
    margin-top: -40px;
  }
  .heroSection .heroContent .subTitle {
    font-size: 11px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .heroSection .heroContent .heroTitle {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  .heroSection .heroContent .btnCustom {
    padding: 12px 30px;
    font-size: 13px;
  }
  .heroSection .heroSideMenu {
    width: 100%;
    margin-top: 40px;
    max-width: 320px;
  }
  .heroSection .heroNav {
    right: 15px;
    top: 20px;
    display: flex;
    gap: 10px;
    position: absolute;
    z-index: 10;
  }
  .heroSection .heroNav .swiper-button-prev,
  .heroSection .heroNav .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .heroSection .heroNav .swiper-button-prev img,
  .heroSection .heroNav .swiper-button-next img {
    width: 12px;
  }
  .heroSection .heroNav .swiper-button-prev:after,
  .heroSection .heroNav .swiper-button-next:after {
    display: none;
  }
  .infoBar.searchBarMode {
    padding: 30px 20px;
    -webkit-clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 0 100%);
  }
  .infoBar.searchBarMode .container form .btnSearch {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  .introSection {
    padding: 50px 0;
  }
  .introSection .leftInfo {
    text-align: center;
    margin-bottom: 25px;
  }
  .introSection .leftInfo .topLabel {
    justify-content: center;
  }
  .introSection .imageWrapper {
    margin-bottom: 25px;
  }
  .introSection .introContent {
    text-align: center;
    padding-left: 0;
  }
  .rentalSection .rentalWrapper {
    flex-direction: column;
  }
  .rentalSection .rentalPart {
    width: 100% !important;
    padding: 30px 20px;
  }
  .rentalSection .rentalPart.left {
    text-align: center;
    justify-content: center;
    padding-right: 20px;
  }
  .rentalSection .rentalPart.left::before {
    display: none;
  }
  .rentalSection .rentalPart.center {
    text-align: center;
    padding: 40px 25px;
  }
  .featuresSection .featureList {
    display: none;
  }
  .featuresSection .featuresSwiper {
    padding: 40px 0;
  }
  .featuresSection .centerImage {
    min-height: 250px;
  }
  .featuresSection .centerImage:before {
    width: 300px;
    height: 300px;
  }
  .featuresSection .featureDescription {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .sectionPadding {
    padding: 50px 0;
  }
  .heroSection {
    height: 600px;
  }
  .heroSection .container {
    padding-bottom: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .heroSection .heroContent {
    width: 100%;
  }
  .heroSection .heroContent .heroTitle {
    font-size: 45px;
    margin-bottom: 30px;
  }
  .heroSection .heroSideMenu {
    width: 100%;
    display: block;
    max-width: 350px;
    margin-top: 30px;
    text-align: left;
  }
  .heroSection .heroNav {
    bottom: 20px;
    right: 20px;
    flex-direction: column;
    display: flex;
    gap: 10px;
  }
  .infoBar {
    width: calc(100% - 40px);
    padding: 25px 20px;
  }
  .infoBar.searchBarMode {
    padding: 25px 0;
    -webkit-clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 0 100%);
  }
  .infoBar.searchBarMode .container form label {
    font-size: 13px;
  }
  .infoBar::after {
    width: 60px;
    height: 60px;
  }
  .introSection {
    padding: 50px 0;
  }
  .introSection .miniTitle {
    font-size: 16px;
  }
  .introSection .introContent .title {
    font-size: 20px;
  }
  .introSection .introContent .text {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .rentalSection .rentalWrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .rentalSection .rentalPart.left {
    width: 100% !important;
    justify-content: center;
    text-align: center;
    padding: 25px;
  }
  .rentalSection .rentalPart.left h3 {
    font-size: 28px;
  }
  .rentalSection .rentalPart.left::before {
    display: none;
  }
  .rentalSection .rentalPart.center {
    width: 60% !important;
    padding: 25px 20px;
  }
  .rentalSection .rentalPart.center .content p.lead {
    font-size: 15px;
  }
  .rentalSection .rentalPart.right {
    width: 40% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .rentalSection .rentalPart.right .serviceList li div strong {
    font-size: 14px;
  }
  .featuresSection .featuresSwiper {
    padding: 50px 0;
  }
  .featuresSection .featureList {
    display: block;
  }
  .featuresSection .featureList .productList {
    display: flex;
    flex-wrap: wrap;
  }
  .featuresSection .featureList .productList li {
    width: 50%;
    border-bottom: 1px solid #e1e8f0;
    box-sizing: border-box;
  }
  .featuresSection .featureList .productList li:nth-child(odd) {
    border-right: 1px solid #e1e8f0;
  }
  .featuresSection .featureList .productList li a {
    font-size: 13px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
  }
  .featuresSection .featureList .header {
    margin-bottom: 20px;
  }
  .featuresSection .centerImage {
    min-height: 300px;
  }
  .featuresSection .centerImage:before {
    width: 400px;
    height: 400px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .heroSection .heroContent .heroTitle {
    font-size: 58px;
  }
  .rentalSection .rentalWrapper {
    flex-direction: row;
  }
  .rentalSection .rentalPart.left {
    padding-right: 40px;
    width: 28%;
  }
  .rentalSection .rentalPart.left h3 {
    font-size: 30px;
    line-height: 34px;
  }
  .rentalSection .rentalPart.center {
    width: 38%;
  }
  .rentalSection .rentalPart.right {
    width: 34%;
    padding-left: 40px;
  }
  .rentalSection .rentalPart h3 {
    font-size: 32px;
  }
  .featuresSection .centerImage {
    min-height: 400px;
  }
  .featuresSection .centerImage:before {
    width: 600px;
    height: 600px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1700px) {
  .heroSection {
    height: 700px;
  }
}
@media screen and (min-width: 1701px) {
  .heroSection {
    height: 850px;
  }
  .heroSection .heroContent .heroTitle {
    font-size: 80px;
  }
}
@media screen and (max-width: 576px) {
  section.corporatePage .companyInfo {
    padding: 50px 0;
  }
  section.corporatePage .companyInfo .container {
    flex-direction: column;
    gap: 40px;
  }
  section.corporatePage .companyInfo .leftSide {
    max-width: 100%;
    text-align: center;
  }
  section.corporatePage .companyInfo .leftSide .companyText {
    font-size: 26px;
    margin-bottom: 20px;
  }
  section.corporatePage .companyInfo .leftSide .companyText br {
    display: none;
  }
  section.corporatePage .companyInfo .leftSide .btnWrapper .btnBlue {
    padding: 15px 40px;
    width: 100%;
    text-align: center;
  }
  section.corporatePage .companyInfo .leftSide .compressorImage {
    margin-top: 40px;
    max-width: 100%;
    margin-right: 0;
  }
  section.corporatePage .companyInfo .leftSide .compressorImage:before {
    width: 300px;
    height: 300px;
    top: 50px;
    right: 50%;
    transform: translateX(50%);
  }
  section.corporatePage .companyInfo .rightSide .infoCard {
    margin-bottom: 40px;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .cardTitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .cardText {
    font-size: 16px;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .highlightedText {
    font-size: 18px;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .certificatesGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .certificatesGrid .certificateCard {
    padding: 20px;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .certificatesGrid .certificateCard .certificateImage {
    min-height: auto;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .certificatesGrid .certificateCard .certificateImage img {
    max-height: 200px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.corporatePage .companyInfo .container {
    flex-direction: column;
    gap: 50px;
  }
  section.corporatePage .companyInfo .leftSide {
    max-width: 100%;
    text-align: center;
  }
  section.corporatePage .companyInfo .leftSide .companyText {
    font-size: 32px;
  }
  section.corporatePage .companyInfo .leftSide .compressorImage {
    margin-left: auto;
    margin-right: auto;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .certificatesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.corporatePage .companyInfo .container {
    flex-direction: column;
    gap: 40px;
  }
  section.corporatePage .companyInfo .leftSide {
    max-width: 100%;
    text-align: center;
  }
  section.corporatePage .companyInfo .leftSide .companyText {
    font-size: 30px;
  }
  section.corporatePage .companyInfo .leftSide .compressorImage {
    margin-left: auto;
    margin-right: auto;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .certificatesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.corporatePage .companyInfo .container {
    flex-direction: column;
    gap: 60px;
  }
  section.corporatePage .companyInfo .leftSide {
    max-width: 100%;
    text-align: center;
  }
  section.corporatePage .companyInfo .leftSide .compressorImage {
    margin-left: auto;
    margin-right: auto;
  }
  section.corporatePage .companyInfo .rightSide .infoCard .certificatesGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 576px) {
  section.productsPage .productsContent {
    padding: 50px 0;
  }
  section.productsPage .productsContent .productsGrid {
    margin-top: -20px;
  }
  section.productsPage .productsContent .productsGrid [class^=col-] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  section.productsPage .productsContent .productsGrid .col-lg-4 {
    width: 100%;
    padding: 10px;
  }
  section.productsPage .productsContent .productsGrid .productCard {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  section.productsPage .productsContent .productsGrid .productCard .productImage {
    padding: 40px 20px;
    min-height: 180px;
    flex-grow: 1;
  }
  section.productsPage .productsContent .productsGrid .productCard .productImage img {
    max-height: 150px;
  }
  section.productsPage .productsContent .productsGrid .productCard .productName {
    font-size: 15px;
    margin-top: auto;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.productsPage .productsContent .productsGrid .col-lg-4 {
    width: 50%;
    padding: 10px;
  }
  section.productsPage .productsContent .productsGrid .productCard {
    height: 100%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.productsPage .productsContent .productsGrid .col-lg-4 {
    width: 50%;
    padding: 10px;
  }
  section.productsPage .productsContent .productsGrid .productCard {
    height: 100%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.productsPage .productsContent .productsGrid .col-lg-4 {
    width: 33.333%;
    padding: 10px;
  }
  section.productsPage .productsContent .productsGrid .productCard {
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  section.productDetailPage .productDetailContent {
    padding: 30px 0 50px;
  }
  section.productDetailPage .productDetailContent .colCenter {
    order: 2;
  }
  section.productDetailPage .productDetailContent .categorySidebar {
    border-radius: 20px;
    margin-top: 30px;
  }
  section.productDetailPage .productDetailContent .categorySidebar .categoryList {
    padding: 10px 0;
  }
  section.productDetailPage .productDetailContent .categorySidebar .categoryList li a {
    padding: 15px 45px;
    font-size: 14px;
  }
  section.productDetailPage .productDetailContent .categorySidebar .categoryList li a:before {
    left: 20px;
  }
  section.productDetailPage .productDetailContent .productContent {
    padding: 25px 15px;
    border-radius: 20px;
  }
  section.productDetailPage .productDetailContent .productContent .mobileProductHeader {
    margin-bottom: 25px;
  }
  section.productDetailPage .productDetailContent .productContent .mobileProductHeader .productBadge {
    margin-bottom: 15px;
  }
  section.productDetailPage .productDetailContent .productContent .mobileProductHeader .productTitle {
    text-align: left;
    margin-bottom: 0;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery {
    margin-bottom: 40px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productMainSwiper {
    margin-bottom: 15px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productMainSwiper .swiper-slide {
    padding: 30px 15px;
    min-height: 250px;
    border-radius: 15px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productMainSwiper .swiper-slide .imgArea {
    max-width: 240px;
    margin: 0 auto;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productThumbSwiper .swiper-slide {
    width: 70px !important;
    height: 70px !important;
    border-radius: 10px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productBadge {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 25px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productBadge .title {
    font-size: 14px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productBadge .btnPdf {
    width: 100%;
    height: 45px;
    justify-content: center;
    font-size: 14px;
    border-radius: 10px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productBadge .btnPdf svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productTitle {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productDescription {
    margin-bottom: 25px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productDescription p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productSpecs h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productSpecs .specsIntro {
    font-size: 14px;
    margin-bottom: 15px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productSpecs ul li {
    font-size: 14px;
    padding: 8px 0 8px 25px;
  }
  section.productDetailPage .productDetailContent .productContent .productInfo .productSpecs ul li:before {
    font-size: 20px;
  }
  section.productDetailPage .relatedProducts {
    padding: 40px 0;
    background: #fdfdfd;
  }
  section.productDetailPage .relatedProducts .relatedProductsSwiper {
    padding: 0 45px;
    overflow: hidden;
  }
  section.productDetailPage .relatedProducts .productCard {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    min-height: 160px;
  }
  section.productDetailPage .relatedProducts .productCard img {
    max-height: 100px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.productDetailPage .productDetailContent {
    padding: 40px 0 60px;
  }
  section.productDetailPage .productDetailContent .colCenter {
    order: 2;
  }
  section.productDetailPage .productDetailContent .col-lg-9 {
    order: 1;
  }
  section.productDetailPage .productDetailContent .categorySidebar {
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 0;
  }
  section.productDetailPage .productDetailContent .productContent {
    padding: 40px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery {
    margin-bottom: 40px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productMainSwiper .swiper-slide {
    min-height: 350px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productMainSwiper .swiper-slide .imgArea {
    max-width: 320px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.productDetailPage .productDetailContent {
    padding: 50px 0;
  }
  section.productDetailPage .productDetailContent .colCenter {
    order: 2;
  }
  section.productDetailPage .productDetailContent .col-lg-9 {
    order: 1;
  }
  section.productDetailPage .productDetailContent .categorySidebar {
    border-radius: 0 0 20px 20px;
    margin-top: 30px;
  }
  section.productDetailPage .productDetailContent .categorySidebar .categoryList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0;
  }
  section.productDetailPage .productDetailContent .categorySidebar .categoryList li a {
    padding: 18px 45px;
    font-size: 15px;
  }
  section.productDetailPage .productDetailContent .productContent {
    border-radius: 20px 20px 0 0;
    padding: 40px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery {
    margin-bottom: 40px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productMainSwiper .swiper-slide {
    min-height: 400px;
  }
  section.productDetailPage .productDetailContent .productContent .productGallery .productMainSwiper .swiper-slide .imgArea {
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .contactPage {
    padding: 50px 0;
  }
  .contactPage .infoCards {
    margin-bottom: 50px;
  }
  .contactPage .infoCards .infoCard {
    padding: 35px 20px;
    -webkit-clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
            clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
  }
  .contactPage .infoCards .infoCard .cardIcon {
    background: transparent;
    width: auto;
    height: auto;
    margin-bottom: 15px;
  }
  .contactPage .contactContent .mapSection {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .contactPage .contactContent .mapSection h2 {
    font-size: 32px;
    text-align: center;
  }
  .contactPage .contactContent .mapSection p {
    text-align: center;
    margin-bottom: 25px;
  }
  .contactPage .contactContent .contactForm {
    padding: 40px 25px;
    -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  }
  .contactPage .contactContent .contactForm h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .editorContentArea {
    padding: 30px;
  }
}/*# sourceMappingURL=mobile.css.map */