* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}

body {
  background: #f9f7f1;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

.title {
  font-size: 64px;
  font-weight: 700;
  line-height: 78px;
  font-family: "Oswald", sans-serif;
}

.mt-48 {
  margin-top: 48px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 20px;
  margin-right: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 19px 92px;
}
header .header-left {
  display: flex;
  align-items: center;
  gap: 23px;
}
header .header-left a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #032970;
}
header .header-left a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}
header .header-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .header-socials .social-item {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #032970;
  padding: 8px;
}
header .header-socials .social-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

nav {
  margin: 4px 20px 0;
  padding: 0 92px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
nav .nav-logos{
    display:flex;
    align-items:center;
    gap:10px;
}
nav .nav-logos .nav-logo1 {
  width: 180px;
}
nav .nav-logos .nav-logo1 img {
  width: 100%;
  height: 100%;
}
nav .nav-logos .nav-logo2 {
  width: 60px;
}
nav .nav-logos .nav-logo2 img {
  width: 100%;
  height: 100%;
}
nav .navbar_menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav .navbar_menu .navbar_link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}
nav .navbar_menu .navbar_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: #fbd951;
  transition: 0.4s;
}
nav .navbar_menu .navbar_link:hover {
  font-weight: 500;
  color: #032970;
}
nav .navbar_menu .navbar_link:hover::after {
  width: 100%;
}
nav .navbar_menu .active_link {
  font-weight: 500;
  color: #032970;
}
nav .navbar_menu .active_link::after {
  width: 100%;
}
nav .navbar_menu .navbar_sub_link {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #000;
}
nav .navbar_menu .nav_drop_menu {
  position: relative;
  padding: 38px 0;
}
nav .navbar_menu .nav_drop_menu .nav_sub_menu {
  position: absolute;
  width: -moz-max-content;
  min-width:150px;
  width: max-content;
  left: 0;
  top: 110px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 15px;
  background: #e4eeff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  border-radius: 0 0 12px 12px;
}
nav .navbar_menu .nav_drop_menu:hover .navbar_link {
  font-weight: 500;
  color: #032970;
}
nav .navbar_menu .nav_drop_menu:hover .navbar_link::after {
  width: 100%;
}
nav .navbar_menu .nav_drop_menu:hover .nav_sub_menu {
  top: 100px;
  opacity: 1;
  visibility: visible;
}
nav .language {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav .language .lang-item {
  text-transform: uppercase;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
  transition: 0.4s;
}
nav .language .lang-item:hover {
  color: #fff;
  background: #032970;
  border: 1px solid #032970;
}
nav .language .current_lang {
  display: none;
}
nav .hamburger {
  border-radius: 50px;
  padding: 8px;
  background: #fff;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile_navbar_area {
  position: fixed;
  z-index: 999;
  top: -200%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #f9f7f1;
  transition: 0.6s;
}
.mobile_navbar_area .mobile_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .mobile-lang {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .mobile-lang .mobile-lang-item {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #000;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu {
  background: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: auto;
}
.mobile_navbar_area .mobile_menu .mobile_links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main i {
  font-size: 16px;
  line-height: 28px;
  color: #000;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main i::before {
  font-weight: 700 !important;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu {
  width: -moz-max-content;
  width: max-content;
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  padding-left: 20px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_sub_link {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
}
.mobile_navbar_area .mobile_menu .mobile_links .active_mobile_link {
  font-weight: 600;
}

.home-hero {
  margin: 20px 20px 0;
}
.home-hero .hero_slide {
  width: 100%;
  padding-bottom: 30px;
}
.home-hero .hero_slide .hero-item {
  width: 100%;
  position: relative;
  border-radius: 12px;
}
.home-hero .hero_slide .hero-item img {
  width: 100%;
  height: 100%;
  filter: brightness(45%);
  border-radius: 12px;
}
.home-hero .hero_slide .hero-item .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 932px;
}
.home-hero .hero_slide .hero-item .hero-content .title {
  color: #fff;
  text-align: center;
}
.home-hero .hero_slide .hero-item .hero-content p {
  margin-top: 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}
.home-hero .hero_slide .hero-item .hero-content .hero-link {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
  padding: 6px;
  border-radius: 12px;
  border: 2px solid #fbd951;
  transition: 0.8s;
}
.home-hero .hero_slide .hero-item .hero-content .hero-link span {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000;
  background: #fbd951;
  position: relative;
  transition: 0.4s;
}
.home-hero .hero_slide .hero-item .hero-content .hero-link:hover {
  background: #fbd951;
}
.home-hero .hero_slide .hero-item .hero-content .hero-link:hover span {
  font-size: 18px;
}
.home-hero .hero_slide .swiper-slide {
  opacity: 0 !important;
}
.home-hero .hero_slide .swiper-slide-active {
  opacity: 1 !important;
}
.home-hero .hero_slide .swiper-pagination {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  bottom: 0;
}
.home-hero .hero_slide .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  opacity: 1;
  width: 150px;
  height: 6px;
  background: #d9d9d9;
  border-radius: 0;
}
.home-hero .hero_slide .swiper-pagination .swiper-pagination-bullet-active {
  background: #fbd951;
}

.home-about {
  margin: 112px 112px 0;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
}
.home-about .home-about-content {
  padding: 60px 40px;
  border-radius: 12px;
  background: #fff;
}
.home-about .home-about-content .title {
  color: #032970;
}
.home-about .home-about-content .texts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.home-about .home-about-content .about-link {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 12px;
  border: 2px solid #fbd951;
  transition: 0.4s;
}
.home-about .home-about-content .about-link span {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000;
  background: #fbd951;
  position: relative;
  transition: 0.4s;
}
.home-about .home-about-content .about-link:hover {
  background: #fbd951;
}
.home-about .home-about-content .about-link:hover span {
  font-size: 18px;
}
.home-about .home-about-img {
  border-radius: 12px;
}
.home-about .home-about-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.home-category {
  margin: 112px 20px 0;
  display: flex;
  gap: 48px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}
.home-category .home-category-content {
  width: 55%;
  padding-left: 72px;
}
.home-category .home-category-content .title {
  color: #032970;
}
.home-category .home-category-content .category-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
  height: 448px;
  overflow-y: auto;
  direction: rtl;
}
.home-category .home-category-content .category-list .category-list-box {
  width: 100%;
  padding-left: 20px;
}
.home-category .home-category-content .category-list .category-list-box .category-list-item {
  padding: 18px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #f9f7f1;
  gap: 10px;
  width: 100%;
  border: 1px solid transparent;
  transition: 0.4s;
}
.home-category .home-category-content .category-list .category-list-box .category-list-item .category-list-left {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
}
.home-category
  .home-category-content
  .category-list
  .category-list-box
  .category-list-item
  .category-list-left
  .category_count {
  transform: rotate(22.5deg);
}
.home-category
  .home-category-content
  .category-list
  .category-list-box
  .category-list-item
  .category-list-left
  .category_count
  .octagonWrap {
  width: 44px;
  height: 44px;
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-category
  .home-category-content
  .category-list
  .category-list-box
  .category-list-item
  .category-list-left
  .category_count
  .octagonWrap
  .octagon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transform: rotate(45deg);
  background: transparent;
  border: 1px solid #032970;
}
.home-category
  .home-category-content
  .category-list
  .category-list-box
  .category-list-item
  .category-list-left
  .category_count
  .octagonWrap
  .octagon::before {
  position: absolute;
  /* There needs to be a negative value here to cancel
                      * out the width of the border. It's currently -3px,
                      * but if the border were 5px, then it'd be -5px.
                      */
  top: -0.6px;
  right: -0.6px;
  bottom: -0.6px;
  left: -0.6px;
  transform: rotate(45deg);
  content: "";
  border: 1px solid #032970;
}
.home-category
  .home-category-content
  .category-list
  .category-list-box
  .category-list-item
  .category-list-left
  .category_count
  .octagonWrap
  span {
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  color: #032970;
  transform: rotate(-22.5deg);
}
.home-category
  .home-category-content
  .category-list
  .category-list-box
  .category-list-item
  .category-list-left
  .category_name {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
  text-align: end;
}
.home-category .home-category-content .category-list .category-list-box .category-list-item .direction {
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fbd951;
  transition: 0.4s;
}
.home-category .home-category-content .category-list .category-list-box .category-list-item:hover {
  border: 1px solid #032970;
}
.home-category .home-category-content .category-list .category-list-box .category-list-item:hover .direction {
  background: #032970;
}
.home-category .home-category-content .category-list .category-list-box .category-list-item:hover .direction svg path {
  transition: 0.4s;
  stroke: #fff;
}
.home-category .home-category-content .category-list::-webkit-scrollbar {
  width: 6px;
}
.home-category .home-category-content .category-list::-webkit-scrollbar-track {
  border-radius: 12px;
  background: #f9f7f1;
}
.home-category .home-category-content .category-list::-webkit-scrollbar-thumb {
  background: #032970;
  border-radius: 12px;
}
.home-category .home-category-img {
  width: 45%;
  border-radius: 12px;
}
.home-category .home-category-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.home-services {
  margin: 20px 20px 0;
  padding: 112px 92px;
  border-radius: 12px;
  background: #e4eeff;
  position: relative;
}
.home-services .title {
  color: #032970;
}
.home-services .short_desc {
  margin-top: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
  width: 500px;
}
.home-services .service-slide {
  position: initial;
  margin-top: 60px;
}
.home-services .service-slide .service-box {
  width: 392px;
}
.home-services .service-slide .swiper-button-next,
.home-services .service-slide .swiper-button-prev {
  background: #032970;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 240px;
}
.home-services .service-slide .swiper-button-next::after,
.home-services .service-slide .swiper-button-prev::after {
  display: none;
}
.home-services .service-slide .swiper-button-next {
  right: 92px;
}
.home-services .service-slide .swiper-button-prev {
  right: 156px;
  left: auto;
}

.service-box {
  padding: 16px;
  background: #f9f7f1;
  border-radius: 12px;
  transition: 0.4s;
}
.service-box .service-box-img {
  width: 100%;
  border-radius: 12px;
}
.service-box .service-box-img img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}
.service-box .line {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 1px;
  background: #fbd951;
}
.service-box .service-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #000;
}
.service-box .service-box-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.service-box .service-box-bottom span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #032970;
}
.service-box .service-box-bottom .direction {
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fbd951;
}
.service-box:hover {
  background: #fff;
}
.service-box:hover .service-box-bottom .direction {
  transition: 0.4s;
  background: #032970;
}
.service-box:hover .service-box-bottom .direction svg path {
  transition: 0.4s;
  stroke: #fff;
}

.home-sertifikat {
  margin: 112px 112px 0;
  display: flex;
  align-items: start;
  gap: 100px;
}
.home-sertifikat .home-sertifikat-left .title {
  color: #032970;
}
.home-sertifikat .home-sertifikat-left .short-desc {
  margin-top: 28px;
  display: block;
  width: 392px;
  min-width: 392px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.home-sertifikat .sertifikat-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
  max-height: 448px;
  overflow-y: auto;
}
.home-sertifikat .sertifikat-list::-webkit-scrollbar {
  width: 6px;
}
.home-sertifikat .sertifikat-list::-webkit-scrollbar-track {
  border-radius: 12px;
  background: #f9f7f1;
}
.home-sertifikat .sertifikat-list::-webkit-scrollbar-thumb {
  background: #032970;
  border-radius: 12px;
}
.home-sertifikat .sertifikat-list .sertifikat-list-box {
  width: 100%;
  padding-right: 20px;
}
.home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #fff;
  gap: 10px;
  width: 100%;
  border: 1px solid transparent;
  transition: 0.4s;
}
.home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
}
.home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fbd951;
  transition: 0.4s;
}
.home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item:hover {
  border: 1px solid #032970;
}
.home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item:hover .direction {
  background: #032970;
}
.home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item:hover .direction svg path {
  transition: 0.4s;
  stroke: #fff;
}

.cataloq-page{
    margin-top: 40px;
    padding-left: 112px;
    padding-right: 112px;
}
.cataloq-page .title {
  color: #032970;
}
.cataloq-page .cataloq-list{
    width: 100%;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.cataloq-page .cataloq-list .cataloq-box{
    width:100%;
    background:#fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding:20px;
}
.cataloq-page .cataloq-list .cataloq-box .cataloq-box-img{
    width:100%;
    border-radius:12px;
}
.cataloq-page .cataloq-list .cataloq-box .cataloq-box-img img{
    width:100%;
    height:100%;
    border-radius:12px;
}
.cataloq-page .cataloq-list .cataloq-box .cataloq-name{
    font-size:16px;
    line-height:24px;
    color:#000;
    font-weight:500;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.sertifikat-page {
  margin: 112px 112px 0;
  display: flex;
  align-items: start;
  gap: 100px;
}
.sertifikat-page .home-sertifikat-left .title {
  color: #032970;
}
.sertifikat-page .home-sertifikat-left .short-desc {
  margin-top: 28px;
  display: block;
  width: 392px;
  min-width: 392px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.sertifikat-page .sertifikat-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
  max-height: 900px;
  overflow-y: auto;
}
.sertifikat-page .sertifikat-list::-webkit-scrollbar {
  width: 6px;
}
.sertifikat-page .sertifikat-list::-webkit-scrollbar-track {
  border-radius: 12px;
  background: #f9f7f1;
}
.sertifikat-page .sertifikat-list::-webkit-scrollbar-thumb {
  background: #032970;
  border-radius: 12px;
}
.sertifikat-page .sertifikat-list .sertifikat-list-box {
  width: 100%;
  padding-right: 20px;
}
.sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #fff;
  gap: 10px;
  width: 100%;
  border: 1px solid transparent;
  transition: 0.4s;
}
.sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
}
.sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fbd951;
  transition: 0.4s;
}
.sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item:hover {
  border: 1px solid #032970;
}
.sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item:hover .direction {
  background: #032970;
}
.sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item:hover .direction svg path {
  transition: 0.4s;
  stroke: #fff;
}

.home-news {
  margin: 112px 20px 0;
  padding: 100px 92px;
  border-radius: 12px;
  background: #fff;
}
.home-news .home-news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-news .home-news-top .title {
  color: #032970;
}
.home-news .home-news-top .all_news_link {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 12px;
  border: 2px solid #fbd951;
  transition: 0.8s;
}
.home-news .home-news-top .all_news_link span {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000;
  background: #fbd951;
  position: relative;
  transition: 0.4s;
}
.home-news .home-news-top .all_news_link:hover {
  background: #fbd951;
}
.home-news .home-news-top .all_news_link:hover span {
  font-size: 18px;
}
.home-news .news-slide {
  margin-top: 60px;
}
.home-news .news-slide .news-box {
  width: 392px;
}

.news-box {
  padding: 16px;
  border-radius: 12px;
  background: #f9f7f1;
}
.news-box .box-body .news-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #000;
}
.news-box .box-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.news-box .box-body .body-bottom {
  margin-top: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-box .box-body .body-bottom .news-time {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.news-box .box-body .body-bottom .direction {
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fbd951;
  transition: 0.4s;
}
.news-box .news-box-img {
  margin-top: 28px;
  width: 100%;
  border-radius: 12px;
}
.news-box .news-box-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.news-box:hover .box-body .body-bottom .direction {
  background: #032970;
}
.news-box:hover .box-body .body-bottom .direction svg path {
  transition: 0.4s;
  stroke: #fff;
}

.contact {
  margin: 290px 112px 0;
  position: relative;
}
.contact .contact-box {
  width: 100%;
  padding: 40px 40px 84px;
  border-radius: 12px;
  background: #fff;
}
.contact .contact-box .title {
  color: #032970;
}
.contact .contact-box .contact-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.contact .contact-box .contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}
.contact .contact-box .contact-links a .icon {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #032970;
}
.contact .contact-box .contact-links a .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.contact .contact-form {
  bottom: 40px;
  right: 40px;
  width: 400px;
  position: absolute;
  padding: 28px;
  border-radius: 12px;
  background: #e4eeff;
}
.contact .contact-form .form-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  color: #032970;
}
.contact .contact-form form {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 12px;
  margin-top: 28px;
}
.contact .contact-form form input {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact .contact-form form input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
}
.contact .contact-form form input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
}
.contact .contact-form form textarea {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  height: 100px;
  resize: none;
}
.contact .contact-form form textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
}
.contact .contact-form form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
}
.contact .contact-form form .form-phone {
  display: flex;
  align-items: center;
  width: 100%;
}
.contact .contact-form form .form-phone input {
  border-radius: 0 12px 12px 0;
}
.contact .contact-form form .form-phone .nice-select {
  border: none;
  height: auto;
  line-height: 24px;
  padding: 17.75px 18px;
  border-radius: 12px 0 0 12px;
}
.contact .contact-form form .form-phone .nice-select span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  height: auto;
}
.contact .contact-form form .form-phone .nice-select::after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  height: 8px;
  margin-top: -7px;
  right: 3px;
  width: 8px;
}
.contact .contact-form form .send-form {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  padding: 6px;
  border: 2px solid #fbd951;
  background: transparent;
  transition: 0.8s;
}
.contact .contact-form form .send-form span {
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  background: #fbd951;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000;
}
.contact .contact-form form .send-form:hover {
  background: #fbd951;
  border: 2px solid transparent;
}

footer {
  margin: 112px 60px 20px;
  border-radius: 12px;
  padding: 60px 52px 32px;
  background: #e4eeff;
}
footer .footer-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 40px;
}
footer .footer-main .subscribe {
  margin-top: auto;
  margin-bottom: auto !important;
  width: 392px;
}
footer .footer-main .subscribe h3 {
  width: 320px;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  color: #032970;
}
footer .footer-main .subscribe .subscribe-area {
  margin-top: 28px;
  background: #f9f7f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 8px;
}
footer .footer-main .subscribe .subscribe-area input {
  padding: 0 8px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
  background: transparent;
}
footer .footer-main .subscribe .subscribe-area input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
footer .footer-main .subscribe .subscribe-area input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
footer .footer-main .subscribe .subscribe-area .subscribe_btn {
  min-width: 132px;
  width: -moz-max-content;
  width: max-content;
  padding: 14px 32px;
  border-radius: 12px;
  text-align: center;
  background: #fbd951;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
footer .footer-main .footer-categoryies h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: #000;
}
footer .footer-main .footer-categoryies .category-lists {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
footer .footer-main .footer-categoryies .category-lists a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
  max-width:200px;
}
footer .footer-main .footer-links h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: #000;
}
footer .footer-main .footer-links .links-lists {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
footer .footer-main .footer-links .links-lists a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
}
footer .footer-main .footer-contact h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: #000;
}
footer .footer-main .footer-contact .footer-contact-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  margin-top: 20px;
}
footer .footer-main .footer-contact .footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #000;
  max-width:200px;
}
footer .footer-main .footer-contact .footer-contact-links a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}
footer .footer-main .footers-socials {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
footer .footer-main .footers-socials .social-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fbd951;
  padding: 9px;
}
footer .footer-main .footers-socials .social-item img {
  width: 100%;
  height: 100%;
}
footer .footer-bottom {
  margin-top: 90px;
  padding-top: 32px;
  width: 100%;
  border-top: 1px solid #032970;
}
footer .footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #000;
}
footer .footer-bottom p a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #032970;
}

.map {
  margin: 20px 20px 0;
  height: 800px;
  border-radius: 12px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about-banner {
  margin: 20px 20px 0;
  position: relative;
  border-radius: 12px;
}
.about-banner img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  filter: brightness(60%);
}
.about-banner .title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 651px;
  z-index: 2;
  text-align: center;
}

.about-content {
  margin: 20px 20px 0;
  padding: 40px 92px 100px;
  border-radius: 12px;
  background: #e4eeff;
}
.about-content .statistics {
  background: #fff;
  border-radius: 12px;
  padding: 28px 56px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 30px;
  flex-wrap: wrap;
}
.about-content .statistics .statistic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about-content .statistics .statistic-item .title {
  text-align: center;
  color: #fbd951;
}
.about-content .statistics .statistic-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #032970;
}
.about-content .about-title {
  margin-top: 80px;
  color: #032970;
}
.about-content .about-texts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.about-content .about-texts p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}

.faq {
  margin-top: 112px;
}
.faq .title {
  text-align: center;
  color: #032970;
}
.faq .faq-area {
  margin-top: 60px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.faq .faq-area .accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .faq-area .accordion .accordion__item .accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: none;
  outline: none;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
}
.faq .faq-area .accordion .accordion__item .accordion__btn .accordion__caption {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq .faq-area .accordion .accordion__item .accordion__btn .accordion__icon {
  height: 24px;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
.faq .faq-area .accordion .accordion__item .accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}
.faq .faq-area .accordion .accordion__item .accordion__content p {
  padding: 1rem 1.8rem;
}
.faq .faq-area .accordion .accordion__item--active .accordion__btn .accordion__icon {
  transform: rotate(180deg);
}
.faq .faq-area .accordion .accordion__item--active .accordion__content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}
.faq .faq-area .allFaqBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  border: 1px solid #b0d354;
  padding: 12px 28px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: 0.6s;
}
.faq .faq-area .allFaqBtn:hover {
  background: #ccf16b;
}

.news-page {
  margin: 20px 20px 0;
  padding: 60px 92px 100px;
  border-radius: 12px;
  background: #fff;
}
.news-page .title {
  color: #032970;
}
.news-page .news-boxes {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.more_box_link {
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #032970;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}
.more_box_link span {
  padding: 16px;
  border-radius: 12px;
  background: #e4eeff;
}

.news-detail {
  margin: 40px 112px 0;
}
.news-detail .title {
  color: #032970;
}
.news-detail .news-detail-banner {
  margin-top: 40px;
  border-radius: 12px;
  width: 100%;
}
.news-detail .news-detail-banner img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.news-detail .news-date {
  display: block;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.news-detail .news-detail-content {
  margin-top: 20px;
  display: flex;
  align-items: start;
  gap: 60px;
}
.news-detail .news-detail-content .news-detail-texts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.news-detail .news-detail-content .news-detail-texts p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.news-detail .news-detail-content .share-news {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  position: relative;
}
.news-detail .news-detail-content .share-news .share-with {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fbd951;
  padding: 9px;
}
.news-detail .news-detail-content .share-news .share-with img {
  width: 100%;
  height: 100%;
}
.news-detail .news-detail-content .share-news .copy_link {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fbd951;
}
.news-detail .news-detail-content .share-news .copied_txt {
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  line-height: 18px;
  padding: 4px 10px;
  border-radius: 12px;
  color: #000;
  font-weight: 500;
  background: #fbd951;
  position: absolute;
  bottom: -35px;
  right: 0;
  z-index: 5;
  display: none;
}

.other-news {
  margin: 112px 20px 0;
  padding: 100px 92px;
  border-radius: 12px;
  background: #fff;
  position: relative;
}
.other-news .title {
  color: #032970;
}
.other-news .other-news-slide {
  margin-top: 60px;
  position: initial;
}
.other-news .other-news-slide .swiper-button-next,
.other-news .other-news-slide .swiper-button-prev {
  background: #032970;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 140px;
}
.other-news .other-news-slide .swiper-button-next::after,
.other-news .other-news-slide .swiper-button-prev::after {
  display: none;
}
.other-news .other-news-slide .swiper-button-next {
  right: 92px;
}
.other-news .other-news-slide .swiper-button-prev {
  right: 156px;
  left: auto;
}
.other-news .other-news-slide .news-box {
  width: 392px;
}

.product-page {
  margin: 20px 20px 0;
  display: flex;
  align-items: start;
  gap: 20px;
}
.product-page .product-filter {
  position: relative;
  min-width: 320px;
  width:320px;
  border-radius: 12px;
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}
.product-page .product-filter .filter-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d9d9d9;
}
.product-page .product-filter .filter-box .filter-title {
  font-family: "Oswald";
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  color: #032970;
}
.product-page .product-filter .filter-box .filter-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.product-page .product-filter .filter-box .filter-list .filter-item {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: #f7f7f7;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
  border: 1px solid transparent;
  transition: 0.4s;
}
.product-page .product-filter .filter-box .filter-list .filter-item:hover {
  border-color: #032970;
}
.product-page .product-filter .filter-box .filter-list .active_filter_item {
  background: #e4eeff;
}
.product-page .product-filter .last_view_products {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}
.product-page .product-filter .last_view_products .filter-title {
  font-family: "Oswald";
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  color: #032970;
}
.product-page .product-filter .last_view_products .last_view_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.product-page .product-filter .last_view_products .last_view_list .last_view_product {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-img {
  border: 1px solid #fbd951;
  border-radius: 12px;
  width: 80px;
  padding:10px;
  height: 80px;
}
.product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-body .pro-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: #000;
}
.product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-body .pro-code {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  color: #000;
}
.product-page .product-filter .apply_filter {
  margin-top: 12px;
  border: 2px solid #fbd951;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: 100%;
  border-radius: 12px;
  padding: 6px;
  transition: 0.4s;
  display: none;
}
.product-page .product-filter .apply_filter span {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  background: #fbd951;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.product-page .product-filter .apply_filter:hover {
  background: #fbd951;
  border-color: transparent;
}
.product-page .product-filter .close_filter_btn {
  display: none;
  background: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
}
.product-page .product-page-main {
  padding: 40px;
  border-radius: 12px;
  background: #fff;
  width: 100%;
}
.product-page .product-page-main .product-page-top {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.product-page .product-page-main .product-page-top .category_name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.product-page .product-page-main .showFilterBtn {
  margin-top: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  background: #f9f7f1;
  border-radius: 12px;
  justify-content: center;
  padding: 10px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.product-page .product-page-main .product-boxes {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-box {
  padding: 16px 16px 20px;
  border-radius: 12px;
  background: #f9f7f1;
}
.product-box .product-box-img {
    height:320px;
  width: 100%;
  border-radius: 12px;
}
.product-box .product-box-img img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-radius: 12px;
}
.product-box .product-box-body {
  margin-top: 20px;
    display: flex;
  align-items: center;
    justify-content:space-between;
    gap:15px;
}
.product-box .product-box-body .product-name {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #000;
}
.product-box .product-box-body .product-code {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}
.product-box .product-box-body .box-body-bottom {
  display: flex;
  align-items: center;
}
.product-box .product-box-body .box-body-bottom .product-price {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #000;
}
.product-box .product-box-body .box-body-bottom .direction {
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fbd951;
  transition: 0.4s;
}
.product-box:hover .product-box-body .box-body-bottom .direction {
  background: #032970;
}
.product-box:hover .product-box-body .box-body-bottom .direction svg path {
  transition: 0.4s;
  stroke: #fff;
}

.product-detail-top {
  margin: 20px 20px 0;
  padding: 40px 92px;
  background: #fff;
}
.product-detail-top .detail-left{
    min-height:535px;
}
.product-detail-top .detail-left .title {
  color: #032970;
  margin-bottom: 20px !important;
}
.product-detail-top .detail-left .product-code {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  color: #032970;
}
.product-detail-top .detail-left p {

  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
} 


.product-detail-top .detail-left .product-price {
  display: block;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  color: #032970;
}
.product-detail-top .detail-left .apply_link {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 12px;
  border: 2px solid #fbd951;
  width: -moz-max-content;
  width: max-content;
  background: transparent;
  transition: 0.4s;
}
.product-detail-top .detail-left .apply_link span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000;
  padding: 16px 33px 16px 40px;
  border-radius: 12px;
  background: #fbd951;
}
.product-detail-top .detail-left .apply_link:hover {
  background: #fbd951;
  border: 2px solid transparent;
}
.product-detail-top .detail-images {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  min-width: 543px;
  width: 543px;
  max-height: 535px;
  overflow-y: auto;
  float:right;
    margin-left: 30px;
}
.product-detail-top .detail-images::-webkit-scrollbar {
  width: 6px;
}
.product-detail-top .detail-images::-webkit-scrollbar-track {
  border-radius: 12px;
  background: #f5f5f5;
}
.product-detail-top .detail-images::-webkit-scrollbar-thumb {
  background: #fbd951;
  border-radius: 12px;
}
.product-detail-top .detail-images .image-item {
  padding-right: 12px;
  width: 100%;
}
.product-detail-top .detail-images .image-item .image {
  width: 100%;
  border-radius: 12px;
  background: #e4eeff;
  padding: 20px;
}
.product-detail-top .detail-images .image-item .image img {
  position: relative;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.product-detail-area {
  margin: 20px 20px 0;
  padding: 40px 92px;
  border-radius: 12px;
  background: #fff;
}
.product-detail-area .title {
  color: #032970;
}
.product-detail-area .product-detail-list {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}
.product-detail-area .product-detail-list .detail-list-item {
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 26px 20px;
  background: #f9f7f1;
}
.product-detail-area .product-detail-list .detail-list-item .detail-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
}
.product-detail-area .product-detail-list .detail-list-item ul {
  display: none;
  padding-left: 20px;
}
.product-detail-area .product-detail-list .detail-list-item ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
}

.other-products {
  margin: 20px 20px 0;
  padding: 40px 92px;
  border-radius: 12px;
  background: #fff;
  position: relative;
}
.other-products .title {
  color: #032970;
}
.other-products .other_products_slide {
  margin-top: 60px;
  position: initial;
}
.other-products .other_products_slide .swiper-button-next,
.other-products .other_products_slide .swiper-button-prev {
  background: #032970;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 80px;
}
.other-products .other_products_slide .swiper-button-next::after,
.other-products .other_products_slide .swiper-button-prev::after {
  display: none;
}
.other-products .other_products_slide .swiper-button-next {
  right: 92px;
}
.other-products .other_products_slide .swiper-button-prev {
  right: 156px;
  left: auto;
}
.other-products .other_products_slide .product-box {
  width: 392px;
}

.service-detail {
  margin: 20px 20px 0;
  border-radius: 12px;
  background: #fff;
  height: 100vh;
}
.service-detail .service-detail-slide {
  height: 100%;
  width: 100%;
  border-radius: 12px;
}
.service-detail .service-detail-slide .service-item {
  display: flex;
  align-items: center;
  gap: 60px;
  border-radius: 12px;
}
.service-detail .service-detail-slide .service-item .service-content {
  width: 50%;
  padding-left: 92px;
}
.service-detail .service-detail-slide .service-item .service-content .title {
  color: #032970;
}
.service-detail .service-detail-slide .service-item .service-content .service-text {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.service-detail .service-detail-slide .service-item .service-content .service-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.service-detail .service-detail-slide .service-item .service-detail-img {
  width: 50%;
  height: 100%;
  border-radius: 0 12px 12px 0;
}
.service-detail .service-detail-slide .service-item .service-detail-img img {
  width: 100%;
  height: 100%;
  border-radius: 0 12px 12px 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-detail .service-detail-slide .swiper-pagination {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  height: 240px;
  width: 6px;
  border-radius: 12px;
  background: #f9f7f1;
}
.service-detail .service-detail-slide .swiper-pagination .swiper-pagination-progressbar-fill {
  border-radius: 12px;
  background: rgb(251, 217, 81);
}
.service-detail .service-detail-slide .swiper-button-next::after,
.service-detail .service-detail-slide .swiper-button-prev::after {
  display: none;
}
.service-detail .service-detail-slide .swiper-button-next {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-44%);
  padding: 14px;
  width: 56px;
  height: 56px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #032970;
  border-radius: 0 0 0 12px;
}
.service-detail .service-detail-slide .swiper-button-prev {
  position: fixed;
  top: auto;
  bottom: 56px;
  left: 50%;
  transform: translateX(-44%);
  padding: 14px;
  width: 56px;
  height: 56px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f7f1;
  border-radius: 12px 0 0 0;
}

.brands-container {
  margin-top: 40px;
  padding-left: 112px;
  padding-right: 112px;
}
.brands-container .title{
    color: #032970;
}
.brands-container .cards-brands {
  width: 100%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brands-container .cards-brands .brand-item {
    padding: 40px 50px 24px;
  background: rgb(255, 255, 255);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.brands-container .cards-brands .brand-item .img-wrap {
  width: 60%;
    margin-top:auto;
}
.brands-container .cards-brands .brand-item .img-wrap img {
    
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brands-container .cards-brands .brand-item .redirect {
    margin-top:auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
.brands-container .cards-brands .brand-item .redirect span {
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 16px;
}
.brands-container .cards-brands .brand-item .redirect a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: rgb(3, 41, 112);
  font-weight: 400;
  font-size: 14px;
}
.brands-container .button-allthem {
  margin-top: 60px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-container .button-allthem .button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.brands-container .button-allthem .button a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgb(228, 238, 255);
}
.brands-container .button-allthem .button a img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.brands-container .button-allthem .button span {
  color: rgb(3, 41, 112);
  font-weight: 500;
  font-size: 16px;
}
.customer-page {
  margin-top: 60px;
  padding: 0 112px;
}
.customer-page .title {
  color: #032970;
}
.customer-page .customer-items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.customer-page .customer-items .customer-item {
  display: flex;
  align-items: center;
  flex-direction:column;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}
.customer-page .customer-items .customer-item img {
  width: 60%;
  height: auto;
      margin-top: auto;
     object-fit: contain;
}
.customer-page .customer-items .customer-item p {
    margin-top: auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}

.brand-content {
  margin: 20px 20px 0;
  padding: 40px 92px 100px;
  border-radius: 12px;
  background: #E4EEFF;
}
.brand-content .title{
    color: #032970;
}
.brand-content .brand-texts {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.brand-content .brand-texts p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}

.brand-videos {
  margin: 48px 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-videos .brand-video-item {
  height: 250px;
  border-radius: 16px;
}
.brand-videos .brand-video-item iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.brand_all_pro {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 48px auto 0;
  padding: 14px 32px;
  border-radius: 12px;
  text-align: center;
  background: rgb(251, 217, 81);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgb(0, 0, 0);
}
@media only screen and (min-width: 1650px){
    .product-box .product-box-img {
        height:360px;
    }
}
@media only screen and (min-width: 1750px) {
  .news-page .news-boxes {
    grid-template-columns: repeat(4, 1fr);
  }
  .customer-page .customer-items {
    grid-template-columns: repeat(4, 1fr);
  }
  .brands-container .cards-brands{
        grid-template-columns: repeat(5, 1fr);
    }
    footer .footer-main .footer-categoryies .category-lists a{
        max-width:100%;
    }
    footer .footer-main .footer-contact .footer-contact-links a{
        max-width:100%;
    }
    .brand-videos .brand-video-item {
    height: 300px;
  }
    .product-box .product-box-img {
        height:410px;
    }
}
@media only screen and (min-width: 1850px){
    .product-box .product-box-img {
        height:460px;
    }
}
@media only screen and (max-width: 1250px) {
  .title {
    font-size: 48px;
    line-height: 56px;
  }
  .mt-48 {
    margin-top: 38px;
  }
  header {
    padding: 19px 50px;
  }
  header .header-left {
    gap: 15px;
  }
  header .header-left a {
    gap: 8px;
    font-size: 13px;
    line-height: 20px;
  }
  header .header-left a img {
    width: 18px;
    height: 18px;
  }
  header .header-socials {
    gap: 15px;
  }
  header .header-socials .social-item {
    width: 26px;
    height: 26px;
    padding: 6px;
  }
  nav {
    padding: 0 50px;
    border-radius: 12px;
  }
    nav .nav-logos .nav-logo1 {
      width: 160px;
    }
    nav .nav-logos .nav-logo2 {
      width: 55px;
    }
  nav .navbar_menu {
    gap: 18px;
  }
  nav .navbar_menu .navbar_link {
    font-size: 15px;
    line-height: 24px;
  }
  nav .navbar_menu .language {
    gap: 10px;
  }
  nav .navbar_menu .language .lang-item {
    width: 36px;
    height: 36px;
  }
  .home-hero .hero_slide .hero-item .hero-content {
    width: 732px;
  }
  .home-hero .hero_slide .hero-item .hero-content p {
    margin-top: 20px;
  }
  .home-hero .hero_slide .swiper-pagination .swiper-pagination-bullet {
    width: 100px;
  }
  .home-about {
    margin: 80px 55px 0;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 20px;
  }
  .home-about .home-about-content {
    padding: 40px 20px;
  }
  .home-about .home-about-content .texts {
    margin-top: 20px;
    gap: 10px;
  }
  .home-category {
    margin: 80px 20px 0;
    display: flex;
    gap: 35px;
    padding: 20px;
  }
  .home-category .home-category-content {
    width: 60%;
    padding-left: 30px;
  }
  .home-category .home-category-content .category-list {
    margin-top: 40px;
    gap: 10px;
    height: 400px;
  }
  .home-category .home-category-content .category-list .category-list-box {
    padding-left: 15px;
  }
  .home-category .home-category-content .category-list .category-list-box .category-list-item {
    padding: 14px;
    gap: 8px;
  }
  .home-category .home-category-content .category-list .category-list-box .category-list-item .category-list-left {
    gap: 10px;
  }
  .home-category
    .home-category-content
    .category-list
    .category-list-box
    .category-list-item
    .category-list-left
    .category_count
    .octagonWrap {
    width: 40px;
    height: 40px;
    padding: 16px;
  }
  .home-category
    .home-category-content
    .category-list
    .category-list-box
    .category-list-item
    .category-list-left
    .category_count
    .octagonWrap
    span {
    font-size: 18px;
    line-height: 32px;
  }
  .home-category
    .home-category-content
    .category-list
    .category-list-box
    .category-list-item
    .category-list-left
    .category_name {
    font-size: 16px;
    line-height: 24px;
  }
  .home-category .home-category-content .category-list .category-list-box .category-list-item .direction {
    min-width: 36px;
    width: 36px;
    height: 36px;
  }
  .home-category .home-category-img {
    width: 40%;
  }
  .home-services {
    padding: 80px 52px;
  }
  .home-services .short_desc {
    margin-top: 20px;
    width: 450px;
  }
  .home-services .service-slide {
    position: initial;
    margin-top: 40px;
  }
  .home-services .service-slide .service-box {
    width: 352px;
  }
  .home-services .service-slide .swiper-button-next,
  .home-services .service-slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
    top: 185px;
  }
  .home-services .service-slide .swiper-button-next {
    right: 52px;
  }
  .home-services .service-slide .swiper-button-prev {
    right: 106px;
    left: auto;
  }
  .service-box {
    padding: 12px;
  }
  .service-box .line {
    margin-top: 15px;
  }
  .service-box .service-name {
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .service-box .service-box-bottom .direction {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .home-sertifikat {
    margin: 80px 80px 0;
    gap: 60px;
  }
  .home-sertifikat .home-sertifikat-left .short-desc {
    margin-top: 20px;
    display: block;
    width: 350px;
    min-width: 350px;
  }
  .home-sertifikat .sertifikat-list {
    gap: 10px;
    max-height: 400px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 16px;
    line-height: 24px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 36px;
    width: 36px;
    height: 36px;
  }
  .sertifikat-page {
    margin: 80px 80px 0;
    gap: 60px;
  }
  .sertifikat-page .home-sertifikat-left .short-desc {
    margin-top: 20px;
    display: block;
    width: 350px;
    min-width: 350px;
  }
  .sertifikat-page .sertifikat-list {
    gap: 10px;
    max-height: 700px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 16px;
    line-height: 24px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 36px;
    width: 36px;
    height: 36px;
  }
  .home-news {
    margin: 80px 20px 0;
    padding: 80px 52px;
  }
  .home-news .news-slide {
    margin-top: 40px;
  }
  .home-news .news-slide .news-box {
    width: 352px;
  }
  .news-box {
    padding: 12px;
  }
  .news-box .box-body .news-name {
    font-size: 16px;
    line-height: 24px;
  }
  .news-box .box-body p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .news-box .box-body .body-bottom {
    margin-top: 15px;
    gap: 5px;
  }
  .news-box .box-body .body-bottom .direction {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .news-box .news-box-img {
    margin-top: 20px;
  }
  .contact {
    margin: 290px 20px 0;
  }
  footer {
    margin: 80px 20px 20px;
    padding: 40px 32px 22px;
  }
  footer .footer-main .subscribe {
    width: 352px;
  }
  footer .footer-main .subscribe h3 {
    width: 320px;
    font-size: 24px;
    line-height: 32px;
  }
  footer .footer-main .subscribe .subscribe-area {
    margin-top: 20px;
    padding: 8px;
  }
  .map {
    height: 600px;
  }
  .about-content {
    padding: 40px 20px 60px;
  }
  .about-content .statistics {
    padding: 20px 40px;
    justify-content: space-between;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 30px;
    flex-wrap: wrap;
  }
  .about-content .statistics .statistic-item {
    gap: 12px;
  }
  .about-content .about-title {
    margin-top: 60px;
  }
  .about-content .about-texts {
    margin-top: 20px;
    gap: 10px;
  }
  .faq {
    margin-top: 80px;
  }
  .faq .faq-area {
    margin-top: 40px;
    width: 90%;
  }
  .news-page {
    margin: 20px 20px 0;
    padding: 40px 20px 70px;
  }
  .news-page .news-boxes {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .more_box_link {
    margin: 40px auto 0;
  }
  .more_box_link span {
    padding: 14px;
  }
  .news-detail {
    margin: 20px 20px 0;
  }
  .news-detail .news-detail-banner {
    margin-top: 20px;
    height: 300px;
  }
  .news-detail .news-detail-banner img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .news-detail .news-date {
    margin-top: 20px;
  }
  .news-detail .news-detail-content {
    margin-top: 20px;
    gap: 5px;
  }
  .news-detail .news-detail-content .news-detail-texts {
    gap: 10px;
  }
  .news-detail .news-detail-content .share-news {
    gap: 12px;
  }
  .news-detail .news-detail-content .share-news .share-with {
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 8px;
  }
  .news-detail .news-detail-content .share-news .copy_link {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .other-news {
    margin: 80px 20px 0;
    padding: 70px 20px;
  }
  .other-news .other-news-slide {
    margin-top: 40px;
  }
  .other-news .other-news-slide .swiper-button-next,
  .other-news .other-news-slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
    top: 100px;
  }
  .other-news .other-news-slide .swiper-button-next {
    right: 52px;
  }
  .other-news .other-news-slide .swiper-button-prev {
    right: 106px;
    left: auto;
  }
  .other-news .other-news-slide .news-box {
    width: 352px;
  }
  .product-page .product-filter {
    min-width: 260px;
    width: 260px;
    padding: 30px;
    display: flex;
    gap: 20px;
  }
  .product-page .product-filter .filter-box {
    gap: 20px;
    padding-bottom: 20px;
  }
  .product-page .product-filter .filter-box .filter-title {
    font-size: 18px;
    line-height: 32px;
  }
  .product-page .product-filter .filter-box .filter-list {
    gap: 6px;
  }
  .product-page .product-filter .filter-box .filter-list .filter-item {
    padding: 12px;
  }
  .product-page .product-filter .last_view_products {
    gap: 20px;
  }
  .product-page .product-filter .last_view_products .filter-title {
    font-size: 18px;
    line-height: 32px;
  }
  .product-page .product-filter .last_view_products .last_view_list {
    gap: 15px;
  }
  .product-page .product-filter .last_view_products .last_view_list .last_view_product {
    gap: 10px;
  }
  .product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-img {
    width: 70px;
    height: 70px;
  }
  .product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-body {
    gap: 6px;
  }
  .product-page .product-page-main {
    padding: 30px;
  }
  .product-page .product-page-main .product-boxes {
    margin-top: 30px;
  }
  .product-box .product-box-img {
    height:260px;
}
  .product-box {
    padding: 14px 14px 18px;
  }
  .product-box .product-box-body {
    margin-top: 15px;
  }
  .product-box .product-box-body .product-name {
    font-size: 16px;
    line-height: 24px;
  }
  .product-box .product-box-body .product-code {
    font-size: 14px;
    line-height: 20px;
  }
  .product-box .product-box-body .box-body-bottom .product-price {
    font-size: 16px;
    line-height: 24px;
  }
  .product-box .product-box-body .box-body-bottom .direction {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .product-detail-top {
      
    padding: 30px 20px;
    gap: 40px;
  }
  .product-detail-top .detail-left{
      min-height:490px;
  }
  .product-detail-top .detail-left .product-code {
    margin-top: 10px;
    font-size: 18px;
    line-height: 32px;
  }
  .product-detail-top .detail-left .title {
    margin-bottom: 15px !important;
  }
  .product-detail-top .detail-left .apply_link {
    margin-top: 30px;
    padding: 6px;
  }
  .product-detail-top .detail-left .apply_link span {
    gap: 12px;
    padding: 14px 25px 14px 35px;
  }
  .product-detail-top .detail-images {
    min-width: 500px;
    width: 500px;
    max-height: 490px;
  }
  .product-detail-area {
    padding: 30px 20px;
  }
  .product-detail-area .product-detail-list {
    margin-top: 30px;
    gap: 4px;
  }
  .product-detail-area .product-detail-list .detail-list-item {
    padding: 20px 15px;
  }
  .product-detail-area .product-detail-list .detail-list-item .detail-list-title {
    font-size: 16px;
    line-height: 24px;
  }
  .product-detail-area .product-detail-list .detail-list-item ul {
    padding-left: 25px;
  }
  .product-detail-area .product-detail-list .detail-list-item ul li p {
    font-size: 14px;
    line-height: 20px;
  }
  .other-products {
    padding: 30px 20px;
  }
  .other-products .other_products_slide {
    margin-top: 40px;
  }
  .other-products .other_products_slide .swiper-button-next,
  .other-products .other_products_slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
    top: 60px;
  }
  .other-products .other_products_slide .swiper-button-next {
    right: 20px;
  }
  .other-products .other_products_slide .swiper-button-prev {
    right: 74px;
    left: auto;
  }
  .other-products .other_products_slide .product-box {
    width: 352px;
  }
  .service-detail .service-detail-slide .service-item {
    gap: 40px;
  }
  .service-detail .service-detail-slide .service-item .service-content {
    width: 50%;
    padding-left: 40px;
  }
  .service-detail .service-detail-slide .service-item .service-content .service-text {
    margin-top: 20px;
    gap: 10px;
  }
  .service-detail .service-detail-slide .swiper-pagination {
    left: 20px;
    height: 200px;
  }
  .service-detail .service-detail-slide .swiper-button-next {
    transform: translateX(-38%);
    padding: 10px;
    width: 35px;
    height: 35px;
  }
  .service-detail .service-detail-slide .swiper-button-prev {
    bottom: 35px;
    transform: translateX(-38%);
    padding: 10px;
    width: 35px;
    height: 35px;
  }
  .brands-container {
    padding-left: 70px;
    padding-right: 70px;
  }
  
  .cataloq-page{
    padding-left: 70px;
    padding-right: 70px;
}
.cataloq-page .cataloq-list{ 
    grid-template-columns: repeat(4, 1fr);
}
  
  
  .customer-page {
    margin-top: 40px;
    padding: 0 70px;
  }
  .customer-page .customer-items {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
  .customer-page .customer-items .customer-item p {
    font-size: 20px;
    line-height: 32px;
  }
    .brand-content {
    padding: 40px 20px 60px;
  }
  .brand-content .brand-texts {
      margin-top:40px;
    gap: 10px;
  }
  .brand-videos {
    margin: 40px 20px 0;
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-videos .brand-video-item {
    height: 230px;
  }
  .brand_all_pro {
    margin: 40px auto 0;
    padding: 12px 28px;
  }
}
@media only screen and (max-width: 1050px) {
  nav {
    padding: 23px 50px;
    border-radius: 12px;
  }
    nav .nav-logos .nav-logo1 {
      width: 140px;
    }
    nav .nav-logos .nav-logo2 {
      width: 50px;
    }
  nav .navbar_menu {
    display: none;
  }
  nav .language {
    display: none;
  }
  nav .hamburger {
    display: flex;
  }
  .home-sertifikat {
    margin: 80px 80px 0;
    gap: 50px;
  }
  .home-sertifikat .home-sertifikat-left .short-desc {
    margin-top: 15px;
    display: block;
    width: 350px;
    min-width: 350px;
  }
  .home-sertifikat .sertifikat-list {
    gap: 10px;
    max-height: 400px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 14px;
    line-height: 20px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .sertifikat-page {
    margin: 80px 80px 0;
    gap: 50px;
  }
  .sertifikat-page .home-sertifikat-left .short-desc {
    margin-top: 15px;
    display: block;
    width: 350px;
    min-width: 350px;
  }
  .sertifikat-page .sertifikat-list {
    gap: 10px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 14px;
    line-height: 20px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .product-detail-top .detail-images {
    min-width: 350px;
    width: 350px;
    max-height: 340px;
  }
  .brands-container .cards-brands {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .mt-48 {
    margin-top: 30px;
  }
    header {
    display: none;
  }
  nav {
    background: transparent;
  }
  .home-hero .hero_slide .hero-item .hero-content {
    width: 532px;
  }
  .home-hero .hero_slide .hero-item .hero-content p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 22px;
  }
  .home-hero .hero_slide .hero-item .hero-content .hero-link {
    margin: 30px auto 0;
    padding: 4px;
  }
  .home-hero .hero_slide .hero-item .hero-content .hero-link span {
    padding: 14px 38px;
    font-size: 14px;
  }
  .home-hero .hero_slide .swiper-pagination .swiper-pagination-bullet {
    width: 80px;
  }
  .title {
    font-size: 44px;
    line-height: 52px;
  }
  .home-about {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .home-about .home-about-content {
    padding: 40px 20px;
  }
  .home-about .home-about-content .about-link {
    padding: 4px;
  }
  .home-about .home-about-content .about-link span {
    padding: 14px 38px;
    font-size: 14px;
  }
  .home-about .home-about-img {
    margin-left: auto;
    margin-right: auto;
    width: 500px;
  }
  .home-category {
    margin: 80px 20px 0;
    gap: 35px;
    flex-direction: column;
  }
  .home-category .home-category-content {
    width: 100%;
    padding-left: 0;
  }
  .home-category .home-category-content .category-list {
    margin-top: 30px;
    gap: 10px;
    height: 400px;
  }
  .home-category .home-category-content .category-list .category-list-box {
    padding-left: 10px;
  }
  .home-category
    .home-category-content
    .category-list
    .category-list-box
    .category-list-item
    .category-list-left
    .category_count
    .octagonWrap {
    width: 32px;
    height: 32px;
    padding: 14px;
  }
  .home-category
    .home-category-content
    .category-list
    .category-list-box
    .category-list-item
    .category-list-left
    .category_count
    .octagonWrap
    span {
    font-size: 16px;
    line-height: 24px;
  }
  .home-category
    .home-category-content
    .category-list
    .category-list-box
    .category-list-item
    .category-list-left
    .category_name {
    font-size: 14px;
    line-height: 20px;
  }
  .home-category .home-category-content .category-list .category-list-box .category-list-item .direction {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .home-category .home-category-img {
    margin-left: auto;
    margin-right: auto;
    width: 450px;
  }

.cataloq-page .cataloq-list{ 
    grid-template-columns: repeat(3, 1fr);
}
  .home-sertifikat {
    flex-direction: column;
    margin: 80px 80px 0;
    gap: 50px;
  }
  .home-sertifikat .home-sertifikat-left {
    width: 100%;
  }
  .home-sertifikat .home-sertifikat-left .short-desc {
    margin-top: 15px;
    width: 400px;
    min-width: 400px;
  }
  .home-sertifikat .sertifikat-list {
    gap: 10px;
    max-height: 400px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 16px;
    line-height: 24px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .sertifikat-page {
    flex-direction: column;
    margin: 80px 80px 0;
    gap: 50px;
  }
  .sertifikat-page .home-sertifikat-left {
    width: 100%;
  }
  .sertifikat-page .home-sertifikat-left .short-desc {
    margin-top: 15px;
    width: 400px;
    min-width: 400px;
  }
  .sertifikat-page .sertifikat-list {
    gap: 10px;
    max-height: 600px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 16px;
    line-height: 24px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .home-news .home-news-top .all_news_link {
    padding: 4px;
  }
  .home-news .home-news-top .all_news_link span {
    padding: 14px 38px;
    font-size: 14px;
  }
  .contact {
    margin: 290px 20px 0;
  }
  .contact .contact-box {
    padding: 30px 30px 64px;
  }
  .contact .contact-box .contact-links {
    margin-top: 30px;
    gap: 15px;
  }
  .contact .contact-box .contact-links a {
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-box .contact-links a .icon {
    width: 35px;
    height: 35px;
    padding: 8px;
  }
  .contact .contact-form {
    bottom: 40px;
    right: 40px;
    width: 350px;
    padding: 15px;
  }
  .contact .contact-form .form-title {
    font-size: 24px;
    line-height: 32px;
  }
  .contact .contact-form form {
    gap: 10px;
    margin-top: 15px;
  }
  .contact .contact-form form input {
    padding: 14px 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form input::-moz-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form input::placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form textarea {
    padding: 14px 12px;
    font-size: 14px;
    line-height: 20px;
    height: 80px;
  }
  .contact .contact-form form textarea::-moz-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form textarea::placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form .form-phone .nice-select {
    border: none;
    height: auto;
    line-height: normal;
    padding: 14px 12px;
  }
  .contact .contact-form form .form-phone .nice-select span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    height: auto;
  }
  .contact .contact-form form .form-phone .nice-select::after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    height: 5px;
    margin-top: -5px;
    right: 0px;
    width: 5px;
  }
  .contact .contact-form form .send-form {
    margin-top: 10px;
    padding: 4px;
    transition: 0.8s;
  }
  .contact .contact-form form .send-form span {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  footer {
    margin: 80px 20px 20px;
    padding: 40px 32px 22px;
  }
  footer .footer-main .subscribe {
    width: 300px;
  }
  footer .footer-main .subscribe h3 {
    width: 290px;
    font-size: 22px;
    line-height: 30px;
  }
  footer .footer-main .subscribe .subscribe-area {
    margin-top: 20px;
    padding: 8px;
  }
  footer .footer-main .subscribe .subscribe-area input {
    padding: 0 8px;
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .subscribe .subscribe-area input::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .subscribe .subscribe-area input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .subscribe .subscribe-area .subscribe_btn {
    min-width: 125px;
    padding: 10px 28px;
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .footer-categoryies h3 {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .footer-categoryies .category-lists {
    margin-top: 15px;
    gap: 10px;
  }
  footer .footer-main .footer-categoryies .category-lists a {
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-main .footer-links h3 {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .footer-links .links-lists {
    margin-top: 15px;
    gap: 10px;
  }
  footer .footer-main .footer-links .links-lists a {
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-main .footer-contact h3 {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .footer-contact .footer-contact-links {
    gap: 10px;
    margin-top: 15px;
  }
  footer .footer-main .footer-contact .footer-contact-links a {
    gap: 6px;
    font-size: 14px;
    line-height: 22px;
  }
  footer .footer-main .footer-contact .footer-contact-links a img {
    width: 18px;
    height: 18px;
  }
  footer .footer-main .footers-socials {
    gap: 12px;
  }
  footer .footer-main .footers-socials .social-item {
    width: 32px;
    height: 32px;
    padding: 8px;
  }
  footer .footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
  }
  .news-page .news-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-page .product-filter {
    width: 100%;
    min-width:0;
    height: 100%;
    position: fixed;
    top: 0;
    left: -200%;
    z-index: 10;
    min-width: 0;
    padding: 30px;
    gap: 15px;
    overflow-y: auto;
    transition: 0.6s;
  }
  .product-page .product-filter .close_filter_btn {
    display: block;
  }
  .product-page .product-filter .filter-box {
    gap: 15px;
    padding-bottom: 15px;
  }
  .product-page .product-filter .filter-box .filter-title {
    font-size: 16px;
    line-height: 24px;
  }
  .product-page .product-filter .filter-box .filter-list {
    gap: 6px;
  }
  .product-page .product-filter .filter-box .filter-list .filter-item {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .product-page .product-filter .last_view_products {
    gap: 15px;
  }
  .product-page .product-filter .last_view_products .filter-title {
    font-size: 16px;
    line-height: 24px;
  }
  .product-page .product-filter .last_view_products .last_view_list {
    gap: 10px;
  }
  .product-page .product-filter .last_view_products .last_view_list .last_view_product {
    gap: 10px;
  }
  .product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-img {
    width: 60px;
    height: 60px;
  }
  .product-page .product-filter .last_view_products .last_view_list .last_view_product .pro-body {
    gap: 6px;
  }
  .product-page .product-filter .apply_filter {
    display: flex;
  }
  .product-page .product-page-main {
    padding: 30px;
  }
  .product-page .product-page-main .product-page-top {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
  }
  .product-page .product-page-main .product-page-top .category_name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #000;
  }
      .product-detail-top .detail-left{
      min-height:340px; 
  }
  .product-page .product-page-main .showFilterBtn {
    display: flex;
  }
  .product-page .product-page-main .product-boxes {
    margin-top: 30px;
  }
  .service-detail {
    margin: 20px 0 0;
  }
  .service-detail .service-detail-slide {
    border-radius: 0;
  }
  .service-detail .service-detail-slide .service-item {
    position: relative;
    gap: 40px;
    border-radius: 0;
  }
  .service-detail .service-detail-slide .service-item .service-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin: 0;
    width: 80%;
  }
  .service-detail .service-detail-slide .service-item .service-content .service-text {
    margin-top: 15px;
    gap: 10px;
  }
  .service-detail .service-detail-slide .service-item .service-detail-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .service-detail .service-detail-slide .service-item .service-detail-img img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    -o-object-fit: initial;
    object-fit: initial;
  }
  .service-detail .service-detail-slide .swiper-pagination {
    left: 20px;
    height: 200px;
    width: 3px;
  }
  .service-detail .service-detail-slide .swiper-button-next {
    display: none;
  }
  .service-detail .service-detail-slide .swiper-button-prev {
    display: none;
  }
  .customer-page .customer-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .mt-48 {
    margin-top: 20px;
  }
  .title {
    font-size: 36px;
    line-height: 48px;
  }

  nav {
    padding: 15px 20px;
    border-radius: 12px;
  }
    nav .nav-logos .nav-logo1 {
      width: 100px;
    }
    nav .nav-logos .nav-logo2 {
      width: 45px;
    }
  .home-hero .hero_slide .hero-item {
    height: 400px;
  }
  .home-hero .hero_slide .hero-item img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-hero .hero_slide .hero-item .hero-content {
    width: 432px;
  }
  .home-hero .hero_slide .hero-item .hero-content .hero-link {
    margin: 30px auto 0;
    padding: 4px;
  }
  .home-hero .hero_slide .hero-item .hero-content .hero-link span {
    padding: 10px 30px;
    font-size: 14px;
  }
  .home-hero .hero_slide .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
  }
  .home-about {
    margin: 40px 20px 0;
  }
  .home-about .home-about-content {
    padding: 40px 20px;
    width: 100%;
  }
  .home-about .home-about-content .about-link {
    padding: 4px;
  }
  .home-about .home-about-content .about-link span {
    padding: 10px 30px;
    font-size: 14px;
  }
  .home-about .home-about-img {
    margin-left: auto;
    margin-right: auto;
    width: 500px;
  }
  .home-category {
    margin: 40px 20px 0;
  }
  .home-services {
    padding: 40px 30px;
  }
  .home-services .short_desc {
    margin-top: 20px;
    width: 100%;
  }
  .home-services .service-slide {
    position: initial;
    margin-top: 70px;
  }
      .cataloq-page{
    padding-left: 20px;
    padding-right: 20px;
}
.cataloq-page .cataloq-list{ 
    grid-template-columns: repeat(2, 1fr);
}
  .home-services .service-slide .service-box {
    width: 300px;
  }
  .home-services .service-slide .swiper-button-next,
  .home-services .service-slide .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 6px;
    top: 195px;
  }
  .home-services .service-slide .swiper-button-next {
    right: 30px;
  }
  .home-services .service-slide .swiper-button-prev {
    right: 75px;
    left: auto;
  }
  .home-sertifikat {
    margin: 40px 20px 0;
    gap: 40px;
  }
  .home-sertifikat .home-sertifikat-left .short-desc {
    width: 90%;
    min-width: 90%;
  }
  .home-sertifikat .sertifikat-list {
    gap: 10px;
    max-height: 300px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 16px;
    line-height: 24px;
  }
  .home-sertifikat .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .sertifikat-page {
    margin: 40px 20px 0;
    gap: 40px;
  }
  .sertifikat-page .home-sertifikat-left .short-desc {
    width: 90%;
    min-width: 90%;
  }
  .sertifikat-page .sertifikat-list {
    gap: 10px;
    max-height: 500px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item {
    padding: 14px;
    gap: 8px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .sertifikat-name {
    font-size: 16px;
    line-height: 24px;
  }
  .sertifikat-page .sertifikat-list .sertifikat-list-box .sertifikat-list-item .direction {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .home-news {
    margin: 40px 20px 0;
    padding: 40px 30px;
  }
  .home-news .home-news-top .all_news_link {
    padding: 4px;
  }
  .home-news .home-news-top .all_news_link span {
    padding: 10px 30px;
    font-size: 14px;
  }
  .home-news .news-slide {
    margin-top: 30px;
  }
  .home-news .news-slide .news-box {
    width: 300px;
  }
  .news-box {
    padding: 12px;
  }
  .news-box .box-body .news-name {
    font-size: 16px;
    line-height: 24px;
  }
  .news-box .box-body p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .news-box .box-body .body-bottom {
    margin-top: 15px;
    gap: 5px;
  }
  .news-box .box-body .body-bottom .direction {
    padding: 4px;
  }
  .news-box .box-body .body-bottom .direction span {
    padding: 10px 30px;
    font-size: 14px;
  }
  .news-box .news-box-img {
    margin-top: 20px;
  }
  .contact {
    margin: 40px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .contact .contact-box {
    padding: 40px 20px;
  }
  .contact .contact-box .contact-links {
    margin-top: 15px;
    gap: 10px;
  }
  .contact .contact-box .contact-links a {
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-box .contact-links a .icon {
    width: 32px;
    height: 32px;
    padding: 9px;
  }
  .contact .contact-form {
    position: initial;
    bottom: initial;
    right: initial;
    width: 100%;
    padding: 20px;
  }
  .contact .contact-form .form-title {
    font-size: 20px;
    line-height: 28px;
  }
  .contact .contact-form form {
    gap: 10px;
    margin-top: 15px;
  }
  .contact .contact-form form input {
    padding: 14px 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form input::-moz-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form input::placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form textarea {
    padding: 14px 12px;
    font-size: 14px;
    line-height: 20px;
    height: 80px;
  }
  .contact .contact-form form textarea::-moz-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form textarea::placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-form form .form-phone .nice-select {
    border: none;
    height: auto;
    line-height: normal;
    padding: 14px 12px;
  }
  .contact .contact-form form .form-phone .nice-select span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    height: auto;
  }
  .contact .contact-form form .form-phone .nice-select::after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    height: 5px;
    margin-top: -5px;
    right: 0px;
    width: 5px;
  }
  .contact .contact-form form .send-form {
    margin-top: 10px;
    padding: 4px;
    transition: 0.8s;
  }
  .contact .contact-form form .send-form span {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  footer {
    margin: 40px 20px 20px;
  }
  .map {
    height: 400px;
  }
  .about-banner {
    height: 300px;
  }
  .about-banner img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .about-banner .title {
    width: 90%;
  }
  .about-content {
    padding: 40px 20px;
  }
  .about-content .statistics {
    padding: 20px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: initial;
    flex-wrap: nowrap;
  }
  .about-content .statistics .statistic-item {
    gap: 12px;
  }
  .about-content .statistics .statistic-item .title {
    font-size: 32px;
    line-height: 36px;
  }
  .about-content .statistics .statistic-item p {
    font-size: 14px;
    line-height: 20px;
  }
  .about-content .about-title {
    margin-top: 40px;
  }
  .faq {
    margin: 40px 20px 0;
  }
  .faq .faq-area {
    margin-top: 30px;
    width: 100%;
  }
  .faq .faq-area .accordion .accordion__item .accordion__btn {
    padding: 15px;
  }
  .news-page {
    margin: 20px 20px 0;
    padding: 30px 20px 40px;
  }
  .news-page .news-boxes {
    margin-top: 30px;
  }
  .news-detail {
    margin: 30px 20px 0;
  }
  .news-detail .news-detail-banner {
    margin-top: 30px;
  }
  .news-detail .news-date {
    margin-top: 30px;
  }
  .news-detail .news-detail-content {
    margin-top: 20px;
    gap: 40px;
  }
  .news-detail .news-detail-content .news-detail-texts {
    gap: 10px;
  }
  .news-detail .news-detail-content .share-news {
    gap: 14px;
  }
  .news-detail .news-detail-content .share-news .share-with {
    width: 32px;
    height: 32px;
    min-width: 32px;
    padding: 8px;
  }
  .news-detail .news-detail-content .share-news .copy_link {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .news-detail .news-detail-content .share-news .copied_txt {
    width: -moz-max-content;
    width: max-content;
    font-size: 12px;
    line-height: 18px;
    padding: 4px 10px;
    border-radius: 12px;
    color: #000;
    font-weight: 500;
    background: #fbd951;
    position: absolute;
    bottom: -35px;
    right: 0;
    z-index: 5;
    display: none;
  }
  .other-news {
    margin: 40px 20px 0;
    padding: 40px 20px;
  }
  .other-news .other-news-slide {
    margin-top: 30px;
  }
  .other-news .other-news-slide .swiper-button-next,
  .other-news .other-news-slide .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 8px;
    top: 70px;
  }
  .other-news .other-news-slide .swiper-button-next {
    right: 20px;
  }
  .other-news .other-news-slide .swiper-button-prev {
    right: 60px;
    left: auto;
  }
  .other-news .other-news-slide .news-box {
    width: 300px;
  }
  .more_box_link {
    margin: 30px auto 0;
  }
  .more_box_link span {
    padding: 12px;
  }
  .product-page .product-page-main .product-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .other-products {
    padding: 20px;
  }
  .other-products .other_products_slide {
    margin-top: 30px;
  }
  .other-products .other_products_slide .swiper-button-next,
  .other-products .other_products_slide .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 8px;
    top: 50px;
  }
  .other-products .other_products_slide .swiper-button-next {
    right: 20px;
  }
  .other-products .other_products_slide .swiper-button-prev {
    right: 74px;
    left: auto;
  }
  .other-products .other_products_slide .product-box {
    width: 300px;
  }
  .product-detail-top {
        display: flex;
        padding: 20px;
        gap: 30px;
        flex-direction: column-reverse;
  }

  .product-detail-top .detail-left .product-code {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .product-detail-top .detail-left p {
    font-size: 15px;
    line-height: 24px;
  }
  .product-detail-top .detail-left .product-price {
    margin-top: 15px;
    font-size: 20px;
    line-height: 32px;
  }
      .product-detail-top .detail-left{
      min-height:0; 
  }
  .product-detail-top .detail-left .apply_link {
    margin-top: 20px;
    padding: 4px;
  }
  .product-detail-top .detail-left .apply_link span {
    gap: 10px;
    padding: 10px 20px 10px 30px;
  }
  .product-detail-top .detail-images {
    min-width: 350px;
    width: 350px;
    max-height: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-detail-area {
    padding: 20px;
  }
  .product-detail-area .product-detail-list {
    margin-top: 20px;
    gap: 4px;
  }
  .brands-container{
      padding-left:20px;
      padding-right:20px;
  }
  .brands-container .cards-brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-container .cards-brands .brand-item{
        padding: 20px 30px;
  }
  .customer-page {
    margin-top: 30px;
    padding: 0 20px;
  }
  .customer-page .customer-items {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .customer-page .customer-items .customer-item p {
    font-size: 18px;
    line-height: 28px;
  }
    .brand-content {
    padding: 20px;
  }
  .brand-content .brand-texts{
      margin-top: 30px;
  }
  .brand-videos {
    margin: 30px 20px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-videos .brand-video-item {
    height: 200px;
  }
  .brand_all_pro {
    margin: 30px auto 0;
  }
}
@media only screen and (max-width: 575px) {
  .mobile_navbar_area .mobile_menu {
    width: 100%;
  }
  .cataloq-page .cataloq-list{ 
    grid-template-columns: repeat(1, 1fr);
}
  .home-hero .hero_slide .hero-item {
    height: 400px;
  }
  .home-hero .hero_slide .hero-item img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-hero .hero_slide .hero-item .hero-content {
    width: 90%;
  }
  .home-hero .hero_slide .hero-item .hero-content .title {
    font-size: 32px;
    line-height: 42px;
  }
  .home-hero .hero_slide .hero-item .hero-content .hero-link {
    margin: 30px auto 0;
    padding: 4px;
  }
  .home-hero .hero_slide .hero-item .hero-content .hero-link span {
    padding: 8px 25px;
    font-size: 14px;
  }
  .home-about .home-about-content {
    padding: 40px 20px;
    width: 100%;
  }
  .home-about .home-about-content .about-link {
    margin: 30px auto 0;
    padding: 4px;
  }
  .home-about .home-about-content .about-link span {
    padding: 8px 25px;
    font-size: 14px;
  }
  .home-about .home-about-img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .home-category .home-category-img {
    width: 100%;
  }
  .home-news {
    margin: 40px 20px 0;
    padding: 40px 30px;
  }
  .home-news .home-news-top .all_news_link {
    padding: 4px;
  }
  .home-news .home-news-top .all_news_link span {
    padding: 8px 14px;
    font-size: 14px;
  }
  .home-news .news-slide {
    margin-top: 25px;
  }
  footer {
    padding: 30px 20px 20px;
  }
  footer .footer-main .subscribe {
    width: 100%;
  }
  footer .footer-main .subscribe h3 {
    width: 100%;
    font-size: 22px;
    line-height: 30px;
  }
  footer .footer-main .subscribe .subscribe-area {
    margin-top: 20px;
    padding: 8px;
  }
  footer .footer-main .subscribe .subscribe-area input {
    padding: 0 8px;
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .subscribe .subscribe-area input::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .subscribe .subscribe-area input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .subscribe .subscribe-area .subscribe_btn {
    min-width: 125px;
    padding: 10px 28px;
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
  }
  .map {
    height: 300px;
  }
  .news-page .news-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-page .product-page-main .product-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
    .product-box .product-box-img {
    height:auto;
}
  .product-detail-top .detail-images {
    min-width: 0;
    width: 100%;
    max-height: 350px;
  }
  .other-products .title {
    width: 150px;
  }
  .other-products .other_products_slide .swiper-button-next,
  .other-products .other_products_slide .swiper-button-prev {
    top: 70px;
  }

  .customer-page .customer-items {
    grid-template-columns: repeat(1, 1fr);
  }
    .brand-videos {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 475px){
    .brands-container .cards-brands{
        grid-template-columns: repeat(1, 1fr);
    }
}
 /*# sourceMappingURL=style.css.map */
