@charset "UTF-8";
.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 {
    padding-bottom: 10px;
  }
  header .container {
    z-index: 2;
  }
  header .menu {
    display: none;
  }
  header .phone {
    display: none;
  }
  header .rightMenu {
    display: none;
  }
  header .mobileMenuOpen {
    display: block;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  header {
    padding-bottom: 10px;
  }
  header .container {
    z-index: 2;
  }
  header .menu {
    display: none;
  }
  header .phone {
    display: none;
  }
  header .rightMenu {
    display: none;
  }
  header .mobileMenuOpen {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  header {
    padding-bottom: 10px;
  }
  header .container {
    z-index: 2;
  }
  header .menu {
    display: none;
  }
  header .phone {
    display: none;
  }
  header .rightMenu {
    display: none;
  }
  header .mobileMenuOpen {
    display: block;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  header {
    padding-bottom: 10px;
  }
  header .container {
    z-index: 2;
  }
  header .menu {
    display: none;
  }
  header .phone {
    display: none;
  }
  header .rightMenu {
    display: none;
  }
  header .mobileMenuOpen {
    display: block;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  header .menu {
    margin-left: 20px;
  }
  header .menu ul {
    gap: 20px;
  }
  header .rightMenu {
    margin-left: 30px;
  }
  header .phone {
    margin-left: 25px;
  }
}
@media screen and (max-width: 576px) {
  .footerTop .container {
    justify-content: center;
  }
  .footerTop .titleArea .subTitle {
    text-align: center;
  }
  .footerTop .titleArea .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .footerTop .footerImgArea {
    display: none;
  }
  .footerContact {
    padding-bottom: 35px;
  }
  .footerContact .container {
    flex-direction: column;
  }
  .footerContact .phone {
    border: 0;
    padding: 30px;
  }
  .footerContact .contactLeft {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px;
  }
  .footerContact .contactLeft .contactAddress {
    text-align: center;
    margin-top: 20px;
  }
  footer {
    padding-bottom: 20px;
  }
  footer .footerMenus {
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
  }
  footer .footerMenus .menus {
    border: none;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 35px 20px;
  }
  footer .footerMenus .menus .menu {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footerMenus .socialLinks {
    padding: 30px 0;
  }
  footer .footerBottom {
    flex-direction: column;
  }
  footer .footerBottom .bottomButtons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  footer .footerBottom .bottomButtons .bottomButton {
    border: none !important;
    padding: 20px;
  }
  footer .footerBottom .bottomButtons .bottomButton .textArea .text {
    margin-bottom: 15px;
  }
  footer .footerBottom .policy .top {
    padding: 0;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  footer .footerBottom .policy .top .links {
    flex-direction: column;
    justify-content: center;
  }
  footer .footerBottom .policy .top .c25 .imgArea {
    height: 50px;
  }
  footer .footerBottom .policy .top .stageLogo {
    margin-left: 0;
    margin-top: 10px;
  }
  footer .footerBottom .policy .top .stageLogo img {
    height: 25px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .footerTop .container {
    justify-content: center;
  }
  .footerTop .titleArea .subTitle {
    text-align: center;
  }
  .footerTop .titleArea .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .footerTop .footerImgArea {
    display: none;
  }
  .footerContact {
    padding-bottom: 35px;
  }
  .footerContact .container {
    flex-direction: column;
  }
  .footerContact .phone {
    border: 0;
    padding: 30px;
  }
  .footerContact .contactLeft {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px;
  }
  .footerContact .contactLeft .contactAddress {
    text-align: center;
    margin-top: 20px;
  }
  footer {
    padding-bottom: 20px;
  }
  footer .footerMenus {
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
  }
  footer .footerMenus .menus {
    border: none;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 20px;
    flex-wrap: wrap;
  }
  footer .footerMenus .menus .menu {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(50% - 10px);
  }
  footer .footerMenus .socialLinks {
    padding: 30px 0;
  }
  footer .footerBottom {
    flex-direction: column;
  }
  footer .footerBottom .policy .top {
    padding: 0;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  footer .footerBottom .policy .top .links {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .footerTop .container {
    justify-content: center;
  }
  .footerTop .titleArea .subTitle {
    text-align: center;
  }
  .footerTop .titleArea .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .footerTop .footerImgArea {
    display: none;
  }
  .footerContact {
    padding-bottom: 35px;
  }
  .footerContact .container {
    flex-direction: column;
  }
  .footerContact .phone {
    border: 0;
    padding: 30px;
  }
  .footerContact .contactLeft {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px;
  }
  .footerContact .contactLeft .contactAddress {
    text-align: center;
    margin-top: 20px;
  }
  footer {
    padding-bottom: 20px;
  }
  footer .footerMenus {
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
  }
  footer .footerMenus .menus {
    border: none;
    padding: 0;
    margin: 0;
    gap: 35px 20px;
    flex-wrap: wrap;
  }
  footer .footerMenus .socialLinks {
    padding: 30px 0;
  }
  footer .footerBottom {
    flex-direction: column;
  }
  footer .footerBottom .bottomButtons {
    margin-bottom: 20px;
  }
  footer .footerBottom .bottomButtons .bottomButton {
    max-width: 50%;
    width: 100%;
  }
  footer .footerBottom .policy .top {
    padding: 0;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  footer .footerBottom .policy .top .links {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .footerTop .container {
    justify-content: center;
  }
  .footerTop .titleArea .subTitle {
    text-align: center;
  }
  .footerTop .titleArea .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .footerTop .footerImgArea {
    display: none;
  }
  .footerContact {
    padding-bottom: 35px;
  }
  .footerContact .container {
    flex-direction: column;
  }
  .footerContact .phone {
    border: 0;
    padding: 30px;
  }
  .footerContact .contactLeft {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px;
  }
  .footerContact .contactLeft .contactAddress {
    text-align: center;
    margin-top: 20px;
  }
  footer {
    padding-bottom: 20px;
  }
  footer .footerMenus {
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
  }
  footer .footerMenus .menus {
    border: none;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 20px;
  }
  footer .footerMenus .socialLinks {
    padding: 30px 0;
  }
  footer .footerBottom {
    flex-direction: column;
  }
  footer .footerBottom .bottomButtons {
    margin-bottom: 20px;
  }
  footer .footerBottom .bottomButtons .bottomButton {
    max-width: 50%;
    width: 100%;
  }
  footer .footerBottom .policy .top {
    padding: 0;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  footer .footerBottom .policy .top .links {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .footerTop .footerImgArea {
    right: 0;
  }
  footer {
    padding-bottom: 20px;
  }
  footer .footerBottom {
    flex-direction: column;
  }
  footer .footerBottom .bottomButtons {
    margin-bottom: 20px;
  }
  footer .footerBottom .bottomButtons .bottomButton {
    max-width: 50%;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  footer .footerBottom .policy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .footerBottom .policy .stageLogo {
    position: static;
    margin-left: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  footer .footerBottom .policy .stageLogo img {
    height: 25px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 576px) {
  .colPadding {
    padding: 0;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .colPadding {
    padding: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .colPadding {
    padding: 0;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .colPadding {
    padding-left: 50px;
  }
}
@media screen and (min-width: 101px) {
  .customContainer {
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .pageTitle {
    padding-bottom: 20px;
  }
  .pageTitle .container {
    flex-direction: column;
    align-items: center;
  }
  .pageTitle .imgArea {
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
    z-index: -1 !important;
    opacity: 0.5 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 90% !important;
  }
  .pageTitle .title {
    white-space: normal;
    text-align: center;
    margin: 0 0 20PX !important;
  }
  .pageTitle .text {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    text-align: center;
    flex-direction: column-reverse;
  }
  .configrationTitle {
    padding-bottom: 25px;
  }
  .configrationTitle .progressBar {
    bottom: -25px;
  }
  .configrationTitle .container {
    position: relative;
  }
  .configrationTitle .container .imgArea {
    position: absolute;
    right: 15px;
    bottom: -25px;
    max-height: 130px;
  }
  .pageTitle2 {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .pageTitle2 .title {
    font-size: 28px;
    line-height: 38px;
  }
  .pageTitle2 .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .configrationTitle {
    padding-bottom: 25px;
  }
  .configrationTitle .progressBar {
    bottom: -25px;
  }
  .configrationTitle .container {
    position: relative;
  }
  .configrationTitle .container .imgArea {
    position: absolute;
    right: 15px;
    bottom: -25px;
    max-height: 130px;
  }
  .pageTitle {
    padding-bottom: 20px;
  }
  .pageTitle .container {
    flex-direction: column;
  }
  .pageTitle .imgArea {
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
    z-index: -1 !important;
    opacity: 0.5 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .pageTitle .title {
    white-space: normal;
  }
  .pageTitle .text {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .pageTitle {
    padding-bottom: 20px;
  }
  .pageTitle .container {
    flex-direction: column;
  }
  .pageTitle .imgArea {
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
    z-index: -1 !important;
    opacity: 0.5 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .pageTitle .title {
    white-space: normal;
  }
  .pageTitle .text {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .pageTitle.type4 .title {
    margin-right: 45px;
  }
}
@media screen and (max-width: 576px) {
  section.mainSlide .mainSlideContent {
    min-height: 100px;
    padding-bottom: 40px;
  }
  section.mainSlide .mainSlideContent .content {
    padding-top: 130px;
  }
  section.mainSlide .mainSlideContent .content .title {
    font-size: 45px;
    text-align: center;
  }
  section.mainSlide .mainSlideContent .content .subTitle {
    margin-bottom: 30px;
    text-align: center;
  }
  section.mainSlide .mainSlideContent .content .text {
    text-align: center;
  }
  section.mainSlide .mainSlideContent .content .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.mainSlide .swiperActions {
    justify-content: center;
  }
  section.mainCorporate .mainTitleArea {
    margin-bottom: 35px;
    height: auto;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
  section.mainCorporate .text {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  section.mainCorporate .mainCorpateCards .item {
    padding: 35px 20px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 50%;
    flex-shrink: 0;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .title {
    font-size: 18px;
    line-height: 26px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .subTitle {
    font-size: 16px;
  }
  section.mainCorporate .mainCorpateCards .oimgArea .img {
    width: 40%;
  }
  section.mainProducts {
    padding: 0 12px;
    margin-bottom: 100px;
  }
  section.mainProducts .titleArea {
    margin-bottom: 40px;
  }
  section.mainProducts .titleArea .title {
    justify-content: center;
  }
  section.mainProducts .titleArea .text {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
  }
  .whyCounter {
    flex-wrap: wrap;
  }
  .whyCounter .container {
    justify-content: center;
    flex-wrap: wrap;
  }
  .whyCounter .item {
    width: 100% !important;
    padding: 0 15px;
    gap: 30px;
    justify-content: center;
  }
  .whyCounter .item .imgArea {
    flex-shrink: 0;
  }
  .whyCounter .item .textArea .counter {
    width: 150px;
  }
  section.whyUs {
    overflow: hidden;
    margin: 0;
    padding-bottom: 100px;
  }
  section.whyUs .titleArea .imgArea {
    max-width: 250px;
  }
  section.getOffer .content {
    flex-direction: column-reverse;
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  section.getOffer .content .titleArea .text {
    line-height: 32px;
    font-size: 22px;
    margin-bottom: 30px;
  }
  section.getOffer .content .titleArea .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.getOffer .content .titleArea .buttons .borderBtn {
    width: 100%;
  }
  section.mainBanner {
    padding-top: 30px;
  }
  section.mainBanner .lineArea {
    top: 120px;
    height: 160px;
  }
  section.mainBanner .imgArea {
    aspect-ratio: 4/3;
  }
  section.mainBanner .imgArea .animationImg1 {
    width: 54px;
    height: 77px;
    right: 10px;
    top: 5px;
  }
  section.mainBanner .imgArea .animationImg2 {
    width: 55px;
    height: auto;
    left: 10px;
    bottom: 80px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.mainSlide .mainSlideContent {
    min-height: 100px;
    padding-bottom: 40px;
  }
  section.mainSlide .mainSlideContent .content {
    padding-top: 130px;
  }
  section.mainSlide .mainSlideContent .content .title {
    font-size: 45px;
    text-align: center;
  }
  section.mainSlide .mainSlideContent .content .subTitle {
    margin-bottom: 30px;
    text-align: center;
  }
  section.mainSlide .mainSlideContent .content .text {
    text-align: center;
  }
  section.mainSlide .mainSlideContent .content .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.mainSlide .swiperActions {
    justify-content: center;
  }
  section.mainCorporate .mainTitleArea {
    margin-bottom: 35px;
    height: auto;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
  section.mainCorporate .text {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  section.mainCorporate .mainCorpateCards .item {
    padding: 35px 20px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 50%;
    flex-shrink: 0;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .title {
    font-size: 18px;
    line-height: 26px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .subTitle {
    font-size: 16px;
  }
  section.mainCorporate .mainCorpateCards .oimgArea .img {
    width: 40%;
  }
  section.mainProducts {
    padding: 0 12px;
    margin-bottom: 100px;
  }
  section.mainProducts .titleArea {
    margin-bottom: 40px;
  }
  section.mainProducts .titleArea .title {
    justify-content: center;
  }
  section.mainProducts .titleArea .text {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
  }
  .whyCounter {
    flex-wrap: wrap;
  }
  .whyCounter .container {
    justify-content: center;
    flex-wrap: wrap;
  }
  .whyCounter .item {
    width: calc(50% - 20px) !important;
    padding: 0 15px;
    gap: 30px;
    justify-content: center;
  }
  .whyCounter .item .imgArea {
    flex-shrink: 0;
  }
  .whyCounter .item .textArea .counter {
    width: 150px;
  }
  section.whyUs {
    overflow: hidden;
    margin: 0;
    padding-bottom: 100px;
  }
  section.whyUs .titleArea .imgArea {
    max-width: 250px;
  }
  section.getOffer .content {
    flex-direction: column-reverse;
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  section.getOffer .content .titleArea .text {
    line-height: 32px;
    font-size: 22px;
    margin-bottom: 30px;
  }
  section.mainBanner {
    padding-top: 40px;
  }
  section.mainBanner .lineArea {
    top: 160px;
    height: 200px;
  }
  section.mainBanner .imgArea {
    aspect-ratio: 16/9;
  }
  section.mainBanner .imgArea .animationImg1 {
    width: 140px;
    height: auto;
    right: 20px;
    top: 5px;
  }
  section.mainBanner .imgArea .animationImg2 {
    width: 70px;
    height: auto;
    left: 20px;
    bottom: 110px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.mainSlide .mainSlideContent {
    min-height: 100px;
    padding-bottom: 40px;
  }
  section.mainSlide .mainSlideContent .content {
    padding-top: 130px;
  }
  section.mainCorporate {
    margin-bottom: 100px;
  }
  section.mainCorporate .mainTitleArea {
    margin-bottom: 35px;
    height: auto;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
  section.mainCorporate .text {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  section.mainCorporate .mainCorpateCards .item {
    padding: 35px 20px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 50%;
    flex-shrink: 0;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .title {
    font-size: 18px;
    line-height: 26px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .subTitle {
    font-size: 16px;
  }
  section.mainCorporate .mainCorpateCards .oimgArea .img {
    width: 40%;
  }
  section.mainProducts {
    padding: 0 12px;
    margin-bottom: 100px;
  }
  section.mainProducts .titleArea {
    margin-bottom: 40px;
  }
  section.mainProducts .titleArea .title {
    justify-content: center;
  }
  section.mainProducts .titleArea .text {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
  }
  section.whyUs .titleArea .imgArea {
    max-width: 250px;
  }
  .whyCounter {
    flex-wrap: wrap;
  }
  .whyCounter .container {
    justify-content: center;
    flex-wrap: wrap;
  }
  .whyCounter .item {
    width: calc(50% - 20px) !important;
    padding: 0 15px;
    gap: 30px;
    justify-content: center;
  }
  .whyCounter .item .imgArea {
    flex-shrink: 0;
  }
  .whyCounter .item .textArea .counter {
    width: 150px;
  }
  section.getOffer .content {
    flex-direction: column-reverse;
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  section.mainBanner {
    padding-top: 50px;
  }
  section.mainBanner .lineArea {
    top: 210px;
    height: 240px;
  }
  section.mainBanner .imgArea .animationImg1 {
    width: 180px;
    height: auto;
    right: 60px;
  }
  section.mainBanner .imgArea .animationImg2 {
    width: 90px;
    height: auto;
    left: 60px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.mainSlide .mainSlideContent {
    min-height: 100px;
    padding-bottom: 40px;
  }
  section.mainSlide .mainSlideContent .content {
    padding-top: 130px;
  }
  section.mainCorporate .mainTitleArea {
    margin-bottom: 35px;
    height: auto;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
  section.mainCorporate .text {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  section.mainCorporate .mainCorpateCards .item {
    padding: 35px 20px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 50%;
    flex-shrink: 0;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .title {
    font-size: 18px;
    line-height: 26px;
  }
  section.mainCorporate .mainCorpateCards .item .titleArea .subTitle {
    font-size: 16px;
  }
  section.mainCorporate .mainCorpateCards .oimgArea .img {
    width: 40%;
  }
  section.mainProducts {
    padding: 0 12px;
    margin-bottom: 100px;
  }
  section.mainProducts .titleArea {
    margin-bottom: 40px;
  }
  section.mainProducts .titleArea .title {
    align-items: center;
  }
  section.whyUs .titleArea .imgArea {
    max-width: 250px;
  }
  .whyCounter {
    flex-wrap: wrap;
  }
  .whyCounter .container {
    justify-content: center;
    flex-wrap: wrap;
  }
  .whyCounter .item {
    width: calc(50% - 20px) !important;
    padding: 0 15px;
    gap: 30px;
    justify-content: center;
  }
  .whyCounter .item .imgArea {
    flex-shrink: 0;
  }
  .whyCounter .item .textArea .counter {
    width: 150px;
  }
  section.mainBanner {
    padding-top: 55px;
  }
  section.mainBanner .lineArea {
    top: 250px;
    height: 270px;
  }
  section.mainBanner .imgArea .animationImg1 {
    width: 210px;
    height: auto;
    right: 100px;
  }
  section.mainBanner .imgArea .animationImg2 {
    width: 105px;
    height: auto;
    left: 120px;
    bottom: 200px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1700px) {
  .footerTop .footerImgArea {
    right: 0;
  }
  section.getOffer .content {
    margin-left: 0;
    padding: 0;
    width: 100%;
  }
  section.getOffer .content .titleArea {
    padding-left: 30px;
  }
  section.mainBanner {
    padding-top: 60px;
  }
  section.mainBanner .lineArea {
    top: 280px;
  }
  section.mainBanner .imgArea .animationImg1 {
    width: 230px;
    right: 150px;
  }
  section.mainBanner .imgArea .animationImg2 {
    width: 115px;
    left: 180px;
    bottom: 240px;
  }
}
@media screen and (max-width: 991px) {
  section.whyUs .blur {
    display: none;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .editorContentArea {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .accordionItem .accordionHeader {
    padding: 22px;
  }
  .accordionItem .accordionHeader .configration .mainContent {
    padding-right: 40px;
  }
  .accordionItem .accordionHeader .configration .mainContent .titleArea .title {
    font-size: 11px;
  }
  .accordionItem .accordionHeader .configration .mainContent .titleArea .feature {
    line-height: 18px;
    font-size: 13px;
  }
  .accordionItem .accordionHeader .configration .mainContent .titleArea .price {
    font-size: 13px;
  }
  .accordionItem .accordionHeader:before {
    right: 15px;
  }
  .accordionItem .accordionHeader:after {
    right: 25px;
  }
  .accordionItem .accordionBody {
    padding: 0 22px 0 22px;
  }
  .accordionItem.active .accordionHeader:after {
    right: 23px;
  }
  .accordionItem.active .accordionBody {
    padding: 10px 22px 35px 22px;
  }
}
@media screen and (min-width: 1px) and (max-width: 576px) {
  .customInput label {
    left: 20px;
    right: 20px;
  }
  .customInput input,
  .customInput textarea {
    padding: 20px;
  }
  .select2-container.defaultStyle-md .select2-selection--single .select2-selection__rendered {
    padding: 28px 20px;
  }
}
@media screen and (min-width: 1px) and (max-width: 576px) {
  .navlist1,
  .navlist2 {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .navlist1 li,
  .navlist2 li {
    flex-shrink: 0;
    max-width: 255px;
    width: 100%;
  }
  .navlist1::-webkit-scrollbar,
  .navlist2::-webkit-scrollbar {
    display: none;
  }
  .navlist1 {
    gap: 25px;
  }
  .navlist1 li {
    flex-shrink: 0;
    white-space: nowrap;
    max-width: auto;
    width: auto;
  }
  .navlist1 li a {
    font-size: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .navlist1,
  .navlist2 {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .navlist1 li,
  .navlist2 li {
    flex-shrink: 0;
    max-width: 255px;
    width: 100%;
  }
  .navlist1::-webkit-scrollbar,
  .navlist2::-webkit-scrollbar {
    display: none;
  }
  .navlist1 {
    gap: 25px;
  }
  .navlist1 li {
    flex-shrink: 0;
    white-space: nowrap;
    max-width: auto;
    width: auto;
  }
  .navlist1 li a {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .navlist1,
  .navlist2 {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .navlist1 li,
  .navlist2 li {
    flex-shrink: 0;
    max-width: 255px;
    width: 100%;
  }
  .navlist1::-webkit-scrollbar,
  .navlist2::-webkit-scrollbar {
    display: none;
  }
  .navlist1 {
    gap: 25px;
  }
  .navlist1 li {
    flex-shrink: 0;
    white-space: nowrap;
    max-width: auto;
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .productCard {
    padding: 75px 30px 30px;
  }
  .productCard .content {
    margin-top: 30px;
  }
  .productCard:after {
    top: 70px;
    height: 150px;
  }
  .productionCard3 {
    gap: 20px;
    padding: 25px 20px;
    flex-direction: column;
    border: none;
    border-bottom: 1px solid #D4D4D4;
    height: auto;
    text-align: center;
  }
  .prideCard {
    padding: 20px;
  }
  .questionsCard {
    padding: 30px 20px;
  }
  .questionsCard .title {
    font-size: 20px;
  }
  .dealersCards {
    padding: 20px;
  }
  .newsCard {
    flex-direction: column;
    padding: 20px;
  }
  .newsCard .dateArea {
    flex-direction: row;
    height: auto;
    align-items: center;
    min-height: unset;
  }
  .productCard2 {
    padding: 30px 30px;
  }
  .productCard2 .productInfo {
    font-size: 12px;
  }
  .productCard2 .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  .productCard3 .cardTitleArea {
    padding: 0 10px 20px;
  }
  .productCard3 .cardTitleArea .title {
    font-size: 16px;
  }
  .productCard3 .content {
    padding: 20px 10px;
  }
  .productCard3 .content .productFeature .item {
    gap: 15px;
  }
  .productCard3 .content .productFeature .item .title {
    max-width: 110px;
  }
  .productCard3 .content .buttons {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .selectTreilerCard {
    padding: 15px 50px 15px 15px;
    gap: 15px;
  }
  .selectTreilerCard.type2 {
    gap: 15px;
    padding: 15px 50px 15px 15px;
  }
  .finishTreilerCard .cardContent {
    padding: 30px;
  }
  .finishTreilerCard .buttons {
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .patentCard {
    padding: 40px 20px;
  }
  .patentCard .title {
    font-size: 22px;
  }
  .futureCards .bottomText {
    font-size: 20px;
    line-height: 28px;
    margin-top: 50px;
    padding-bottom: 30px;
  }
  .futureCards.type2 .pageTitle2:after {
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    z-index: -1;
    opacity: 0.5;
  }
  .productionCard2 {
    padding: 30px 20px;
  }
  .productionCard2.noBorder {
    border-right: 1px solid #D4D4D4;
    border-bottom: 0;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .questionsCard {
    padding: 30px 20px;
  }
  .questionsCard .title {
    font-size: 20px;
  }
  .prideCard {
    padding: 20px;
  }
  .prideCard .title {
    font-size: 20px;
  }
  .dealersCards {
    padding: 20px;
  }
  .newsCard {
    padding: 20px;
  }
  .newsCard .dateArea .date {
    white-space: nowrap;
  }
  .productCard2 {
    padding: 30px 30px;
  }
  .productCard2 .productInfo {
    font-size: 12px;
  }
  .productCard2 .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  .futureCards .bottomText {
    font-size: 24px;
    line-height: 34px;
    margin-top: 70px;
    padding-bottom: 40px;
  }
  .futureCards.type2 .pageTitle2:after {
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    z-index: -1;
    opacity: 0.5;
  }
  .productionCard2 {
    padding: 30px 20px;
  }
  .productionCard2.noBorder {
    border-right: 1px solid #D4D4D4;
    border-bottom: 0;
  }
  .productionCard3 {
    gap: 20px;
    padding: 25px 20px;
    flex-direction: column;
    border: none;
    border-bottom: 1px solid #D4D4D4;
    height: auto;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .questionsCard {
    padding: 30px 20px;
  }
  .questionsCard .title {
    font-size: 20px;
  }
  .prideCard {
    padding: 20px;
  }
  .prideCard .title {
    font-size: 20px;
  }
  .futureCards .bottomText {
    font-size: 28px;
    line-height: 38px;
    margin-top: 80px;
    padding-bottom: 50px;
  }
  .futureCards.type2 .pageTitle2:after {
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    z-index: -1;
    opacity: 0.5;
  }
  .productCard2 {
    padding: 30px 30px;
  }
  .productCard2 .productInfo {
    font-size: 12px;
  }
  .productCard2 .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  .productCard3 .cardTitleArea {
    padding: 0 10px 20px;
  }
  .productCard3 .content {
    padding: 20px 10px;
  }
  .productCard3 .content .productFeature .item {
    gap: 15px;
  }
  .productCard3 .content .productFeature .item .title {
    max-width: 110px;
  }
  .productCard3 .content .buttons {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .finishTreilerCard .cardContent {
    padding: 30px;
  }
  .finishTreilerCard .buttons {
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .productionCard2 {
    padding: 30px 20px;
  }
  .productionCard2 .content .title {
    font-size: 20px;
  }
  .productionCard3 {
    gap: 20px;
    padding: 25px 20px;
    flex-direction: column;
    border-bottom: 1px solid #D4D4D4;
  }
  .dealersCards {
    padding: 30px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .prideCard {
    padding: 20px;
  }
  .prideCard .title {
    font-size: 20px;
  }
  .dealersCards {
    padding: 30px;
  }
  .newsCard {
    padding: 40px 30px;
  }
  .newsCard .dateArea .date {
    white-space: nowrap;
  }
  .productionCard3 {
    gap: 30px;
    padding: 25px 20px;
    flex-direction: column;
    border-bottom: 1px solid #D4D4D4;
  }
  .productCard2 {
    padding: 30px 30px;
  }
  .productCard2 .productInfo {
    font-size: 12px;
  }
  .productCard2 .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  .productCard3 .cardTitleArea {
    padding: 0 10px 20px;
  }
  .productCard3 .cardTitleArea .title {
    font-size: 16px;
  }
  .productCard3 .content {
    padding: 20px 10px;
  }
  .productCard3 .content .productFeature .item {
    gap: 15px;
  }
  .productCard3 .content .productFeature .item .title {
    max-width: 110px;
  }
  .productCard3 .content .buttons {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .finishTreilerCard .cardContent {
    padding: 30px;
  }
  .finishTreilerCard .buttons {
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .futureCards .bottomText {
    font-size: 32px;
    line-height: 44px;
    margin-top: 100px;
    padding-bottom: 55px;
  }
  .productionCard2 {
    padding: 30px 20px;
  }
  .productionCard2 .content .title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .newsCard .dateArea .date {
    white-space: nowrap;
  }
  .dealersCards {
    padding: 30px;
  }
  .productCard2 {
    padding: 30px 30px;
  }
  .productCard2 .productInfo {
    font-size: 12px;
  }
  .productCard2 .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  .productCard3 .cardTitleArea {
    padding: 0 10px 20px;
  }
  .productCard3 .cardTitleArea .title {
    font-size: 16px;
  }
  .productCard3 .content {
    padding: 20px 10px;
  }
  .productCard3 .content .productFeature .item {
    gap: 15px;
  }
  .productCard3 .content .productFeature .item .title {
    max-width: 110px;
  }
  .productCard3 .content .buttons {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .bottomContact {
    padding: 30px 20px !important;
    flex-direction: column-reverse;
  }
  .bottomContact .imgArea {
    max-width: 350px !important;
    margin: 0 auto;
  }
  .bottomContact .imgArea:before, .bottomContact .imgArea:after {
    display: none;
  }
  .bottomContact .content {
    text-align: center;
  }
  .bottomContact .content .text {
    font-size: 20px;
    line-height: 30px;
  }
  .bottomContact .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .productDetailBottom {
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin-bottom: 50px;
    text-align: center;
  }
  .productDetailBottom .imgArea {
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset;
    max-height: 200px;
    overflow: hidden;
    flex-shrink: unset;
  }
  .productDetailBottom .imgArea img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .productDetailBottom .content {
    padding: 30px 20px 40px;
  }
  .productDetailBottom .content .titleArea {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
  }
  .productDetailBottom .content .titleArea .title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    max-width: 100%;
    color: #929292;
  }
  .productDetailBottom .content .titleArea .text {
    font-size: 15px;
    line-height: 26px;
  }
  .productDetailBottom .content .buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .productDetailBottom .content .buttons .defaultBtn {
    flex-shrink: 1;
    min-width: 140px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .bottomContact {
    padding: 30px 20px !important;
    flex-direction: column-reverse;
  }
  .bottomContact .imgArea {
    max-width: 350px !important;
    margin: 0 auto;
  }
  .bottomContact .imgArea:before, .bottomContact .imgArea:after {
    display: none;
  }
  .bottomContact .content {
    text-align: center;
  }
  .bottomContact .content .text {
    font-size: 20px;
    line-height: 30px;
  }
  .bottomContact .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .productDetailBottom {
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin-bottom: 60px;
    text-align: center;
  }
  .productDetailBottom .imgArea {
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset;
    max-height: 260px;
    overflow: hidden;
    flex-shrink: unset;
  }
  .productDetailBottom .imgArea img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .productDetailBottom .content {
    padding: 35px 30px 45px;
  }
  .productDetailBottom .content .titleArea {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  .productDetailBottom .content .titleArea .title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
    max-width: 100%;
    color: #929292;
  }
  .productDetailBottom .content .titleArea .text {
    font-size: 16px;
    line-height: 28px;
  }
  .productDetailBottom .content .buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .productDetailBottom .content .buttons .defaultBtn {
    flex-shrink: 1;
    min-width: 150px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .bottomContact {
    padding: 30px 20px !important;
    flex-direction: column-reverse;
  }
  .bottomContact .imgArea {
    max-width: 350px !important;
    margin: 0 auto;
  }
  .bottomContact .imgArea:before, .bottomContact .imgArea:after {
    display: none;
  }
  .bottomContact .content {
    text-align: center;
  }
  .bottomContact .content .text {
    font-size: 20px;
    line-height: 30px;
  }
  .bottomContact .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .productDetailBottom {
    flex-direction: row;
    padding: 40px 40px 40px 50px;
    gap: 30px;
    margin-bottom: 70px;
    align-items: center;
  }
  .productDetailBottom .imgArea {
    max-width: 300px;
    flex-shrink: 0;
    aspect-ratio: 450/165;
    max-height: unset;
    overflow: visible;
  }
  .productDetailBottom .imgArea img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .productDetailBottom .content {
    padding: 0;
    min-width: 0;
  }
  .productDetailBottom .content .titleArea {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
  .productDetailBottom .content .titleArea .title {
    font-size: 20px;
    line-height: 28px;
    max-width: 100%;
    margin-bottom: 0;
    color: #929292;
  }
  .productDetailBottom .content .titleArea .text {
    font-size: 17px;
    line-height: 28px;
  }
  .productDetailBottom .content .buttons {
    flex-wrap: wrap;
    gap: 10px;
  }
  .productDetailBottom .content .buttons .defaultBtn {
    flex-shrink: 1;
    min-width: 130px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .bottomContact {
    padding: 30px 0 30px 20px !important;
  }
  .bottomContact .imgArea {
    max-width: 350px !important;
    margin-left: auto;
  }
  .bottomContact .imgArea:before, .bottomContact .imgArea:after {
    display: none;
  }
  .bottomContact .content .text {
    font-size: 20px;
    line-height: 30px;
  }
  .bottomContact .buttons {
    flex-wrap: wrap;
  }
  .productDetailBottom {
    padding: 50px 80px;
    gap: 30px;
  }
  .productDetailBottom .imgArea {
    max-width: 370px;
  }
  .productDetailBottom .content {
    min-width: 0;
  }
  .productDetailBottom .content .titleArea {
    gap: 25px;
    margin-bottom: 40px;
  }
  .productDetailBottom .content .titleArea .title {
    font-size: 21px;
    max-width: 260px;
  }
  .productDetailBottom .content .titleArea .text {
    font-size: 20px;
    line-height: 34px;
  }
  .productDetailBottom .content .buttons {
    flex-wrap: wrap;
    gap: 12px;
  }
  .productDetailBottom .content .buttons .defaultBtn {
    flex-shrink: 1;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .bottomContact {
    padding-right: 0;
  }
  .bottomContact .imgArea {
    max-width: 550px !important;
    margin: 0 auto;
  }
  .bottomContact .content .text {
    font-size: 20px;
    line-height: 30px;
  }
  .bottomContact .buttons {
    flex-wrap: wrap;
  }
  .productDetailBottom {
    padding: 55px 100px;
  }
  .productDetailBottom .content {
    min-width: 0;
  }
  .productDetailBottom .content .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  .productDetailBottom .content .buttons .defaultBtn {
    flex-shrink: 1;
  }
}
@media screen and (min-width: 1701px) {
  .productDetailBottom .content .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media screen and (min-width: 1px) and (max-width: 576px) {
  .formBtn {
    margin: 0 auto;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .defaultBtn {
    padding: 13px 15px;
  }
}
@media screen and (max-width: 576px) {
  section.corporate .corporateBanner {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 70px;
  }
  section.corporate .corporateBanner .titleArea {
    margin-bottom: 100px;
    flex-direction: column;
    align-items: center;
  }
  section.corporate .corporateBanner .titleArea .title {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
  }
  section.corporate .corporateBanner .bottomText {
    pad: 0 15px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  section.corporate .corporateBanner .imgArea {
    aspect-ratio: unset;
    min-height: auto;
    height: 100%;
    width: 100%;
  }
  section.corporate .corporateBanner .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.corporate .history > .subTitle {
    text-align: center;
  }
  section.corporate .history .titleArea {
    flex-direction: column;
    text-align: center;
  }
  section.corporate .history .titleArea .title {
    font-size: 30px;
    line-height: 40px;
  }
  section.corporate .history .titleArea .text {
    margin: 30px 0 0;
    font-size: 20px;
    line-height: 30px;
  }
  section.corporate .history .historyTable {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  section.corporate .history .historyTable::-webkit-scrollbar {
    display: none;
  }
  section.corporate .history .historyTable {
    padding: 40px 30px;
  }
  section.corporate .history .historyTable .item {
    display: flex;
    flex-direction: column;
    width: 130px;
    flex-shrink: 0;
  }
  section.corporate .history .historyTable:before {
    display: none;
  }
  section.corporate .history .visionMission .item {
    margin-bottom: 25px;
  }
  section.corporate .history .visionMission .item .text {
    font-size: 22px;
    line-height: 32px;
  }
  section.corporate .history .counterHistory {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
  section.corporate .history .counterHistory .imgArea:before {
    display: none;
  }
  section.corporate .history .counterHistory .content .text {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.corporate .corporateBanner {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 70px;
  }
  section.corporate .corporateBanner .titleArea {
    margin-bottom: 100px;
    flex-direction: column;
    align-items: center;
  }
  section.corporate .corporateBanner .titleArea .title {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
  }
  section.corporate .corporateBanner .bottomText {
    pad: 0 15px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  section.corporate .corporateBanner .imgArea {
    aspect-ratio: unset;
    min-height: auto;
    height: 100%;
    width: 100%;
  }
  section.corporate .corporateBanner .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.corporate .history > .subTitle {
    text-align: center;
  }
  section.corporate .history .titleArea {
    flex-direction: column;
    text-align: center;
  }
  section.corporate .history .titleArea .title {
    font-size: 30px;
    line-height: 40px;
  }
  section.corporate .history .titleArea .text {
    margin: 30px 0 0;
    font-size: 20px;
    line-height: 30px;
  }
  section.corporate .history .historyTable {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  section.corporate .history .historyTable::-webkit-scrollbar {
    display: none;
  }
  section.corporate .history .historyTable {
    padding: 40px 30px;
  }
  section.corporate .history .historyTable .item {
    display: flex;
    flex-direction: column;
    width: 130px;
    flex-shrink: 0;
  }
  section.corporate .history .historyTable:before {
    display: none;
  }
  section.corporate .history .visionMission .item {
    margin-bottom: 25px;
  }
  section.corporate .history .visionMission .item .text {
    font-size: 22px;
    line-height: 32px;
  }
  section.corporate .history .counterHistory {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
  section.corporate .history .counterHistory .imgArea:before {
    display: none;
  }
  section.corporate .history .counterHistory .content .text {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.corporate .corporateBanner {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 70px;
  }
  section.corporate .corporateBanner .titleArea {
    margin-bottom: 100px;
    flex-direction: column;
    align-items: center;
  }
  section.corporate .corporateBanner .titleArea .title {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
  }
  section.corporate .corporateBanner .bottomText {
    pad: 0 15px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  section.corporate .corporateBanner .imgArea {
    aspect-ratio: unset;
    min-height: auto;
    height: 100%;
    width: 100%;
  }
  section.corporate .corporateBanner .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.corporate .history > .subTitle {
    text-align: center;
  }
  section.corporate .history .titleArea {
    flex-direction: column;
    text-align: center;
  }
  section.corporate .history .titleArea .title {
    font-size: 30px;
    line-height: 40px;
  }
  section.corporate .history .titleArea .text {
    margin: 30px 0 0;
    font-size: 20px;
    line-height: 30px;
  }
  section.corporate .history .historyTable {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  section.corporate .history .historyTable::-webkit-scrollbar {
    display: none;
  }
  section.corporate .history .historyTable {
    padding: 40px 30px;
  }
  section.corporate .history .historyTable .item {
    display: flex;
    flex-direction: column;
    width: 130px;
    flex-shrink: 0;
  }
  section.corporate .history .historyTable:before {
    display: none;
  }
  section.corporate .history .visionMission .item {
    margin-bottom: 25px;
  }
  section.corporate .history .visionMission .item .text {
    font-size: 22px;
    line-height: 32px;
  }
  section.corporate .history .counterHistory {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
  section.corporate .history .counterHistory .imgArea:before {
    display: none;
  }
  section.corporate .history .counterHistory .content .text {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1400px) {
  section.corporate .corporateBanner {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 70px;
  }
  section.corporate .corporateBanner .titleArea {
    margin-bottom: 100px;
    flex-direction: column;
    align-items: center;
  }
  section.corporate .corporateBanner .titleArea .title {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
  }
  section.corporate .corporateBanner .bottomText {
    pad: 0 15px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  section.corporate .corporateBanner .imgArea {
    aspect-ratio: unset;
    min-height: auto;
    height: 100%;
    width: 100%;
  }
  section.corporate .corporateBanner .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* ── Mobile (<=sm / <=767px) ─────────────────────────────── */
@media screen and (max-width: 576px) {
  section.contact .contactButtons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
  }
  section.contact .contactContent {
    margin-bottom: 40px;
    align-items: flex-start;
  }
  section.contact .contactContent .title {
    font-size: 13px;
  }
  section.contact .contactContent .text {
    font-size: 13px;
    margin-bottom: 30px;
  }
  section.contact .contactForm {
    margin-bottom: 60px;
  }
  section.contact .contactForm .title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
  }
}
/* ── Tablet Portrait (>sm <=md / 768px–991px) ─────────────── */
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.contact .contactButtons {
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
  }
  section.contact .contactContent {
    margin-bottom: 50px;
  }
  section.contact .contactContent .content .productionCard3 {
    padding: 30px 15px;
    gap: 30px;
  }
  section.contact .contactForm {
    margin-bottom: 80px;
  }
  section.contact .contactForm .title {
    font-size: 18px;
    margin-bottom: 45px;
  }
}
/* ── Laptop / Tablet Landscape (>md <=lg / 992px–1199px) ───── */
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.contact .contactButtons {
    gap: 12px;
    margin: 50px 0;
  }
  section.contact .contactContent {
    margin-bottom: 55px;
  }
  section.contact .contactContent .content .row > div:nth-child(2) .productionCard3 {
    border-right: 1px solid #D4D4D4;
  }
  section.contact .contactContent .content .row > div:nth-child(3) .productionCard3 {
    border-top: none;
    margin-right: -1px;
  }
  section.contact .contactForm {
    margin-bottom: 100px;
  }
  section.contact .contactForm .title {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
/* ── Large Laptop (>lg <=xl / 1200px–1399px) ────────────────── */
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.contact .contactForm .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  section.dealer .dealersPride {
    margin-top: 60px;
  }
  section.dealer .dealersPride .titleArea {
    flex-direction: column;
  }
  section.dealer .dealersPride .titleArea .title {
    white-space: normal;
    margin: 0 0 20px;
    font-size: 30px;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea .text {
    margin: 0;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea:after {
    display: none;
  }
  section.dealer .signature {
    margin-bottom: 60px;
  }
  section.dealer .signature .text {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 30px;
    transform: none;
  }
  section.dealer .dealerQuestion > .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 25px;
  }
  .signatureContent {
    flex-direction: column;
    gap: 30px;
  }
  .signatureContent .item:after {
    display: none;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.dealer .dealersPride {
    margin-top: 60px;
  }
  section.dealer .dealersPride .titleArea {
    flex-direction: column;
  }
  section.dealer .dealersPride .titleArea .title {
    white-space: normal;
    margin: 0 0 20px;
    font-size: 30px;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea .text {
    margin: 0;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea:after {
    display: none;
  }
  section.dealer .signature {
    margin-bottom: 60px;
  }
  section.dealer .signature .text {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 30px;
    transform: none;
  }
  section.dealer .dealerQuestion > .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 25px;
  }
  .signatureContent {
    flex-wrap: wrap;
    gap: 30px 60px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.dealer .dealersPride {
    margin-top: 60px;
  }
  section.dealer .dealersPride .titleArea {
    flex-direction: column;
  }
  section.dealer .dealersPride .titleArea .title {
    white-space: normal;
    margin: 0 0 20px;
    font-size: 30px;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea .text {
    margin: 0;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea:after {
    display: none;
  }
  section.dealer .dealerQuestion > .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 25px;
  }
  .signatureContent {
    flex-wrap: wrap;
    gap: 30px 60px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.dealer .dealersPride {
    margin-top: 60px;
  }
  section.dealer .dealersPride .titleArea {
    flex-direction: column;
  }
  section.dealer .dealersPride .titleArea .title {
    white-space: normal;
    margin: 0 0 20px;
    font-size: 30px;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea .text {
    margin: 0;
    text-align: center;
  }
  section.dealer .dealersPride .titleArea:after {
    display: none;
  }
  section.dealer .dealerQuestion > .title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 25px;
  }
  .signatureContent {
    flex-wrap: wrap;
    gap: 30px 60px;
  }
}
@media screen and (max-width: 576px) {
  section.news .newsDetail .content {
    margin-top: 50px;
  }
  section.news .newsDetail .content .title {
    font-size: 29px;
    line-height: 39px;
    text-align: center;
    margin-bottom: 20px;
  }
  section.news .newsDetail .content .text {
    padding: 0;
    font-size: 17px;
    text-align: center;
    line-height: 27px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.news .newsDetail .content {
    margin-top: 50px;
  }
  section.news .newsDetail .content .title {
    text-align: center;
    margin-bottom: 20px;
  }
  section.news .newsDetail .content .text {
    padding: 0;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.news .newsDetail .content {
    margin-top: 50px;
  }
  section.news .newsDetail .content .title {
    margin-bottom: 50px;
  }
  section.news .newsDetail .content .text {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .galleryItem {
    padding: 20px !important;
  }
  .galleryItem .title {
    text-align: center;
  }
  .galleryItem .text {
    text-align: center;
    line-height: 35px;
  }
  .galleryItem .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.photoGallery .content .galleryArea .videoImgArea .videoContent {
    bottom: 0;
    left: 0;
    padding: 30px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .galleryItem {
    padding: 20px !important;
  }
  .galleryItem .title {
    text-align: center;
  }
  .galleryItem .text {
    text-align: center;
    line-height: 35px;
  }
  .galleryItem .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.photoGallery .content .galleryArea .videoImgArea .videoContent {
    bottom: 0;
    left: 0;
    padding: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .galleryItem {
    padding: 20px !important;
  }
  .galleryItem .title {
    text-align: center;
  }
  .galleryItem .text {
    text-align: center;
    line-height: 35px;
  }
  .galleryItem .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.photoGallery .content .galleryArea .videoImgArea .videoContent {
    bottom: 0;
    left: 0;
    padding: 30px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .galleryItem .title {
    text-align: center;
  }
  .galleryItem .text {
    text-align: center;
    line-height: 35px;
  }
  .galleryItem .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.photoGallery .content .galleryArea .videoImgArea .videoContent {
    bottom: 0;
    left: 0;
    padding: 30px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .galleryItem {
    padding: 20px;
  }
  .galleryItem .title {
    text-align: center;
  }
  .galleryItem .text {
    text-align: center;
    line-height: 35px;
  }
  .galleryItem .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  section.productConfigration .content .selectProduct {
    display: none;
  }
  .productDetailTabItem .item {
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
  }
  .productDetailTabItem .item .text {
    line-height: 22px;
  }
  .productDetailTabItem .productActions {
    margin-top: 30px;
  }
  .productDetailTabItem .productActions .buttons {
    flex-direction: column;
    gap: 10px;
  }
  .productDetailTabItem .productActions .buttons .configBtn {
    max-width: 100%;
    width: 100%;
    height: 55px;
  }
  .productDetailTabItem .productActions .buyBtn {
    margin-top: 15px;
    flex-direction: column;
    height: auto;
    padding: 15px;
    gap: 15px;
    text-align: center;
  }
  .productDetailTabItem .productActions .buyBtn .text span {
    display: block;
    margin-top: 5px;
  }
  section.productConfigration2 .content .productConfigrationArea .productConfigrationDetails .accordionArea {
    padding-right: 0;
  }
  section.productConfigration2 .content .configrationContactForm {
    padding: 40px 20px 60px;
    min-height: unset;
    margin-bottom: 50px;
  }
  section.productConfigration2 .content .configrationContactForm::after {
    display: none;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea .title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea .text {
    font-size: 15px;
    line-height: 24px;
  }
  section.productConfigration2 .content .configrationContactForm form .colZero {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0.75rem;
  }
  section.productConfigration2 .content .configrationContactForm .buttons {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 15px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons .customcheckbox1 {
    justify-content: center;
  }
  section.productConfigration2 .content .configrationContactForm .buttons .formBtn {
    width: 100%;
  }
  section.productConfigration2 .content .configrationContactForm .desingCode {
    padding: 12px;
    text-align: center;
  }
  section.productConfigration2 .content .configrationContactForm .desingCode .codeArea {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.productConfigration .content .selectProduct {
    display: none;
  }
  .productDetailTabItem .item {
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
  }
  .productDetailTabItem .item .text {
    line-height: 22px;
  }
  .productDetailTabItem .productActions {
    margin-top: 35px;
  }
  .productDetailTabItem .productActions .buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .productDetailTabItem .productActions .buttons .configBtn {
    max-width: 100%;
  }
  .productDetailTabItem .productActions .buyBtn {
    margin-top: 20px;
    justify-content: center;
  }
  section.productConfigration2 .content .configrationContactForm {
    padding: 50px 30px 70px;
    min-height: unset;
    margin-bottom: 60px;
  }
  section.productConfigration2 .content .configrationContactForm::after {
    display: none;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea {
    max-width: 100%;
    margin-bottom: 35px;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea .title {
    font-size: 26px;
    line-height: 36px;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea .text {
    font-size: 16px;
    line-height: 26px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 15px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons .formBtn {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.productConfigration .content .mobileDropdowns {
    display: none;
  }
  .productDetailTabItem .productActions .buyBtn {
    justify-content: center;
    padding: 15px;
  }
  section.productConfigration2 .content .configrationContactForm {
    padding: 70px 60px;
    min-height: 600px;
  }
  section.productConfigration2 .content .configrationContactForm::after {
    display: none;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea .title {
    font-size: 26px;
    line-height: 36px;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea .text {
    font-size: 17px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons {
    flex-direction: column;
    padding: 0;
    gap: 12px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons .formBtn {
    width: 100%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.productConfigration .content .mobileDropdowns {
    display: none;
  }
  section.productConfigration2 .content .configrationContactForm {
    padding: 85px 80px;
  }
  section.productConfigration2 .content .configrationContactForm::after {
    max-width: 300px;
  }
  section.productConfigration2 .content .configrationContactForm .titleArea .title {
    font-size: 28px;
    line-height: 38px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons {
    flex-direction: column;
    padding: 0;
    gap: 12px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons .formBtn {
    align-self: flex-start;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  section.productConfigration .content .mobileDropdowns {
    display: none;
  }
  section.productConfigration2 .content .configrationContactForm {
    padding: 95px 95px;
  }
  section.productConfigration2 .content .configrationContactForm .buttons {
    flex-direction: column;
    padding: 0;
    gap: 12px;
  }
}
@media screen and (min-width: 1401px) {
  section.productConfigration .content .mobileDropdowns {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  section.production .productionBanner .content .title {
    font-size: 28px;
    line-height: 38px;
  }
  section.production .productionBanner .content .text {
    font-size: 18px;
    line-height: 28px;
  }
  section.production .productionBanner.type2 .content .imgArea .oBig {
    left: 61px;
    top: 3px;
    width: 65px;
  }
  section.production .productionBanner.type2 .content .imgArea .oReverse {
    right: 80px;
    bottom: 10px;
    width: 75px;
  }
  section.production .qualityPerfect {
    padding-bottom: 40px;
  }
  section.production .qualityPerfect .title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  section.production .qualityPerfect .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.production .productionBanner .content .title {
    font-size: 28px;
    line-height: 38px;
  }
  section.production .productionBanner .content .text {
    font-size: 18px;
    line-height: 28px;
  }
  section.production .productionBanner.type2 .content .imgArea .oBig {
    left: 61px;
    top: 3px;
    width: 65px;
  }
  section.production .productionBanner.type2 .content .imgArea .oReverse {
    right: 80px;
    bottom: 10px;
    width: 75px;
  }
  section.production .qualityPerfect {
    padding-bottom: 40px;
  }
  section.production .qualityPerfect .title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  section.production .qualityPerfect .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.production .productionBanner .content .title {
    font-size: 28px;
    line-height: 38px;
  }
  section.production .productionBanner .content .text {
    font-size: 18px;
    line-height: 28px;
  }
  section.production .productionBanner.type2 .content .imgArea .oBig {
    left: 61px;
    top: 3px;
    width: 65px;
  }
  section.production .productionBanner.type2 .content .imgArea .oReverse {
    right: 80px;
    bottom: 10px;
    width: 75px;
  }
  section.production .qualityPerfect {
    padding-bottom: 40px;
  }
  section.production .qualityPerfect .title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  section.production .qualityPerfect .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (max-width: 576px) {
  section.production .productionBanner {
    margin-top: 30px;
  }
  section.production .productionBanner .content {
    min-height: 100px;
  }
  section.production .productionBanner .content .title {
    margin-bottom: 30px;
  }
  section.production .productionGallery .productionSlide {
    padding: 0 12px;
  }
  section.production .productionArt .topBar {
    padding: 35px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  section.production .productionArt .topBar .title {
    font-size: 32px;
    line-height: 42px;
    max-width: 100%;
    text-align: center;
  }
  section.production .productionArt .topBar .imgArea {
    width: 100%;
  }
  section.production .productionArt .content {
    padding: 30px 20px;
  }
  section.production .productionArt .content .text {
    font-size: 18px;
    line-height: 28px;
  }
  section.production .productionCards {
    margin-bottom: 50px;
  }
  section.production .productionCards .productionCard {
    padding: 25px 20px;
    gap: 20px;
  }
  section.production .productionCards .productionCard .content .title {
    font-size: 18px;
  }
  section.production .productionCards .productionCard .content .text {
    font-size: 14px;
  }
  section.production .futureCards .pageTitle2 {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
  section.production .futureCards .pageTitle2 .title {
    font-size: 28px;
    line-height: 38px;
  }
  section.production .futureCards .pageTitle2 .imgArea {
    padding-bottom: 0;
  }
  section.production .futureCards .pageTitle2 .imgArea::after {
    display: none;
  }
  section.production .futureCards .pageTitle2 .imgArea img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
  section.production .futureCards .pageTitle2 .text {
    margin-left: 0;
    font-size: 15px;
    line-height: 25px;
  }
  section.productCategory .titleArea {
    text-align: center;
    margin: 30px 0;
  }
  section.productCategory .titleArea .text {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.production .productionArt .topBar {
    padding: 50px 35px 55px;
    flex-direction: column;
    gap: 30px;
  }
  section.production .productionArt .topBar .title {
    font-size: 40px;
    line-height: 52px;
    max-width: 100%;
  }
  section.production .productionArt .topBar .imgArea {
    width: 100%;
  }
  section.production .productionArt .content {
    padding: 40px 35px;
  }
  section.production .productionArt .content .text {
    font-size: 22px;
    line-height: 34px;
  }
  section.production .productionCards .productionCard {
    padding: 30px 25px;
    gap: 25px;
  }
  section.production .futureCards .pageTitle2 {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  section.production .futureCards .pageTitle2 .title {
    font-size: 28px;
    line-height: 38px;
  }
  section.production .futureCards .pageTitle2 .imgArea {
    padding-bottom: 0;
  }
  section.production .futureCards .pageTitle2 .imgArea::after {
    display: none;
  }
  section.production .futureCards .pageTitle2 .imgArea img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
  section.production .futureCards .pageTitle2 .text {
    margin-left: 0;
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.production .productionArt .topBar {
    padding: 60px 60px 70px;
  }
  section.production .productionArt .topBar .title {
    font-size: 46px;
    line-height: 58px;
  }
  section.production .productionArt .content {
    padding: 50px 60px;
  }
  section.production .productionArt .content .text {
    font-size: 26px;
    line-height: 38px;
  }
  section.production .productionCards .productionCard {
    padding: 35px 30px;
    gap: 30px;
  }
  section.production .futureCards .pageTitle2 {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  section.production .futureCards .pageTitle2 .title {
    font-size: 28px;
    line-height: 38px;
  }
  section.production .futureCards .pageTitle2 .imgArea {
    padding-bottom: 0;
  }
  section.production .futureCards .pageTitle2 .imgArea::after {
    display: none;
  }
  section.production .futureCards .pageTitle2 .imgArea img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
  section.production .futureCards .pageTitle2 .text {
    margin-left: 0;
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.production .productionArt .topBar {
    padding: 70px 80px 80px;
  }
  section.production .productionArt .topBar .title {
    font-size: 52px;
    line-height: 66px;
  }
  section.production .productionArt .content {
    padding: 55px 80px;
  }
  section.production .productionArt .content .text {
    font-size: 30px;
    line-height: 44px;
  }
  section.production .futureCards .pageTitle2 {
    gap: 30px;
  }
  section.production .futureCards .pageTitle2 .imgArea::after {
    display: none;
  }
  section.production .futureCards .pageTitle2 .text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  section.production .productionArt .topBar {
    padding: 80px 100px 90px;
  }
  section.production .productionArt .content {
    padding: 55px 100px;
  }
  section.production .futureCards .pageTitle2 {
    gap: 30px;
  }
  section.production .futureCards .pageTitle2 .imgArea::after {
    display: none;
  }
  section.production .futureCards .pageTitle2 .text {
    font-size: 20px;
  }
}
/* ── Mobile (<=sm / <=767px) ──────────────────────────────── */
@media screen and (max-width: 576px) {
  section.productDetail .titleArea {
    margin-top: 30px;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
  }
  section.productDetail .titleArea .subTitle {
    font-size: 15px;
    margin-bottom: 15px;
  }
  section.productDetail .titleArea .title {
    font-size: 20px;
    line-height: 30px;
  }
  section.productDetail .titleArea.type2 {
    margin-bottom: 35px;
  }
  section.productDetail .productDetailSlide {
    margin-bottom: 40px;
  }
  section.productDetail .productDetailSlide .swiper-slide {
    aspect-ratio: 4/3;
    max-width: 100%;
  }
  section.productDetail .bestFeatures {
    margin-bottom: 40px;
  }
  section.productDetail .bestFeatures .title {
    font-size: 15px;
    margin-bottom: 20px;
  }
  section.productDetail .bestFeatures .content {
    gap: 10px;
  }
  section.productDetail .bestFeatures .content .featuresItem {
    padding: 18px 15px;
    width: calc(50% - 5px);
  }
  section.productDetail .bestFeatures .content .featuresItem .name {
    font-size: 13px;
  }
  section.productDetail .bestFeatures .content .featuresItem .text {
    font-size: 15px;
  }
  section.productDetail .bestFeatures .content .featuresItem.certificate {
    min-width: unset;
    width: 100%;
  }
  section.productDetail .productDetailConfigration {
    margin-bottom: 40px;
    text-align: center;
  }
  section.productDetail .productDetailConfigration .title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 35px;
  }
  section.productDetail .productDetailConfigration .content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  section.productDetail .productDetailConfigration .content .imgArea {
    margin-top: 20px;
    max-width: 220px;
  }
  section.productDetail .productDetailTabs {
    margin-bottom: 40px;
  }
  section.productDetail .productDetailCertificate {
    margin-bottom: 50px;
    text-align: center;
  }
  section.productDetail .productDetailCertificate .title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 35px;
  }
  section.productDetail .useArea {
    margin-bottom: 60px;
  }
  section.productDetail .definition {
    margin-bottom: 50px;
  }
  section.productDetail .definition .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .productDetailTabItem .item {
    padding: 20px 0;
    flex-direction: column;
    gap: 8px;
  }
  .productDetailTabItem .item .title {
    font-size: 13px;
  }
  .productDetailTabItem .item .text {
    font-size: 14px;
  }
}
/* ── Tablet Portrait (>sm <=md / 768px–991px) ─────────────── */
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.productDetail .titleArea {
    margin-top: 40px;
    margin-bottom: 55px;
    text-align: center;
    align-items: center;
  }
  section.productDetail .titleArea .subTitle {
    font-size: 17px;
  }
  section.productDetail .titleArea .title {
    font-size: 26px;
    line-height: 38px;
  }
  section.productDetail .titleArea.type2 {
    margin-bottom: 45px;
  }
  section.productDetail .productDetailSlide {
    margin-bottom: 60px;
  }
  section.productDetail .productDetailSlide .swiper-slide {
    aspect-ratio: 4/3;
    max-width: 100%;
  }
  section.productDetail .bestFeatures {
    margin-bottom: 55px;
  }
  section.productDetail .bestFeatures .content .featuresItem {
    padding: 22px 18px;
  }
  section.productDetail .productDetailConfigration {
    margin-bottom: 50px;
  }
  section.productDetail .productDetailConfigration .title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 55px;
  }
  section.productDetail .productDetailCertificate {
    margin-bottom: 60px;
    text-align: center;
  }
  section.productDetail .productDetailCertificate .title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 45px;
  }
  section.productDetail .useArea {
    margin-bottom: 80px;
  }
  section.productDetail .definition {
    margin-bottom: 70px;
  }
}
/* ── Laptop / Tablet Landscape (>md <=lg / 992px–1199px) ───── */
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.productDetail .titleArea {
    margin-bottom: 60px;
  }
  section.productDetail .titleArea .title {
    font-size: 28px;
    line-height: 40px;
  }
  section.productDetail .productDetailSlide {
    margin-bottom: 75px;
  }
  section.productDetail .productDetailConfigration .title {
    font-size: 28px;
    line-height: 40px;
  }
  section.productDetail .productDetailCertificate .title {
    font-size: 28px;
    line-height: 40px;
  }
  section.productDetail .useArea {
    margin-bottom: 90px;
  }
}
/* ── Large Laptop (>lg <=xl / 1200px–1399px) ────────────────── */
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.productDetail .titleArea .title {
    font-size: 30px;
    line-height: 42px;
  }
  section.productDetail .productDetailConfigration .title {
    font-size: 30px;
    line-height: 42px;
  }
  section.productDetail .productDetailCertificate .title {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (max-width: 576px) {
  section.productConfigration2.type2 {
    padding-bottom: 60px;
  }
  section.productConfigration2.type2 .content .pc3TopTabs {
    padding: 20px 0;
  }
  section.productConfigration2.type2 .content .pc3TopTabs .container {
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
  }
  section.productConfigration2.type2 .content .pc3TopTabs .container::-webkit-scrollbar {
    display: none;
  }
  section.productConfigration2.type2 .content .pc3TopTabs a {
    font-size: 15px;
    white-space: nowrap;
  }
  section.productConfigration2.type2 .content .pc3TypeTabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
  }
  section.productConfigration2.type2 .content .pc3TypeTabs::-webkit-scrollbar {
    display: none;
  }
  section.productConfigration2.type2 .content .pc3TypeTabs .pc3TypeTab {
    font-size: 14px;
    padding: 15px 20px;
  }
  section.productConfigration2.type2 .content .pc3FilterBar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
  }
  section.productConfigration2.type2 .content .pc3FilterBar .pc3FilterGroup {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  section.productConfigration2.type2 .content .pc3FilterBar .pc3FilterGroup .select2-container {
    width: 100% !important;
  }
  section.productConfigration2.type2 .content .pc3ProductCard {
    padding: 25px 20px;
  }
  section.productConfigration2.type2 .content .pc3ProductCard .imgArea {
    margin: 40px 0;
  }
  section.productConfigration2.type2 .content .pc3ProductCard .bottomArea {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;
  }
  section.productConfigration2.type2 .content .pc3ProductCard .bottomArea .configrationBtn {
    width: 100%;
    justify-content: center;
  }
  section.productConfigration2.type2 .content .leftArea {
    padding-top: 30px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup {
    margin-bottom: 30px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgTitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent {
    flex-direction: column;
    gap: 15px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgImage {
    width: 100%;
    padding: 30px 15px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgList {
    width: 100%;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgList .customcheckbox3 {
    align-items: flex-start;
    gap: 12px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgList .customcheckbox3 .checkmark {
    margin-top: 2px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgList .customcheckbox3 .checkboxText {
    align-items: flex-start;
    gap: 15px;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgList .customcheckbox3 .checkboxText .text {
    font-size: 14px;
    line-height: 1.4;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgList .customcheckbox3 .checkboxText .price {
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  section.productConfigration2.type2 .content .pc3SummaryCard {
    position: static;
    padding-top: 40px;
    margin-top: 40px;
  }
  section.productConfigration2.type2 .content .pc3SummaryCard .pc3ScTitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  section.productConfigration2.type2 .content .pc3SummaryCard .pc3ScImage {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .pc3OverviewPage {
    padding: 30px 0 50px;
  }
  .pc3OverviewPage .pc3OpHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .pc3OverviewPage .pc3OpHeader .pc3OpTitle {
    font-size: 22px;
  }
  .pc3OverviewPage .pc3OpHeader .pc3OpAction {
    width: 100%;
  }
  .pc3OverviewPage .pc3OpHeader .pc3OpAction .btnQuote {
    padding: 16px 30px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
  .pc3OverviewPage .pc3OpImage {
    margin-bottom: 50px;
  }
  .pc3OverviewPage .pc3OpImage .zoom-lens {
    display: none !important;
    /* Mobilde dokunmatik yüzeyde lens efekti kullanışsızdır */
  }
  .pc3OverviewPage .pc3OpGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pc3OverviewPage .pc3OpGrid .pc3OpCol .pc3OpColHeader {
    padding: 20px 25px;
    font-size: 16px;
  }
  .pc3OverviewPage .pc3OpGrid .pc3OpCol .pc3OpColBody {
    padding: 20px 25px 30px;
  }
  .pc3OverviewPage .pc3OpGrid .pc3OpCol .pc3OpColBody .pc3OpItem .infoArea {
    padding-right: 20px;
  }
  .pc3OverviewPage .pc3OpGrid .pc3OpCol .pc3OpColBody .pc3OpItem .infoArea .title {
    font-size: 15px;
  }
  .pc3OverviewPage .pc3OpGrid .pc3OpCol .pc3OpColBody .pc3OpItem .infoArea .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.productConfigration2.type2 .content .pc3TopTabs .container {
    justify-content: center;
  }
  section.productConfigration2.type2 .content .pc3TypeTabs {
    justify-content: center;
  }
  section.productConfigration2.type2 .content .pc3FilterBar {
    justify-content: center;
  }
  section.productConfigration2.type2 .content .pc3FilterBar .pc3FilterGroup {
    justify-content: center;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent {
    flex-direction: column;
  }
  section.productConfigration2.type2 .content .pc3OptionGroup .pc3OgContent .pc3OgImage {
    width: 100%;
  }
  section.productConfigration2.type2 .content .pc3SummaryCard {
    position: static;
    margin-top: 50px;
  }
  .pc3OverviewPage .pc3OpHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .pc3OverviewPage .pc3OpGrid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.productConfigration2.type2 .content .pc3SummaryCard {
    position: static;
    margin-top: 60px;
  }
  .pc3OverviewPage .pc3OpGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1399px) {
  section.productConfigration2.type2 .content .pc3ProductCard {
    padding: 30px 20px 40px 20px;
  }
  section.productConfigration2.type2 .content .pc3ProductCard .bottomArea {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  section.productConfigration2.type2 .content .pc3ProductCard .bottomArea .configrationBtn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  section.productConfigration2.type2 .content .pc3ProductCard .bottomArea {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  section.productConfigration2.type2 .content .pc3ProductCard .bottomArea .configrationBtn {
    width: auto;
    padding: 0 20px 0 15px;
  }
}/*# sourceMappingURL=mobile.css.map */