@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1540px;
  }
}

@media only screen and (min-width: 1800px) {
  .container {
    max-width: 1680px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 80px;
}

body {
  background: #fdfdfd;
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
}

.site-logo li a svg {
  max-width: 100%;
  width: auto;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

:root {
  --blue: #0e437f;
  --white: #fff;
  --black: #1e1e1e;
  --link-radius: 35px;
  --light-gray: #2c3e50;
  --gray: #8f8f8f;
  --green: #8fcf00;
  --radius: 10px;
  --light-blue: #0065b5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Hamburger Menu CSS Start */
.hamburger-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  justify-content: center;
}

.hamburger-trigger span {
  height: 2px;
  display: block;
  background-color: var(--blue);
  transition: all 0.5s ease-in-out;
}

.hamburger-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}

.first-hamburger {
  width: 30px;
}

.second-hamburger {
  width: 21px;
}

.active-hamburger .first-hamburger {
  transform: rotate(45deg) translate(0px, 10px);
}

.active-hamburger .second-hamburger {
  width: 30px;
  transform: rotate(-45deg) translate(-5px, -6px);
}

.full-screen-menu {
  position: fixed;
  top: 78px;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  padding-top: 50px;
  overflow-y: auto;
  padding-bottom: 100px;
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.75s ease-in-out;
}

.active-full-screen {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  z-index: 999;
}

.search-and-cart {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-holder svg {
  max-width: 20px;
  width: auto;
  height: auto;
  position: relative;
  top: 3px;
}

.liked-items {
  position: relative;
}

.liked-items svg {
  max-width: 20px;
  width: auto;
  height: auto;
  position: relative;
  top: 2px;
  left: 2px;
}

.box-content-holder {
  position: absolute;
  bottom: -5px;
  right: 0;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
}

.liked-items {
  width: 30px;
}

.box-content-holder span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  color: #fff;
  line-height: 9px;
}

.cart-item {
  position: relative;
  width: 30px;
}

.list-item {
  position: relative;
  width: 30px;
}

.login-holder svg {
  max-width: 30px;
  width: auto;
  max-height: 25px;
  height: auto;
}

.login-holder {
  position: relative;
  width: 30px;
}

.full-screen-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.full-screen-list li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  font-style: normal;
  text-rendering: optimizeLegibility;
}

.full-screen-list li a {
  color: var(--black);
  text-decoration: none;
}

.full-screen-dropdown {
  display: flex;
  flex-direction: column;
  max-height: 25px;
  overflow: hidden;
  gap: 5px;
  transition: all 0.5s ease-in-out;
}

.full-screen-categories-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.full-screen-categories-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
}

.full-screen-categories-trigger svg {
  transition: all 0.5s ease-in-out;
  position: relative;
  top: 2px;
}

.active-full-screen-dropdown .full-screen-categories-trigger svg {
  transform: rotate(180deg);
}

.active-full-screen-dropdown .full-screen-categories-holder {
  opacity: 1;
  visibility: visible;
}

.active-full-screen-dropdown {
  max-height: 1000px;
}

.full-screen-contact {
  margin-top: 50px;
}

.full-screen-contact li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.header-svg-box {
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
}

.full-screen-socials {
  margin-top: 50px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.full-screen-socials li a {
  text-decoration: none;
}

.full-screen-address {
  margin-top: 30px;
}

.desktop-links {
  display: none;
}

.desktop-only-banner {
  display: none;
}

/* Hamburger Menu CSS End */

/* Fonts CSS Start */

.title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: var(--white);
}

.heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: var(--light-blue);
}

.body-text {
  font-size: 14px;
  line-height: 120%;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
}

/* Fonts CSS End */

/* Spacings CSS Start */

.spacing-top {
  padding-top: 100px;
}

.spacing-bottom {
  padding-bottom: 100px;
}

.margin-spacing-top {
  margin-top: 100px;
}

.margin-spacing-bottom {
  margin-bottom: 100px;
}

/* Spacings CSS End */

/* Home CSS Start */

.site-main {
  height: 850px;
  position: relative;
}

.site-main-hero {
  position: relative;
  height: 850px;
}

.site-main-hero::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0px;
  width: 100%;
  height: 400px;
  background: linear-gradient(0deg, #fdfdfd 20%, rgba(253, 253, 253, 0) 100%);
  z-index: 2;
}

.absolute-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.absolute-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linear-link {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 10px 15px;
  border-radius: var(--link-radius);
  text-decoration: none;
  gap: 16px;
}

.blue-link {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 10px 15px;
  border-radius: var(--link-radius);
  text-decoration: none;
  gap: 16px;
}

.linear-link::before {
  content: "";
  position: absolute;
  border-radius: var(--link-radius);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #69910f 0%, #8fcf00 100%);
}

.blue-link::before {
  content: "";
  position: absolute;
  border-radius: var(--link-radius);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #033a66 0%, #0065b5 100%);
}

.linear-link span {
  position: relative;
  z-index: 3;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 16px;
  color: var(--light-gray);
  font-style: normal;
  text-rendering: optimizeLegibility;
}

.linear-link svg {
  position: relative;
  z-index: 3;
}

.blue-link span {
  position: relative;
  z-index: 3;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 16px;
  color: var(--white);
  font-style: normal;
  text-rendering: optimizeLegibility;
}

.blue-link svg {
  position: relative;
  z-index: 3;
}

.site-main {
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.site-main-container {
  position: relative;
  padding-top: 200px;
  z-index: 3;
}

.site-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.site-main-texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-main-texts p {
  color: var(--white);
}

.industri-container {
  padding-top: 100px;
}

.title-and-text .heading {
  text-align: center;
}

.title-and-text .body-text {
  text-align: center;
}

.title-and-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.industri-holder {
  margin-top: 30px;
}

.industri-holder {
  display: grid;
  grid-template: auto / repeat(2, 1fr);
  gap: 20px;
}

.single-industri-item {
  display: block;
  position: relative;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.05));
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
}

.single-industri-item .single-industri-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.single-industri-text {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  padding: 20px 10px 10px 10px;
  background: url("../images/industribg.svg") no-repeat left;
  display: flex;
  justify-content: space-between;
}

.single-industri-svg {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 40px;
}

.single-industri-svg svg {
  max-width: 100%;
  width: auto;
  height: auto;
}

.single-industri-text-and-svg {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.single-industri-text-and-svg svg {
  max-height: 10px;
  height: auto;
  width: auto;
}

.single-industri-text span {
  font-weight: 500;
  color: var(--light-blue);
}

.left-aligned-text-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brendet-container {
  padding-top: 100px;
}

.brands-holder {
  margin-top: 30px;
  display: grid;
  grid-template: auto / 32% 32% 32%;
  grid-gap: 2%;
  gap: 2%;
}

.single-brand {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(30, 30, 30, 0.1);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
}

.single-brand img {
  max-height: 100%;
  height: auto;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.products-holder {
  display: grid;
  grid-template: auto / repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.single-product-item {
  border-radius: var(--radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
  padding: 15px 20px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
}

.single-product-infos {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.single-products-no-new {
  justify-content: flex-end;
}

.heart-holder {
  position: relative;
  background: none;
  outline: none;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
}

.not-fill-heart {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.fill-heart path {
  transition: all 0.5s ease-in-out;
  fill: var(--green);
}

.fill-heart {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.active-heart-button .fill-heart {
  opacity: 1;
}

.active-heart-button .not-fill-heart {
  opacity: 0;
}

.active-heart-button .fill-heart path {
  opacity: 1;
}

.new-holder {
  padding: 5px 15px;
  border-radius: 50px;
  background: #8fcf00;
}

.product-contents {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  text-decoration: none;
  flex-grow: 1;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.product-title-and-description {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-title p {
  font-size: 18px;
  font-weight: 500;
}

.product-description p {
  color: var(--gray);
}

.product-price-and-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-grow: 1;
}

.product-price span {
  font-size: 16px;
  font-weight: 500;
  color: #0065b5;
}

.sale-price-holder {
  display: flex;
  flex-direction: column;
}

.sale-price-holder .regular-price {
  text-decoration: line-through;
  color: var(--black) !important;
  opacity: 0.8;
}

.product-price-and-link .product-link-holder span {
  color: #0065b5;
  font-size: 16px;
}

.product-price-and-link .product-link-holder {
  text-decoration: underline;
}

.s-product-quantities {
  display: flex;
  width: fit-content;
}

.s-product-cart button {
  border: none;
}

.s-product-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.s-product-quantities {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 15px;
  border-radius: var(--link-radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background-color: rgba(0, 101, 181, 0.09);
  height: 36px;
}

.s-product-quantities button {
  outline: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  font-style: normal;
  line-height: 100%;
}

.see-all-holder {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.kontakt-left-aligned-text-title h5 {
  color: var(--white);
}

.kontakt-left-aligned-text-title p {
  color: var(--white);
}

.kontakt-section {
  background: linear-gradient(270deg, #0065b5 0%, #002c4f 100%);
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
}

.kontakt-section .container {
  position: relative;
  z-index: 5;
}

.p-home-kontakt-svg {
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-home-kontakt-svg svg {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}

.two-links .tel-link::before {
  opacity: 0;
}

.two-links a {
  width: 245px;
}

.two-links .email-link {
  border: 1px solid transparent;
}

.two-links .tel-link {
  border: 1px solid var(--green);
}

.two-links a span {
  font-weight: 600;
}

.email-link span {
  color: #2c3e50;
}

.tel-link span {
  color: #8fcf00;
}

.two-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svg-box-holder {
  width: 26px;
  height: 26px;
}

.map-holder {
  width: 100%;
  margin-top: 50px;
  position: relative;
}

.map-image {
  width: 100%;
}

.map-holder img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.map-content {
  position: absolute;
  top: 53%;
  left: 15%;
  z-index: 5;
}

.map-dot {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #8fcf00;
}

.map-dot::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: -5px;
  left: -5px;
  border: 1px solid #8fcf00;
  animation: infinitePulsate 3s infinite linear;
}

.map-location {
  display: block;
  border-radius: var(--radius);
  text-decoration: none;
  position: absolute;
  top: 24px;
  left: -40px;
  width: 200px;
  padding: 1rem;
  background: #8fcf00;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.map-location p {
  color: var(--white);
}

.map-location p span {
  font-weight: 600;
}

.map-content:not(:hover) .map-location {
  transition-delay: 0.3s;
}

.map-content:hover .map-location {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

@keyframes infinitePulsate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.kontakt-container {
  padding-bottom: 50px;
}

/* Home CSS End */

/* Footer CSS Start */

footer .first-footer-items {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title {
  color: #fff;
  font-family: "Robot", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer-social-media {
  margin-top: 50px;
}

.footer-social-media ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

.footer-social-media ul li a {
  text-decoration: none;
}

.footer-lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.footer-lists ul {
  padding: 0;
  margin: 0;
}

.footer-lists ul .normal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.normal-link {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.orari-holder {
  line-height: 20px;
}

.first-list-item {
  margin-bottom: 10px;
}

.footer-svg-box {
  width: 16px;
  height: 16px;
}

.footer-svg-box svg {
  max-width: 16px;
  max-height: 16px;
  height: auto;
  width: auto;
}

.svg-link {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  gap: 10px;
}

.second-footer-items {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.second-footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.second-footer-items a {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  text-decoration: none;
}

.second-footer-items a span {
  font-weight: 600;
  color: #8fcf00;
}

.imprint-year span {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
}

.cards {
  display: flex;
  align-items: center;
  gap: 10px;
}

.active-footer-link {
  color: var(--green) !important;
}

/* Footer CSS End */

/* Rreth Nesh CSS Start */

.shared-main img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.p-about-slider {
  padding-top: 100px;
}

.texts-and-buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.buttons-holder {
  display: flex;
  align-items: center;
  padding: 7px 15px;

  border-radius: var(--link-radius);
  border: 1px solid var(--light-blue);
  gap: 25px;
  width: fit-content;
}

.buttons-holder button {
  border: none;
  outline: none;
  padding: 0px;
  background: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-holder button svg path {
  fill: var(--light-blue);
}

.next-btn svg {
  transform: rotate(180deg);
}

.p-about-swiper-holder {
  margin-top: 30px;
}

.p-about-swiper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: var(--radius);
}

.p-about-historiku {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background: linear-gradient(270deg, #0065b5 0%, #002c4f 100%);
}

.p-about-historiku .container {
  position: relative;
  z-index: 3;
}

.white-texts .heading {
  color: var(--white);
}

.white-texts .body-text {
  color: var(--white);
}

.p-about-historiku-slider {
  margin-top: 30px;
  overflow: unset;
}

.p-about-historiku-slider .swiper-slide {
  height: 100%;
}

.p-historiku-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 15px;
  border-radius: var(--radius);
  background: #fff;
  height: 100%;
}

.p-historiku-title span {
  color: var(--green);
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
}

.p-about-historiku {
  overflow: hidden;
}

.p-about-swiper-pagination {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  margin-top: 30px;
}

.p-about-swiper-pagination .rreth-pagination,
.variation-pagination {
  position: relative;
  height: 2px;
  background: rgba(143, 207, 0, 0.5);
}

.p-about-swiper-pagination .rreth-pagination span,
.variation-pagination span {
  background: var(--green);
}

.next-btn-historiku svg {
  transform: rotate(180deg);
}

.historiku-btns {
  border: 1px solid var(--green);
}

.historiku-btns button svg path {
  fill: var(--green);
}

.p-historiku-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-historiku-svg svg {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}

.p-about-pikat {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-about-pika2 {
  margin-top: 50px;
}

.p-about-pikat-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-about-pikat-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-about-pikat-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  max-height: 100%;
}

.team-container {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 2%;
}

.team-member {
  flex: 0 0 48%;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
}

.team-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: var(--radius);
  opacity: 0.5;
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-bottom: 5px;
}

.team-name span {
  font-weight: 500;
  color: var(--light-blue);
}

.kontakt-linear {
  background: linear-gradient(270deg, #0065b5 0%, #002c4f 100%);
  position: relative;
}

.kontakt-linear-container {
  padding-top: 75px;
  padding-bottom: 75px;
}

.kontakt-linear .container {
  position: relative;
  z-index: 3;
}

.kontakt-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 200px;
  width: 100%;
}

.kontakt-svg svg {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100%;
}

.p-kontakt-texts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-kontakt-texts h6 {
  color: var(--white);
}

.p-about-jobs-wrapper {
  margin-top: 20px;
}

.p-about-jobs-wrapper a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--black);
  padding-top: 10px;
  padding-bottom: 10px;
}

.border-top-job {
  border-top: 1px solid var(--black);
}

.p-about-jobs-wrapper a svg {
  max-width: 20px;
  width: auto;
  height: auto;
}

.p-about-jobs-wrapper a span {
  font-size: 20px;
  line-height: 20px;
  color: var(--black);
}

/* Rreth Nesh CSS End */

/* Categories CSS Start */

.p-categories-container {
  padding-top: 100px;
}

.p-categories-holder {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 20px;
}

.p-categories-holder a {
  flex: 0 0 48%;
  border-radius: var(--radius);
  border: 1px solid rgba(44, 62, 80, 0.15);
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.02);
  padding: 15px 20px;
  text-decoration: none;
}

.p-category-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
}

.p-category-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.p-category-image img {
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}

.linear-footer {
  background: linear-gradient(270deg, #0065b5 0%, #002c4f 100%);
}

.shop-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}

.shop-makineri-title {
  padding-top: 20px;
}

.category-filter-btn {
  outline: none;
  border: none;
  padding: unset;
  background: none;
  width: fit-content;
}

.under-categories-main-button button {
  outline: none;
  border: none;
  padding: unset;
  background: none;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
}

.under-categories-main-button button svg {
  transition: all 0.5s ease-in-out;
}

.under-categories-main-button button svg path {
  transition: all 0.5s ease-in-out;
}

.under-categories-holder {
  max-height: 30px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.under-categories-children {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 5px;
}

.active-under-category {
  max-height: 1000px;
}

.active-under-category .under-categories-children {
  opacity: 1;
  pointer-events: auto;
}

.active-under-category .parent-category-main-button span {
  color: var(--light-blue);
}

.active-under-category .parent-category-main-button button svg {
  transform: rotate(-180deg);
}

.active-under-category .parent-category-main-button button svg path {
  fill: var(--light-blue);
}

.active-child-category .under-categories-btn-holder span {
  color: var(--light-blue);
}

.active-child-category .under-categories-btn-holder button svg {
  transform: rotate(-180deg);
}

.active-child-category .under-categories-btn-holder button svg path {
  fill: var(--light-blue);
}

.active-child-category .under-categories-children {
  opacity: 1;
  pointer-events: auto;
}

.active-child-category {
  max-height: 1000px;
}

.shop-categories-holder {
  background: #fff;
  border: 1px solid rgba(30, 30, 30, 0.1);
  padding: 10px 15px;
  position: absolute;
  top: 50px;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.shop-categories-and-filter {
  position: relative;
}

.shop-main-categories-title span {
  font-size: 20px;
  font-weight: 600;
}

.shop-main-categories-title {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.shop-main {
  padding-top: 50px;
}

.shop-categories-filter {
  border: none;
  outline: none;
  padding: 10px 15px;
  background: #fff;
  border-radius: var(--link-radius);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--black);
}

.active-categories-holder .shop-categories-holder {
  opacity: 1;
  z-index: 100;
}

.shop-categories-filter svg path {
  transition: all 0.5s ease-in-out;
}

.shop-categories-filter span {
  transition: all 0.5s ease-in-out;
}

.active-filter .shop-categories-filter svg path {
  stroke: var(--light-blue);
}

.active-filter .shop-categories-filter span {
  color: var(--light-blue);
}

.shop-search-category {
  margin-top: 50px;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-active-category-title span {
  font-weight: 600;
}

.shop-current-category span {
  color: var(--light-blue);
}

.shop-search {
  position: relative;
  width: fit-content;
}

.shop-search input {
  font-family: "Robot", sans-serif;
  font-weight: 400;
  color: var(--black);
  font-style: normal;
  text-rendering: optimizeLegibility;
  line-height: 100%;
  outline: none;
  border: none;
  background: none;
  border-radius: 10px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: rgba(230, 240, 248, 0.3);
  padding: 5px 30px 5px 10px;
}

.shop-search svg {
  position: absolute;
  top: 5px;
  right: 10px;
  max-height: 20px;
  height: auto;
  max-width: 100%;
  width: auto;
}

.shop-search input[type="search"]::-webkit-search-decoration,
.shop-search input[type="search"]::-webkit-search-cancel-button,
.shop-search input[type="search"]::-webkit-search-results-button,
.shop-search input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.shop-items-holder {
  display: grid;
  grid-template: auto / repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.shop-items-holder-pagination {
  display: none;

  gap: 20px;
}

.active-shop-items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.shop-categories button span {
  transition: all 0.5s ease-in-out;
}

.active-category-filter-btn span {
  color: var(--light-blue);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination-wrapper .page-numbers {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid #1e1e1e;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  text-rendering: optimizeLegibility;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
  text-decoration: none;
  color: var(--black);
  transition: all 0.5s ease-in-out;
}

.pagination-wrapper .prev,
.pagination-wrapper .next {
  border: none;
}

.pagination-wrapper .current {
  color: var(--white);
  border: 1px solid var(--light-blue);
  background-color: var(--light-blue);
  opacity: 1;
}

.pagination-wrapper .page-numbers:hover {
  color: var(--white);
  border: 1px solid var(--light-blue);
  background-color: var(--light-blue);
  opacity: 0.5;
}

.shop-search-results {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.active-results {
  display: flex;
}

/* Categories CSS End */

/* Cart CSS Start */

.p-cart-extra-items {
  padding-left: 1rem;
}

#billing_country_field {
  display: none;
}

.p-cart-extra-items span {
  font-size: 14px !important;
  line-height: 14px !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

.p-cart-main {
  padding-top: 50px;
}

.p-checkout .woocommerce-form-coupon-toggle {
  display: none;
}

.p-checkout label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--black);
}

.p-checkout input {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.3);
}

.p-checkout .form-row {
  margin: 0 !important;
  margin-bottom: 15px !important;
}

.p-checkout .select2-container--default,
.p-checkout .select2-selection--single,
.p-checkout .select2-selection__rendered {
  font-family: "Roboto", sans-serif;
  color: var(--black);
}

.woocommerce-billing-fields__field-wrapper select {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.3);
}

.p-checkout .woocommerce-additional-fields {
  margin-top: 30px;
}

#order-review-heading {
  display: none;
}

.shop_table {
  display: none;
}

.woocommerce-checkout-payment {
  margin-top: 20px;
}

#order_review_heading {
  margin-top: 30px;
}

.p-cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.p-cart-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;

  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
  padding: 15px 20px;
  position: relative;
}

.p-cart-item .product-image {
  width: 20%;
}

.p-cart-items-holder {
  display: flex;
  flex-direction: column;
}

.p-cart-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(70% - 20px);
}

.p-cart-contents-mobile {
  width: 100%;
}

.p-cart-quantity-total-mobile {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-cart-delete-btn-holder {
  position: absolute;
  right: 20px;
  top: 0px;
}

.p-cart-quantity-total-desktop {
  display: none;
}

.p-cart-title span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.p-cart-line-item {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-cart-quantity {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

#total-holder {
  color: var(--light-blue);
}

.p-cart-delete-btn-holder button {
  background: none;
  outline: none;
  padding: 0;
  border: none;
}

.p-cart-delete-btn-holder {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.p-cart-delete-btn-holder button span {
  color: var(--light-blue);
  text-decoration: underline;
}

.p-checkout .col-2 {
  display: none;
}

.p-cart-main-title span {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
}

.woocommerce-billing-fields h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: var(--black);
}

.woocommerce-checkout h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: var(--black);
}

.p-cart-totals {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
  padding: 15px 20px;
  border-radius: var(--radius);
  gap: 20px;
}

.no-show-item {
  display: none !important;
}

.p-cart-total-contents {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.p-cart-total-item {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-cart-product-totals-line {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-cart-main-total .total-text {
  font-weight: 600;
  font-size: 20px;
}

.p-cart-main-total #total {
  font-size: 20px;
  font-weight: 600;
}

.product-total-quantity {
  padding-top: 10px;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
}

.no-items-cart h1 {
  text-align: center;
  font-size: 25px;
}

.no-items-cart {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.empty-cart-main {
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-cart-items-titles {
  display: none;
}

/* Cart CSS End */

/* Contact CSS Start */

.p-contact-main {
  position: relative;
  padding-top: 50px;
}

.p-contact-main .container {
  position: relative;
  z-index: 10;
}

.p-contact-svg {
  position: absolute;
  top: 50px;
  left: 0;
  width: 80%;
}

.p-contact-svg svg {
  max-width: 100%;
  width: auto;
  height: auto;
}

.p-contact-form label {
  position: absolute;
  left: -10000px;
}

.row-line input {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.5);
  padding: 5px 0px;
  line-height: 16px;
  width: 100%;
}

.row-line p br {
  display: none;
}

.row-line p {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.row-line p span {
  width: 100%;
}

.wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -23px;
  left: 0;
}

.p-contact-form .wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin: 0;
  border: none;
  margin-top: 20px;
}

.row-line-textarea p br {
  display: none;
}

.row-line-textarea p {
  margin-bottom: 30px;
}

.row-line-textarea textarea {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.5);
  padding: 5px 0px;
  width: 100%;
  line-height: 16px;
}

.p-contact-form {
  margin-top: 30px;
}

.p-contact-form button {
  border: none;
  padding: 10px 15px;
}

/* Contact CSS End */

/* Industri CSS Start */

.s-industri-section {
  padding-top: 100px;
}

.s-industri-title-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.s-industri-texts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.zonat-title h2 {
  font-size: 20px;
  line-height: 120%;
  color: var(--light-gray);
  font-weight: 600;
  text-transform: uppercase;
}

/* Industri CSS End */

/* Zona CSS Start */

.s-zona-main {
  padding-top: 50px;
}

.s-zona-main-title h1 {
  text-align: center;
  margin-bottom: 20px;
}

.mobile-only-image {
  width: 100%;
  height: 650px;
}

.mobile-only-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 100%;
  border-radius: var(--radius);
}

.mobile-products-holder {
  position: relative;
}

.s-zona-slider {
  position: absolute;
  top: 100px;
  left: 10px;
  right: 10px;
  z-index: 10;
}

.s-zona-product {
  border-radius: var(--radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
  padding: 15px 20px;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.z-zona-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.z-zona-product-image img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}

.s-zona-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
  flex-grow: 1;
}

.s-zona-title span {
  font-weight: 500;
  color: var(--light-blue);
}

.s-zona-link {
  display: flex;
  justify-content: flex-end;
}

.s-zona-link a span {
  color: var(--light-blue);
}

.no-mobile-item {
  display: none;
}

.s-zona-desktop-image {
  display: none;
}

.s-zona-single-product-over-image {
  z-index: 10;
}

.modal-items-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.not-visible-mobile-zona {
  display: none;
}

.mobile-zonat {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-zona-content-trigger-mobile {
  background: #fff;
  position: relative;
  top: -10px;
  padding: 10px 9px 15px 9px;
  min-width: 200px;
  border-radius: var(--radius);
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.s-zona-visible-part-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  gap: 0px;
}

.s-zona-image-mobile {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-zona-image-mobile img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.s-zona-visible-part-mobile .s-zona-svg {
  display: none;
}

.s-zona-single-product-over-image-mobile {
  position: absolute;
}

.position-zona-mobile0 {
  top: 20px;
  left: 10px;
}

.position-zona-mobile1 {
  top: 170px;
  right: 10px;
}

.s-zona-absolute-svg-mobile {
  display: none;
}

.position-zona-mobile2 {
  top: 390px;
  left: 10px;
  transform: translate(0, -50%);
}

.position-zona-mobile3 {
  bottom: 0;
  right: 10px;
}

.s-zona-content-trigger-mobile button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px;
  background: none;
  outline: none;
  border: none;
}

/* Zona CSS End */

.full-screen-modal {
  width: 100%;
  height: calc(100vh - 80px);
  position: fixed;
  top: 80px;
  left: 0;
  bottom: 0;
  min-height: 100vh;
  background: #fdfdfd;
  padding-top: 50px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transform: translate3d(0, 100%, 0);
  transition:
    opacity 0.5s ease-in-out,
    visibility 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    z-index 0.5s ease-out;
  padding-bottom: 100px;
  overflow-y: auto;
}

.active-full-screen-modal {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.liked-main {
  padding-top: 50px;
  min-height: 100vh;
}

.contact-form-lista {
  margin-top: 50px;
  display: none;
  flex-direction: column;
}

#customer_details h3 {
  text-transform: uppercase;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background-color: var(--light-blue);
}

#order_review_heading {
  text-transform: uppercase;
}

.contact-form-lista label {
  position: absolute;
  left: -10000px;
}

.contact-form-lista #makineri {
  position: absolute;
  left: -10000px;
}

.no-liked {
  display: none;
}

.contact-form-lista label[for="makineri"] {
  position: absolute;
  left: -10000px;
}

.contact-form-lista .wpcf7 form .wpcf7-response-output {
  border: none;
  margin: 2em 0em 0em 0em;
  padding: 0em;
}

.contact-form-lista button {
  border: none;
  padding: 10px 15px;
}

.no-liked h1 {
  text-align: center;
}

.woocommerce-MyAccount-navigation {
  display: none;
}

.register-main {
  position: relative;
  min-height: 100vh;
}

.register-main .container {
  position: relative;
  z-index: 5;
}

.register-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  opacity: 0;
}

.register-svg svg {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100%;
}

.register-main .woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  display: none;
}

.register-main .woocommerce-MyAccount-content p:last-child {
  display: none;
}

.login-main .woocommerce-MyAccount-content p:last-child {
  display: none;
}

.register-main .u-column1 {
  display: none;
}

.register-content h2 {
  display: none;
}

.logged-in .register-main .register-content h1 {
  display: none;
}

.register-content {
  border-radius: var(--radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-content form {
  border: none !important;
  padding: 0 !important;
  border-radius: unset !important;
  margin: unset !important;
}

.login-main .container {
  position: relative;
  z-index: 10;
}

.register-main .register-content form .woocommerce-Button {
  display: none;
}

.login-main .lost_password {
  display: none;
}

.login-main .woocommerce-button {
  display: none !important;
}

.login-main .u-column2 {
  display: none;
}

.logged-in .logged-in-button {
  display: none;
}

.register-main .blue-link {
  outline: none;
  border: none;
}

.login-main .blue-link {
  outline: none;
  border: none;
}

.register-content label {
  position: absolute;
  left: -10000px;
}

.register-content input {
  color: var(--black);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  font-size: 16px;
  padding-bottom: 9px;
  border: none;
  outline: none !important;
  border-bottom: 1px solid rgba(30, 30, 30, 0.5);
  margin-bottom: 20px !important;
}

.register-content p {
  margin-bottom: 10px;
}

.register-content h1 {
  font-weight: 400;
}

.register-and-forgot {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: -30px;
}

.register-and-forgot a {
  color: rgba(30, 30, 30, 0.9);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
  text-decoration: none;
}

.logged-in .register-main h1 {
  display: none;
}

.logged-in .login-main h1 {
  display: none;
}

.logged-in .mire-se-vini-text {
  display: none;
}

.logged-in .register-and-forgot {
  display: none;
}

.login-holder img {
  max-width: 30px;
  width: auto;
  height: auto;
}

.search-holder {
  display: none;
}

.header-categories {
  display: none;
}

/* Imprint CSS Start */

.imprint-container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.imprint-main-content h1 {
  color: var(--blackColor);
  margin-bottom: 20px;
}

.imprint-content-wrapper p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--black);
  margin-bottom: 15px;
}

.imprint-main-content h1 {
  font-weight: 500;
}

.imprint-content-wrapper ul {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--black);
  margin-bottom: 15px;
  list-style: disc;
}

.imprint-content-wrapper h1,
.imprint-content-wrapper h2,
.imprint-content-wrapper h3,
.imprint-content-wrapper h4,
.imprint-content-wrapper h5,
.imprint-content-wrapper h6 {
  font-family: "Roboto", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 500;
  margin-top: 20px;
}

/* Imprint CSS End */

/* 404 CSS Start */

.four-o-four-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.four-o-four-content h1 {
  text-align: center;
}

.four-o-four-content p {
  text-align: center;
  margin-bottom: 10px;
}

/* 404 CSS End */

.category-main {
  padding-top: 50px;
}

/* Single Job CSS Start */

.s-job-main {
  padding-top: 50px;
}

.s-job-under-title-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.s-job-under-title {
  flex: 0 0 45%;
}

.s-job-under-title p {
  font-size: 14px;
  line-height: 14px;
}

.s-job-description {
  margin-top: 20px;
}

.s-job-fushat {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s-job-fusha {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-job-fusha-title p {
  font-weight: 700;
  color: var(--light-blue);
}

.s-job-apply {
  margin-top: 30px;
}

/* Single Job CSS End */

/* Account CSS Start */

.p-account-main {
  padding-top: 50px;
}

.p-account-avatar-and-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.p-account-dashboard {
  width: 100%;

  display: flex;
  flex-direction: column;
}

.p-account-navigations {
  border-radius: var(--radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
  padding: 15px 20px;
}

.p-account-avatar {
  width: 70px;
}

.p-account-avatar svg {
  max-width: 100%;
  width: auto;
  height: auto;
}

.p-account-current-user-form {
  margin-top: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
  padding: 15px 20px 40px 15px;
  display: none;
}

.p-account-current-user-orders {
  margin-top: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
  padding: 15px 20px 40px 15px;
  display: none;
}

.active-user-action {
  display: block;
}

.p-account-current-user-form .row-line {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.p-account-current-user-form .row-line label {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--black);
  font-size: 16px;
  line-height: 18px;
  font-style: normal;
}

.p-account-current-user-form {
  padding-bottom: 20px;
}

.p-account-current-user-form button {
  margin-top: 10px;
}

.p-account-infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-account-infos button {
  transition: all 0.5s ease-in-out;
  border: 1px solid transparent;
}

.p-account-infos button span {
  transition: all 0.5s ease-in-out;
}

.p-account-infos button::before {
  transition: all 0.5s ease-in-out;
}

.not-active-edits::before {
  opacity: 0;
}

.not-active-edits {
  background-color: #fff;
}

.not-active-edits span {
  color: var(--light-blue);
}

.not-active-edits {
  border: 1px solid var(--light-blue) !important;
}

.active-edits span {
  color: var(--white);
}

.active-edits::before {
  opacity: 1;
}

.active-edits {
  background-color: transparent;
  border: 1px solid transparent !important;
}

.p-account-edit-lists {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.previous-order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  border-bottom: 1px solid var(--black);
}

.p-account-order-details {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.p-account-order-details .order-number {
  font-size: 14px;
  line-height: 14px;
}

.border-top-order {
  border-top: 1px solid var(--black);
}

#form-response {
  margin-top: 20px;
  display: block;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.active-response-green {
  opacity: 1 !important;
  color: #198754;
}

.active-response-red {
  opacity: 1 !important;
  color: #dc3545;
}

.p-after-order-checkout-title h1 {
  text-align: center;
  margin-bottom: 20px;
}

.p-after-order-checkout-title p {
  text-align: center;
}

.lista-title {
  display: none;
}

/* Account CSS End */

/* Gallery CSS Start */

.p-gallery-buttons-holder {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 16px;
}

.p-gallery-buttons-holder button {
  outline: none;
  border: 1px solid var(--light-blue);
  background: none;
  padding: 7px 10px;
}

.blue-link-btn::before {
  opacity: 0;
}

.blue-link-btn span {
  color: var(--light-blue);
}

.active-blue-link-btn span {
  color: #fff;
}

.active-blue-link-btn::before {
  opacity: 1;
}

.p-gallery-items {
  display: none;
  margin-top: 30px;
  flex-direction: column;
  gap: 20px;
}

.active-gallery-items {
  display: flex;
}

.p-gallery-item-trigger {
  width: 100%;
  position: relative;
}

.p-gallery-item-trigger img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.p-gallery-item-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.56) 100%
  );
}

.p-gallery-texts {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
}

.p-gallery-texts span {
  font-size: 14px;
  color: #fff;
  line-height: 14px;
}

.p-gallery-arrow-svg {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Gallery CSS End */

/* Full Screen Gallery CSS Start */

.full-screen-gallery {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.74);
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transform: translate(-100%, 0);
  transition:
    opacity 0.5s ease-in-out,
    visibility 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    z-index 0.5s ease-out;
}

.active-full-screen-gallery {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  transform: translate(0, 0);
}

.full-screen-gallery .container {
  position: relative;
  height: 100%;
}

.full-screen-gallery .container .row {
  height: 100%;
}

.mbyll-holder {
  position: absolute;
  top: 0;
  left: 0;
  all: unset;
  color: #fff;
  font-family: "Work Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.title-with-color-news h2 {
  margin-bottom: 30px;
}

.mbyll-holder span {
  font-size: 18px;
}

.gallery-swiper {
  height: 100%;

  position: relative;
}

.gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
}

.gallery-swiper .swiper-wrapper {
  align-items: center;
}

.gallery-swiper .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  border-radius: 8px;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--light-blue);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  z-index: 3;
  transform: translate(0, -50%);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-prev svg {
  transform: rotate(180deg);
}

.gallery-btn svg path {
  fill: #fff;
}

.gallery-swiper .swiper-button-disabled {
  opacity: 0.5;
}

/* Full Screen Gallery CSS ENd */

.shop-main-titlses {
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) {
  .sale-price-holder {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .map-content {
    top: 56%;
  }

  .s-product-quantities {
    gap: 16px;
    height: 42px;
  }

  .search-and-cart {
    gap: 12px;
  }

  .liked-items svg {
    max-width: 22px;
    top: 1px;
  }

  .shop-main-titles {
    margin-bottom: 100px;
  }

  .full-screen-gallery .row {
    height: 100%;
  }

  .full-screen-gallery .swiper-col {
    height: 100%;
    max-height: 80%;
  }

  .p-gallery-texts span {
    font-size: 18px;
    line-height: 18px;
  }

  .p-gallery-texts {
    bottom: 15px;
    left: 25px;
    right: 25px;
  }

  .gallery-btn {
    width: 52px;
    height: 52px;
  }

  .mbyll-holder {
    font-size: 18px;
    line-height: 18px;
    color: #fff;
  }

  .s-auto-main {
    padding-bottom: 200px;
  }

  .category-main {
    padding-top: 100px;
  }

  .imprint-container {
    padding-bottom: 200px;
  }

  .four-o-four-content {
    gap: 30px;
  }

  .four-o-four-main {
    min-height: 80vh;
  }

  .four-o-four-content p {
    margin-bottom: 15px;
  }

  .search-holder {
    display: block;
    position: relative;
  }

  .search-holder-input {
    position: absolute;
    top: 59px;
    right: 0px;
    padding: 20px;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    pointer-events: none;
  }

  .active-search-holder .search-holder-input {
    opacity: 1;
    visibility: visible;
    z-index: 99;
    pointer-events: auto;
  }

  .search-trigger {
    cursor: pointer;
  }

  .search-trigger svg path {
    transition: all 0.5s ease-in-out;
  }

  .active-search-holder .search-trigger svg path {
    fill: var(--light-blue);
  }

  .search-holder-input input {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid rgba(30, 30, 30, 0.5);
    padding: 5px 0px;
    line-height: 18px;
    width: 100%;
  }

  .search-holder-input label {
    position: absolute;
    left: -10000px;
  }

  /* Fonts 992 CSS Start */

  .title {
    font-size: 65px;
    line-height: 80px;
    white-space: pre-wrap;
  }

  .heading {
    font-size: 50px;
    line-height: 60px;
    white-space: pre-wrap;
  }

  .body-text {
    font-size: 16px;
    line-height: 160%;
  }

  body {
    font-size: 18px;
    line-height: 160%;
  }

  .imprint-content-wrapper p {
    font-size: 18px;
    line-height: 130%;
  }

  .imprint-content-wrapper ul {
    font-size: 18px;
    line-height: 130%;
  }

  .imprint-content-wrapper h1,
  .imprint-content-wrapper h2,
  .imprint-content-wrapper h3,
  .imprint-content-wrapper h4,
  .imprint-content-wrapper h5,
  .imprint-content-wrapper h6 {
    font-size: 50px;
    line-height: 60px;
    color: var(--black);
    margin-bottom: 30px;
    margin-top: 30px;
  }

  /* Fonts 992 CSS End */

  /* Header CSS Start */

  .hamburger-trigger {
    display: none;
  }

  .desktop-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 0;
  }

  .desktop-links li .header-link {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--light-gray);
    font-style: normal;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    position: relative;
  }

  .desktop-dropdown-title span {
    font-size: 16px;
    line-height: 130%;
    color: var(--light-gray);
  }

  .desktop-dropdown-title {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  header {
    min-height: 130px;
  }

  .header-categories {
    display: block;
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
  }

  .active-categories-header {
    opacity: 1;
    z-index: 90;
    visibility: visible;
    pointer-events: auto;
  }

  .header-categories-wrapper {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 23.9px 0px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    position: relative;
    display: grid;
    grid-template: auto / 13% 13% 13% 13% 13% 13% 13%;
    column-gap: 1.5%;
    row-gap: 30px;
    padding: 60px 90px 50px 90px;
  }

  .header-categories-wrapper a {
    padding: 20px 14px 10px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease-in-out;
  }

  .header-category-image {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-category-image img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
  }

  .header-category-text {
    display: flex;

    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-grow: 1;
  }

  .header-category-text span {
    font-size: 16px;
    line-height: 16px;
    color: var(--light-blue);
  }

  .category-close {
    position: absolute;
    top: 20px;
    right: 80px;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .category-close span {
    font-size: 16px;
    line-height: 16px;
  }

  .desktop-dropdown-title svg {
    transition: all 0.5s ease-in-out;
  }

  .desktop-dropdown-title {
    cursor: pointer;
    position: relative;
    z-index: 100;
  }

  .line-products {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    max-width: 0;
    opacity: 0;
    background: #8fcf00;
    will-change: max-width;
    transition: all 0.5s ease-in-out;
  }

  .active-desktop-category-title .line-products {
    max-width: 100%;
    opacity: 1;
  }

  .active-desktop-category-title svg path {
    fill: var(--green);
  }

  .active-desktop-category-title span {
    color: var(--green);
  }

  .active-desktop-category-title svg {
    transform: rotate(180deg);
  }

  .industri-dropdown {
    position: relative;
  }

  .header-industri-holder {
    position: absolute;
    left: -30px;
    top: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: #fff;
    width: 240px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 39px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0, 0, 0);
  }

  .desktop-dropdown-title span {
    transition: all 0.5s ease-in-out;
  }

  .desktop-dropdown:hover .desktop-dropdown-title span {
    color: var(--green);
  }

  .active-industri-dropdown .desktop-dropdown-title span {
    color: var(--green);
  }

  .desktop-dropdown:hover .desktop-dropdown-title .line-products {
    max-width: 100%;
    opacity: 1;
  }

  .active-industri-dropdown .desktop-dropdown-title .line-products {
    max-width: 100%;
    opacity: 1;
  }

  .desktop-dropdown:hover .desktop-dropdown-title svg path {
    fill: var(--green);
  }

  .desktop-dropdown svg {
    transition: all 0.5s ease-in-out;
  }

  .desktop-dropdown svg path {
    transition: all 0.5s ease-in-out;
  }

  .desktop-dropdown:hover .desktop-dropdown-title svg {
    transform: rotate(180deg);
  }

  .active-industri-dropdown .desktop-dropdown-title svg {
    transform: rotate(180deg);
  }

  .active-industri-dropdown .desktop-dropdown-title svg path {
    fill: var(--green);
  }

  .header-industri-holder a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    color: var(--light-gray);
    font-style: normal;
    font-weight: 400;
  }

  .active-industri-dropdown .header-industri-holder {
    opacity: 1;
    visibility: visible;
    z-index: 99;
    pointer-events: auto;
  }

  .desktop-only-banner {
    display: flex;
    background: #0e437f;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  header {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .desktop-banner {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }

  header nav {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .desktop-banner a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--white);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 5px;
  }

  /* Header CSS End */

  /* Spacings 992 CSS Start */

  .spacing-top {
    padding-top: 150px;
  }

  .spacing-bottom {
    padding-bottom: 150px;
  }

  .margin-spacing-top {
    margin-top: 150px;
  }

  .margin-spacing-bottom {
    margin-bottom: 150px;
  }

  /* Spacings 992 CSS End */

  /* Home CSS Start */

  .site-main {
    height: 996px;
    top: -50px;
    align-items: center;
  }

  .site-main-texts {
    gap: 25px;
  }

  .site-main-texts p {
    width: 70%;
  }

  .site-main-hero {
    height: 980px;
  }

  .site-main-hero::before {
    height: 530px;
  }

  .site-main-content {
    gap: 50px;
  }

  .linear-link {
    padding: 12px 25px;
  }

  .blue-link {
    padding: 12px 25px;
  }

  .linear-link span {
    font-size: 18px;
  }

  .blue-link span {
    font-size: 18px;
  }

  .title-and-text {
    gap: 15px;
  }

  .industri-holder {
    grid-template: auto / repeat(5, 1fr);
    gap: 30px;
    row-gap: 30px;
  }

  .single-industri-text {
    height: 110px;
    padding: 50px 20px 26px 20px;
  }

  .single-industri-svg {
    top: unset;
    bottom: 5px;
    width: 78px;
  }

  .industri-holder {
    margin-top: 50px;
  }

  .left-aligned-text-title {
    gap: 15px;
  }

  .single-brand {
    height: 195px;
  }

  .brands-holder {
    grid-template: auto / repeat(5, 1fr);
    gap: 16px;
  }

  .products-holder {
    display: grid;
    grid-template: auto / repeat(5, 1fr);
    margin-top: 50px;
  }

  .product-image {
    height: 275px;
  }

  .single-product-item {
    padding: 23px 20px 70px 20px;
    display: flex;
    flex-direction: column;
  }

  .product-contents {
    justify-content: flex-end;
    gap: 30px;
  }

  .single-product-item {
    position: relative;
  }

  .product-title-and-description {
    min-height: 70px;
    flex-grow: 1;
  }

  .product-price-and-link {
    position: absolute;
    bottom: 23px;
    left: 20px;
    right: 20px;
  }

  .see-all-holder {
    margin-top: 80px;
  }

  .map-holder {
    margin-top: 0;
    height: 100%;
  }

  .kontakt-section {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .two-links {
    margin-top: 144px;
    flex-direction: row;
  }

  .map-image {
    height: 100%;
  }

  .two-links a {
    width: fit-content;
  }

  .map-holder img {
    height: 100%;
    object-fit: cover;
  }

  .kontakt-container {
    padding-bottom: 100px;
  }

  .map-location {
    left: 0;
  }

  /* Home CSS End */

  /* Footer 992 CSS Start */

  .footer-lists {
    flex-direction: row;
    justify-content: flex-end;
    gap: 150px;
    margin-top: 0;
  }

  .first-list-item {
    margin-bottom: 25px;
  }

  .footer-social-media {
    margin-top: 75px;
  }

  footer {
    padding-bottom: 20px;
  }

  footer .first-footer-items {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  footer .first-footer-items {
    padding-bottom: 100px;
  }

  .second-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .made-by {
    order: 1;
  }

  .cards {
    order: 2;
  }

  .imprint-year {
    order: 3;
  }

  /* Footer 992 CSS End */

  /* Rreth Nesh 992 CSS Start */

  .texts-and-buttons {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .texts-and-buttons .left-aligned-text-title {
    width: 50%;
  }

  .buttons-holder {
    padding: 5px 20px;
    gap: 20px;
  }

  .buttons-holder button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }

  .p-about-slider {
    overflow: hidden;
  }

  .p-about-swiper {
    overflow: unset;
    margin-top: 50px;
  }

  .p-about-historiku {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .p-about-historiku-slider {
    margin-top: 65px;
  }

  .p-historiku-content {
    padding: 35px 24px 40px 35px;
    gap: 20px;
  }

  .p-historiku-title span {
    font-size: 25px;
  }

  .p-about-swiper-pagination {
    margin-top: 65px;
    gap: 45px;
  }

  .p-about-pikat {
    flex-direction: row;
    gap: 5%;
  }

  .p-about-pikat-content {
    order: 2;
    width: 45%;
    gap: 30px;
  }

  .p-about-pikat-texts {
    gap: 15px;
  }

  .p-about-pikat-image {
    order: 1;
    width: 50%;
  }

  .p-about-pika2 .p-about-pikat-image {
    order: 2;
  }

  .p-about-pika2 .p-about-pikat-content {
    order: 1;
  }

  .p-about-pika2 {
    margin-top: 100px;
  }

  .team-member {
    flex: 0 0 18%;
    padding: 12px;
    gap: 25px;
  }

  .team-image {
    height: 300px;
  }

  .team-image img {
    height: 100%;
    object-fit: cover;
  }

  .team-content {
    padding-bottom: 10px;
  }

  .team-container {
    column-gap: 2.5%;
    row-gap: 2.5%;
  }

  .kontakt-svg {
    height: 475px;
  }

  .kontakt-linear-container {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .p-kontakt-texts {
    gap: 50px;
  }

  .p-about-jobs-wrapper {
    margin-top: 50px;
  }

  .p-about-jobs-wrapper a {
    padding: 34px 13px;
  }

  .p-about-jobs-wrapper a svg {
    max-width: 38px;
  }

  .p-about-jobs-wrapper a span {
    font-size: 25px;
    line-height: 25px;
  }

  /* Rreth Nesh 992 CSS End */

  /* Categories CSS Start */

  .p-categories-holder {
    gap: 1.2%;
    row-gap: 45px;
    margin-top: 50px;
  }

  .p-categories-holder a {
    flex: 0 0 19%;
    padding: 23px 20px;
  }

  .p-category-name {
    padding-bottom: 10px;
    margin-top: 10px;
  }

  .p-category-image {
    height: 300px;
  }

  /* Categories CSS End */

  /* Shop CSS Start */

  .shop-page-wrapper {
    position: relative;
    display: flex;
    gap: 5%;
  }

  .shop-categories-filter {
    display: none;
  }

  .shop-categories-holder {
    position: static;
    top: 0;
    opacity: 1;
    z-index: 10;
    padding: 30px 20px;
  }

  .shop-search-category {
    margin-top: 0;
    width: 100%;
  }

  .shop-items-holder {
    width: 100%;
    flex-wrap: wrap;
  }

  .shop-search-and-items {
    width: 73%;
  }

  .shop-category-items-wrapper {
    width: 22%;
  }

  .active-shop-items .shop-items-holder {
    display: grid;
    grid-template: auto / repeat(4, 1fr);
    gap: 20px;
    row-gap: 20px;
    margin-top: 50px;
  }

  .shop-items-holder .product-image {
    height: 150px;
  }

  .active-results {
    display: grid;
    grid-template: auto / repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
  }

  .shop-search-category {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px;
  }

  .shop-active-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .shop-search input {
    font-size: 18px;
    line-height: 30px;
    padding: 5px 15px;
  }

  .shop-search svg {
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }

  .shop-main {
    padding-top: 100px;
  }

  .shop-main-categories-title span {
    font-size: 25px;
  }

  .shop-makineri-title {
    padding-top: 30px;
  }

  .shop-main-categories-title {
    padding-bottom: 30px;
  }

  .shop-categories {
    padding-top: 30px;
    gap: 15px;
  }

  /* Shop CSS End */

  /* Single Product CSS Start */

  .p-cart-holder-and-checkout {
    display: flex;
    justify-content: space-between;
  }

  .p-checkout {
    width: 65%;
  }

  .p-cart-items {
    width: 80%;
    margin-left: 10%;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
    margin-top: 0px;
  }

  .p-cart-items-holder {
    width: calc(55% - 15px);
  }

  .p-cart-title span {
    font-size: 18px;
    line-height: normal;
  }

  .p-cart-title {
    width: 80%;
  }

  .p-cart-items-checkout {
    width: 35%;
    flex-direction: column;
    gap: 30px;
    margin-top: 0px;
  }

  .p-cart-totals {
    width: calc(45% - 15px);
    padding: 30px;
  }

  .p-cart-items-checkout .p-cart-totals {
    width: 100%;
  }

  .p-cart-main-title {
    width: 100%;
  }

  .p-cart-holder-and-checkout {
    width: 80%;
    margin-left: 10%;
  }

  .woocommerce-billing-fields h3 {
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 30px;
  }

  .woocommerce-checkout h3 {
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 30px;
  }

  .p-cart-main-title {
    margin-bottom: 30px;
  }

  .p-cart-main-title span {
    font-size: 30px;
    line-height: 120%;
  }

  .p-checkout .col-1 {
    width: 100% !important;
  }

  .p-cart-item {
    flex-direction: row;
    padding: 40px;
    border-radius: var(--radius);
  }

  .p-cart-item .product-image {
    width: 25%;
    height: 100px;
  }

  .p-cart-contents {
    display: flex;
    width: 60%;
    gap: 20px;
  }

  .p-cart-quantity-total-desktop {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .p-cart-contents-mobile {
    display: none;
  }

  .p-checkout input {
    font-size: 18px;
  }

  .p-checkout label {
    font-size: 18px;
  }

  .no-items-cart {
    gap: 30px;
  }

  .no-items-cart h1 {
    font-size: 30px;
  }

  .p-cart-main {
    padding-top: 150px;
  }

  .empty-cart-main {
    padding-top: 250px;
    padding-bottom: 250px;
  }

  /* Single Product CSS End */

  /* Contact CSS Start */

  .row-line p {
    flex-direction: row;
    margin-bottom: 50px;
    gap: 30px;
  }

  .row-line input {
    font-size: 18px;
  }

  .row-line-textarea {
    margin-bottom: 100px;
  }

  .row-line-textarea textarea {
    font-size: 18px;
  }

  .p-contact-form {
    margin-top: 50px;
  }

  /* Contact CSS End */

  .s-industri-title-text {
    gap: 25px;
  }

  .s-industri-texts {
    flex-direction: row;
    justify-content: space-between;
  }

  .s-industri-text {
    width: 45%;
  }

  /* Industri CSS Start */

  .single-industri-item .single-industri-image img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
  }

  /* Industri CSS End */

  /* Zona CSS Start */

  .mobile-only-layout {
    display: none;
  }

  .desktop-only-layout {
    display: block;
  }

  .s-zona-single-product-over-image {
    display: block;
  }

  .s-zona-desktop-image {
    display: block;
  }

  .s-zona-desktop-holder {
    position: relative;
  }

  .s-zona-desktop-image {
    width: 100%;
  }

  .full-screen-modal {
    top: 120px;
    height: calc(100vh - 120px);
  }

  .s-zona-desktop-image img {
    width: 100%;
    height: auto;
    max-height: 880px;
    border-radius: var(--radius);
  }

  .s-zona-main-title h1 {
    margin-bottom: 100px;
  }

  .s-zona-products-over-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }

  .s-zona-single-product-over-image {
    position: absolute;
  }

  .s-zona-visible-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 175px;
    gap: 0px;
  }

  .s-zona-content-trigger {
    background: #fff;
    position: relative;
    top: -10px;
    padding: 10px 9px 15px 9px;
    min-width: 150px;
    border-radius: var(--radius);
  }

  .s-zona-content-trigger button {
    background: none;
    outline: none;
    padding: 0;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 25px;
  }

  .s-zona-absolute-svg {
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .s-zona-content-trigger button span {
    font-size: 14px;
    line-height: 14px;
    color: #0065b5;
  }

  .s-zona-image {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .s-zona-image img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
  }

  .s-zona-not-visible-part {
    position: relative;
    width: 175px;
    display: none;
  }

  .s-zona-return-svg {
    display: flex;
    justify-content: center;
  }

  .s-zona-text p {
    font-size: 14px;
  }

  .s-zona-buy-now {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
  }

  .s-zona-buy-now a span {
    color: var(--light-blue);
    font-size: 14px;
  }

  .s-zona-return-svg {
    cursor: pointer;
  }

  .s-zona-svg {
    cursor: pointer;
  }

  .s-zona-svg svg path {
    transition: fill 0.5s ease-in-out;
  }

  .s-zona-svg svg circle {
    transition: fill 0.5s ease-in-out;
  }

  .s-zona-visible-part {
    cursor: pointer;
  }

  .s-zona-visible-part:hover .s-zona-svg svg path {
    fill: var(--green);
  }

  .s-zona-visible-part:hover .s-zona-svg svg circle {
    fill: var(--white);
  }

  /* Zona CSS End */

  /* Register And Log in CSS Start */

  .register-content .u-column2 {
    float: unset !important;
    width: 100% !important;
  }

  .register-content .u-column1 {
    float: unset !important;
    width: 100% !important;
  }

  .register-content {
    padding: 80px;
    gap: 40px;
  }

  .login-main .register-content {
    gap: 0;
  }

  .register-content h1 {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 40px;
  }

  .register-svg {
    opacity: 1;
    top: 50px;
  }

  .mire-se-vini-text p {
    margin-bottom: 50px;
  }

  .register-and-forgot {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: -20px;
  }

  .register-and-forgot a {
    font-size: 18px;
  }

  /* Register And Log In CSS End */

  .liked-main {
    padding-top: 100px;
  }

  .p-checkout .form-row {
    margin-bottom: 20px !important;
  }

  .p-checkout .woocommerce .col2-set,
  .woocommerce-page .col2-set {
    margin-bottom: 20px;
  }

  .product-total-quantity {
    padding-top: 20px;
  }

  .p-cart-main-total .total-text {
    font-size: 25px;
  }

  .p-cart-main-total #total {
    font-size: 25px;
  }

  /* Single Job CSS 992 Start */

  .s-job-main {
    padding-top: 100px;
  }

  .s-job-under-title {
    flex: 0 0 auto;
  }

  .s-job-under-title-items {
    gap: 10px;
  }

  .s-job-description {
    margin-top: 50px;
  }

  .s-job-fushat {
    margin-top: 50px;
    gap: 35px;
  }

  .s-job-fusha {
    gap: 20px;
  }

  .s-job-apply {
    margin-top: 50px;
  }

  /* Single Job CSS 992 End */

  /* Account 992 CSS Start */

  .p-account-current-user-form .row-line {
    flex-direction: row;
    width: 100%;
    margin-bottom: 30px;
  }

  .p-account-current-user-form .row-line input {
    width: 100%;
  }

  .p-account-current-user-form {
    width: 60%;
    padding: 25px 30px 50px 30px;
  }

  .p-account-navigations {
    width: 60%;
    padding: 25px 30px;
  }

  .p-account-current-user-orders {
    padding: 25px 30px 50px 30px;
    width: 60%;
  }

  .p-account-current-user-orders h2 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 50px;
  }

  #form-response {
    margin-top: 30px;
  }

  .p-account-avatar-and-info {
    align-items: center;
  }

  .p-account-infos {
    gap: 25px;
  }

  .row-line-label-and-input {
    width: 100%;
  }

  .p-account-current-user-form button {
    margin-top: 40px;
  }

  .p-account-current-user-form .row-line {
    gap: 35px;
  }

  .p-account-current-user-form .row-line label {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .p-after-order-checkout-title h1 {
    margin-bottom: 30px;
  }

  .previous-order-details {
    padding: 20px 10px;
  }

  .user-action-holder {
    margin-top: 50px;
  }

  /* Account 992 CSS End */

  .contact-form-lista {
    margin-top: 0px;
  }

  .products-holder-lista {
    grid-template: auto / 48% 48%;
  }

  .lista-mobile-title {
    display: none;
  }

  .lista-title {
    display: block;
  }

  .liked-main h1 {
    font-size: 30px;
    line-height: 120%;
  }

  .contact-form-lista h2 {
    font-size: 30px;
    line-height: 120%;
  }

  .contact-form-lista .wpcf7-submit {
    padding: 10px 15px;
  }

  .p-gallery-items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 50px;
  }

  .p-gallery-item-trigger {
    width: calc(50% - 8px);
    cursor: pointer;
  }

  .p-gallery-buttons-holder button {
    padding: 10px 20px;
  }

  .single-industri-text-and-svg span {
    font-size: 20px;
  }

  .map-location {
    width: 230px;
  }

  .map-location p {
    font-size: 14px;
  }

  .map-location p span {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-lists {
    gap: 50px;
  }

  body {
    font-size: 16px;
  }

  .site-main-hero {
    height: 100vh;
  }

  .single-brand {
    padding: 30px;
    height: 150px;
  }

  /* Fonts 1199 CSS Start */

  .title {
    font-size: 45px;
    line-height: 60px;
  }

  .heading {
    font-size: 30px;
    line-height: 40px;
  }

  .imprint-content-wrapper h1,
  .imprint-content-wrapper h2,
  .imprint-content-wrapper h3,
  .imprint-content-wrapper h4,
  .imprint-content-wrapper h5,
  .imprint-content-wrapper h6 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  /* Fonts 1199 CSS End */

  /* Header CSS 1199 Start */

  .desktop-links {
    gap: 15px;
  }

  .desktop-links .linear-link {
    display: none !important;
  }

  .header-categories-wrapper {
    padding: 50px 50px;
    grid-template: auto / 15% 15% 15% 15% 15% 15%;
    gap: 1.66%;
  }

  .category-close {
    right: 50px;
  }

  .industri-holder {
    grid-template: auto / repeat(4, 1fr);
    gap: 30px;
    row-gap: 30px;
  }

  .single-brand {
    flex: 0 0 14%;
  }

  .products-holder {
    grid-template: auto / repeat(4, 1fr);
  }

  .products-holder-lista {
    grid-template: auto / 48% 48%;
    gap: 2%;
  }

  .two-links {
    width: 110%;
  }

  .linear-link {
    padding: 10px 15px;
  }

  .blue-link {
    padding: 10px 15px;
  }

  .product-image {
    height: 150px;
  }

  /* Header CSS 1199 End */

  /* Rreth CSS 1199 Start */

  .p-historiku-content {
    padding: 20px;
  }

  .team-member {
    flex: 0 0 24%;
  }

  .team-container {
    column-gap: 1%;
    row-gap: 20px;
  }

  .team-image {
    height: 215px;
  }

  /* Rreth CSS 1199 End */

  /* Categories CSS 1199 Start */

  .p-categories-holder a {
    flex: 0 0 24%;
  }

  .p-category-image {
    height: 230px;
  }

  /* Categories CSS 1199 End */

  /* Shop CSS 1199 Start */

  .active-shop-items .shop-items-holder {
    grid-template: auto / repeat(3, 1fr);
    row-gap: 20px;
  }

  .active-results {
    grid-template: auto / 48% 48%;
    gap: 2%;
  }

  .shop-category-items-wrapper {
    width: 25%;
  }

  /* Shop CSS 1199 End */

  /* Zona CSS 1199 Start */

  .s-zona-desktop-image img {
    height: 100%;
    object-fit: cover;
  }

  .s-zona-desktop-image {
    height: 600px;
  }

  /* Zona CSS 1199 End */

  /* Register And Login CSS 1199 Start */

  .register-main {
    min-height: unset;
  }

  /* Register And Login CSS 1199 End */

  /* Cart 1199 CSS Start */

  .p-cart-items {
    width: 100%;
    margin-left: 0;
  }

  /* Cart 1199 CSS End */

  /* Accounts 1199 CSS STart */

  .p-account-navigations {
    width: 75%;
  }

  .user-action-holder {
    width: 75%;
  }

  /* Accounts 1199 CSS End */

  .single-industri-text-and-svg span {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-lists {
    gap: 80px;
  }

  .single-industri-text-and-svg span {
    font-size: 18px;
  }

  .site-main-hero {
    height: 850px;
  }

  .p-cart-items {
    width: 100%;
    margin-left: 0%;
  }

  .single-brand {
    padding: 30px;
    height: 150px;
  }

  /* Fonts 1399 CSS Start */

  .title {
    font-size: 50px;
    line-height: 60px;
  }

  .heading {
    font-size: 40px;
    line-height: 50px;
  }

  .imprint-content-wrapper h1,
  .imprint-content-wrapper h2,
  .imprint-content-wrapper h3,
  .imprint-content-wrapper h4,
  .imprint-content-wrapper h5,
  .imprint-content-wrapper h6 {
    font-size: 40px;
    line-height: 50px;
  }

  /* Fonts 1399 CSS End */

  .spacing-top {
    padding-top: 150px;
  }

  .spacing-bottom {
    padding-bottom: 150px;
  }

  .margin-spacing-bottom {
    margin-bottom: 150px;
  }

  .margin-spacing-top {
    margin-top: 150px;
  }

  /* Header 1399 CSS Start */

  .desktop-links {
    gap: 15px;
  }

  /* Header 1399 CSS End */

  /* Home 1399 CSS Start */

  .single-industri-text {
    left: -2px;
    width: calc(100% + 2px);
  }

  .header-categories-wrapper {
    padding: 50px 60px;
    grid-template: auto / 15% 15% 15% 15% 15% 15%;
    gap: 1.66%;
  }

  .category-close {
    right: 50px;
  }

  .product-image {
    height: 140px;
  }

  /* Home 1399 CSS End */

  /* Rreth 1399 CSS Start */

  .team-image {
    height: 200px;
  }

  /* Rreth 1399 CSS End */

  /* Categories 1399 CSS Start */

  .p-categories-holder {
    row-gap: 20px;
  }

  .p-category-image {
    height: 250px;
  }

  /* Categories 1399 CSS End */

  /* Accounts 1399 CSS STart */

  .p-account-navigations {
    width: 70%;
  }

  .user-action-holder {
    width: 70%;
  }

  /* Accounts 1399 CSS End */
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-lists {
    gap: 100px;
  }

  .single-industri-text-and-svg span {
    font-size: 18px;
  }

  .site-main-hero {
    height: 100vh;
    min-height: 850px;
  }

  /* Fonts 1400 CSS Start */

  .title {
    font-size: 55px;
    line-height: 65px;
  }

  .heading {
    font-size: 40px;
    line-height: 50px;
  }

  .imprint-content-wrapper h1,
  .imprint-content-wrapper h2,
  .imprint-content-wrapper h3,
  .imprint-content-wrapper h4,
  .imprint-content-wrapper h5,
  .imprint-content-wrapper h6 {
    font-size: 40px;
    line-height: 50px;
  }

  .body-text {
    font-size: 17px;
  }

  body {
    font-size: 17px;
  }

  /* Fonts 1400 CSS End */

  /* Header 1400 CSS Start */

  .desktop-links {
    gap: 29px;
  }

  .header-categories-wrapper {
    padding: 50px 60px;
  }

  .category-close {
    right: 60px;
  }

  /* Header 1400 CSS End */

  /* Home 1400 CSS Start */

  .single-brand {
    padding: 30px;
    height: 150px;
  }

  .product-image {
    height: 170px;
  }

  /* Home 1400 CSS End */

  /* Rreth 1400 CSS Start */

  .p-historiku-content {
    padding: 30px 25px;
  }

  .team-image {
    height: 220px;
  }

  /* Rreth 1400 CSS End */

  /* Accounts 1599 CSS STart */

  .p-account-navigations {
    width: 70%;
  }

  .user-action-holder {
    width: 70%;
  }

  /* Accounts 1599 CSS End */
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .footer-lists {
    gap: 125px;
  }
}

@media only screen and (hover: hover) {
  .team-member .team-image img {
    transition: all 0.5s ease-in-out;
  }

  .team-member:hover .team-image img {
    opacity: 1;
  }

  .single-industri-item .single-industri-image img {
    transition: all 0.5s ease-in-out;
  }

  .single-industri-item:hover .single-industri-image img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
  }

  .desktop-links li .header-link {
    transition: all 0.5s ease-in-out;
  }

  .desktop-links li .header-link:hover {
    color: var(--green);
  }

  .desktop-links li .header-link:hover .line-products {
    max-width: 100%;
    opacity: 1;
  }

  .blue-link {
    border: 1px solid transparent;
    transition: all 0.5s ease-in-out;
  }

  .blue-link::before {
    transition: all 0.5s ease-in-out;
  }

  .desktop-links .blue-link:hover::before {
    opacity: 0;
  }

  .blue-link span {
    transition: all 0.5s ease-in-out;
  }

  .desktop-links .blue-link:hover span {
    color: var(--blue);
  }

  .blue-link svg path {
    transition: all 0.5s ease-in-out;
  }

  .blue-link svg {
    transition: all 0.5s ease-in-out;
  }

  .desktop-links .blue-link:hover {
    border: 1px solid var(--blue);
  }

  .blue-link:hover svg {
    transform: translate3d(5px, 0, 0);
  }

  .linear-link svg {
    transition: all 0.5s ease-in-out;
  }

  .linear-link::before {
    transition: all 0.5s ease-in-out;
  }

  .linear-link span {
    transition: all 0.5s ease-in-out;
  }

  .linear-link svg path {
    transition: all 0.5s ease-in-out;
  }

  .linear-link:hover svg {
    transform: translate3d(5px, 0, 0);
  }

  .two-links .email-link:hover::before {
    opacity: 0;
  }

  .two-links .email-link:hover svg path {
    stroke: var(--green);
  }

  .two-links .email-link:hover span {
    color: var(--green);
  }

  .email-link:hover svg {
    transform: translate3d(0, 0, 0);
  }

  .two-links .tel-link:hover span {
    color: #2c3e50;
  }

  .two-links a {
    transition: all 0.5s ease-in-out;
  }

  .two-links .email-link:hover {
    border: 1px solid var(--green);
  }

  .two-links .tel-link:hover {
    border: 1px solid transparent;
  }

  .two-links .tel-link:hover svg {
    transform: translate3d(0, 0, 0);
  }

  .two-links .tel-link:hover svg path {
    fill: #2c3e50;
  }

  .two-links .tel-link:hover::before {
    opacity: 1;
  }

  .normal-links a {
    transition: all 0.3s ease-in-out;
  }

  .normal-links a svg path {
    transition: all 0.3s ease-in-out;
  }

  .normal-links a:hover {
    color: var(--green) !important;
  }

  .normal-links a:hover .with-fill path {
    fill: var(--green);
  }

  .normal-links a:hover .with-stroke path {
    stroke: var(--green);
  }

  .footer-social-media ul li a svg path {
    transition: all 0.5s ease-in-out;
  }

  .footer-social-media ul li a svg circle {
    transition: all 0.5s ease-in-out;
  }

  .footer-social-media ul li a:hover svg path {
    fill: var(--green);
  }

  .footer-social-media ul li a:hover svg circle {
    stroke: var(--green);
  }

  .header-categories-wrapper a .header-category-text svg {
    transition: all 0.5s ease-in-out;
    transform: translate3d(0, 0, 0);
  }

  .header-categories-wrapper a:hover .header-category-text svg {
    transform: translate3d(5px, 0, 0);
  }

  .category-close span {
    transition: all 0.5s ease-in-out;
  }

  .category-close svg path {
    transition: all 0.5s ease-in-out;
  }

  .category-close:hover span {
    color: var(--light-blue);
  }

  .category-close:hover svg path {
    fill: var(--light-blue);
  }

  .heart-holder:hover .fill-heart path {
    opacity: 1 !important;
  }

  .heart-holder:hover .fill-heart {
    opacity: 1;
  }

  .heart-holder:hover .not-fill-heart {
    opacity: 0;
  }

  .second-footer-content a {
    transition: all 0.5s ease-in-out;
  }

  .second-footer-content a:hover {
    color: var(--green);
  }

  .desktop-banner a {
    transition: all 0.5s ease-in-out;
  }

  .desktop-banner a svg path {
    transition: all 0.5s ease-in-out;
  }

  .desktop-banner a:hover {
    color: var(--green);
  }

  .desktop-banner .banner-email:hover svg path {
    stroke: var(--green);
  }

  .desktop-banner .banner-tel:hover svg path {
    fill: var(--green);
  }

  .p-category-name svg {
    transition: all 0.5s ease-in-out;
  }

  .p-categories-holder a:hover .p-category-name svg {
    transform: translate3d(5px, 0, 0);
  }

  .p-categories-holder a {
    transition: all 0.5s ease-in-out;
  }

  .buttons-holder button {
    transition: all 0.5s ease-in-out;
  }

  .buttons-holder button svg path {
    transition: all 0.5s ease-in-out;
  }

  .buttons-holder button:hover {
    background-color: var(--light-blue);
  }

  .swiper-button-disabled {
    opacity: 0.5;
  }

  .buttons-holder button:hover svg path {
    fill: var(--white);
  }

  .historiku-btns button:hover {
    background-color: var(--green);
  }

  .p-about-jobs-wrapper a {
    transition: all 0.5s ease-in-out;
  }

  .p-about-jobs-wrapper a svg {
    transition: all 0.5s ease-in-out;
  }

  .p-about-jobs-wrapper a span {
    transition: all 0.5s ease-in-out;
  }

  .p-about-jobs-wrapper a:hover {
    background-color: rgba(11, 116, 133, 0.05);
  }

  .svg-fill-p2 {
    transition: all 0.5s ease-in-out;
  }

  .p-about-jobs-wrapper a:hover span {
    transform: translate3d(5px, 0px, 0);
  }

  .p-about-jobs-wrapper a:hover svg {
    transform: translate3d(5px, 0px, 0);
  }

  .p-about-jobs-wrapper a:hover .svg-fill-p2 {
    fill: rgba(11, 116, 133, 0.05);
  }

  .not-active-edits:hover::before {
    opacity: 1;
  }

  .not-active-edits:hover span {
    color: var(--white);
  }

  .not-active-edits:hover {
    background-color: transparent !important;
    border: 1px solid transparent !important;
  }

  .previous-order-trigger {
    border: 1px solid transparent;
    background-color: transparent;
    transition: all 0.5s ease-in-out;
  }

  .previous-order-trigger:hover::before {
    opacity: 0;
  }

  .previous-order-trigger:hover {
    border: 1px solid var(--light-blue);
  }

  .previous-order-trigger:hover span {
    color: var(--light-blue);
  }

  .gallery-btn svg {
    transition: all 0.5s ease-in-out;
  }

  .gallery-next:hover svg {
    transform: translate3d(5px, 0, 0);
  }

  .gallery-prev:hover svg {
    transform: translate3d(-5px, 0, 0) rotate(180deg);
  }

  .gallery-prona .swiper-button-disabled {
    pointer-events: none;
  }

  .single-industri-item .single-industri-text-and-svg svg {
    transition: all 0.5s ease-in-out;
  }

  .single-industri-item:hover .single-industri-text-and-svg svg {
    transform: translate3d(5px, 0, 0);
  }

  .shop-categories button:hover span {
    color: var(--light-blue);
  }

  .under-categories-main-button button:hover svg {
    transform: rotate(-180deg);
  }

  .under-categories-main-button button:hover svg path {
    fill: var(--light-blue);
  }

  .single-brand img {
    transition: all 0.4s ease-in-out;
  }

  .single-brand:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
  }

  .desktop-links .linear-link::before {
    transition: opacity 0.5s ease-in-out;
  }

  .desktop-links .linear-link:hover::before {
    opacity: 0;
  }

  .desktop-links .linear-link {
    border: 1px solid transparent;
    transition: all 0.5s ease-in-out;
  }

  .desktop-links .linear-link:hover {
    border: 1px solid var(--green);
    color: var(--green);
  }

  .single-product-item a .product-image {
    position: relative;
  }

  .product-image::before {
    content: "";
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    z-index: 2;
  }

  .single-product-item a:hover .product-image::before {
    animation: circle 1.5s infinite;
  }

  @keyframes circle {
    0%,
    40% {
      opacity: 1;
    }

    100% {
      height: 200%;
      opacity: 0;
      width: 200%;
    }
  }
}
