@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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bg-primary: #fcfbf7;
  --white: #fff;
  --bg-primary-hover: #c0c0c050;
  --body-text: #1e1e1e;
  --secondary-bg: #4d4d4d;
  --primary-color: #00b3f1;
  --primary-color-hover: #00b3f190;
  --border-color: #c0c0c0;
  --radius: 50px;
  --medium-radius: 25px;
  --timing-function: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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;
}

body {
  background: #fcfbf7;
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--body-text);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Hamburger Menu CSS Start */

.logo img {
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.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(--primary-color);
  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: 0px;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  padding-top: 100px;
  overflow-y: auto;
  padding-bottom: 100px;
  transform: translate3d(-100%, 0, 0.0001px);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transition: all var(--timing-function);
}

.active-full-screen {
  opacity: 1;
  transform: translate3d(0, 0, 0.0001px);
  pointer-events: auto;
}

.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;
}

.active-full-screen-menu {
  color: var(--primary-color);
}

.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-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.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;
}

.full-screen-categories-holder a {
  display: block;
  width: fit-content;
}

.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;
}

.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;
}

/* Hamburger Menu CSS End */

/* Shared CSS Start */

.link {
  display: inline-flex;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: var(--radius);
}

.link-brand-primary {
  background: var(--primary-color);
  color: var(--white);
}

.link-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

.link-svg {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.link-svg span {
  color: var(--primary-color);
}

.spacing-top {
  padding-top: 100px;
}

.spacing-bottom {
  padding-bottom: 100px;
}

.margin-spacing-bottom {
  margin-bottom: 100px;
}

.animation-container {
  --animation-distance: 24px;
}

.animation-container .animation-item {
  opacity: 0;
  transform: translate3d(0, var(--animation-distance), 0);
  transition:
    opacity 0.7s var(--timing-function),
    transform 0.7s var(--timing-function);
  transition-delay: calc(var(--animation-order, 0) * 120ms);
  will-change: opacity, transform;
}

.animation-container.is-visible .animation-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .animation-container .animation-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Shared CSS End */

/* Hero CSS Start */

.hero {
  position: relative;
  height: 850px;
}

.hero__image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    92deg,
    rgba(0, 0, 0, 0.51) 27.14%,
    rgba(0, 0, 0, 0) 95.45%
  );
}

.max-height-item {
  height: 100%;
}

.hero-content h1 {
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
  gap: 30px;
}

.hero_links {
  display: flex;
  gap: 16px;
}

/* Hero CSS End */

/* Fonts CSS Start */

.title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
}

.heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  font-style: normal;
}

.mini-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.elevated-text {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
}

/* Fonts CSS End */

.title-and-sub-title h2 {
  margin-top: 20px;
}

.title-and-sub-title span {
  color: var(--primary-color);
}

.about-slide {
  height: 350px;
}

.about-slide-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: opacity var(--timing-function);
  opacity: 0.5;
}

.about-slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  gap: 30px;
  position: relative;
  z-index: 3;
  opacity: 0;
  transition: opacity var(--timing-function);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-slide-content::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.51) 27.14%,
    rgba(0, 0, 0, 0) 95.45%
  );
}

.swiper-slide-active .about-slide-content {
  opacity: 1;
}

.swiper-slide-active .about-slide-image img {
  opacity: 1;
}

.about-slide-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.about-slide-icon img {
  max-width: 65%;
  width: auto;
  height: auto;
  max-height: 65%;
}

.about-slide-texts span,
.about-slide-texts p {
  color: var(--white);
}

.about-slide-texts {
  position: relative;
  z-index: 3;
}

.about-slide-line {
  width: 100px;
  height: 1px;
  background-color: var(--primary-color);
  margin: 15px 0px 20px 0px;
}

.slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}

.slider-button svg {
  max-width: 13px;
  width: auto;
  height: auto;
}

.about-slider-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-swiper-pagination,
.leistungen-swiper-pagination,
.references-pagination {
  position: relative;
  top: 0px;
  left: 0px;
  background: rgba(203, 203, 203, 0.63) !important;
}

.about-swiper-pagination span,
.leistungen-swiper-pagination span,
.references-pagination span {
  background: var(--primary-color) !important;
}

.swiper-progress-holder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.about-swiper-wrapper {
  margin-top: 50px;
}

.leistungen,
.aktuelles-section {
  padding: 50px 0px;
  overflow: hidden;
  background: var(--white);
}

.leistungen-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 30px;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.leistungen-content h3 {
  color: var(--white);
}

.leistungen-content p {
  padding-bottom: 20px;
  max-height: 0px;
  transition: max-height var(--timing-function);
  color: var(--white);
  opacity: 0;
}

.leistungen-item:hover .leistungen-content p {
  max-height: 450px;
  opacity: 1;
}

.leistungen-item {
  height: 400px;
  width: 100%;
  position: relative;
}

.leistungen-image {
  height: 100%;
  width: 100%;
  border-radius: var(--medium-radius);
  overflow: hidden;
  position: relative;
}

.leistungen-image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.leistungen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leistungen-swiper-holder {
  margin-top: 50px;
}

.leistungen-swiper {
  overflow: unset !important;
}

.title-block-and-link {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.block-link-holder {
  display: flex;
  justify-content: flex-end;
}

.team-members {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-member {
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--medium-radius);
  border: 1px solid rgba(236, 236, 236, 0.51);
  box-shadow: 0 1.05px 1.05px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-member-title-and-image {
  display: flex;
  align-items: center;
  gap: 16px;
}

.team-member-image {
  width: 80px;
  height: 80px;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member-title span {
  display: block;
  margin-top: 5px;
  color: var(--primary-color);
}

.team-member-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-member-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 16px;
}

.team-member-links a span {
  color: var(--body-text);
  font: inherit;
}

.link-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
}

.categories-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.category-button {
  background-color: transparent;
  padding: 5px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--secondary-bg);
  color: var(--secondary-bg);
  transition: all var(--timing-function);
  cursor: pointer;
  font: inherit;
}

.active-category-button {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white);
}

.reference-post {
  position: relative;
  height: 100%;
}

.reference-post-image {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: var(--medium-radius);
  overflow: hidden;
}

.reference-post-image::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 2;
  transform: translate3d(0px, 0px, 0.001px);
}

.reference-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-post-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
}

.reference-post-content h3,
.reference-post-content span {
  color: var(--white);
}

.reference-post-content h3 {
  margin: 10px 0px;
}

.who-items-holder {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.who-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-icon img {
  max-width: 90%;
  width: auto;
  height: auto;
  max-height: 90%;
}

.who-content span {
  display: block;
  font-weight: 600;
  margin: 10px 0px 15px 0px;
}

.who-item {
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--medium-radius);
  border: 1px solid rgba(236, 236, 236, 0.51);
  box-shadow: 0 1.05px 1.05px 0 rgba(0, 0, 0, 0.25);
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 15px 0px;
  border-top: 1px solid #757575;
  text-decoration: none;
  gap: 30px;
}

.news-content {
  display: flex;
  flex-direction: column;
}

.news-image {
  height: 250px;
  width: 100%;
}

.news-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--medium-radius);
  object-fit: cover;
}

.news-date {
  color: var(--primary-color);
}

.news-texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.news-texts h3,
.news-texts p {
  color: var(--body-text);
}

.aktuelles-holder {
  margin-top: 50px;
}

.contact-section {
  position: relative;
  height: 450px;
}

.contact-image {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.contact-image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.47) 0%,
    rgba(0, 0, 0, 0) 58.1%
  );
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-content .title-and-sub-title h2,
.contact-content .title-and-sub-title span,
.contact-content p {
  color: var(--white);
}

.contact-content p {
  margin: 10px 0px 25px 0px;
}

.contact-links {
  display: flex;
  gap: 16px;
}

.top-footer-content {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-navigation-title {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.footer-navigation ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

.footer-navigation ul li a {
  font-size: 14px;
  line-height: 18px;
  color: #4d4d4d;
  text-decoration: none;
}

.footer-navigation ul li a .bold-footer {
  font-weight: 500;
}

.footer-navigations {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bottom-footer-content {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #9a9a9a;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.copyright-and-links {
  font-size: 14px;
  line-height: 18px;
}

.copyright-and-links a {
  color: var(--primary-color);
  text-decoration: none;
}

.copyright-and-links span {
  color: #4d4d4d;
  display: block;
}

.made-by {
  font-size: 14px;
  line-height: 18px;
  color: #4d4d4d;
  text-decoration: none;
}

.made-by span {
  color: var(--primary-color);
  font-weight: 600;
}

.desktop-links {
  display: none;
}

.four-o-four-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.four-o-four-content h1,
.four-o-four-content p {
  color: var(--body-text);
  text-align: center;
}

.four-o-four-content p {
  margin: 20px 0px 30px 0px;
}

@media only screen and (min-width: 992px) {
  .hamburger-box {
    display: none;
  }

  .four-o-four-content {
    width: 75%;
    margin-left: 12.5%;
  }

  .four-o-four-content p {
    margin: 30px 0px 50px 0px;
  }

  .mini-title {
    font-size: 25px;
    line-height: 35px;
  }

  .desktop-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .desktop-links ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0px;
    padding: 0px;
  }

  .desktop-links ul li a {
    color: var(--body-text);
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
  }

  .header-categories-holder {
    position: absolute;
    top: 80px;
    left: -50%;
    width: 450px;
    border-radius: var(--medium-radius);
    padding: 20px;
    background: var(--white);
    box-shadow: 0 4.87px 4.87px 0 rgba(129, 129, 129, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: var(--timing-function);
    z-index: 99;
  }

  .active-dropdown-desktop .header-categories-holder {
    opacity: 1;
    pointer-events: all;
  }

  .header-categories-grid {
    display: grid;
    grid-template: auto / repeat(2, 1fr);
    gap: 16px;
  }

  .header-categories-link img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--medium-radius);
  }

  .header-categories-link span {
    text-align: center;
    margin-top: 10px;
    display: block;
  }

  .header-dropdown {
    position: relative;
  }

  .header-categories-trigger {
    padding: 0px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
    font: inherit;
    background: none;
    font-size: 16px;
    line-height: 20px;
  }

  .header-categories-trigger span {
    transition: color var(--timing-function);
  }

  .header-categories-trigger svg path {
    transition: stroke var(--timing-function);
  }

  .header-categories-trigger svg {
    transition: transform var(--timing-function);
  }

  .active-dropdown-desktop .header-categories-trigger span {
    color: var(--primary-color);
  }

  .active-dropdown-desktop .header-categories-trigger svg path {
    stroke: var(--primary-color);
  }

  .active-dropdown-desktop .header-categories-trigger svg {
    transform: rotate(180deg);
  }

  .full-screen-menu {
    display: none;
  }

  .title-block-and-link {
    flex-direction: row;
    justify-content: space-between;
  }

  .spacing-top {
    padding-top: 200px;
  }

  .spacing-bottom {
    padding-bottom: 200px;
  }

  .margin-spacing-bottom {
    margin-bottom: 200px;
  }

  .title {
    font-size: 50px;
    line-height: 60px;
    white-space: pre-line;
  }

  .heading {
    font-size: 35px;
    line-height: 45px;
    white-space: pre-line;
  }

  .link {
    padding: 8.5px 25px;
  }

  body {
    font-size: 18px;
    line-height: 25px;
  }

  .hero {
    height: 650px;
  }

  .hero-content {
    width: 80%;
    gap: 50px;
    padding-bottom: 150px;
  }

  .about-slide {
    transform: scaleY(0.8);
    transition: transform var(--timing-function);
  }

  .swiper-slide-active .about-slide {
    transform: scaleY(1);
  }

  .about-swiper-wrapper .swiper-slide {
    opacity: 0;
  }

  .about-swiper-wrapper .swiper-slide-active {
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
    opacity: 1;
  }

  .about-swiper-wrapper .swiper-slide-prev,
  .about-swiper-wrapper .swiper-slide-next {
    position: relative;
    z-index: 5;
    opacity: 1;
  }

  .about-title-and-sub-title {
    width: 60%;
  }

  .about-section {
    overflow: hidden;
  }

  .about-section .about-swiper {
    overflow: unset !important;
  }

  .team-members {
    display: grid;
    grid-template: auto / repeat(2, 1fr);
  }

  .team-member {
    padding: 30px 40px;
    gap: 50px;
  }

  .news-card {
    flex-direction: row;
    padding: 30px 0px;
    gap: 30px;
  }

  .news-image {
    height: 320px;
    width: calc(40% - 15px);
  }

  .news-content {
    justify-content: space-between;
    width: calc(60% - 15px);
    padding: 20px 0px;
  }

  .news-texts {
    gap: 50px;
  }

  .contact-content {
    width: 50%;
  }

  .contact-content p {
    margin: 20px 0px 35px 0px;
  }

  .top-footer-content {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 50px;
  }

  .footer-navigations {
    width: 85%;
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
  }

  .copyright-and-links {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .bottom-footer-content {
    margin-top: 50px;
    flex-direction: row;
    justify-content: space-between;
  }

  .who-items-holder {
    display: grid;
    grid-template: auto / repeat(2, 1fr);
  }

  .logo img {
    max-height: 85px;
  }

  .swiper-progress-holder {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 1200px) {
  .title {
    font-size: 60px;
    line-height: 70px;
  }

  .leistungen-item {
    height: 350px;
  }

  .leistungen-content {
    bottom: 0px;
    left: 30px;
    right: 30px;
  }

  .leistungen,
  .aktuelles-section {
    padding: 100px 0px;
  }

  .team-members {
    gap: 30px;
  }

  .reference-post-content {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .who-items-holder {
    display: grid;
    grid-template: auto / repeat(3, 1fr);
  }

  .desktop-links ul {
    gap: 30px;
  }

  .news-card {
    gap: 45px;
  }

  .news-content {
    width: 50%;
  }

  .footer-navigations {
    gap: 50px;
  }

  .top-footer-content {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1400px) {
  .title {
    font-size: 65px;
    line-height: 75px;
  }

  .about-slide-texts {
    width: 80%;
  }

  .leistungen-item {
    height: 400px;
  }

  .team-member {
    padding: 20px 25px;
  }

  .desktop-links ul {
    gap: 50px;
  }

  .team-members {
    gap: 16px;
    grid-template: auto / repeat(3, 1fr);
  }

  .header-categories-holder {
    left: -200px;
    width: 550px;
  }

  .who-items-holder {
    grid-template: auto / repeat(4, 1fr);
  }

  .who-item {
    padding: 35px 25px;
  }

  .footer-navigations {
    gap: 100px;
  }
}

@media only screen and (min-width: 1599px) {
  .title {
    font-size: 80px;
    line-height: 90px;
  }

  .desktop-links ul {
    width: 80%;
    display: flex;
    justify-content: center;
  }

  .team-member {
    padding: 25px 35px;
  }

  .who-item {
    padding: 40px 30px;
  }

  .about-slide-texts {
    width: 75%;
  }

  .leistungen-item {
    height: 450px;
  }

  .hero {
    height: 840px;
  }

  .about-slide {
    height: 450px;
  }

  .heading {
    font-size: 40px;
    line-height: 55px;
  }

  .about-title-and-sub-title {
    width: 45%;
  }

  .contact-section {
    height: 550px;
  }

  .contact-content {
    width: 45%;
    padding-top: 150px;
  }

  .desktop-links ul {
    gap: 80px;
  }
}

@media only screen and (min-width: 1800px) {
  .leistungen-item {
    height: 500px;
  }

  .team-member {
    padding: 30px 40px;
  }

  .who-item {
    padding: 50px 30px;
  }

  .footer-navigations {
    gap: 130px;
  }
}

@media only screen and (hover: hover) and (min-width: 992px) {
  .link {
    transition:
      background-color var(--timing-function),
      color var(--timing-function);
  }

  .link-brand-primary:hover {
    background-color: var(--primary-color-hover);
    color: var(--white);
  }

  .link-outline:hover {
    background-color: var(--primary-color-hover);
    color: var(--white);
  }

  .slider-button {
    transition: background-color var(--timing-function);
  }

  .slider-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .slider-button svg,
  .link-svg svg {
    transition: transform var(--timing-function);
    transform: translate3d(0px, 0px, 0.0001px);
  }

  .slider-button-prev:hover svg {
    transform: translate3d(-5px, 0px, 0.0001px);
  }

  .slider-button-next:hover svg,
  .link-svg:hover svg {
    transform: translate3d(5px, 0px, 0.0001px);
  }

  .category-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
  }

  .desktop-links li a {
    transition: color var(--timing-function);
  }

  .desktop-links li a:hover {
    color: var(--primary-color);
  }

  .header-categories-trigger:hover span {
    color: var(--primary-color);
  }

  .header-categories-trigger:hover svg path {
    stroke: var(--primary-color);
  }

  .header-categories-trigger:hover svg {
    transform: rotate(180deg);
  }

  .footer-navigation li a {
    transition: color var(--timing-function);
  }

  .footer-navigation li a:hover {
    color: var(--primary-color);
  }

  .copyright-and-links a {
    transition: color var(--timing-function);
  }

  .copyright-and-links a:hover {
    color: var(--primary-color-hover);
  }

  .made-by {
    transition: color var(--timing-function);
  }

  .made-by:hover {
    color: var(--primary-color);
  }
}
