@import url("https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #F5F5F5;
}

.header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #2C3042;
  padding: 10px 50px;
}
.header-top .social-media {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top .social-media a {
  border-right: 1px solid #7B7B7B;
}
.header-top .social-media a img {
  margin-right: 30px;
}
.header-top .social-media a:last-child {
  border-right: none;
}
.header-top .language-menu .language-dropdown {
  position: relative;
  display: inline-block;
}
.header-top .language-menu .language-dropdown a.selected-language {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.header-top .language-menu .language-dropdown a.selected-language .current-lang {
  font-weight: 400;
  font-size: 14px;
}
.header-top .language-menu .language-dropdown a.selected-language .dropdown-icon {
  margin-left: auto;
  font-size: 14px;
}
.header-top .language-menu .language-dropdown .language-options {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}
.header-top .language-menu .language-dropdown .language-options li a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
}
.header-top .language-menu .language-dropdown .language-options li a:hover {
  background-color: #eee;
}
.header-top .language-menu .language-dropdown.open .language-options {
  display: block;
}

.header-wrapper {
  width: 100%;
  padding: 0 30px;
  background-color: rgba(255, 255, 255, 0.0392156863);
  position: fixed;
  top: 76px;
  left: 0;
  z-index: 99;
  transition: top 0.3s ease;
}
.header-wrapper.scrolled {
  top: 20px;
}
.header-wrapper .header-section {
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.0392156863);
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2509803922);
  padding-left: 20px;
  padding-right: 20px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper .header-section .header-right {
  width: 100%;
  max-width: 871px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-wrapper .header-section .header-right .navBar {
  display: flex;
  gap: 26px;
}
.header-wrapper .header-section .header-right .navBar a {
  text-decoration: none;
  color: #535255;
  font-weight: 400;
  font-size: 16px;
  transition: 300ms ease;
}
.header-wrapper .header-section .header-right .navBar a.active {
  color: #CEA534;
}
.header-wrapper .header-section .header-right .navBar a:hover {
  color: #CEA534;
}
.header-wrapper .header-section .header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-wrapper .header-section .header-left .search-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}
.header-wrapper .header-section .header-left .search-container .magnifer-icon {
  display: inline-flex;
  background-color: transparent;
  border-radius: 100px;
  padding: 8px;
  cursor: pointer;
  z-index: 2;
  border: none;
}
.header-wrapper .header-section .header-left .search-container .formSearch {
  display: none;
  flex-direction: column;
  align-items: start;
  min-width: 250px;
  width: 250px;
  position: relative;
}
.header-wrapper .header-section .header-left .search-container .formSearch .header-search {
  width: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid #ADADAD;
  gap: 6px;
  border-radius: 16px;
  outline: none;
  padding: 8px 12px;
}
.header-wrapper .header-section .header-left .search-container .formSearch .header-search input {
  background: transparent;
  font-size: 16px;
  color: #1e1e1e;
  border: none;
  font-weight: 400;
  width: 100%;
  outline: none;
}
.header-wrapper .header-section .header-left .search-container .formSearch .header-search .closeSearch {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-wrapper .header-section .header-left .search-container .formSearch .search-result-box {
  border-radius: 6px;
  top: 50px;
  left: 0;
  position: absolute;
  box-shadow: 0px 0px 11px 0px rgba(165, 165, 165, 0.12);
  background: #fff;
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  z-index: 21;
  width: 100%;
  padding: 8px;
  border: 1px solid #cccccc;
}
.header-wrapper .header-section .header-left .search-container .formSearch .search-result-box .result_list {
  padding: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0;
}
.header-wrapper .header-section .header-left .search-container .formSearch .search-result-box .result_list .search_result_item {
  max-width: 98%;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px 0;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
  margin: 0;
}
.header-wrapper .header-section .header-left .search-container .formSearch .search-result-box .result_message {
  width: 100%;
  color: #1e1e1e;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: 500;
  display: none;
}
.header-wrapper .header-section .header-left .apply {
  background-color: #CEA534;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  transition: 300ms ease;
  text-decoration: none;
}
.header-wrapper .header-section .header-left .apply:hover {
  background-color: #242424;
}

.hero-wrapper {
  width: 100%;
  padding: 0 30px;
}
.hero-wrapper .hero-section {
  width: 100%;
  margin: 150px auto;
}
.hero-wrapper .hero-section .background-video {
  position: relative;
}
.hero-wrapper .hero-section .background-video video {
  border-radius: 30px;
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(79%);
}
.hero-wrapper .hero-section .background-video .hero-content {
  position: absolute;
  top: 60px;
  left: 30px;
  max-width: 724px;
}
.hero-wrapper .hero-section .background-video .hero-content .main-content {
  color: #fff;
  font-weight: 600;
  font-size: 65px;
  line-height: 80px;
}
.hero-wrapper .hero-section .background-video .innovations-and-slides {
  display: flex;
}
.hero-wrapper .hero-section .background-video .innovations-and-slides {
  display: flex;
  justify-content: space-between;
}
.hero-wrapper .hero-section .background-video .innovations-and-slides .news-for-customers {
  width: 100%;
  max-width: 527px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 75%;
  left: 30px;
}
.hero-wrapper .hero-section .background-video .innovations-and-slides .news-for-customers .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-wrapper .hero-section .background-video .innovations-and-slides .news-for-customers .tag-item {
  color: #fff;
  border: 1px solid #fff;
  padding: 12px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 3;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 15px;
  max-width: 777px;
  width: 100%;
  height: 698px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-controls {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 91%;
  right: 30px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-controls .swiper-button-prev,
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-controls .swiper-button-next {
  width: 36px;
  height: 36px;
  background-color: transparent;
  -webkit-backdrop-filter: blur(71px);
          backdrop-filter: blur(71px);
  border-radius: 50%;
  box-shadow: 6px 2px 4px 0px rgba(223, 223, 223, 0.2509803922);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms ease;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-controls .swiper-button-prev:hover,
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-controls .swiper-button-next:hover {
  background-color: rgba(224, 180, 59, 0.2);
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-button-prev {
  left: -95px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-button-prev::after {
  display: none;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-button-next::after {
  display: none;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  max-width: 636px;
  padding-right: 5px;
  position: absolute;
  top: 449px;
  left: 34px;
  color: #fff;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-pagination-bullet {
  width: 621px;
  height: 6px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0;
  transition: all 0.3s ease;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-pagination-bullet-active {
  width: 580px;
  background-color: #fff;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .number-prev,
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .number-next {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  min-width: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .number-prev {
  position: absolute;
  left: -5%;
  top: -23px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .number-next {
  position: absolute;
  right: -8%;
  top: -23px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper {
  width: 100%;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-wrapper {
  gap: 20px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-slide {
  background-color: rgba(150, 150, 150, 0.2588235294);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 19px 16px;
  font-size: 18px;
  width: 470px;
  text-align: right;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-slide a {
  display: flex;
  gap: 20px;
  text-decoration: none;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-slide a .slide-img {
  width: 100%;
  max-width: 230px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-slide a .slide-img img {
  width: 100%;
  height: 146px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-slide a .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-slide a .slide-content p {
  text-align: start;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}
.hero-wrapper .hero-section .background-video .hero-swiper-wrapper .hero-swiper .swiper-slide a .slide-content span {
  color: #FFE7A5;
  font-weight: 500;
  font-size: 14px;
}

.quality-wrapper {
  width: 100%;
  padding: 0 30px;
}
.quality-wrapper .quality-section {
  width: 100%;
  max-width: 1440px;
  margin: 120px auto;
  display: flex;
  justify-content: space-around;
  gap: 40px;
}
.quality-wrapper .quality-section .quality-right {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.quality-wrapper .quality-section .quality-right::before {
  content: "";
  width: 43%;
  height: auto;
  border: 3px solid #CEA534;
}
.quality-wrapper .quality-section .quality-right .lider-of-company {
  font-weight: 600;
  font-size: 36px;
  line-height: 50px;
  color: #000000;
}
.quality-wrapper .quality-section .quality-right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #7B7B7B;
}
.quality-wrapper .quality-section .quality-right p span {
  color: #CEA534;
}
.quality-wrapper .quality-section .quality-left {
  width: 100%;
  max-width: 661px;
  position: relative;
}
.quality-wrapper .quality-section .quality-left .quality-background-img .background-img {
  width: 90%;
  height: 564px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: -22px;
  top: -26px;
}
.quality-wrapper .quality-section .quality-left .quality-background-img .absolute-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  filter: grayscale(1);
}

.slider-wrapper {
  width: 100%;
  background: #EEEEEE;
  padding: 0 30px;
}
.slider-wrapper .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: relative;
  margin: 120px auto;
}
.slider-wrapper .services {
  margin-top: 50px;
  color: #CEA534;
  font-size: 36px;
  font-weight: 500;
}
.slider-wrapper .service-swiper {
  width: 100%;
  padding-bottom: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slider-wrapper .service-swiper .swiper-slide {
  width: 323px;
  padding: 10px;
  text-align: center;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container {
  position: relative;
  transition: 300ms ease;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container .swiper-main-img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  filter: brightness(57%);
  transition: 300ms ease;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container:hover .swiper-main-img {
  filter: brightness(40%);
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container:hover img {
  filter: invert(32%) sepia(83%) saturate(857%) hue-rotate(1deg) brightness(94%) contrast(98%);
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container:hover a.overall-btn {
  color: #CEA534;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container a.overall-btn {
  transition: color 0.3s ease;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container .about-service {
  position: absolute;
  top: 41%;
  left: 20px;
  right: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 90px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container .about-service .slide-content {
  width: 100%;
  height: 80px;
  position: relative;
  transition: transform 0.4s ease;
  border-bottom: 0.8px solid #C5C5C5;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container .about-service .slide-content .service-content {
  font-weight: 700;
  font-size: 24px;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  transition: transform 0.4s ease;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container .about-service .hover-text {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: 0;
  text-align: start;
  transition: all 0.4s ease;
  pointer-events: none;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container .about-service a {
  text-decoration: none;
  color: #fff;
  text-align: start;
  display: flex;
  align-items: center;
  gap: 11px;
  position: absolute;
  top: 84%;
  left: 17px;
  right: 0;
  transition: 300ms ease;
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container:hover .about-service .slide-content {
  transform: translateY(-50px);
}
.slider-wrapper .service-swiper .swiper-slide .service-img-container:hover .about-service .hover-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: 1;
  transform: translateY(-120px);
}
.slider-wrapper .service-swiper .swiper-button-group {
  position: absolute;
  bottom: 23px;
  right: 13px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.slider-wrapper .service-swiper .swiper-button-prev-second,
.slider-wrapper .service-swiper .swiper-button-next-second {
  position: static;
  background-color: #fff;
  box-shadow: 6px 2px 4px 0px rgba(223, 223, 223, 0.2509803922);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}
.slider-wrapper .service-swiper .swiper-button-prev-second img,
.slider-wrapper .service-swiper .swiper-button-next-second img {
  width: 24px;
  height: 24px;
}
.slider-wrapper .service-swiper .swiper-button-prev::after {
  display: none;
}
.slider-wrapper .service-swiper .swiper-button-next::after {
  display: none;
}

.productCard {
  width: 100%;
}
.productCard .cardbody {
  width: 100%;
  max-width: 234px;
  padding: 15px 20px;
}
.productCard .cardbody h3 {
  font-weight: 500;
  font-size: 14px;
  color: #CEA534;
}
.productCard .cardbody p {
  font-weight: 400;
  font-size: 18px;
  color: #242424;
}
.productCard .cardImgSlides {
  width: 100%;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.productCard .cardImgSlides .cardImg {
  width: 100%;
  height: 350px;
  border-radius: 4px 4px 0 0;
  background: #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms ease-in-out;
}
.productCard .cardImgSlides .cardImg .swiper-main-img {
  transition: transform 300ms ease-in-out;
}
.productCard .cardImgSlides .cardImg:hover .swiper-main-img {
  transform: translateY(-10px);
}
.productCard .cardImgSlides .cardImg img {
  max-width: 280px;
  max-height: 245px;
  -o-object-fit: contain;
     object-fit: contain;
}
.productCard .cardImgSlides .cardSlideButtons {
  position: absolute;
  display: flex;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px;
  border-radius: 100px;
  gap: 7px;
  bottom: 14px;
  z-index: 2;
}
.productCard .cardImgSlides .cardSlideButtons .swiper-button-prev-inside,
.productCard .cardImgSlides .cardSlideButtons .swiper-button-next-inside {
  position: initial;
  display: flex;
  margin: 0;
  height: 14px;
  width: 0;
  min-width: 0;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}
.productCard .cardImgSlides .cardSlideButtons .swiper-button-prev-inside img,
.productCard .cardImgSlides .cardSlideButtons .swiper-button-next-inside img {
  width: 100%;
  height: 100%;
  transition: 300ms ease;
}
.productCard .cardImgSlides .cardSlideButtons .swiper-button-prev-inside img:hover,
.productCard .cardImgSlides .cardSlideButtons .swiper-button-next-inside img:hover {
  filter: invert(32%) sepia(83%) saturate(857%) hue-rotate(1deg) brightness(94%) contrast(98%);
}
.productCard .cardImgSlides .cardSlideButtons .swiper-button-prev-inside::after,
.productCard .cardImgSlides .cardSlideButtons .swiper-button-next-inside::after {
  display: none;
}
.productCard .cardImgSlides .cardSlideButtons .swiper-pagination-product {
  position: initial;
  display: flex;
  align-items: center;
  gap: 4px;
}
.productCard .cardImgSlides .cardSlideButtons .swiper-pagination-product .swiper-pagination-bullet {
  opacity: 1;
  background: #B6B6B6;
  width: 6px;
  min-width: 6px;
  height: 6px;
  transition: 0.3s ease-in-out;
  margin: 0;
}
.productCard .cardImgSlides .cardSlideButtons .swiper-pagination-product .swiper-pagination-bullet-active {
  min-width: 16px;
  width: 16px;
  background: #000;
  border-radius: 100px;
}
.productCard .cardImgSlides:hover .cardSlideButtons .swiper-button-prev-inside,
.productCard .cardImgSlides:hover .cardSlideButtons .swiper-button-next-inside {
  width: 14px;
  min-width: 14px;
  transform: scale(1);
}

.slider-wrapper-products {
  width: 100%;
  padding: 0 30px;
}
.slider-wrapper-products .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.slider-wrapper-products .container .product-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.slider-wrapper-products .container .product-content .resembled-products {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CEA534;
}
.slider-wrapper-products .container .product-content .main-content {
  width: 100%;
  max-width: 463px;
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
}
.slider-wrapper-products .swiper-button-group {
  position: absolute;
  bottom: 17px;
  right: 13px;
  background-color: transparent;
  -webkit-backdrop-filter: blur(71px);
          backdrop-filter: blur(71px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: 300ms ease;
}
.slider-wrapper-products .swiper-button-group .swiper-button-prev-products,
.slider-wrapper-products .swiper-button-group .swiper-button-next-products {
  background-color: #fff;
  -webkit-backdrop-filter: blur(71px);
          backdrop-filter: blur(71px);
  border-radius: 50%;
  box-shadow: 6px 2px 4px 0px rgba(223, 223, 223, 0.2509803922);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: 300ms ease;
}
.slider-wrapper-products .swiper-button-group .swiper-button-prev-products::after,
.slider-wrapper-products .swiper-button-group .swiper-button-next-products::after {
  display: none;
}
.slider-wrapper-products .swiper-button-group .swiper-button-prev-products:hover,
.slider-wrapper-products .swiper-button-group .swiper-button-next-products:hover {
  background-color: rgba(224, 180, 59, 0.2);
}
.slider-wrapper-products .container {
  position: relative;
  margin: 100px auto;
}
.slider-wrapper-products h2 {
  color: #CEA534;
  font-size: 36px;
  font-weight: 500;
}
.slider-wrapper-products .products-swiper {
  width: 100%;
  padding-bottom: 70px;
}
.slider-wrapper-products .products-swiper .productCard {
  max-width: 320px;
  background: #fff;
}

.purpose-wrapper {
  width: 100%;
  padding: 0 30px;
}
.purpose-wrapper .purpose-section {
  width: 100%;
  max-width: 1440px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 50px;
}
.purpose-wrapper .purpose-section .mission-content span {
  font-weight: 500;
  font-size: 16px;
  color: #CEA534;
}
.purpose-wrapper .purpose-section .mission-content .aim-content {
  width: 100%;
  max-width: 630px;
  display: flex;
  flex-wrap: wrap;
}
.purpose-wrapper .purpose-section .mission-content .aim-content .purpose-content {
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
}
.purpose-wrapper .purpose-section .mission-content .aim-content strong {
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
}
.purpose-wrapper .purpose-section .lucky-aim {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target {
  width: 100%;
  display: flex;
  gap: 50px;
  transition: 300ms ease;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .border-number {
  position: relative;
  top: 16px;
  left: 0;
  font-weight: 700;
  font-size: 16px;
  width: 50px;
  min-width: 50px;
  height: 50px;
  margin-top: 27px;
  background-color: #EEEEEE;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms ease;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .border-number::after {
  content: "";
  width: 4px;
  height: 173px;
  background-color: #EEEEEE;
  position: absolute;
  top: 45px;
  transition: 300ms ease;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .number {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  left: 0;
  top: 47px;
  width: 50px;
  height: 50px;
  background-color: #EEEEEE;
  padding: 13px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms ease;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards {
  position: relative;
  background-color: #EEEEEE;
  padding: 20px 30px;
  border-radius: 6px;
  width: 100%;
  max-width: 429px;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards:before {
  content: "";
  position: absolute;
  top: 66px;
  left: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #EEEEEE;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards .card-content {
  transition: 300ms ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 4px;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards .card-content h4 {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards .card-content p {
  font-weight: 400;
  font-size: 16px;
  color: #8E8D92;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target:hover .cards {
  background-color: #CEA534;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target:hover .cards::before {
  border-right: 20px solid #CEA534;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target:hover .border-number {
  background-color: #CEA534;
  color: #fff;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target:hover .border-number::after {
  background-color: #CEA534;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target:hover .number {
  background-color: #CEA534;
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target:hover .card-content p {
  color: rgba(250, 250, 250, 0.8);
}
.purpose-wrapper .purpose-section .lucky-aim .main-targets .target:hover .card-content h4 {
  color: #fff;
}
.purpose-wrapper .purpose-section .mission-img {
  width: 100%;
  max-width: 710px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.purpose-wrapper .purpose-section .mission-img .aim-img {
  width: 100%;
  height: 490px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.development-wrapper {
  width: 100%;
  padding: 0 30px;
}
.development-wrapper .development-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 70px;
  position: relative;
  margin: 100px auto;
}
.development-wrapper .development-section .development-main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.development-wrapper .development-section .development-main-content span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CEA534;
}
.development-wrapper .development-section .development-main-content .service-for-customer {
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
}
.development-wrapper .development-section .development-main-content .customer-service {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
}
.development-wrapper .development-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.development-wrapper .development-section .service-cards .cards:last-child .decoration-img {
  visibility: hidden;
}
.development-wrapper .development-section .development-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 96px;
}
.development-wrapper .development-section .cards {
  width: 100%;
  padding: 10px;
  text-align: center;
  position: relative;
}
.development-wrapper .development-section .cards .development-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.development-wrapper .development-section .cards .development-content .development-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.development-wrapper .development-section .cards .development-content .service-img {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 2px 2px 4px 0px rgba(209, 209, 209, 0.631372549);
  display: flex;
  justify-content: center;
  align-items: center;
}
.development-wrapper .development-section .cards .development-content .development-img {
  width: 60px;
  height: 60px;
}
.development-wrapper .development-section .cards .development-content .percentages {
  color: #CEA534;
  font-size: 60px;
  font-weight: 500;
  line-height: 75px;
}
.development-wrapper .development-section .cards .development-content .newest-industry {
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: #242424;
}
.development-wrapper .development-section .cards .development-content .newest-industry-service {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}
.development-wrapper .development-section .cards .development-content .newest-content {
  width: 100%;
  max-width: 227px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: start;
  color: #8E8D92;
}

.slider-wrapper-logos {
  width: 100%;
  padding: 0 30px;
}
.slider-wrapper-logos .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  position: relative;
  margin: 100px auto;
}
.slider-wrapper-logos .logos-swiper {
  width: 100%;
}
.slider-wrapper-logos .logos-swiper .swiper-wrapper {
  gap: 70px;
}
.slider-wrapper-logos .logos-swiper .swiper-slide {
  width: 202px;
  padding: 10px;
  text-align: center;
}

.footer-wrapper {
  width: 100%;
  padding: 40px 50px;
  background-color: #2C3042;
}
.footer-wrapper .footer-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.footer-wrapper .footer-section .footer-end {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
.footer-wrapper .footer-section .footer-top {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wrapper .footer-section .footer-top::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  border-bottom: 0.5px solid #727272;
}
.footer-wrapper .footer-section .footer-top .contact-with-us {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
.footer-wrapper .footer-section .footer-top .contact-with-us .connection {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-wrapper .footer-section .footer-top .contact-with-us .connection .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 100px;
}
.footer-wrapper .footer-section .footer-top .contact-with-us .connection .apply-us {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-wrapper .footer-section .footer-top .contact-with-us .connection .apply-us span {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
}
.footer-wrapper .footer-section .footer-top .contact-with-us .connection .apply-us .connection-center {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #B6B6B6;
}
.footer-wrapper .footer-section .footer-bottom {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-wrapper .footer-section .footer-bottom::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: -56px;
  border: 0.2px solid #727272;
}
.footer-wrapper .footer-section .footer-bottom .footer-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 99px;
}
.footer-wrapper .footer-section .footer-bottom .footer-left .about-the-company {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-wrapper .footer-section .footer-bottom .footer-left .social-media {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-wrapper .footer-section .footer-bottom .footer-left .social-media a {
  border-right: 1px solid #7B7B7B;
}
.footer-wrapper .footer-section .footer-bottom .footer-left .social-media a img {
  margin-right: 30px;
}
.footer-wrapper .footer-section .footer-bottom .footer-left .social-media a:last-child {
  border-right: none;
}
.footer-wrapper .footer-section .footer-bottom .footer-left span {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.footer-wrapper .footer-section .footer-bottom .footer-left .footer-content {
  width: 100%;
  max-width: 433px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #DADADA;
}
.footer-wrapper .footer-section .footer-bottom .footer-left .footer-content b {
  font-weight: 400;
  color: #CEA534;
}
.footer-wrapper .footer-section .footer-bottom .footer-right {
  display: flex;
  justify-content: center;
  gap: 120px;
}
.footer-wrapper .footer-section .footer-bottom .footer-right .about-us {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.footer-wrapper .footer-section .footer-bottom .footer-right .about-us span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.footer-wrapper .footer-section .footer-bottom .footer-right .about-us .contact-us {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  transition: 30ms ease;
}
.footer-wrapper .footer-section .footer-bottom .footer-right .about-us .contact-us .footerIcon {
  transition: transform 300ms ease;
}
.footer-wrapper .footer-section .footer-bottom .footer-right .about-us .contact-us:hover {
  color: #CEA534;
}
.footer-wrapper .footer-section .footer-bottom .footer-right .about-us .contact-us:hover .footerIcon {
  transform: translateX(-5px);
}

.breadcrump-wrapper {
  width: 100%;
  padding: 0 50px;
}
.breadcrump-wrapper .breadcrumb {
  max-width: 1440px;
  margin: 130px auto 0;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.breadcrump-wrapper .breadcrumb .main-content {
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  color: #242424;
}
.breadcrump-wrapper .breadcrumb .breadcrump-section {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrump-wrapper .breadcrumb .p-lr {
  padding-left: 60px;
  padding-right: 60px;
}
.breadcrump-wrapper .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #A6A6A6;
  white-space: nowrap;
  text-decoration: none;
}
.breadcrump-wrapper .breadcrumb svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
}
.breadcrump-wrapper .breadcrumb .current {
  color: #CEA534;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.about-wrapper {
  width: 100%;
  padding: 0 50px;
}
.about-wrapper .about-section {
  width: 100%;
  max-width: 1440px;
  margin: 120px auto;
  display: flex;
  justify-content: space-between;
}
.about-wrapper .about-section .about-left {
  width: 100%;
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-wrapper .about-section .about-left .about-img-left {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.about-wrapper .about-section .about-left .about-img-right {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  align-self: start;
  transform: translateY(-100px);
}
.about-wrapper .about-section .about-right {
  width: 100%;
  max-width: 598px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.about-wrapper .about-section .about-right span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CEA534;
}
.about-wrapper .about-section .about-right .about-main-content {
  font-weight: 600;
  font-size: 36px;
  line-height: 50px;
  color: #242424;
}
.about-wrapper .about-section .about-right p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7B7B7B;
}
.about-wrapper .about-section .about-right p span {
  color: #CEA534;
}

.services-wrapper {
  width: 100%;
  padding: 0 30px;
}
.services-wrapper .service-section {
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  gap: 10px;
  position: relative;
  margin: 100px auto;
}
.services-wrapper .service-section .service-cards {
  width: 100%;
  padding: 10px;
  text-align: center;
}
.services-wrapper .service-section .service-cards .service-img-container {
  position: relative;
  transition: 300ms ease;
}
.services-wrapper .service-section .service-cards .service-img-container .swiper-main-img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  filter: brightness(57%);
  transition: 300ms ease;
}
.services-wrapper .service-section .service-cards .service-img-container:hover .swiper-main-img {
  filter: brightness(40%);
}
.services-wrapper .service-section .service-cards .service-img-container:hover img {
  filter: invert(32%) sepia(83%) saturate(857%) hue-rotate(1deg) brightness(94%) contrast(98%);
}
.services-wrapper .service-section .service-cards .service-img-container:hover a.overall-btn {
  color: #CEA534;
}
.services-wrapper .service-section .service-cards .service-img-container a.overall-btn {
  transition: color 0.3s ease;
}
.services-wrapper .service-section .service-cards .service-img-container .about-service {
  position: absolute;
  top: 32%;
  left: 20px;
  right: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 90px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.services-wrapper .service-section .service-cards .service-img-container .about-service .slide-content {
  width: 100%;
  height: 80px;
  position: relative;
  transition: transform 0.4s ease;
  border-bottom: 0.8px solid #C5C5C5;
  transition: bottom 0.4s ease;
}
.services-wrapper .service-section .service-cards .service-img-container .about-service .slide-content .service-content {
  height: 77px;
  font-weight: 700;
  font-size: 24px;
  text-align: start;
  color: #fff;
  transition: transform 0.4s ease;
}
.services-wrapper .service-section .service-cards .service-img-container .about-service .hover-text {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: start;
  transition: all 0.4s ease;
  pointer-events: none;
}
.services-wrapper .service-section .service-cards .service-img-container .about-service a {
  text-decoration: none;
  color: #fff;
  text-align: start;
  display: flex;
  align-items: center;
  gap: 11px;
  position: absolute;
  top: 84%;
  left: 17px;
  right: 0;
  transition: 300ms ease;
}
.services-wrapper .service-section .service-cards .service-img-container:hover .about-service .slide-content {
  transform: translateY(-50px);
}
.services-wrapper .service-section .service-cards .service-img-container:hover .about-service .slide-content {
  bottom: -15px;
}
.services-wrapper .service-section .service-cards .service-img-container:hover .about-service .hover-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: start;
  opacity: 1;
  transform: translateY(-120px);
}

.development-service-wrapper {
  width: 100%;
  padding: 0 50px;
}
.development-service-wrapper .development-service-section {
  width: 100%;
  max-width: 1440px;
  margin: 120px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}
.development-service-wrapper .development-service-section .development-main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.development-service-wrapper .development-service-section .development-main-content span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CEA534;
}
.development-service-wrapper .development-service-section .development-main-content .customer-service {
  width: 100%;
  max-width: 630px;
  font-weight: 400;
  font-size: 36px;
  color: #242424;
}
.development-service-wrapper .development-service-section .service-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.development-service-wrapper .development-service-section .service-cards .card {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.development-service-wrapper .development-service-section .service-cards .card:nth-child(1) .decoration-right .line-down {
  display: none;
}
.development-service-wrapper .development-service-section .service-cards .card:nth-child(2) .decoration-right .line-up {
  display: none;
}
.development-service-wrapper .development-service-section .service-cards .card:nth-child(3) .decoration-right .line-down {
  display: none;
}
.development-service-wrapper .development-service-section .service-cards .card:last-child .decoration-right .line-up,
.development-service-wrapper .development-service-section .service-cards .card:last-child .decoration-right .line-down {
  display: none;
}
.development-service-wrapper .development-service-section .service-cards .card:not(:first-child):not(:nth-child(2)):not(:nth-child(3)):not(:last-child) .decoration-right .line-up {
  display: none;
}
.development-service-wrapper .development-service-section .service-cards .card .card-left {
  width: 100%;
  max-width: 273px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.development-service-wrapper .development-service-section .service-cards .card .card-left .service-img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 2px 2px 4px 0px rgba(209, 209, 209, 0.631372549);
  display: flex;
  justify-content: center;
  align-items: center;
}
.development-service-wrapper .development-service-section .service-cards .card .card-left .newest-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.development-service-wrapper .development-service-section .service-cards .card .card-left .newest-text .newest-industry-service {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #242424;
}
.development-service-wrapper .development-service-section .service-cards .card .card-left .newest-text .newest-content {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535255;
}
.development-service-wrapper .development-service-section .service-cards .card .decoration-right {
  width: 132px;
  position: absolute;
  top: 30px;
  right: -60px;
}

.aboutservice-wrapper {
  width: 100%;
  padding: 0 50px;
}
.aboutservice-wrapper .service-section {
  width: 100%;
  max-width: 1440px;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.aboutservice-wrapper .service-section .serviceAside {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 6px;
}
.aboutservice-wrapper .service-section .serviceAside .asideCards {
  width: 100%;
  background-color: #EEEEEE;
  border-radius: 16px;
  text-decoration: none;
  color: #242424;
  padding: 16.5px 24px;
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  transition: transform 300ms ease;
}
.aboutservice-wrapper .service-section .serviceAside .asideCards.active {
  background-color: #CEA534;
  color: #fff;
  transition: 300ms ease;
}
.aboutservice-wrapper .service-section .serviceAside .asideCards:hover {
  background-color: #E7E7E7;
  transform: scale(1.02);
}
.aboutservice-wrapper .service-section .serviceAside .asideCards:hover.active {
  color: #242424;
}
.aboutservice-wrapper .service-section .service-right {
  width: 100%;
}
.aboutservice-wrapper .service-section .service-right .service-details .serviceImg {
  width: 370px;
  height: 300px;
  display: flex;
  justify-content: center;
  float: right;
  margin-right: 28px;
  margin-bottom: 20px !important;
  padding: 20px;
}
.aboutservice-wrapper .service-section .service-right .service-details .serviceImg img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.aboutservice-wrapper .service-section .service-right .service-details .serviceContent .ourServices {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
}
.aboutservice-wrapper .service-section .service-right .service-details .serviceContent p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535255;
}

.blog-wrapper {
  width: 100%;
  padding: 0 50px;
}
.blog-wrapper .blog-section {
  width: 100%;
  max-width: 1440px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
}
.blog-wrapper .blog-section .blogCards {
  width: 100%;
}
.blog-wrapper .blog-section .blogCards .card-inside {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}
.blog-wrapper .blog-section .blogCards .card-inside .card-img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.blog-wrapper .blog-section .blogCards .card-inside .data {
  width: 90px;
  height: 90px;
  position: absolute;
  bottom: 117px;
  right: 30px;
  padding: 10px;
  border-radius: 4px;
  background-color: #CEA534;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blog-wrapper .blog-section .blogCards .card-inside .data span {
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  color: #fff;
}
.blog-wrapper .blog-section .blogCards .card-inside .data p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.blog-wrapper .blog-section .blogCards .card-inside .blog-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 30px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #fff;
  box-shadow: 2px 2px 4px 0px rgba(196, 196, 196, 0.2509803922);
}
.blog-wrapper .blog-section .blogCards .card-inside .blog-content span {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #CEA534;
}
.blog-wrapper .blog-section .blogCards .card-inside .blog-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #242424;
}
.blog-wrapper .blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-wrapper .blog-pagination .paginations {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 100px;
  margin-bottom: 120px;
  color: #242424;
  padding: 8px 18px;
  border-radius: 12px;
}
.blog-wrapper .blog-pagination .paginations.active {
  background-color: #CEA534;
  color: #fff;
}

.blog-details-wrapper {
  width: 100%;
  padding: 0 50px;
}
.blog-details-wrapper .detail-section {
  width: 100%;
  max-width: 1440px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.blog-details-wrapper .detail-section .detail-left {
  width: 100%;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.blog-details-wrapper .detail-section .detail-left .detail-img {
  width: 100%;
}
.blog-details-wrapper .detail-section .detail-left .detail-img .main-img {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-wrapper .detail-section .detail-left .data-and-view {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}
.blog-details-wrapper .detail-section .detail-left .data-and-view .dataView {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.blog-details-wrapper .detail-section .detail-left .data-and-view .dataView .dataImg {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-wrapper .detail-section .detail-left .data-and-view .dataView span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #242424;
}
.blog-details-wrapper .detail-section .detail-left .details-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
}
.blog-details-wrapper .detail-section .detail-left .details-content .main-content {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  color: #242424;
}
.blog-details-wrapper .detail-section .detail-left .details-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535255;
}
.blog-details-wrapper .detail-section .detail-left .details-content .pointed {
  display: flex;
  align-items: center;
  gap: 80px;
  background-color: #F2F2F2;
  border-left: 4px solid #CEA534;
  padding: 42px;
}
.blog-details-wrapper .detail-section .detail-left .details-content .pointed p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #535255;
}
.blog-details-wrapper .detail-section .detail-left .details-content .pointed img {
  margin-top: 40px;
}
.blog-details-wrapper .detail-section .detail-left .details-content .content-img {
  width: 100%;
  max-width: 466px;
  display: flex;
  gap: 18px;
}
.blog-details-wrapper .detail-section .detail-left .details-content .content-img .img-inside {
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-wrapper .detail-section .detail-left .tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.blog-details-wrapper .detail-section .detail-left .tags span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.blog-details-wrapper .detail-section .detail-left .tags .tag-item {
  display: flex;
  align-items: center;
  padding: 8px 20.5px;
  border-radius: 4px;
  border: 0.2px solid #ADADAD;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #242424;
  text-decoration: none;
  transition: 300ms ease;
}
.blog-details-wrapper .detail-section .detail-left .tags .tag-item:hover {
  background-color: #CEA534;
}
.blog-details-wrapper .detail-section .detail-right {
  width: 100%;
  max-width: 370px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 25px;
}
.blog-details-wrapper .detail-section .detail-right .aside-top {
  background-color: #F2F2F2;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
  padding: 24px;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .same-post {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  color: #242424;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts {
  display: flex;
  gap: 17px;
  text-decoration: none;
  position: relative;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts::after {
  content: "";
  width: 100%;
  border: 0.2px solid #BFBFBF;
  position: absolute;
  bottom: -26px;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts .post-img img {
  border-radius: 4px;
  width: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts .post-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 4px;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts .post-content .post-data {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts .post-content .post-data img {
  width: 24px;
  height: 24px;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts .post-content .post-data span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #A09FA2;
}
.blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts .post-content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
}
.blog-details-wrapper .detail-section .detail-right .aside-bottom {
  padding: 24px;
  background-color: #F2F2F2;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.blog-details-wrapper .detail-section .detail-right .aside-bottom .tag-content {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  color: #242424;
}
.blog-details-wrapper .detail-section .detail-right .aside-bottom .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-details-wrapper .detail-section .detail-right .aside-bottom .blog-tags .tag-items {
  text-decoration: none;
  color: #242424;
  background-color: #fff;
  border: 0.1px solid #ADADAD;
  padding: 8px 20.5px;
  border-radius: 4px;
  transition: 300ms ease;
}
.blog-details-wrapper .detail-section .detail-right .aside-bottom .blog-tags .tag-items:hover {
  background-color: #CEA534;
}

.product-wrapper {
  width: 100%;
  padding: 0 50px;
}
.product-wrapper .product-section {
  width: 100%;
  max-width: 1440px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.product-wrapper .product-section .kind-of-product {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.product-wrapper .product-section .kind-of-product .product-kind-right {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-wrapper .product-section .kind-of-product .product-kind-right span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #949395;
}
.product-wrapper .product-section .kind-of-product .product-kind-right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #949395;
}
.product-wrapper .product-section .kind-of-product .product-kind-left .custom-select-box {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: sans-serif;
}
.product-wrapper .product-section .kind-of-product .product-kind-left .producttypeSelected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  cursor: pointer;
}
.product-wrapper .product-section .kind-of-product .product-kind-left .optionsProduct {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  background: #fff;
  width: 150px;
  border: 0.5px solid #CCCCCC;
  border-radius: 8px;
  margin-top: 5px;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.product-wrapper .product-section .kind-of-product .product-kind-left .option {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.product-wrapper .product-section .kind-of-product .product-kind-left .option:last-child {
  border-bottom: none;
}
.product-wrapper .product-section .kind-of-product .product-kind-left .option:hover {
  background: #f5f5f5;
}
.product-wrapper .product-section .products-inside {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-wrapper .product-section .products-inside .productCard {
  background-color: #fff;
}
.product-wrapper .product-section .products-inside .productCard .cardbody {
  width: 100%;
  max-width: 234px;
  padding: 15px 20px;
}
.product-wrapper .product-section .products-inside .productCard .cardbody h3 {
  font-weight: 500;
  font-size: 14px;
  color: #CEA534;
}
.product-wrapper .product-section .products-inside .productCard .cardbody p {
  font-weight: 400;
  font-size: 18px;
  color: #242424;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides {
  width: 100%;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardImg {
  width: 100%;
  height: 350px;
  border-radius: 4px 4px 0 0;
  background: #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms ease-in-out;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardImg .swiper-main-img {
  transition: transform 300ms ease-in-out;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardImg:hover .swiper-main-img {
  transform: translateY(-10px);
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardImg img {
  max-width: 280px;
  width: 100%;
  max-height: 245px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons {
  position: absolute;
  display: flex;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px;
  border-radius: 100px;
  gap: 7px;
  bottom: 14px;
  z-index: 2;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-button-prev-inside,
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-button-next-inside {
  position: initial;
  display: flex;
  margin: 0;
  height: 14px;
  width: 0;
  min-width: 0;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-button-prev-inside img,
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-button-next-inside img {
  width: 100%;
  height: 100%;
  transition: 300ms ease;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-button-prev-inside::after,
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-button-next-inside::after {
  display: none;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-pagination-product {
  position: initial;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-pagination-product .swiper-pagination-bullet {
  opacity: 1;
  background: #B6B6B6;
  width: 6px;
  min-width: 6px;
  height: 6px;
  transition: 0.3s ease-in-out;
  margin: 0;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides .cardSlideButtons .swiper-pagination-product .swiper-pagination-bullet-active {
  min-width: 16px;
  width: 16px;
  background: #000;
  border-radius: 100px;
}
.product-wrapper .product-section .products-inside .productCard .cardImgSlides:hover .cardSlideButtons .swiper-button-prev-inside,
.product-wrapper .product-section .products-inside .productCard .cardImgSlides:hover .cardSlideButtons .swiper-button-next-inside {
  width: 14px;
  min-width: 14px;
  transform: scale(1);
}

.product-detail-wrapper {
  width: 100%;
  padding: 0 50px;
  background-color: #F6F6F6;
}
.product-detail-wrapper .plastic-section {
  width: 100%;
  max-width: 1440px;
  margin: 50px auto !important;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 40px;
}
.product-detail-wrapper .plastic-section .product-right {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
}
.product-detail-wrapper .plastic-section .product-right .plastic-head-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.product-detail-wrapper .plastic-section .product-right .plastic-head-content span {
  color: #CEA534;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.product-detail-wrapper .plastic-section .product-right .plastic-head-content .main-content {
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  color: #242424;
}
.product-detail-wrapper .plastic-section .product-right .content {
  color: #535255;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.product-detail-wrapper .plastic-section .product-right .product-order {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-detail-wrapper .plastic-section .product-right .product-order .download {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border-radius: 16px;
  gap: 10px;
  padding: 12px;
  color: #fff;
  background-color: #CEA534;
}
.product-detail-wrapper .plastic-section .product-right .product-order .order-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 12px;
  color: #2C3042;
  background-color: #E6E6E6;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 50px;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname .input-inside #productQuantity {
  width: 100%;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
  color: #C0C0C0;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname .input-inside label span {
  color: red;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 9px;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .text-area #textArea {
  width: 100%;
  height: 160px;
  outline: none;
  resize: none;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border: 0.5px solid #F0F0F0;
  border-radius: 16px;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .text-area #textArea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .text-area #textArea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .form-submit {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  color: #fff;
  background-color: #CEA534;
  border-radius: 16px;
  padding: 12px 70px;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .modal-window {
  width: 100%;
  max-width: 927px;
  background: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 8px;
  position: relative;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .modal-window .order-content {
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
  color: #242424;
}
.product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .modal-window .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.product-detail-wrapper .plastic-section .product-images {
  width: 100%;
  max-width: 850px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.product-detail-wrapper .plastic-section .product-images .swiper {
  width: 100%;
  border-radius: 6px;
  position: relative;
}
.product-detail-wrapper .plastic-section .product-images .swiper-main {
  height: auto;
  margin-bottom: 20px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-main .swiper-slide {
  width: 100%;
  height: 460px;
  background: #E0E0E0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-wrapper .plastic-section .product-images .swiper-main .swiper-slide img {
  max-width: 500px;
  width: 100%;
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom {
  width: 100%;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-wrapper {
  display: flex;
  gap: 10px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-slide {
  background: #E0E0E0;
  border-radius: 16px;
  width: 100%;
  max-width: 270px;
  height: 140px;
  opacity: 0.5;
  cursor: pointer;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid #ADADAD;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next {
  width: 42px;
  height: 42px;
  background-color: #FDFDFD;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev::after,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next::after {
  display: none;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev svg,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next svg {
  width: 20px;
  height: 20px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev.swiper-button-prev,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next.swiper-button-prev {
  left: 5px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev.swiper-button-next,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next.swiper-button-next {
  right: 5px;
}

.contact-wrapper {
  width: 100%;
  padding: 0 50px;
}
.contact-wrapper .contact-section {
  width: 100%;
  max-width: 1440px;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.contact-wrapper .contact-section .contact-left {
  width: calc(100% - 500px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
}
.contact-wrapper .contact-section .contact-left .form-content {
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
  color: #242424;
}
.contact-wrapper .contact-section .contact-left .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.contact-wrapper .contact-section .contact-left .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside label span {
  color: red;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 9px;
}
.contact-wrapper .contact-section .contact-left .form .text-area #textArea {
  width: 100%;
  height: 160px;
  outline: none;
  resize: none;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border: 0.5px solid #F0F0F0;
  border-radius: 16px;
}
.contact-wrapper .contact-section .contact-left .form .text-area #textArea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .text-area #textArea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .form-submit {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  color: #fff;
  background-color: #CEA534;
  border-radius: 16px;
  padding: 12px 70px;
}
.contact-wrapper .contact-section .contact-right {
  width: 100%;
  min-width: 450px;
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
  background-color: #2C3042;
  border-radius: 4px;
  padding: 50px 40px;
}
.contact-wrapper .contact-section .contact-right .contact-content {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}
.contact-wrapper .contact-section .contact-right .form-and-social {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 83px;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
  border-bottom: 0.5px solid #9A9A9A;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection:last-child {
  border-bottom: none;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection:last-child .contact-inside {
  padding-bottom: 0;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection .contact-inside {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 30px;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection .contact-inside .icons {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 100px;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection .contact-inside .apply-us {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection .contact-inside .apply-us span {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
}
.contact-wrapper .contact-section .contact-right .form-and-social .contact-with-us .connection .contact-inside .apply-us .connection-center {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #B6B6B6;
}
.contact-wrapper .contact-section .contact-right .form-and-social .social-media {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-wrapper .contact-section .contact-right .form-and-social .social-media a {
  border-right: 1px solid #7B7B7B;
}
.contact-wrapper .contact-section .contact-right .form-and-social .social-media a img {
  margin-right: 30px;
}
.contact-wrapper .contact-section .contact-right .form-and-social .social-media a:last-child {
  border-right: none;
}

.map-wrapper {
  width: 100%;
}
.map-wrapper iframe {
  width: 100%;
}

@media only screen and (max-width: 1368px) {
  .header-wrapper .header-section .header-right .navBar a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1268px) {
  .quality-wrapper .quality-section .quality-right .lider-of-company {
    font-weight: 600;
    font-size: 22px;
    line-height: 40px;
    color: #000000;
  }
  .development-service-wrapper .development-service-section .service-cards .card .decoration-right img {
    width: 90px;
  }
  .development-service-wrapper .development-service-section .service-cards .card .decoration-right {
    position: absolute;
    top: 30px;
    right: -80px;
  }
  .services-wrapper .service-section {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .services-wrapper .service-section .service-cards .service-img-container .about-service .slide-content .service-content {
    height: 77px;
    font-weight: 700;
    font-size: 22px;
    text-align: start;
    color: #fff;
    transition: transform 0.4s ease;
  }
  .hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    max-width: 474px;
    padding-right: 5px;
    position: absolute;
    top: 449px;
    left: 243px;
    color: #fff;
  }
  .hero-wrapper .hero-section .background-video .hero-content .main-content {
    color: #fff;
    font-weight: 600;
    font-size: 46px;
    line-height: 80px;
  }
  .hero-wrapper .hero-section .background-video .hero-swiper-wrapper {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 3;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
    max-width: 471px;
    width: 100%;
    height: 698px;
  }
  .hero-wrapper .hero-section .background-video .hero-swiper-wrapper .swiper-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    max-width: 344px;
    padding-right: 5px;
    position: absolute;
    top: 449px;
    left: 62px;
    color: #fff;
  }
  .breadcrump-wrapper .breadcrumb {
    max-width: 1440px;
    margin: 50px auto 0;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
  }
  .breadcrump-wrapper .breadcrumb .main-content {
    font-weight: 500;
    font-size: 27px;
    line-height: 50px;
    color: #242424;
  }
  .blog-details-wrapper .detail-section .detail-left .details-content .content-img {
    width: 100%;
    max-width: 466px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .blog-wrapper .blog-section .blogCards .card-inside .data {
    width: 90px;
    height: 90px;
    position: absolute;
    bottom: 135px;
    right: 30px;
  }
  .service-cards .cards:last-child .decoration-img {
    display: block !important;
  }
  .services-wrapper .service-section .service-cards .service-img-container .swiper-main-img {
    width: 100%;
    height: 375px;
  }
  .development-wrapper .development-section .service-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .development-wrapper .development-section .cards .development-content .percentages {
    color: #CEA534;
    font-size: 45px;
    font-weight: 500;
    line-height: 75px;
  }
  .development-wrapper .development-section .cards .development-content .newest-industry {
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    color: #242424;
  }
  .development-wrapper .development-section .cards .development-content .newest-content {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    color: #8E8D92;
  }
  .quality-wrapper .quality-section .quality-left .quality-background-img .background-img {
    position: static !important;
    width: 100%;
    height: auto;
  }
  .main-targets .target .cards img {
    width: 80% !important;
  }
  .about-wrapper .about-section .about-left {
    width: 100%;
    max-width: 427px;
  }
  .about-wrapper .about-section .about-right {
    width: 100%;
    max-width: 509px;
  }
  .quality-wrapper .quality-section .quality-right {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .about-wrapper .about-section .about-right .about-main-content {
    font-weight: 600;
    font-size: 23px;
    line-height: 50px;
    color: #242424;
  }
  .about-wrapper .about-section .about-right p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #7B7B7B;
  }
  .purpose-wrapper .purpose-section .mission-content .aim-content strong {
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards .card-content p {
    width: 100%;
    max-width: 300px;
    font-weight: 400;
    font-size: 14px;
    color: #8E8D92;
  }
  .quality-wrapper .quality-section .quality-right p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #7B7B7B;
  }
  .footer-wrapper .footer-section .footer-top {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets {
    width: 100%;
    max-width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .footer-wrapper .footer-section .footer-top .contact-with-us {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 35px;
  }
  .footer-wrapper .footer-section .footer-bottom .footer-left .about-the-company {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .development-wrapper .development-section .development-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .footer-wrapper .footer-section .footer-bottom {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 86px;
  }
  .footer-wrapper .footer-section .footer-bottom .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 99px;
  }
  .purpose-wrapper .purpose-section .mission-img .aim-img {
    width: 90%;
    height: auto;
    border-radius: 4px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards .card-content h4 {
    font-weight: 700;
    font-size: 15px;
  }
  .purpose-wrapper .purpose-section .mission-content .aim-content .purpose-content {
    font-weight: 400;
    font-size: 30px;
    line-height: 50px;
  }
  .header-wrapper {
    display: none;
  }
  .header-responsive-wrapper {
    display: block !important;
    width: 100%;
  }
  .header-responsive-wrapper .mobile-header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
  }
  .header-responsive-wrapper .mobile-header .mobile-logo {
    width: 60px;
    height: auto;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .submit-button {
    background-color: #CEA534;
    padding: 10px 27px;
    color: #fff;
    transition: 300ms ease;
    border: none;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger {
    position: relative;
    z-index: 1001;
    background-color: #CEA534;
    padding: 12px 13px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger .hamburger-icon {
    width: 20px;
    height: 1px;
    margin: 3px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger.active .hamburger-icon:nth-child(1) {
    transform: rotate(53deg) translate(14px, 5px);
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger.active .hamburger-icon:nth-child(2) {
    opacity: 0;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger.active .hamburger-icon:nth-child(3) {
    transform: rotate(-45deg) translate(11px, -6px);
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn.menu-open .hamburger {
    position: fixed;
    top: 16px;
    right: 30px;
    z-index: 2000;
  }
  .header-responsive-wrapper .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px 20px;
    z-index: 1500;
  }
  .header-responsive-wrapper .mobile-menu.active {
    display: flex;
    width: 80%;
    height: 100%;
    overflow-y: auto;
  }
  .header-responsive-wrapper .mobile-menu .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-responsive-wrapper .mobile-menu .menu-header img {
    width: 66px;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    margin-bottom: 5px;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-magnifer-icon {
    display: inline-flex;
    background-color: transparent;
    border-radius: 100px;
    padding: 8px;
    cursor: pointer;
    z-index: 2;
    border: none;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-magnifer-icon svg {
    width: 20px;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch {
    display: none;
    flex-direction: column;
    align-items: start;
    width: 100%;
    min-width: 67px;
    width: 164px;
    position: relative;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch .responsive-header-search {
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid #ADADAD;
    gap: 6px;
    border-radius: 16px;
    outline: none;
    padding: 8px 12px;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch .responsive-header-search input {
    background: transparent;
    font-size: 16px;
    color: #1e1e1e;
    border: none;
    font-weight: 400;
    width: 100%;
    outline: none;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch .responsive-header-search .responsive-closeSearch {
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch .responsive-search-result-box {
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 0px 11px 0px rgba(165, 165, 165, 0.12);
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    z-index: 21;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch .responsive-search-result-box .responsive-result_list {
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch .responsive-search-result-box .responsive-result_list .responsive-search_result_item {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .responsive-search-container .responsive-formSearch .responsive-search-result-box .responsive-result_message {
    display: none;
    font-size: 16px;
    text-align: center;
    width: 100%;
    color: #1e1e1e;
    font-weight: 500;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .close-btn {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list {
    padding: 40px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    padding: 10px 0;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .lang {
    text-decoration: none;
    color: #333;
    background-color: #EEEEEE;
    padding: 6px 9px;
    border-radius: 2px;
    transition: 300ms ease;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .lang.active {
    background-color: #CEA534;
    color: #fff;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu {
    display: flex;
    flex-direction: column;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle {
    width: 154px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: transparent;
    color: #000;
    font-size: 18px;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    font-weight: 400;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle img {
    transition: all 0.3s ease;
    width: 12px;
    height: 12px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle.active {
    color: #fff;
    background-color: #000;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle.active img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle.active img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle.active img {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list {
    display: none;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #333;
    width: 200px;
    margin-top: 10px;
    padding-left: 10px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list a,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list a,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list a {
    font-size: 16px;
    color: #333;
    padding: 6px 0;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list a:hover,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list a:hover,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list a:hover {
    color: #000;
    font-weight: bold;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list.active {
    display: flex;
  }
}
@media only screen and (max-width: 1068px) {
  .quality-wrapper .quality-section .quality-right {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .contact-wrapper .contact-section .contact-right {
    width: 100%;
    min-width: 407px;
    width: 407px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 40px;
    background-color: #2C3042;
    border-radius: 4px;
    padding: 50px 40px;
  }
  .contact-wrapper .contact-section {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    display: flex;
    gap: 23px;
  }
  .contact-wrapper .contact-section .contact-left .form-content {
    font-weight: 400;
    font-size: 30px;
    line-height: 50px;
    color: #242424;
  }
  .contact-wrapper .contact-section .contact-right .contact-content {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    color: #fff;
  }
  .blog-details-wrapper .detail-section .detail-left .detail-img .main-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .aboutservice-wrapper .service-section .serviceAside .asideCards {
    width: 100%;
    background-color: #EEEEEE;
    border-radius: 16px;
    text-decoration: none;
    color: #242424;
    padding: 16.5px 24px;
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
    transition: transform 300ms ease;
  }
  .aboutservice-wrapper .service-section .serviceAside {
    width: 100%;
    max-width: 261px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 6px;
  }
  .aboutservice-wrapper .service-section .service-right .service-details .serviceImg {
    width: 315px;
    height: 269px;
    display: flex;
    justify-content: center;
    float: right;
    margin-right: 28px;
    margin-bottom: 20px !important;
    padding: 20px;
  }
}
@media only screen and (max-width: 968px) {
  .aboutservice-wrapper {
    width: 100%;
    padding: 0 30px;
  }
  .hero-wrapper .hero-section .background-video .hero-content {
    position: absolute;
    top: 60px;
    left: 30px;
    max-width: 531px;
  }
  .development-service-wrapper .development-service-section .service-cards .card .decoration-right {
    display: none;
  }
  .development-service-wrapper .development-service-section .service-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target {
    width: auto;
    display: flex;
    gap: 50px;
    transition: 300ms ease;
  }
  .development-service-wrapper .development-service-section .development-main-content .customer-service {
    width: 100%;
    max-width: 425px;
    font-weight: 400;
    font-size: 24px;
    color: #242424;
  }
  .product-detail-wrapper .product-images .swiper-main .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
  }
  .product-detail-wrapper .product-images .swiper-main .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background: #B6B6B6;
    width: 8px;
    height: 8px;
    transition: 0.3s ease;
    margin: 0;
  }
  .product-detail-wrapper .product-images .swiper-main .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    background: #000;
    border-radius: 100px;
  }
  .purpose-wrapper .purpose-section .lucky-aim {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
  }
  .product-detail-wrapper .plastic-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    gap: 40px;
  }
  .contact-wrapper .contact-section {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 23px;
  }
  .contact-wrapper .contact-section .contact-right {
    width: 100% !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #2C3042;
    border-radius: 4px;
    padding: 50px 40px;
  }
  .contact-wrapper .contact-section .contact-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 40px;
  }
  .product-wrapper .product-section .products-inside {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .blog-details-wrapper .detail-section {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
  .blog-wrapper .blog-section .blogCards .card-inside .card-img img {
    width: 100%;
    height: 291px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
  }
  .blog-wrapper .blog-section .blogCards .card-inside .data {
    width: 90px;
    height: 90px;
    position: absolute;
    bottom: 140px;
    right: 30px;
  }
  .blog-wrapper .blog-section .blogCards .card-inside .blog-content p {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #242424;
  }
  .service-section .service-right .service-details {
    display: flex;
    flex-direction: column;
  }
  .aboutservice-wrapper .service-section .service-right .service-details .serviceImg {
    width: 100% !important;
    height: auto;
    display: flex;
    justify-content: center;
  }
  .product-detail-wrapper .plastic-section .product-images .swiper-bottom {
    width: 100%;
    display: none;
  }
  .services-wrapper .service-section {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-wrapper .plastic-section .product-right {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
  }
  .about-wrapper .about-section {
    width: 100%;
    max-width: 1440px;
    margin: 81px auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 141px;
  }
  .quality-wrapper .quality-section {
    width: 100%;
    max-width: 1440px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
  }
  .about-wrapper .about-section .about-left .about-img-right {
    width: 100%;
    height: 392px;
  }
  .about-wrapper .about-section .about-left .about-img-left {
    width: 100%;
    height: 391px;
  }
  .about-wrapper .about-section .about-right {
    width: 100%;
    max-width: unset;
  }
  .about-wrapper .about-section .about-left {
    width: 100%;
    max-width: unset;
  }
  .purpose-wrapper .purpose-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .purpose-wrapper .purpose-section .mission-img {
    width: 100%;
    max-width: unset;
  }
  .slider-wrapper-development .development-swiper .swiper-wrapper {
    gap: 30px;
  }
  .slider-wrapper-development .development-swiper .swiper-slide {
    width: 230px;
    padding: 10px;
    text-align: center;
  }
}
@media only screen and (max-width: 890px) {
  .footer-wrapper .footer-section .footer-top .contact-with-us {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 35px;
  }
  .footer-wrapper .footer-section .footer-bottom .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .development-wrapper .development-section .development-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .contact-wrapper .contact-section .contact-left .form-content {
    font-weight: 400;
    font-size: 26px;
    line-height: 50px;
    color: #242424;
  }
  .blog-wrapper .blog-section .blogCards .card-inside .data {
    width: 83px;
    height: 76px;
    position: absolute;
    bottom: 173px;
    right: 30px;
  }
}
@media only screen and (max-width: 668px) {
  .header-top {
    display: none !important;
  }
  .product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay {
    overflow-x: auto;
  }
  .product-detail-wrapper .plastic-section .product-images .swiper-button-prev, .product-detail-wrapper .plastic-section .product-images .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .dropdown {
    padding: 0 22px;
    position: relative;
    display: inline-block !important;
  }
  .dropdown .dropdown-toggle {
    width: 100%;
    background-color: #CEA534;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 16px;
  }
  .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 41px;
    left: 20px;
    right: 20px;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 1;
    margin-top: 5px;
    padding: 0;
  }
  .dropdown .dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .dropdown .dropdown-menu a:hover {
    background-color: #f1f1f1;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .contact-wrapper .contact-section .contact-left .form .name-surname {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .breadcrumb .main-content {
    font-weight: 500;
    font-size: 31px;
    line-height: 50px;
    color: #242424;
  }
  .product-wrapper .product-section .products-inside {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .blog-details-wrapper .detail-section .detail-left .details-content .pointed {
    display: flex;
    align-items: center;
    gap: 33px;
  }
  .blog-wrapper .blog-section {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .blog-wrapper .blog-section .blogCards .card-inside .blog-content p {
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #242424;
  }
  .blog-wrapper .blog-section .blogCards .card-inside .card-img img {
    width: 100%;
    height: 243px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
  }
  .aboutservice-wrapper .service-section .serviceAside {
    display: none !important;
  }
  .aboutservice-wrapper .service-section {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
  .development-wrapper .development-section .service-cards .cards .decoration-img {
    margin-top: 30px;
    display: none;
  }
  .development-wrapper .development-section .development-main-content .customer-service {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 26px;
    line-height: 50px;
  }
  .service-cards .cards:last-child .decoration-img {
    display: none !important;
  }
}
@media only screen and (max-width: 568px) {
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards .card-content p {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    color: #8E8D92;
  }
  .development-wrapper .development-section .cards .development-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .development-wrapper .development-section .cards .development-content .newest-content {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #8E8D92;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target .cards .card-content {
    transition: 300ms ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .development-wrapper .development-section .development-main-content .service-for-customer {
    font-weight: 500;
    font-size: 26px;
    line-height: 50px;
  }
  .development-service-wrapper .development-service-section .service-cards .card .card-left {
    width: 100%;
    max-width: 100%;
  }
  .development-service-wrapper .development-service-section .service-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .development-service-wrapper .development-service-section .development-main-content .customer-service {
    width: 100%;
    max-width: 100%;
    font-weight: 400;
    font-size: 21px;
    color: #242424;
  }
  .product-detail-wrapper .plastic-section .product-right .product-order .modal-overlay .form .name-surname {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .about-wrapper .about-section .about-left .about-img-left {
    width: 100%;
    height: 295px;
  }
  .about-wrapper .about-section .about-left .about-img-right {
    width: 100%;
    height: 292px;
  }
  .contact-wrapper .contact-section .contact-right {
    width: 100% !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #2C3042;
    border-radius: 4px;
    padding: 50px 15px;
  }
  .contact-wrapper .contact-section .contact-right .form-and-social .social-media {
    display: none !important;
  }
  .blog-details-wrapper .detail-section .detail-left .data-and-view {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 11px;
  }
  .blog-details-wrapper .detail-section .detail-left .details-content .pointed p {
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    color: #535255;
  }
  .blog-details-wrapper .detail-section .detail-left .details-content .pointed img {
    margin-top: 40px;
    display: none;
  }
  .services-wrapper .service-section {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .development-wrapper .development-section .development-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .purpose-wrapper .purpose-section .mission-content .aim-content .purpose-content {
    font-weight: 400;
    font-size: 26px;
    line-height: 50px;
  }
  .purpose-wrapper .purpose-section .mission-content .aim-content strong {
    font-weight: 500;
    font-size: 26px;
    line-height: 50px;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target .border-number {
    display: none !important;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target .number {
    display: none !important;
  }
  .purpose-wrapper .purpose-section .lucky-aim .main-targets .target {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    transition: 300ms ease;
  }
}
@media only screen and (max-width: 468px) {
  .development-wrapper .development-section .service-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
  }
  .product-detail-wrapper .plastic-section .product-right .product-order .download {
    font-size: 13px;
  }
  .product-detail-wrapper .plastic-section .product-right .product-order .order-btn {
    font-size: 13px;
  }
  .product-detail-wrapper .plastic-section .product-images .swiper-main .swiper-slide {
    width: 100%;
    height: 339px;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .submit-button {
    background-color: #CEA534;
    padding: 10px 11px;
    color: #fff;
    transition: 300ms ease;
    border: none;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
  }
  .blog-details-wrapper .detail-section .detail-right .aside-top .aside-bar .related-posts {
    display: flex;
    flex-direction: column;
    gap: 17px;
    text-decoration: none;
    position: relative;
  }
}/*# sourceMappingURL=style.css.map */