.about_section article,
.download_app_grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
:root {
  --crimsonBlaze: #d12a2e;
  --black: #000;
  --white: #fff;
  --charcoalGray: #55565a;
  --silverMist: #c5c5c5;
  --navyDeep: #081a3d;
  --midnightBlue: rgb(8 26 61 / 1);
  --oceanDepths: linear-gradient(
    54.47deg,
    rgb(0, 6, 19) 0%,
    rgb(8, 22, 51) 40.6%,
    rgb(40, 180, 134) 100%
  );
  --mediumGray: #a0a0a0;
  --auroraTeal: linear-gradient(135.47deg, #000613, #081633 40.6%, #28b486);
  --fadingGreenOverlay: linear-gradient(transparent, rgba(40, 180, 134, 0.6));
}
button {
  cursor: pointer;
  border: none;
  outline: 0;
  background: 0 0;
}
.no-scroll {
  overflow: hidden;
}
body {
  font-size: 1rem;
  color: var(--black);
  font-weight: 400;
}
p {
  color: var(--charcoalGray);
}
.section-padding {
  padding: 40px 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.section-title h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  width: 100%;
  color: var(--midnightBlue);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}
.navigation-buttons button,
.social_icons button {
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
}
.product_inside_section p,
.section-title p {
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}
.navigation-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navigation-buttons.notNavigation,
.social_drop {
  display: none;
}
.navigation-buttons button {
  border-radius: 5px;
  border: 2px solid var(--white);
  color: var(--white);
  background: 0 0;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.hero_content article a.read_more:hover,
.navigation-buttons button:hover,
.products_single_referance_card_left a.full_link:hover {
  background: var(--white);
  color: var(--black);
}
.section-heading {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--white);
}
.social_icons {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  display: none;
}
.social_icons button {
  border-radius: 50%;
  color: var(--white);
  align-items: center;
  border: none;
  justify-content: center;
  animation: 2s ease-in-out infinite backgroundAnimation;
}
@keyframes backgroundAnimation {
  0%,
  100% {
    background-color: var(--crimsonBlaze);
  }
  50% {
    background-color: #8b0000;
  }
}
.social_drop {
  position: absolute;
  bottom: 10px;
  right: -4px;
  z-index: 3;
  margin-bottom: 50px;
}
.social_icons ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 0.2rem;
}
.social_icons ul .icon-content {
  margin: 0 10px;
  position: relative;
}
.social_icons ul .icon-content .tooltip {
  position: absolute;
  top: 20px;
  right: 50px;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: 0.3s;
}
.social_icons ul .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: 5px;
}
.social_icons ul .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.social_icons ul .icon-content a:hover {
  box-shadow: 3px 2px 45px 0 rgb(0 0 0 / 12%);
  color: #fff;
}
.social_icons ul .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}
.social_icons ul .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: 0.3s ease-in-out;
}
.social_icons ul .icon-content a:hover .filled {
  height: 100%;
}
.social_icons ul .icon-content a[data-social="linkedin"] .filled,
.social_icons ul .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}
.social_icons ul .icon-content a[data-social="tiktok"] .filled,
.social_icons ul .icon-content a[data-social="tiktok"] ~ .tooltip,
.tiktok {
  background-color: #000;
}
.social_icons ul .icon-content a[data-social="whatsapp"] .filled,
.social_icons ul .icon-content a[data-social="whatsapp"] ~ .tooltip,
.whatsapp {
  background-color: #25d366;
}
.social_icons ul .icon-content a[data-social="facebook"] .filled,
.social_icons ul .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5999;
}
.social_icons ul .icon-content a[data-social="instagram"] .filled,
.social_icons ul .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.social_icons ul .icon-content a[data-social="youtube"] .filled,
.social_icons ul .icon-content a[data-social="youtube"] ~ .tooltip,
.youtube {
  background-color: red;
}
#loader-wrapper {
  background-image:
    url(/assets/img/all/slider_bg.png),
    linear-gradient(135.47deg, #000613, #081633 40.6%, #28b486);
  background-repeat: no-repeat, no-repeat;
  background-size:
    100% 100%,
    130% 100%;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.loaded #loader-wrapper {
  opacity: 0;
  transform: scale(0.98);
  transition: 0.3s ease-out 1s;
  visibility: hidden;
}
#loader {
  display: block;
  height: 150px;
  left: 50%;
  margin: -75px 0 0 -75px;
  position: relative;
  top: 50%;
  width: 150px;
  z-index: 1001;
}
#loader:before {
  bottom: 5px;
  content: "";
  left: 5px;
  position: absolute;
  right: 5px;
  top: 5px;
}
#loader:after {
  bottom: 15px;
  content: "";
  left: 15px;
  position: absolute;
  right: 15px;
  top: 15px;
}
#loader img {
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: changewidth;
  animation-name: changewidth;
}
@keyframes changewidth {
  0% {
    transform: scale(0.4);
  }
  to {
    transform: scale(1);
  }
}
.hero_section {
  min-height: 100vh;
}
.hero_section .swiper .swiper-wrapper {
  min-height: 100%;
  height: 100%;
}
.hero_section .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  min-height: 100vh;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}
.slider-bg {
  display: flex;
  align-items: center;
}
.slider-bg img.hero_main_img {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  object-fit: cover;
}
.slider-bg:before {
  background: linear-gradient(54.47deg, #000613, #081633 40.6%, #28b486);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.45;
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
}
.hero_content {
  height: 100%;
  width: 100%;
}
.hero_content img {
  right: 50%;
  transform: translateX(50%);
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  height: auto;
}
.hero_content article {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
}
.hero_content article h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}
.hero_content article a.read_more {
  align-items: center;
  border: 2px solid var(--white);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  height: 50px;
  overflow: hidden;
  padding: 10px;
  transition: 0.3s ease-in-out;
  max-width: fit-content;
  min-width: 150px;
  font-weight: 500;
  width: 100%;
}
.hero_section .company_video {
  position: fixed;
  width: 100%;
  z-index: 4;
  top: 20%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero_section .company_video a {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
.hero_section .company_video span {
  width: 80px;
  height: 2px;
  transition: 0.3s ease-in-out;
  display: block;
  background: var(--crimsonBlaze);
}
.hero_swiper .swiper-pagination {
  bottom: 0;
}
.download_app_section,
.hero_swiper span.swiper-pagination-bullet-active,
.products_only_pagination .swiper-pagination-bullet-active {
  background: var(--crimsonBlaze);
}
.hero_swiper span.swiper-pagination-bullet {
  width: 100%;
  bottom: 0;
  border-radius: unset !important;
  height: 5px;
}
@media screen and (min-width: 768px) {
  .hero_content img {
    width: 60%;
  }
  .hero_content article h3 {
    max-width: 60%;
  }
  .hero_section .company_video {
    width: unset;
    right: 0;
    transform: rotate(-90deg) translateY(-50%);
    top: 50%;
  }
}
.about_section article {
  display: grid;
  column-gap: 20px;
  row-gap: 10px;
  align-items: center;
  margin: 0 auto 50px;
}
.marker,
.marker button {
  border-radius: 50%;
  display: flex;
}
.about_section article .about_left_content {
  border-bottom: 6px solid #c5c5c5;
  border-top: 6px solid #c5c5c5;
  font-family: Source Sans Pro;
  font-weight: 400;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.about_section .about_right_content {
  max-width: 100%;
  margin: 20px auto;
  font-size: 0.875rem;
  text-align: justify;
  line-height: 1.3;
}
.about_section .about_factory_map {
  min-height: 200px;
  min-width: 200px;
  position: relative;
}
.about_factory_map .mark-container {
  height: 100% !important;
  left: 0 !important;
  position: absolute;
  top: 0;
  width: 100% !important;
}
.about_section .about_factory_map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 372px;
  border-radius: 2px;
}
.marker {
  cursor: pointer;
  position: absolute;
  transform: translateZ(0) scale(1);
  transition: 0.3s ease-in-out;
  background-color: hsla(0, 0%, 100%, 0.7);
  color: #000;
  font-size: 11px;
  line-height: 11px;
  z-index: 2;
  margin-left: 2px;
  padding: 3px;
  align-items: center;
  gap: 5px;
}
.social_btn,
.social_btn:hover,
.social_btn:hover .text,
.text {
  transition-duration: 0.4s;
}
.marker:hover {
  -webkit-animation: 1s alert;
  animation: 1s alert;
  background: #fff;
}
@-webkit-keyframes alert {
  0%,
  to {
    transform: translateZ(0) scale(1);
  }
  50% {
    transform: translateZ(0) scale(1.5);
  }
}
.marker button {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--white);
  background-color: var(--crimsonBlaze);
  color: var(--white);
  font-size: 6px;
  align-items: center;
  size: 5px;
  justify-content: center;
}
.marker span {
  display: none;
  font-size: 9px;
  text-align: start;
  line-height: 15px;
  width: 5.5rem;
}
.about_right_content .container {
  max-width: 100%;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .marker {
    border-radius: 15px 3px 3px 15px;
  }
  .about_section article .about_left_content {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .about_section .about_right_content {
    max-width: 80%;
  }
}
.download_app_grid {
  display: grid;
  gap: 10px;
}
.download_app_grid article {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.download_app_grid article h6 {
  font-size: 14px;
  color: var(--white);
}
.download_app_grid article h3 {
  font-size: 28px;
  line-height: 36px;
  color: var(--white);
}
.download_app_grid article p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}
.download_app_grid ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.download_app_grid ul li a {
  display: block;
  width: fit-content;
  height: fit-content;
}
.download_app_grid ul li a img {
  width: 100%;
  height: auto;
}
.products-section {
  position: relative;
  background: var(--oceanDepths);
  padding: 60px 0;
}
.accessories_wrapper,
.portfolio-wrapper,
.products_main_wrapper,
.referrals_wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.product_cat_card {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
}
.product_cat_card::after {
  content: "";
  background: var(--fadingGreenOverlay);
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.product_cat_card a.get_cat_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 2;
}
.product_cat_card img {
  object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.product_cat_card article h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--white);
}
.product_cat_card article {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  display: flex;
  z-index: 2;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  row-gap: 10px;
  transform: translateY(75px);
}
.product_cat_card:hover article {
  transform: translateY(0);
}
.product_cat_card:hover article a {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.product_cat_card article a {
  width: 71px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  height: 71px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 30px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  transform: translateY(100px);
}
.product_cat_card article a i {
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .about_section article .about_left_content {
    flex-basis: 50%;
  }
  .about_section article {
    max-width: 80%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about_right_content .container {
    max-width: 90%;
    padding: 0;
  }
  .marker button {
    width: 1.5rem;
    height: 1.5rem;
  }
  .marker span {
    display: block;
  }
  .marker {
    border-radius: 15px 3px 3px 15px;
  }
  .download_app_grid ul li a img {
    width: 150px;
  }
  .download_app_grid ul {
    justify-content: unset;
  }
  .products_main_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.global_manufactures .section-title {
  max-width: 100%;
  margin: 0 auto;
}
.global_manufactures .section-title h3 {
  font-size: 1.5rem;
  text-align: center;
  color: var(--black);
  line-height: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.global_manufactures .section-title p {
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: center;
}
#svgMap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.svgMap-map-wrapper {
  background: 0 0;
}
.custom-tooltip {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 15px;
  min-width: 200px;
}
.custom-tooltip .flag-container {
  text-align: center;
  margin-bottom: 10px;
}
.custom-tooltip .flag-container img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 4px;
}
.custom-tooltip .country-name {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.custom-tooltip .country-code {
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
}
.custom-tooltip .contact {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.custom-tooltip .contact a {
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.custom-tooltip .contact a:hover {
  color: var(--navyDeep);
}
.products_single_referance_section {
  background-color: var(--navyDeep);
  background-image: url(/assets/img/all/referans_bg.png);
  background-position: 0 0;
  padding: 50px 0;
}
.products_single_referance_section .row {
  row-gap: 30px;
}
.products_single_referance_card_left h3 {
  font-size: 1.875rem !important;
  color: #fff;
  margin-bottom: 0 !important;
}
.products_single_referance_card_left p {
  color: #fff;
  min-height: 100px;
  color: var(--white);
  line-height: 1.3;
}
.products_single_referance_card_left a.full_link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  height: 60px;
  color: var(--white);
  border: 2px solid var(--white);
  transition: 0.3s ease-in-out;
  padding: 10px;
  border-radius: 2px;
}
.products_single_referance_card .content {
  color: var(--white);
  min-height: 40px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products_single_referance_card,
.products_single_referance_card_left {
  display: flex;
  flex-direction: column;
  position: relative;
  row-gap: 20px;
}
.products_single_referance_card a.cat-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.products_single_referance_card h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 2.25rem;
}
.products_single_referance_card figure img {
  width: 100%;
  max-height: 300px;
  border-radius: 4px;
}
.readmore_navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.products_only_card {
  display: grid;
  gap: 20px;
  grid-template-columns: 1;
}
.products_only_card article {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
  padding: 20px 0 40px;
}
.footer_center-2,
.products_only_card figure {
  order: 1;
}
.products_only_card figure img {
  max-height: 450px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.products_only_card article a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  color: var(--black);
  transition: 0.2s ease-in-out;
}
.products_only_card article a i {
  transform: rotate(-45deg);
  transition: 0.2s ease-in-out;
}
.products_only_card article h3 {
  width: 75%;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 600;
}
.products_only_card article .content {
  font-size: 1.125rem;
  line-height: 1.3;
}
.products_only_card article a:hover {
  background: var(--black);
  color: var(--white);
}
.products_only_card article a:hover i {
  transform: rotate(0);
}
.products_only_pagination {
  text-align: start;
  bottom: 0 !important;
  max-width: 100%;
}
.products_only_pagination .swiper-pagination-bullet {
  height: 4px;
  border-radius: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .products_only_card article h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media screen and (min-width: 992px) {
  .download_app_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .products_main_wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .global_manufactures .section-title {
    margin: 0 auto;
    max-width: 80%;
  }
  #svgMap {
    max-width: 80%;
  }
  #chartdiv {
    height: 500px;
  }
  .products_single_referance_section .container {
    max-width: 95%;
  }
  .products_single_referance_card_left h3 {
    margin-bottom: 20px !important;
  }
  .products_single_navigation,
  .referance_navigation {
    margin-top: 20px;
    width: 100%;
  }
  .products_only_card article {
    order: 1;
  }
  .product_cat_section .container {
    max-width: 60%;
  }
  .products_only_card figure {
    order: 2;
  }
  .products_only_card {
    grid-template-columns: 1.5fr 2.5fr;
  }
  .products_only_card article h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .products_only_pagination {
    max-width: 252px;
  }
  /*.custom_navigation_bar .container {*/
  /*  max-width: 66.666667%;*/
  /*}*/
}
.footer-bottom,
.footer-head {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 1200px) {
  .products_only_pagination {
    max-width: 282px;
  }
}
@media (min-width: 1400px) {
  .products_only_card article h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
footer {
  background-image: linear-gradient(135.47deg, #000613, #081633 40.6%, #28b486);
  background-size: 150%;
  min-height: 100px;
}
.footer-head {
  display: grid;
  padding: 40px 0;
  gap: 2rem;
}
.footer_left a.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer_left a.footer-logo img {
  max-width: 200px;
}
.footer_left a.footer-logo span {
  width: calc(100% - 150px);
  height: 4px;
  display: block;
  background: var(--crimsonBlaze);
}
.footer_left p {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.4;
}
.footer-center h3 {
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}
.footer-center ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer-center ul li a {
  color: var(--white);
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
  transition: 0.3s ease-in-out;
}
.contact-form-wrapper .information_area .information_box ul li i,
.footer-bottom a:hover,
.footer-center ul li a:hover,
.products_card:hover figure svg {
  color: var(--crimsonBlaze);
}
.footer-center .contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.social-container,
.social_btn {
  display: flex;
  align-items: center;
}
.social-container {
  margin-top: 30px;
  gap: 10px;
}
.social_btn {
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.instagram {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.linkedin {
  background-color: #0077b5;
}
.social_btn:hover {
  width: 110px;
  border-radius: 30px;
}
.social_btn:hover .text {
  opacity: 1;
}
.social_btn:hover .svgIcon {
  opacity: 0;
  transition-duration: 0.3s;
}
.text {
  position: absolute;
  text-align: center;
  color: #fff;
  width: 120px;
  font-weight: 600;
  opacity: 0;
}
.svgIcon {
  transition-duration: 0.3s;
}
.svgIcon path {
  fill: white;
}
.footer-bottom {
  display: grid;
  column-gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--silverMist);
  row-gap: 10px;
  align-items: center;
}
.footer-bottom p {
  color: var(--white);
  font-size: 1rem;
}
.footer-bottom a {
  transition: 0.3s ease-in-out;
  color: var(--white);
}
.footer_center-1 {
  order: 2;
}
.footer_center-3 {
  order: 3;
}
@media (min-width: 576px) {
  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-form-wrapper .information_area,
.contact-section .map-area,
.contact_boxs_wrapper {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.custom_navigation_bar {
  background-image: linear-gradient(54.47deg, #000613, #081633 40.6%, #28b486);
  background-repeat: no-repeat;
  background-size: 150% 100%;
  height: auto;
  min-height: 300px;
  left: 0;
  overflow: visible;
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
}
.contact-form-wrapper .information_area .information_box ul li,
.custom_navigation_bar article .my-speedbar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom_navigation_bar article {
  display: flex;
  flex-direction: column;
  color: var(--white);
  row-gap: 20px;
  margin-top:20px;
}
.custom_navigation_bar article h1 {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
}
.custom_navigation_bar article a,
.custom_navigation_bar article span {
  color: var(--white);
}
.contact-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.contact_boxs_wrapper {
  display: grid;
  row-gap: 30px;
  column-gap: 25px;
  align-items: stretch;
}
.contact-box {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 20px;
  background: #f2f2f2;
}
.contact-icon_area {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71%/39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2em;
  background: #33475b;
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
  margin-bottom: 20px;
}
.contact-box-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--black);
  font-weight: 700;
}
.contact-box-content a,
.contact-box-content span {
  color: var(--charcoalGray);
  line-height: 1.3;
}
@keyframes icon-animat {
  0%,
  100% {
    border-radius: 67% 33% 29% 71%/39% 46% 54% 61%;
  }
  25% {
    border-radius: 69% 31% 19% 81%/43% 37% 63% 57%;
  }
  50% {
    border-radius: 67% 33% 16% 84%/57% 37% 63% 43%;
  }
  75% {
    border-radius: 77% 23% 61% 39%/36% 61% 39% 64%;
  }
}
.contact-form-wrapper {
  gap: 20px;
  column-gap: 30px;
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
.contact-form-wrapper .form_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form-wrapper .form_area {
  border-radius: 10px;
  padding: 20px;
  background: #f2f2f2;
}
.contact-form-wrapper .form_area .input_fields input,
.contact-form-wrapper .form_area .input_fields textarea {
  background-color: #fff;
  border: none;
  width: 100%;
  padding: 0.375rem 0.75rem;
  outline: 0 !important;
  color: var(--black);
  display: block;
}
.contact-form-wrapper .form_area h6 {
  color: var(--black);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-form-wrapper .form_area p {
  color: var(--black);
  font-size: 1rem;
  text-align: start;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 20px;
}
.contact-form-wrapper .form_area .input_fields input {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  height: 50px;
  border-radius: 10px;
}
.contact-form-wrapper .form_area .input_fields textarea {
  min-height: 100px;
  max-height: 150px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  resize: none;
}
.contact-form-wrapper .form_area .input_fields button {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  transition: 0.3s ease-in-out;
  line-height: 1.5;
  color: var(--white);
  height: 50px;
  border: none;
  outline: 0 !important;
  background: #33475b;
  cursor: pointer;
  border-radius: 10px;
}
.contact-form-wrapper .form_area .input_fields button:hover {
  background: #2a3f54;
}
.contact-form-wrapper .information_area {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 1rem;
  display: grid;
  gap: 20px;
}
.contact-form-wrapper .information_area .information_box {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
}
.contact-form-wrapper .information_area .information_box h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-form-wrapper
  .information_area
  .information_box
  ul
  li:not(:last-child) {
  margin-bottom: 10px;
}
.contact-form-wrapper .information_area .information_box ul li b {
  font-weight: 700;
}
.contact-form-wrapper .information_area .information_box ul li a,
.contact-form-wrapper .information_area .information_box ul li span {
  color: var(--charcoalGray);
  font-size: 0.875rem;
}
.contact-form-wrapper .social_area {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-form-wrapper .social_area a {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  width: 60px;
  height: 60px;
  transition: 0.3s ease-in-out;
  color: var(--black);
  background: #f2f2f2;
  border-radius: 50%;
}
.contact-form-wrapper .social_area a:hover {
  background: #33475b;
  color: var(--white);
}
.contact-section .map-area {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}
.contact-section .map-area a.map-link {
  font-size: 1.5rem;
  display: block;
  color: var(--midnightBlue);
  margin-bottom: 20px;
  text-align: center;
}
.contact-section .map-area .factory,
.contact-section .map-area .showroom {
  height: 250px;
}
.product_inside_section .section-title {
  justify-content: center;
}
.product_inside_section h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--midnightBlue);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}
.product_inside_cat_wrapper,
.product_inside_wrapper {
  display: grid;
  gap: 20px;
  align-items: baseline;
  max-width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.product_inside_cat_wrapper .products_card article h3 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
}
.products_card,
.products_card figure {
  position: relative;
}
.products_card a {
  display: block;
  width: 100%;
  position: absolute;
  height: 100%;
  inset: 0;
}
.products_card figure svg {
  width: 100%;
  height: 50%;
  position: absolute;
  color: #f5f4f4;
  bottom: 0;
  left: 0;
  transition: 0.3s ease-in-out;
}
.products_card figure img {
  width: 100%;
  height: 40%;
  max-height: 205px;
  position: relative;
  object-fit: contain;
  transition: 0.3s ease-in-out;
}
.products_card:hover figure img {
  transform: translateY(-20px);
}
.products_card article {
  padding: 20px 10px;
}
.products_card article h3 {
  color: var(--mediumGray);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.promotoion_section .section-title p {
  width: 100%;
}
.promotion_film_wrapper {
  display: grid;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.promotion_film_card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  padding: 40px;
  height: 252px;
}
.promotion_film_card::after {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
}
.promotion_film_card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.promotion_film_card article {
  display: flex;
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  flex-direction: column;
  row-gap: 20px;
  align-items: start;
  justify-content: flex-start;
}
.promotion_film_card article .play_video {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
  transition: 0.3s ease-in-out;
  font-size: 20px;
}
.promotion_film_card article .play_video i {
  font-size: 16px;
  size: inherit;
}
.promotion_film_card article .play_video:hover {
  background: var(--white);
  color: var(--crimsonBlaze);
}
.promotion_film_card article h3 {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}
.promotion_film_card article .watch_video {
  color: var(--white);
  font-size: 1rem;
  line-height: 2.5rem;
  position: relative;
}
.promotion_film_card article .watch_video::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  content: "";
  height: 2px;
  transition: 0.3s ease-in-out;
  background: var(--white);
}
.promotion_film_card article .watch_video:hover::after {
  width: 0;
}
@media (min-width: 768px) {
  .footer-head {
    grid-template-columns: 1fr 1fr;
  }
  .promotion_film_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .social_icons {
    display: block;
  }
  .footer-center h3,
  .footer_left a {
    margin-bottom: 50px;
  }
  .footer_center-1 {
    order: 1;
  }
  .footer_center-2 {
    order: 2;
  }
  .footer_center-3 {
    order: 3;
  }
  .footer-head {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  }
  .footer-bottom a {
    text-align: right;
  }
  .promotion_film_wrapper {
    max-width: 80%;
  }
}
.referrals_card {
  border-color: #f0f0f0;
  background-color: #f7f7f7;
  padding: 15px;
  border-radius: 5px;
}
.referrals_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--navyDeep);
  font-size: 1rem;
  line-height: 1.2;
}
.referrals_body iframe {
  width: 100%;
  border: none;
  border-radius: 5px;
  height: 250px;
}
@media screen and (min-width: 1400px) {
  .global_manufactures .section-title h3,
  .hero_content article h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .hero_content img {
    width: 50%;
  }
  .referrals_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.portfolio_card {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  height: 300px;
  width: 100%;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}
.portfolio_card a {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 2;
  height: 100%;
  display: block;
}
.portfolio_card:hover {
  background: linear-gradient(to bottom, #258dc8 0, #683c13 100%);
}
.portfolio_card img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: opacity 0.35s;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
.portfolio_card:hover img {
  opacity: 0.1;
}
.portfolio_card .caption {
  padding: 20px;
  position: relative;
  height: 100%;
  width: 100%;
}
.portfolio_card .caption::after {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 25%;
  border: 7px solid #fff;
  content: "";
  transition: transform 0.35s;
  transform: translate3d(0, 0, 0);
}
.portfolio_card:hover .caption p,
.portfolio_card:hover .caption::after {
  transform: translate3d(0, 50%, 0);
  bottom: 60px;
  top: unset;
  opacity: 1;
}
.portfolio_card .caption h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 20px;
  text-align: start;
}
.portfolio_card .caption p {
  color: #fff;
  position: absolute;
  right: 60px;
  bottom: 60px;
  left: 60px;
  opacity: 0;
  -webkit-transition:
    opacity 0.35s,
    -webkit-transform 0.35s;
  transition:
    opacity 0.35s,
    transform 0.35s;
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, 0, 0);
  display: -webkit-box;
  -webkit-line-break: 1;
  overflow: hidden;
  font-size: 16px;
  line-height: 1;
  text-overflow: ellipsis;
  min-height: 40px;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .portfolio-wrapper,
  .referrals_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .referrals_body iframe {
    height: 280px;
  }
  .referrals_card {
    padding: 25px;
  }
}
.accessories_card {
  padding: 20px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: baseline;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  border-radius: 17px;
}
.accessories_card a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}
.accessories_card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 150px;
}
@media screen and (min-width: 450px) {
  .product_inside_cat_wrapper,
  .product_inside_wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .accessories_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sertificates_wrapper {
  display: grid;
  gap: 20px;
  align-items: stretch;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.asistal_pdf {
  padding: 1.25rem;
  transition: 0.3s ease-in-out;
  background: 0 0;
  border: 1px solid #55565a;
  object-fit: contain;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  justify-content: space-between;
}
.asistal_pdf:hover {
  background: #081a3d;
  border-color: #081a3d;
}
.asistal_pdf:hover img {
  filter: invert(1) brightness(1);
}
.asistal_pdf img {
  width: 31px;
  max-width: 40px;
  height: auto;
}
.asistal_pdf:hover h3 {
  color: #fff;
}
.asistal_pdf h3 {
  color: #55565a;
  font-size: 16px;
  line-height: 1.3;
}
.asistal_pdf:hover a {
  color: #fff;
  border-color: #fff;
}
.asistal_pdf a {
  color: #55565a;
  padding-bottom: 5px;
  width: fit-content;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  border-bottom: 2px solid #55565a;
}
.asistal_pdf a:hover {
  border-bottom-color: transparent;
}
@media screen and (min-width: 576px) {
  .contact-form-wrapper .information_area {
    padding: 2.5rem;
  }
  .contact_boxs_wrapper,
  .sertificates_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .accessories_wrapper,
  .contact_boxs_wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .contact-section .map-area .factory,
  .contact-section .map-area .showroom {
    height: 400px;
  }
  .contact-section .map-area {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form-wrapper .social_area {
    flex-direction: column;
    justify-content: unset;
  }
  .contact-form-wrapper {
    grid-template-columns: 2fr 0.2fr 2fr;
  }
  .product_inside_wrapper {
    max-width: 80%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .portfolio_card .caption h2 {
    padding: 20px;
    font-size: 30px;
  }
  .sertificates_wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.speedbar {
  line-height: 1.5;
}


/*fag*/
.fag_section .container{
         max-width: 60%;
}
 .faq-container {
            width: 100%;
       
        }

        .faq-title {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 32px;
            display:block;
        }

        /* Details element əsas stil */
        details {
            background: #ffffff;
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        details:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Summary stil */
        summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
            color: #1f2937;
            transition: color 0.3s ease;
            position: relative;
        }

        /* Default browser marker'ı gizlət */
        summary::-webkit-details-marker {
            display: none;
        }

        /* Font Awesome ikon konteyneri */
        .icon-wrapper {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 16px;
            position: relative;
        }

        /* İkonlar - CSS transition ilə dönmə */
        .icon-wrapper i {
            position: absolute;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            color: #d12a2e;
        }

        /* Bağlı vəziyyətdə: aşağı ox görünür, yuxarı ox gizlənir */
        .icon-chevron-down {
            opacity: 1;
            transform: rotate(0deg);
        }

        .icon-chevron-up {
            opacity: 0;
            transform: rotate(-180deg);
        }

        /* Açıq vəziyyətdə: yuxarı ox görünür, aşağı ox gizlənir */
        details[open] .icon-chevron-down {
            opacity: 0;
            transform: rotate(180deg);
        }

        details[open] .icon-chevron-up {
            opacity: 1;
            transform: rotate(0deg);
        }

        /* Cavab məzmunu */
        .faq-content {
            padding: 0 24px 20px 24px;
            color: #4b5563;
            font-size: 15px;
            line-height: 1.6;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Bullet point stil */
        .faq-content ul {
            list-style: none;
            padding-left: 0;
        }

        .faq-content ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
        }

        .faq-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background-color: #d12a2e;
            border-radius: 50%;
        }

        /* Açıq detal üçün border accent */
        details[open] {
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
        }

        /* Responsiv */
        @media (max-width: 640px) {
            .faq-title {
                font-size: 24px;
                margin-bottom: 24px;
            }

            summary {
                padding: 16px 20px;
                font-size: 15px;
            }

            .faq-content {
                padding: 0 20px 16px 20px;
                font-size: 14px;
            }
        }
        
.usefull_links_wrapper{
    display:flex;
    flex-direction:column;
    row-gap:20px;
}
.usefull-info_card {
    /*max-width: 400px;*/
    margin: 20px 0;
  }

  .info-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }

  .info-link:hover {
    border-color: #C8102E;
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.12);
    transform: translateY(-2px);
  }

  .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 12px;
    color: #C8102E;
    flex-shrink: 0;
  }

  .info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .info-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
  }

  .info-desc {
    font-size: 13px;
    color: #6b7280;
  }

  .info-arrow {
    color: #9ca3af;
    transition: all 0.3s ease;
  }

  .info-link:hover .info-arrow {
    color: #C8102E;
    transform: translateX(4px);
  } 
.usefull_section_wrapper{
    display:flex;
    flex-direction:column;
    row-gap:50px;
}
.usefull_section_wrapper .content {
    color: gray;
    font-size: 16px;
    line-height: 1.6;
}

/* Paragraph */
.usefull_section_wrapper .content p {
    margin: 0 0 10px;
}

/* Bold / italic */
.usefull_section_wrapper .content strong {
    font-weight: 700;
}
.usefull_section_wrapper .content em {
    font-style: italic;
}

/* UL - disc */
.usefull_section_wrapper .content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
}

/* OL - decimal */
.usefull_section_wrapper .content ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin: 10px 0;
}

/* LI spacing */
.usefull_section_wrapper .content li {
    margin-bottom: 6px;
}

/* Headings */
.usefull_section_wrapper  h1 {
    font-size: 28px;
    margin-bottom:20px;
}
.usefull_section_wrapper .content h2 {
    font-size: 24px;
    margin: 15px 0 10px;
}
.usefull_section_wrapper .content h3 {
    font-size: 20px;
    margin: 12px 0 8px;
}

.usefull_related_category{
    display:flex;
    flex-direction:column;
}
.usefull_related_category strong{
    font-size:24px;
    margin-bottom:30px;
    color:#111827;
}
.usefull_related_category .wrapper{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:20px;
}
@media screen and (min-width:576px){
   .usefull_related_category .wrapper{
    grid-template-columns:repeat(2,1fr);
} 
}
@media screen and (min-width:992px){
   .usefull_related_category .wrapper{
    grid-template-columns:repeat(3,1fr);
} 
} 