/* ==============================================
   Base CSS
   =============================================== */
body{
    min-height: 100%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content>div {
    width: 85%;
    max-width: 1350px;
}
.content hr {
    width: 90%;
    max-width: 1480px;
}
hr {
    height: 5px;
    margin: 0;
    border: none;
    background: black;
    width: 100%;
}
hr.rainbow {
    background: linear-gradient(to left, #f9cdd0, #f9cdb6, #fae48b, #ceead8, #ccecf9, #d9c2dc);
}
hr.white {
    background: white;
}

hr.short {
    width: 97%;
    margin: 0 1.5%;
}

@media screen and (max-width: 800px){
    .only-on-pc{
        display: none;
    }
}


@media screen and (max-width: 500px){
    .pc-and-ipad{
        display: none;
    }
}


/* ==============================================
Navigation Links
=============================================== */
.navbar {
    background: linear-gradient(#ccecf9, white ); /* old blue: #afd2e9 */
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* position: sticky; */
    top: 0;
    overflow: hidden;
}

.Navlink {
    text-decoration: none;
    color: black;
    border: white solid 2px;
    border-radius: 10px;
    text-align: center;
    padding: 10px 30px;
    margin: 3px;
    transition: background-color 0.2s ease-in-out;
}

.thin {
    padding: 10px;
}

.Navlink:hover {
    background-color: white;
}
.Navlink.Active {
    background-color: white;
}
.kontakt {
    margin-right: 10px;
}
.logo{
    height: 50px;
    margin: 10px;
    padding: 2.5px;
    background-color: white;
    border-radius: 50%;
}
.logo-image{
    height: 100%;
}

.navbar .FoldableMenuButton{
    display: none;
    fill: white;
}

.hidden_navigation_links {
    display: none;
}



@media screen and (max-width: 1100px) {
/*
    NAVIGATION
===================================*/
    .navbar .navigation_links {
        display: none;
    }

    .navbar .kontakt {
        display: none;
    }
    .navbar .FoldableMenuButton {
        display: inline-flex;
    }
    .responsive {
        display: flex;
        position: relative;
        flex-direction: column;
        margin-right: 10px;
        margin-left: auto;
    }
    /* .navbar .responsive .FoldableMenuButton {
        position: absolute;
        right: 0;
        top: 0;
    } */
    /* .navbar.responsive a {
        text-align: left;
        display: inline-flex;
        flex-direction: column;
    } */
    /* .navbar {
        justify-content: space-between;
    } */
}
/* ==============================================
   Banner Section
   =============================================== */
.top_banner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* justify-content: space-between; */
    margin: 10px 0;
    align-items: center;
    justify-content: center;
}


.banner_img {
    width: 100%;
}

/* ==============================================
   Tekst
   =============================================== */

.beskrivelse {
    padding: 0px 10px;
    font-size: large;
    width: 60%;
}

@media screen and (max-width: 800px) {
    .beskrivelse {
        font-size: medium;
    }
}

/* @media screen and (max-width: 500px) {
    .beskrivelse {
        font-size: small;
    }
} */

.page_title h1{
    text-align: center;
    padding-bottom: -100px;
}

.beskrivelse p{
    line-height: 35px;
}

/* ==============================================
   Footer
   ============================================== */
footer {
    /* position: fixed; */
    /* left: 0;
    bottom: 0; */
    width: 100%;
    background: linear-gradient(#74a9bf, #414d53 );
    display: flex;
    justify-content: center;
    margin: 10px 0 0 0;
}

footer,
footer a {
    color: white;
}

.footer-container{
    display: flex;
    padding: 15px;
    flex-direction: row;
    flex-wrap: nowrap;
    /* justify-content: space-between; */
    align-items: center;
}

.footer-image{
    width: 15%;
    padding: 5px;
}

@media screen and (max-width: 1100px) {
    .footer-image {
        width: 30%;
        padding: 2px;
    }
    
}

@media screen and (max-width: 500px) {
    .footer-image {
        width: 40%;
        padding: 0;
    }
    
}

.footer-text{
    width: 100%;
    height: 100%;
    text-align: center;
}