@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Days+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
--dark-blue: #0b4a6f;
--donation-green: #1abc9c;
--light-blue: #03a9f4;
--prussian-blue: #0b2c3c;
--transparent: transparent;
--grey: grey;
--lightgrey: lightgrey;
--lightgrey1: #efefef;
--lightgrey2: #e6e6e6;
--lightgrey3: #696969;
--lightergrey: #dedede;
--darkgrey: #585858;
--whitesmoke: whitesmoke;
--black: #383838;
--lightergrey: #dedede;
--light-darkgrey: #d8d8d8;
--grey1: #bbbbbb;
--grey-green: #effff1;
--grey2: #ebebeb;
--default-white: white;
--default-darkwhite: #f3f3f3;
--sw-info-color: #3490dc;
--layout-row-shaddow-color-light: rgba(0,0,0,0.1);
--layout-row-shaddow-color-dark: rgba(0,0,0,0.2);
--calendar-selection-background-color: white;
--theme-heading-color: black;
--theme-heading1-color: black;
--theme-heading2-color: black;
--theme-heading3-color: black;
--theme-font-color: #331919;
--theme-body-font-color: #424242;
--theme-color-lighten-10: hsl(var(--theme-color),40%);
--theme-color-lighten-20: hsl(var(--theme-color),30%);
--theme-color-darken-10: hsl(var(--theme-color),60%);
--theme-color-darken-20: hsl(var(--theme-color),70%);
--theme-color-contrast: black;
--donate-wizard-button-next-color: #585858;
--theme-color: whitesmoke;
--default-black: var(--black);
--default-grey: var(--grey);
--navbar-background-color: #FFF;
--navbar-collapsed-background-color: var(--whitesmoke);
--navbar-font-color: var(--theme-nav-color);
--navbar-collapsed-font-color: var(--default-black);
--page-title-border-color: var(--theme-color);
--footer-background-color: var(--theme-color);
--footer-font-color: var(--theme-color-contrast);
--cta-events-date-border-color: var(--theme-color);
}

:root {
  --section-padding-lg: 200px;
  --section-padding-md: 100px;
  --section-padding-sm: 50px;
  --section-padding-x-sm: 25px;

  --border-radius-sm: 4px;
  --border-radius-md: 8px;

--ff-inter: "Inter", sans-serif;
--ff-libre-franklin: "Libre Franklin", sans-serif;

    --clr-ilder: hsl(210deg 8.33% 95.29%);
    --clr-ilder-op-1: hsl(210 8% 98% / 1);
    --clr-ilder-op-2: hsl(210 8% 100% / 1);
    --clr-blue-050: #f0f9ff;
    --clr-blue-100: #e0f2fe;
    --clr-blue-200: #b9e6fe;
    --clr-blue-300: #7cd3fd;
    --clr-blue-400: #36befa;
    --clr-blue-500: #0ca5eb;
    --clr-blue-600: #0084c9;
    --clr-blue-700: #0269a2;
    --clr-blue-800: #065986;
    --clr-blue-900: #0b4a6f;
    --clr-blue-950: #072f4a;
    --clr-white: #ffffff;
    --clr-whitesmoke: #f5f5f5;
}

html {
  font-family: 'Inter', sans-serif;
}



/* FRONTPAGE */

.frontpage .navbar {
min-height: 100px; 
background-color: #FFF;
}

.frontpage .navbar__body {
    width: 100%;    
    max-width: 1280px;
    justify-content: space-between;
}


.frontpage .heroimage__images img{
    width: 100%;
    height: 100%;
    max-height: 630px;
    object-fit: cover;
    filter: brightness(0.9) grayscale(.2);
}


/* LEGACY */ 

.navbar {
  min-height: 90px;
width: 100%;
}

.navbar__bar { 
background-color: var(--clr-blue-400);
}

.navbar__body {
    max-width: 1280px;
    width: 100%;
justify-content: space-between;
}

.navbar__collapse--show {
height: calc(100svh - 113px);
}

.hero .layout__row--two-col {
  padding-block: var(--section-padding-md);
  align-items: center;
}

.hero .htmlbox > article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: visible;
}

.hero .cta {
  background: var(--clr-blue-400);
  border: 1px solid;
  padding: 8px 20px;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: var(--border-radius-sm);
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.2s ease-in;
}

.hero .cta:hover {
  text-decoration: none;
  background: var(--clr-blue-600);
  color: white;
}

.hero h1 {
  font-size: max(2.250vw, 45px);
  font-family: var(--ff-libre-franklin);
  color: var(--clr-blue-950);
  margin: 0;
}

.hero h2 {
  font-size: 34px;
  color: var(--prussian-blue);
  line-height: 1.3;
  font-weight: 500;
}

.hero h3 {
  font-size: max(1.250vw, 20px);
  font-weight: 300;
     color: var(--clr-blue-950);
}

.photo-credit {
  position: absolute;
  top: -9px;
  left: 0;
  display: flex;
  justify-content: end;
  font-size: 11px;
  text-align: right;
  font-family: "Inter", sans-serif;
  color: #a3a3a3;
  margin: 3px 8px 0 0;
}

.layout__row:has(.intro) {
background-color: var(--clr-blue-100);
}

.intro {
    padding-inline: 15px;
    margin-inline: auto;
    padding-block: 3rem;
    max-width: 1024px;
}

.intro h2 {
     margin: 0;
     font-weight: 600;
}

@media (max-width: 768px) {
  .hero .cta {
    max-width: 100%;
  }

  .hero .layout__row--two-col {
    padding-block: var(--section-padding-sm);
  }
}

.innsamlingdetalj .hero-image-fixed__overlay-text-container{
    background-color: var(--heroimage-overlay-text-container-background-color, #9FA3A6);
}

.innsamlingdetalj .funding-navbar__nav--active{
border-bottom: 2px solid var(--funding-navbar-active-border-bottom, #3498db);
}

.innsamlingdetalj .hero-image-fixed__bg-main-container{
padding:0;
}
.innsamlingdetalj .hero-image-fixed__overlay-text{
padding: 0 6px;
}
.innsamlingdetalj .hero-image-fixed__bg{
filter: blur(20px) opacity(0.4);
}

.innsamlingdetalj .terms {
    display: grid;
    place-content: center;
/*    background-color: whitesmoke; */
    padding: 1rem;
   margin-top: 4rem;
}

/* @media (min-width: 768px) {

.innsamlingdetalj .terms {
    position: absolute;
    bottom: 0;
    width: 100%;
 }
} */