/*
 * Fonts declared in /functions/fonts.php
 * */

:root{
    --icared: rgb(219, 0, 11);
    --icayellow: #fee502;
    --icapink: pink;    
}

/*The entire page*/
main.kampanj-page{
    background-color: var(--icayellow);
    font-family: ks-text;
    font-size: 16px;
    font-weight: 300;
}

/*Hero container*/
.kampanj-hero{
    width: 100%;
    height: 33.33vw; 
    background-color: var(--icayellow);
    position: relative;
}

@media (orientation: portrait){
   .kampanj-hero{
    height: 100vw;
    } 
}

/* Background image is cut*/
.kampanj-hero img{
    position: absolute;
	height: 100%;
	width: 100%;
    object-fit: cover;
    object-position: center;
}

   .kampanj-hero img.mobile_hero{
       display: none;
    } 
    .kampanj-hero img.desktop_hero{
       display: block;
    } 


@media (orientation: portrait){
   .kampanj-hero img.mobile_hero{
       display: block;
    } 
    .kampanj-hero img.desktop_hero{
       display: none;
    } 
}

/* Foreground image is entirely displayed*/
.kampanj-hero img.foreground{
	object-fit: contain;
    height: 90%;
    top: 5%;
}

/* The lead-in text + headline*/
.kampanj-story{
    width: 1000px;
    max-width: 90%;
    margin: 30px auto 80px auto;
    padding-top: 10px;
}

.kampanj-story h1{
     font-family: 'ks-rubrik-black';
    font-size: 50px;
    text-align: center;
    margin: 3px 0;
}

.kampanj-story p{
    font-size: 20px;
    text-align: center;
    display: block;
    max-width: 800px;
    margin: auto;
}
