/* Hero block */

.hero-container {
  height: calc(100vh - 65px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.hero-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  color: white;
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.hero-item h2 {
  color: white;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  height: 100vh;
  width: 34vw;
  object-fit: cover;
  opacity: 0.8;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0.8;
}

.default-gradient {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(102, 102, 102, 0) 45%,
      rgba(102, 102, 102, 0) 55%,
      rgba(0, 0, 0, 0.4) 100%);
  opacity: 1;
}

.hover-gradient {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
}

.hero-item:hover .default-gradient {
  opacity: 0;
}

.hero-item:hover .hover-gradient {
  opacity: 1;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.hero-web-hover {
  font-size: 22px;
  font-weight: 400;
  display: none;
  transition: opacity 0.5s ease;
}

.hero-item:hover .hero-web-hover {
  display: inline-block;
}

.hero-item-link {
  color: white;
  border-bottom: 1px solid white;
  font-size: 24px;
  font-weight: 700;
}

.hero-item-link:hover,
.hero-mob-link:hover {
  color: rgb(220, 220, 220);
}

.hero-mob-link {
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  color: white;
}

/* APPROACH */

.store-image {
  height: 3rem;
}

.appstore-image {
  margin-right: 2rem;
}

/* CARD */

.card-border-mob {
 border: none;
}

.card-list-item {
  font-weight: 700;
  display: flex;
  gap: 12px;
  font-size: 24px;
}

.card-list-item-de {
  font-weight: 700;
  display: flex;
  gap: 12px;
  font-size: 22px;
}

.card-list {
  list-style: none;
  font-size: 20px;
}

.h4 {
  height: 72px;
}

/* insurances partners */

.insurances-list {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.insurance-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.insurance-item img {
  max-width: 100%;
  object-fit: contain;
  cursor: pointer;
  max-height: 80px;
}

.partner-img-container {
  display: flex;
  align-items: center;
  max-height: 144px;
  width: 172px;
}

/* new carousel for Certificates & Declarations  */
.compliance-carousel-section {
  overflow: hidden;
  background-repeat: repeat;
  background-size: auto;
}

.compliance-title {
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.complianceSwiper {
  overflow: visible;
  padding-left: 10rem;
  padding-right: 2rem;
}

.complianceSwiper .swiper-slide {
  width: 620px;
  height: auto;
}

.compliance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.compliance-card-title {
  text-align: center;
  color: #314F6D;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.compliance-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid #ededed;
  margin-bottom: -30px;
  z-index: 2;
  position: relative;
}

.compliance-logo {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
}

.card-content {
  width: 100%;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: #fff;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #1f1f1f;
  text-align: center;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.compliance-link-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.compliance-link {
  color: #314F6D;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid #314F6D;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: transparent;
}

.compliance-link-btn {
  border: none;
  padding: 0;
  cursor: pointer;
}

.compliance-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-right: 10rem;
  position: relative;
}

.complianceSwiper .swiper-button-prev,
.complianceSwiper .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  background: #fff;
}

.complianceSwiper .swiper-button-prev::after,
.complianceSwiper .swiper-button-next::after {
  font-size: 18px;
  color: #1f1f1f;
  font-weight: 700;
}

.complianceSwiper .swiper-button-disabled {
  opacity: 0.35;
}

.complianceSwiper .swiper-wrapper {
  align-items: stretch;
}

.complianceSwiper .swiper-slide {
  width: 620px;
  height: auto;
  display: flex;
}

.compliance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.card-content {
  width: 100%;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: #fff;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #1f1f1f;
  text-align: center;
  font-weight: 500;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.compliance-link-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.5rem;
}

@media screen and (max-width: 991px) {
  .compliance-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .complianceSwiper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 4rem;
  }

  .complianceSwiper .swiper-slide {
    width: 86vw;
  }

  .compliance-card-title {
    font-size: 1.5rem;
  }

  .compliance-logo-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: -20px;
  }

  .compliance-logo {
    max-width: 70px;
    max-height: 70px;
  }

  .card-content {
    padding: 2rem 1rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
    min-height: 260px;
  }

  .compliance-nav {
    padding-right: 1rem;
  }
}

/* Certificates & Declarations end */
