/*------------------------------------
  Imports & Fonts
------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');
/*------------------------------------
  CSS Variables
------------------------------------*/
:root {
    --color-primary: #173e3c;
    --color-accent: #e8a791;
    --color-bg: #f4efea;
    --color-secondary: #6d9d91;
    --color-dark: #5c4b51;
    --color-bluegray: #6a8493;
    --color-bg-accent: #f6d9b3;
    --color-warning: #a3530f;
}
/*------------------------------------
  Resets & Base
------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Jost', sans-serif;
  background: var(--color-bg);
  color: var(--color-primary);
  overflow-x: hidden;
}

a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-accent);
}

p {
  font-size: 1.15em;
  color: #888;
  font-weight: 300;
  margin-bottom: 2.5em;
  max-width: 700px;
}

/*------------------------------------
  Kanpper
------------------------------------*/

/* Burger knap */
.burger-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1101;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #e8a791;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.burger-btn__text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: inherit; /* arver farven fra .burger-btn */
}

.burger-btn__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}


.burger-btn__line {
  display: block;
  width: 32px;
  height: 4px;
  background: currentColor; /* arver farven fra .burger-btn */
}

/* Luk slide in menu */
.closeSlideMenu {
  position: fixed;
  top: 0;
  right: 24px;
  background: none;
  border: none;
  font-size: 4rem;
  color: #e8a791;
  cursor: pointer;
  font-weight: bold;
  z-index: 1200;
}

/* Luk overlay side */
.overlay__close {
  position: fixed;
  top: 0;
  right: 24px;
  background: none;
  border: none;
  font-size: 4rem;
  color: #173e3c;
  cursor: pointer;
  font-weight: bold;
  z-index: 4000;
}

.burgerBtn, 
.closeSlideMenu 
.overlay__close{
  transition: all 0.2s;
}


#burgerBtn:hover, 
#burgerBtn:focus {
  color: #fff !important;
  transform: scale(1.08);
}

#closeSlideMenu:hover, 
#closeSlideMenu:focus {
  color: #fff !important;
  transform: scale(1.12) rotate(8deg);
}

.overlay__close:hover, 
.overlay__close:focus {
  color: #e8a791 !important;
  transform: scale(1.12) rotate(8deg);
}

/*------------------------------------
  Mobile Topbar
------------------------------------*/

.mobile-topbar {
  display: none;
}

/* ------------------------------------
   Slide-menu Overlay
------------------------------------ */
.slide-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;                           
  background: rgba(0, 0, 0, 0.25);
  z-index: 1250;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(.4, 0, .2, 1);
}


.slide-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80vw;
  max-width: 100vw;
  background: #173e3c;
  box-shadow: -4px 0 24px rgba(23, 62, 60, 0.10);
  z-index: 1252;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}
.slide-menu.open {
  display: block;
  transform: translateX(0);
}

/* Luk‑knap */
.slide-menu__close {
  position: absolute;
  top: 0;
  right: 24px;
  background: none;
  border: none;
  font-size: 4rem;
  color: #e8a791;
  cursor: pointer;
  font-weight: bold;
  z-index: 1260;
}

/* Indholdsområde med scroll */
.slide-menu__container {
  padding-bottom: 150px;
  height: 100%;
  overflow-y: auto;
}

/* Wrapper for links */
.slide-menu__links-wrapper {
  margin-top: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Hoved-UL */
.slide-menu__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 4.5rem;
  justify-content: center;
  align-items: flex-start;
}

.slide-menu__link {
  font-size: 2rem;
  font-weight: 600;
  color: #f4efea;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
  transition: color 0.25s cubic-bezier(.4, 0, .2, 1);
}
.slide-menu__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  width: 0;
  height: 2px;
  background: #e8a791;
  border-radius: 1px;
  margin: 0 auto;
  transition: width 0.32s cubic-bezier(.4, 0, .2, 1);
}
.slide-menu__link:hover,
.slide-menu__link:focus {
  color: #e8a791 !important;
}
.slide-menu__link:hover::after,
.slide-menu__link:focus::after {
  width: 100%;
}

/* Hjælpeklasse til skjulte elementer */
.hidden {
  display: none !important;
}

/* Når overlay vises */
.slide-menu__overlay.open {
  display: block;
  opacity: 1;
}



/* ------------------------------------
   Overlay 
------------------------------------ */
.overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80vw;
  max-width: 100vw;
  background: #fff;
  box-shadow: -4px 0 24px rgba(23, 62, 60, 0.10);
  margin-left: auto; 
  margin-right: 0;
  flex-direction: column; 
  z-index: 3200;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), opacity 0.4s cubic-bezier(.4,0,.2,1);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.overlay.closing {
  transform: translateX(100%);
  opacity: 0;
}
.overlay__content {
  padding: 2rem 8vw 150px;
  height: 100%;
  overflow-y: auto;
  flex: 1 1 auto;  
  text-align: left; 
}

.overlay__links-wrapper {
  margin-top: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.overlay__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 4.5rem;
  justify-content: center;
  align-items: flex-start;
}

.overlay__link {
  font-size: 2rem;
  font-weight: 600;
  color: #e8a791;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
  transition: color 0.25s cubic-bezier(.4, 0, .2, 1);
}
.overlay__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  width: 0;
  height: 2px;
  background: #e8a791;
  border-radius: 1px;
  margin: 0 auto;
  transition: width 0.32s cubic-bezier(.4, 0, .2, 1);
}
.overlay__link:hover,
.overlay__link:focus {
  color: #e8a791 !important;
}
.overlay__link:hover::after,
.overlay__link:focus::after {
  width: 100%;
}

.overlay-header {
  width: 100%; 
  background: #fff; 
  z-index: 3500; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  height: 100px !important; 
  box-shadow: 0 2px 12px rgba(23,62,60,0.07);
  padding: 1.2rem 0.5rem 0.7rem 0.5rem;
  page-break-after: avoid !important;
}

.overlay-header h2 {
  color: #173e3c;
  font-size: 2.3rem;
  margin: 0;
  flex: 1;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 800;
  line-height: 1.2;
  height: auto;
  min-height: 0;
  max-height: none;
}


.overlay-section {
  margin-bottom: 4.5rem;
}

.overlay-section h3 {
  color: #173e3c;
  font-size: 2rem; 
  font-weight: 600; 
  display: flex; 
  align-items: left; 
  text-align: left;
  gap: 0.7em; 
  margin-bottom: 0.3em;
  margin-top: 15rem;
}

.overlay-section p {
  font-size: 1.15em;
  color: #888;
  font-weight: 300;
  margin-bottom: 2.5em;
  max-width: 700px;
}

.overlay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 0; /* hvis du havde margin på containeren */
  padding: 0;
  list-style: none; /* hvis du brugte ul/li i stedet for divs */
}

.overlay-list-item {
  flex: 1 1 260px;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.overlay-list-entry {
  margin-bottom: 2.2em;
}

.overlay-list-entry-title {
  font-weight: 600;
  font-size: 1.08em;
  color: var(--color-primary);
}

.overlay-list-entry-desc {
  font-weight: 300;
  font-size: 1em;
  color: #888;
  margin-top: 0.3em;
  line-height: 1.4;
}


/* ------------------------------------
   Navigation bar
------------------------------------ */
.section-nav-bar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5px;
  width: 100vw;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  background: transparent;
  margin-top: 24px;
  pointer-events: none;
}
.section-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  position: relative;
  min-width: 32px;
  pointer-events: auto;
}
.section-nav-rect,
.section-nav-label {
  transition: background 0.2s, 
  color 0.2s, opacity 0.2s;
}
.section-nav-rect {
  width: 56px;
  height: 6px;
  background: rgba(244,239,234,0.5); 
  border-radius: 0;
  margin-bottom: 0;
  opacity: 0.5;
}
.section-nav-label {
  opacity: 0;
  transform: translateY(-10px);
  color: rgba(244,239,234,0.5); 
  font-weight: 400;
  font-size: 0.92rem;
  margin-top: 10px;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.01em;
  transition: opacity 0.32s, transform 0.32s, color 0.2s;
}
.section-nav-item:hover .section-nav-rect,
.section-nav-item:focus .section-nav-rect,
.section-nav-item.active-rect .section-nav-rect {
  background: #e8a791;
  opacity: 1;
}
.section-nav-item:hover .section-nav-label,
.section-nav-item:focus .section-nav-label,
.section-nav-item.active-rect .section-nav-label {
  opacity: 1;
  transform: translateY(0);
  color: #e8a791;
}

.section-nav-bar.dark .section-nav-rect {
  background: rgba(244,239,234,0.5);
}
.section-nav-bar.dark .section-nav-label {
  color: rgba(244,239,234,0.5);
}

.section-nav-bar.light .section-nav-rect {
  background: rgba(23,62,60,0.5);
}
.section-nav-bar.light .section-nav-label {
  color: rgba(23,62,60,0.5);
}

/* ------------------------------------
   Sektioner
------------------------------------ */
.sektioner {
  padding: 2rem 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

sektion-header {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}


/* ------------------------------------
   Video
------------------------------------ */

.intro{
    position: absolute;
    inset: 0;                     /* top:0; right:0; bottom:0; left:0; */
    display: flex;
    flex-direction: column;
    justify-content: center;      /* Vertikal centering */
    align-items: center;          /* Horisontal centering */
    text-align: center;
    z-index: 2;                   /* Sørg for at ligge over videoen */
}

.slide-header {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f4efea;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin-bottom: 0.7rem;
    /* z-index: 4; */
}

.slide-rect {
    width: 120px;
    height: 18px;
    background: #e8a791;
    margin: 0 auto 1.2rem auto;
    /* z-index: 4; */
}

.slide-arrow {
    font-size: 2.5rem;
    color: #f4efea;
    margin-top: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    /* z-index: 4; */
}

.video-container video, .video-slider video {
   position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* Bevar proportioner, udfyld container */
  object-position: center;
}

.video-slider video {
    transition: opacity 1s ease-in-out;
    opacity: 0;
}


/* ------------------------------------
   Ydelser
------------------------------------ */

.ydelser-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  grid-template-rows: repeat(2, 280px);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 1rem;
  justify-content: center;
}
.ydelse-box {
  background: #fff;
  color: #173e3c;
  border-radius: 0;
  box-shadow: 0 2px 16px rgba(23,62,60,0.08);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 280px;
  padding: 0;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: none;
  text-decoration: none;
}

.ydelses-box-tekst {
margin-top: auto; 
background: rgba(244,239,234,0.95); 
padding: 1rem; 
text-align: center; 
font-size: 1.1rem; 
font-weight: 600; 
color: #173e3c; 
width: 100%;
}


.ydelser-grid.visible .ydelse-box {
  animation: ydelseBoxIn 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
.ydelser-grid.visible .ydelse-box:nth-child(1) { animation-delay: 0.05s; }
.ydelser-grid.visible .ydelse-box:nth-child(2) { animation-delay: 0.12s; }
.ydelser-grid.visible .ydelse-box:nth-child(3) { animation-delay: 0.19s; }
.ydelser-grid.visible .ydelse-box:nth-child(4) { animation-delay: 0.26s; }
.ydelser-grid.visible .ydelse-box:nth-child(5) { animation-delay: 0.33s; }
.ydelser-grid.visible .ydelse-box:nth-child(6) { animation-delay: 0.40s; }
@keyframes ydelseBoxIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 
.ydelse-box:hover {
  box-shadow: 0 6px 32px rgba(23,62,60,0.16);
  transform: translateY(-6px) scale(1.03);
}
.ydelse-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: #f4efea;
  color: #173e3c;
  font-size: 1rem;
  font-weight: 400;
  padding: 1.1rem 1rem 1.7rem 1rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
.ydelse-box:hover .ydelse-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ydelse-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: #e8a791;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.ydelse-link:hover {
  color: #173e3c;
}
/* ------------------------------------
   Om vanovis
------------------------------------ */
/* Om Vanovis overlay: tekst skal wrappe om billedet, billede fast i bund til højre */
/* #OmVanovisOverlay .overlay-section > div {
  display: block !important;
  position: relative;
}

#OmVanovisOverlay .overlay-section img {
  float: right;
  width: 220px;
  max-width: 40vw;
  margin-left: 2rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  background: transparent;
  border-radius: 0;
  position: relative;
  bottom: 0;
} */

#overlay-omvanovis .inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

  #overlay-omvanovis .inner .text,
  #overlay-omvanovis .inner .image {
    flex: 1;
  }

  /* Image styling */
  #overlay-omvanovis .inner .image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    background: transparent;
  }



/* ------------------------------------
   Kontakt
------------------------------------ */

.banner {
  position: relative; 
  width: 100%; 
  max-width: 900px; 
  min-height: 340px; 
  display: flex; 
  justify-content: center; 
  align-items: flex-end;
}

.banner-firkant {
  background: #e8a791;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 40%;
  box-sizing: border-box;
}

.banner-tekst {
  flex: 1 1 100%; 
  padding: 2.5rem 0 2.5rem 2.5rem; 
  display: flex; 
  align-items: center; 
  justify-content: flex-start; 
  height: 100%;
}

.banner-quote {
  color: #f4efea;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

/* ------------------------------------
   Unified slide-in effect
------------------------------------ */
.slide-in {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.slide-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1),
              transform 0.7s cubic-bezier(.77,0,.18,1);
}



/* ------------------------------------
   Footer
------------------------------------ */
/* Footer responsivitet */
footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
}
footer > div {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    text-align: center;
}
footer > div > div {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}


/* ------------------------------------
   Mobil view
------------------------------------ */


@media (max-width: 600px) {
  .desktop-logo {
    display: none !important;
  }

  .slide-menu {
    z-index: 3000;
  }

  .overlay-header h2 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    padding: 0.2em 0 !important;
  }

  .sektioner p {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    box-sizing: border-box;
  }


  /* Mobil topbar */
  .mobile-topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 64px;
    background: #173e3c;
    z-index: 2000;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .mobile-logo img {
    height: 44px;
    width: auto;
    display: block;
    background: none;
  }

  .mobile-menu-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 2100;
  }

  .mobile-menu-line {
    display: block;
    width: 32px;
    height: 4px;
    background: #e8a791;
  }

  /* Video */
  .video-container {
    margin-top: 64px !important;
  }
  .video-container {
    height: 100vh;
  }
  .video-container video {
    object-fit: cover;
  }

  /* Navigationsbar og intro*/
  .section-nav-bar {
    display: none !important;
  }
  /* Mindre tekst og firkant på mobile */
  #mainHeader {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  #mainRect {
    width: 80px !important;
    height: 12px !important;
  }
  #scrollDownBtn {
    font-size: 2rem !important;
  }

  /* Ydelser */
  .ydelser-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0 0.8rem;
  }
  
  .ydelse-box {
    height: 280px;
  }

  /* Banner */
  #kontakt-section .banner-firkant {
    padding: 1rem 0.2rem 2rem 0.2rem !important;
    min-height: 120px !important;
  }
  #kontakt-section blockquote {
    font-size: 0.95rem !important;
    }
  #kontakt-section .kontakt-billede {
    width: 38vw !important;
    min-width: 40px !important;
    max-width: 80px !important;
  }

  #kontakt-section .kontakt-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  #kontakt-section .kontakt-link {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    border: none !important;
    padding: 1rem 0;
    display: block;
  }
  #kontakt-section .kontakt-separator {
    display: none !important;
  }



  /* Team billeder */
  .team-section-responsive {
    padding: 12px 0;
    min-height: 100px;
  }
  .team-figure-wrapper {
    width: 100vw !important;
    height: 80px !important;
  }
  .team-bg-rect {
    height: 40px !important;
  }
  .team-img-responsive {
    max-width: 60px !important;
    width: 38vw !important;
    right: 2vw !important;
  }
  #overlay-medarbejdere > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  #overlay-medarbejdere img {
    width: 150px !important;
    height: 150px !important;
  }
  #overlay-medarbejdere h3 {
    font-size: 1.2rem !important;
  }
  #overlay-medarbejdere p {
    font-size: 1rem !important;
  }

  footer {
    min-height: 220px !important;
    padding: 8px 0 8px 0 !important;
  }
  footer > div {
    gap: 8px !important;
  }
}



/* ------------------------------------
   Tablet view stående
------------------------------------ */
@media (max-width: 900px) {
  .slide-menu {
    width: 90vw;
  }
  .slide-menu__links {
    flex-direction: column;
    gap: 2rem;
  }

  .overlay {
    width: 90vw;
  }

  .ydelser-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100vw;
    margin: 0 auto;
    justify-content: center;
  }
  .ydelse-box {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }

  /* Banner */
  #kontakt-section .banner-firkant {
    flex-direction: column !important;
    padding: 1.2rem 0.7rem 2.5rem 0.7rem !important;
    min-height: 200px !important;
    align-items: center !important;
    padding-right: 0 !important;
  }

  #kontakt-section blockquote {
    font-size: 1.05rem !important;
    padding: 0 !important;
    text-align: left !important;
  }

  #kontakt-section .kontakt-billede {
    width: 38vw !important;
    min-width: 60px !important;
    max-width: 120px !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    position: absolute !important;
    bottom: 0 !important;
    display: block !important;
    margin-top: 0 !important;
  }

  #overlay-omvanovis .inner {
    flex-direction: row;
    align-items: flex-end;
  }

  

  footer {
    flex-direction: column !important;
    min-height: 180px !important;
    padding: 12px 0 12px 0 !important;
  } 
  footer > div {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto;
  }
  footer > div > div {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
/* ------------------------------------
   Tablet view liggende
------------------------------------ */
@media (max-width: 1200px) {
  
  /* Team grid 2x2 i overlay */
  #MedarbejdereOverlay .overlay-section > div[style*="display: grid"] {
    gap: 1.2rem !important;
  }
  #MedarbejdereOverlay .overlay-section img {
    width: 180px !important;
    height: 180px !important;
    max-width: 100%;
  }
  #MedarbejdereOverlay .overlay-section > div[style*="display: grid"] > div {
    padding: 1rem !important;
  }

}


@media (max-width: 480px) {
  .ydelse-box {
    height: 260px;
  }
}

