* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
}

.topbanner {
  background-color: #dbaa9b;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  height: 34px;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 0;
  z-index: 1000;
}

.navbar {
  background-color: #9c4e27;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 125px;
  height: 80px;
  font-size: 15px;
  position: relative;
}
.navbar .nav-left,
.navbar .nav-right {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.navbar .nav-right {
  justify-content: flex-end;
  gap: 20px;
}
.navbar .nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.navbar .nav-center .logo {
  height: 37px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .nav-center p {
  font-size: 10px;
  margin-top: 2px;
}
.navbar .search-wrapper {
  position: relative;
  width: 100%;
}
.navbar .search-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  color: #333;
}
.navbar .search-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: grey;
  font-size: 18px;
  pointer-events: none;
}
.navbar .icon {
  font-size: 18px;
  margin-right: 4px;
}
.navbar span {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.main-menu {
  background-color: #9c4e27;
  padding: 0 125px;
}
.main-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}
.main-menu ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 20px 0;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-menu ul li a .arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-top: 2px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 500px;
}
.promo-grid .promo-item {
  position: relative;
  overflow: hidden;
}
.promo-grid .promo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-grid .promo-item .promo-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0);
}
.promo-grid .promo-item .promo-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
.promo-grid .promo-item .promo-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0;
}

.cta-section {
  background-color: #dbaa9b;
  padding: 60px 125px;
}
.cta-section .cta-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .shelf-carousel {
  flex: 1.5;
  min-width: 650px;
  min-height: 420px;
  max-width: 700px;
  background-image: url("../images/ugens_fund_reol.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  position: relative;
  padding: 80px 30px;
  overflow: hidden;
}
.cta-section .product-track {
  display: flex;
  gap: 0px;
  width: 100%;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  padding-left: 70px;
  width: calc(100% - 20px);
}
.cta-section .product-card {
  flex: 0 0 30%;
  max-width: 190px;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
  position: relative;
  text-align: center;
  margin-top: 20px;
  flex: 0 0 33.3333333333%;
}
.cta-section .product-card:hover {
  transform: scale(1.08);
}
.cta-section .product-card:hover .info {
  opacity: 1;
  visibility: visible;
}
.cta-section .product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.cta-section .product-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cta-section .product-card .info p {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  color: #333;
}
.cta-section .product-card .info span {
  font-weight: bold;
  color: #9c4e27;
}
.cta-section .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #9c4e27;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2;
}
.cta-section .arrow.left {
  left: 10px;
}
.cta-section .arrow.right {
  right: 10px;
}
.cta-section .cta-text {
  flex: 1;
  max-width: 400px;
  min-width: 300px;
  margin-bottom: 20px;
}
.cta-section .cta-text h2 {
  font-size: 26px;
  color: #5d2d1e;
  margin-bottom: 20px;
}
.cta-section .cta-text p {
  font-size: 16px;
  margin-bottom: 20px;
}
.cta-section .cta-text .cta-button {
  background-color: #5d2d1e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.carousel-section {
  background: white;
  padding: 40px 125px;
}
.carousel-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}
.carousel-section .carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.carousel-section .carousel-track {
  display: flex;
  justify-content: center;
  gap: 50px;
  overflow: auto;
}
.carousel-section .carousel-card {
  background: #f9f9f9;
  border-radius: 8px;
  width: 210px;
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carousel-section .carousel-card img {
  width: 100%;
  height: auto;
}
.carousel-section .carousel-card .label {
  background-color: #9c4e27;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 3px;
  margin-bottom: 4px;
}
.carousel-section .carousel-card .brand {
  font-size: 10px;
  color: #dbaa9b;
  margin: 4px 0;
}
.carousel-section .carousel-card .title {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.carousel-section .carousel-card .desc {
  font-size: 10px;
  color: #555;
  margin: 2px 0;
}
.carousel-section .carousel-card .price {
  font-weight: 700;
  font-size: 14px;
  margin-top: 5px;
}
.carousel-section .carousel-arrow {
  background-color: #555;
  color: white;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
.carousel-section .carousel-arrow.left {
  left: -20px;
}
.carousel-section .carousel-arrow.right {
  right: -20px;
}

.site-footer {
  background-color: #dbaa9b;
  color: white;
  padding: 40px 125px 20px;
  font-size: 14px;
}
.site-footer .footer-container {
  display: grid;
  grid-template-columns: 0.3fr 0.3fr 0.3fr 0.3fr;
  gap: 20px;
  align-items: start;
}
.site-footer .footer-container p, .site-footer a, .site-footer li {
  line-height: 1.7;
}
.site-footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 130px;
}
.site-footer .footer-logo img {
  height: 45px;
  margin-bottom: 5px;
}
.site-footer h2 {
  font-size: 24px;
  font-weight: 700;
  color: #9c4e27;
}
.site-footer p {
  margin: 5px 0;
  color: #9c4e27;
  font-size: 12px;
}
.site-footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 6px;
}
.site-footer .footer-links a:not(.social-icons a), .site-footer .footer-contact a:not(.social-icons a) {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.site-footer .footer-links a:not(.social-icons a):hover, .site-footer .footer-contact a:not(.social-icons a):hover {
  text-decoration: underline;
}
.site-footer .footer-links p, .site-footer .footer-links a:not(.social-icons a), .site-footer .footer-contact p, .site-footer .footer-contact a:not(.social-icons a) {
  font-size: 14px;
  color: white;
}
.site-footer .footer-links i, .site-footer .footer-contact i {
  color: white;
  margin-right: 6px;
}
.site-footer .footer-links .social-icons a, .site-footer .footer-contact .social-icons a {
  color: white;
  font-size: 20px;
}
.site-footer .footer-links .social-icons a:hover, .site-footer .footer-contact .social-icons a:hover {
  color: #d9d9d9;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: white;
}

.footer-bottom p {
  color: white;
}

.cta-landing,
.cta-landing-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text media";
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 125px;
}
.cta-landing .cta-text2,
.cta-landing .cta-text-right,
.cta-landing-videos .cta-text2,
.cta-landing-videos .cta-text-right {
  grid-area: text;
}
.cta-landing .cta-text2 h2,
.cta-landing .cta-text-right h2,
.cta-landing-videos .cta-text2 h2,
.cta-landing-videos .cta-text-right h2 {
  font-size: 28px;
  color: #9c4e27;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-landing .cta-text2 p,
.cta-landing .cta-text-right p,
.cta-landing-videos .cta-text2 p,
.cta-landing-videos .cta-text-right p {
  font-size: 16px;
  color: #9c4e27;
  margin-bottom: 25px;
  max-width: 400px;
  line-height: 1.5;
}
.cta-landing .cta-text2 .cta-button2,
.cta-landing .cta-text-right .cta-button2,
.cta-landing-videos .cta-text2 .cta-button2,
.cta-landing-videos .cta-text-right .cta-button2 {
  background-color: #9c4e27;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.2s;
}
.cta-landing .cta-text2 .cta-button2:hover,
.cta-landing .cta-text-right .cta-button2:hover,
.cta-landing-videos .cta-text2 .cta-button2:hover,
.cta-landing-videos .cta-text-right .cta-button2:hover {
  background-color: #733a1d;
}
.cta-landing .cta-video, .cta-landing .cta-videos,
.cta-landing-videos .cta-video,
.cta-landing-videos .cta-videos {
  grid-area: media;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-landing .cta-video video,
.cta-landing .cta-video img, .cta-landing .cta-videos video,
.cta-landing .cta-videos img,
.cta-landing-videos .cta-video video,
.cta-landing-videos .cta-video img,
.cta-landing-videos .cta-videos video,
.cta-landing-videos .cta-videos img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 0;
}
.cta-landing .cta-videos,
.cta-landing-videos .cta-videos {
  display: flex;
  gap: 20px;
}

.cta-landing.spejlvendt .cta-text2 {
  justify-self: start;
  padding-left: 80px;
}

.cta-landing.spejlvendt, .cta-landing-videos.spejlvendt {
  grid-template-areas: "media text";
}
.cta-landing.spejlvendt .cta-text2, .cta-landing.spejlvendt .cta-text-right, .cta-landing-videos.spejlvendt .cta-text2, .cta-landing-videos.spejlvendt .cta-text-right {
  text-align: left;
}

.video-small-container .cta-videos {
  display: block;
}
.video-small-container video {
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 550px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cta-landing-videos.video-small-container {
  justify-items: center;
  align-items: center;
  gap: 10px;
}

.cta-landing-videos, .cta-landing-videos.spejlvendt {
  background-color: #dbaa9b;
}

.cta-video video.focus-lower {
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}

@media (max-width: 900px) {
  .topbanner {
    height: 34px;
    font-size: 12px;
    position: relative;
    overflow: hidden;
  }
  .topbanner span {
    display: block;
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: slide 9s infinite;
  }
  .topbanner span:nth-child(1) {
    animation-delay: 0s;
  }
  .topbanner span:nth-child(2) {
    animation-delay: 3s;
  }
  .topbanner span:nth-child(3) {
    animation-delay: 6s;
  }
  @keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    10% {
      opacity: 1;
      transform: translateY(0);
    }
    30% {
      opacity: 1;
    }
    40% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 0;
      transform: translateY(100%);
    }
  }
  .navbar {
    padding: 10px 20px;
  }
  .navbar .nav-left {
    display: none;
  }
  .navbar .nav-center {
    display: flex;
    position: static;
    transform: none;
    margin-right: auto;
  }
  .navbar .nav-center .logo {
    height: 30px;
    position: relative;
  }
  .navbar .nav-right {
    gap: 15px;
  }
  .navbar .nav-right i {
    font-size: 18px;
  }
  .navbar .burger {
    display: flex;
  }
  .main-menu {
    display: none;
    flex-direction: column;
    background: #9c4e27;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .main-menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }
  .main-menu ul li a {
    color: white;
    font-size: 16px;
    display: block;
  }
  .main-menu.active {
    display: flex;
  }
}
@media (max-width: 900px) {
  .promo-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }
  .cta-landing,
  .cta-landing-videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-landing .cta-video,
  .cta-landing .cta-videos,
  .cta-landing-videos .cta-video,
  .cta-landing-videos .cta-videos {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .cta-landing video,
  .cta-landing img,
  .cta-landing-videos video,
  .cta-landing-videos img {
    width: 100%;
    max-width: 300px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .cta-landing .cta-text, .cta-landing .cta-text2,
  .cta-landing .cta-text-right, .cta-landing .cta-landing.spejlvendt,
  .cta-landing-videos .cta-text,
  .cta-landing-videos .cta-text2,
  .cta-landing-videos .cta-text-right,
  .cta-landing-videos .cta-landing.spejlvendt {
    margin: 0 auto 20px auto;
    max-width: 300px;
  }
  .cta-landing.spejlvendt .cta-text2 {
    justify-self: center;
    padding-left: 0;
  }
}
@media (max-width: 900px) {
  .cta-section {
    padding: 40px 20px;
  }
  .cta-section .cta-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .cta-section .shelf-carousel {
    width: 100%;
    max-width: 360px;
    min-width: unset;
    min-height: 280px;
    padding: 40px 10px;
    overflow-x: auto;
    background-size: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .cta-section .product-track {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    scroll-snap-type: x mandatory;
  }
  .cta-section .product-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    scroll-snap-align: center;
    margin-top: 30px;
  }
  .cta-section .product-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .cta-section .product-card .info {
    display: none;
  }
  .cta-section .arrow {
    display: none;
  }
  .cta-section .cta-text {
    text-align: center;
    max-width: 90%;
  }
  .cta-section .cta-text h2 {
    font-size: 24px;
  }
  .cta-section .cta-text p {
    font-size: 16px;
    line-height: 1.5;
  }
  .cta-section .cta-text .cta-button {
    padding: 10px 18px;
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .cta-section .cta-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-section .cta-text {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-section .shelf-carousel {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .site-footer {
    padding: 20px;
    text-align: center;
  }
  .site-footer .footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .site-footer .footer-logo {
    margin-left: 0;
    align-items: center;
  }
  .site-footer .footer-bottom {
    margin-top: 20px;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */