.container-inner {
  max-width: 1312px !important;
  margin: 0 auto !important;
}

.logo-img-desktop {
  /* margin-top: -6px !important; */
}

.footer-logo {
  max-width: 165.152px;
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: center;

  /* @media (max-width: 1024px) {
    margin-left: -20px;
  } */
}

.custom-container {
  /* max-width: 1312px;
  margin: 0 auto; */
  position: relative;
}
.row {
  margin: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.carousel-item img {
  height: auto;
  width: 100%;
}

@media (max-width: 576px) {
  .carousel-item img {
    height: 500px;
    width: auto;
  }
}

/* BANNER */
#banner {
  padding: 84px 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 80px;
  position: relative;
}
#banner::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  inset: 0;
}
#banner .sub-heading p {
  margin: 0 auto;
  color: var(--White, #fff);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  padding-bottom: 20px;
  width: 257px;
}
#banner .heading h1 {
  margin: 0;
  color: var(--White, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}

@media (min-width: 1024px) {
  #banner {
    padding: 160.5px 61px;

    .sub-heading p {
      text-align: center;
      font-weight: 700;
      font-size: 28px;
      line-height: 42px;
      color: white;
      text-align: center;
      padding-bottom: 24px;
      width: 100%;
    }

    .heading h1 {
      color: var(--Text-alternate, #fff);
      text-align: center;
      font-size: 44px;
      font-style: normal;
      font-weight: 300;
      line-height: 120%;
    }
  }

  .search-component,
  .dropdown-component {
    input.input {
      width: 261px;
    }
  }
}
/* /BANNER */

/* FILTER */
.form-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-horizontal {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}

.form-group-vertical,
.form-group-horizontal {
  .label {
    color: var(--Black, #212529);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 0px;
  }
}

.search-component {
  position: relative;

  input.input {
    width: 100%;
    padding: 6px 42px 6px 10px;
    gap: 16px;
    border: 1px solid #bababa;
    background: var(--Color-Neutral-white, #fff);
  }

  .icon {
    position: absolute;
    right: 10px;
    top: calc(14px - 8px);
  }
}
/* /FILTER */

.cookie-warning {
  display: flex;
  flex-direction: row;
  max-width: 768px;

  position: fixed;
  top: 100px;
  background: rgba(165, 165, 165, 0.867);
  right: 32px;
  left: 32px;
  border-radius: 8px;
  padding: 8px 16px;
  color: white;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

/* ANIMATION */
.w3-animate-opacity {
  animation: opac 1s;
}

@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
