body {
    font-family: 'Open Sans', sans-serif;
}

main,
header {
    max-width: 1024px;
    margin: auto;
}

.logo {
    max-width: 370px;
    margin-top: 1.5rem
}

@media screen and (max-width: 699px) {
    .logo {
        max-width: 300px;
        margin-left: 0.5rem;
    }
}

img {
    max-width: 100%;
}

a.one:link {
    color: rgb(64, 120, 224);
    text-decoration: none;
}

a.one:visited {
    color: rgb(64, 120, 224);
    text-decoration: none;
}

a.one:hover {
    color: lightskyblue;
    text-decoration: none;
    cursor: pointer;
}

a.one:active {
    text-decoration: none;
}

section:nth-child(4n+3) {
    background-color: rgb(250, 247, 247);
}

@media screen and (min-width: 550px) {
    .section-image {
        vertical-align: text-top;
        max-width: 20%;
        padding: 0rem 1rem 0rem 1rem;
    }
}

@media screen and (max-width: 550px) {
    .section-image {
        display: none
    }
}

@media screen and (min-width: 550px) {
    .top-image-left {
        position: relative;
        max-width: 7%;
        margin-bottom: 45%;
        margin-left: 1rem;
        margin-right: 2rem;
        margin-top: 0.5rem;
        z-index: 1;
    }
}

@media screen and (min-width: 550px) {
    .top-image-right {
        position: relative;
        max-width: 7%;
        margin-bottom: 25%;
        margin-left: 2rem;
        margin-right: 1rem;
        margin-top: 0.5rem;
    }
}

@media screen and (max-width: 550px) {
    .top-image-left,
    .top-image-right,
    .top-icon-left,
    .top-icon-right {
        display: none
    }
}

@media screen and (min-width: 550px) {
    .top-icon-left {
        position: relative;
        max-width: 7%;
        margin-bottom: 25%;
        margin-left: 1rem;
        margin-right: 2rem;
        margin-top: 0.5rem;
    }
}

@media screen and (min-width: 550px) {
    .top-icon-right {
        position: relative;
        max-width: 9%;
        margin-bottom: 45%;
        margin-left: 2rem;
        margin-right: 1rem;
        margin-top: 0.5rem;
    }
}

section:nth-child(4n+3) .section-image {
    order: 2;
}

section {
    margin: 2rem;
    display: flex;
    align-items: center;
}

header {
    display: flex;
}


/* Navigation bar */

.menu_icon {
    width: 20px;
    height: 20px;
    margin: auto;
    z-index: 10;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 3px 3px;
    right: 0;
    top: 0;
}

.menu_icon span {
    position: absolute;
    display: block;
    height: 2.2px;
    width: 20px;
    background-color: #000;
    transform: rotate(0);
    transition: all 200ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

span.one {
    top: 0px;
}

span.two {
    top: 7px;
}

span.three {
    top: 14px;
}

.clicked .one {
    transform: translateY(7px) rotate(45deg);
}

.clicked .two {
    opacity: 0;
}

.clicked .three {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar.sticky {
    margin-top: 0px;
    top: 0;
}

@media screen and (min-width: 800px) {
    .navbar {
        background-color: #ffffffde;
        position: fixed;
        padding: 3px;
        margin-top: 1.5rem;
        max-width: 1024px;
        z-index: 50;
        right: calc((100% - 1024px)/2);
        margin-right: 2rem;
        transition: 0.4s;
    }
    .navbar a {
        float: left;
        display: block;
        color: #000000;
        text-align: center;
        padding: 8px;
        text-decoration: none;
        font-size: 17px;
        top: 15px;
    }
    .navbar .menu_icon {
        display: none;
    }
}

.dropdown {
    float: left;
}

.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: black;
    padding: 8px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9d3;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 50;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.navbar a.menu-item:hover,
.dropdown:hover .dropbtn {
    background-color: rgba(224, 222, 222, 0.705);
}

.dropdown-content a:hover {
    background-color: rgba(224, 222, 222, 0.705);
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 799px) {
    .navbar {
        background-color: #ffffffde;
        position: fixed;
        padding: 1px;
        right: 0;
        top: 0;
        max-width: 1024px;
        z-index: 10;
    }
    .navbar a {
        display: none;
        float: left;
        color: #000000;
        text-align: center;
        padding: 8px;
        text-decoration: none;
        font-size: 17px;
        top: 15px;
    }
    .navbar a.menu_icon {
        float: right;
        display: block;
    }
    .dropdown .dropbtn {
        display: none;
    }
    .dropdown .dropbtn {
        font-size: 17px;
        border: none;
        outline: none;
        color: black;
        padding: 10px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9d3;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 50;
    }
    .dropdown-content a {
        float: none;
        color: black;
        padding: 8px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
}

@media screen and (max-width: 799px) {
    .navbar.responsive {
        position: fixed;
        right: 0;
        top: 0;
        min-width: 210px;
    }
    .menu_icon {
        position: fixed;
        right: 1rem;
        top: 1rem;
    }
    .navbar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .navbar.responsive .dropdown {
        float: none;
    }
    .navbar.responsive .dropdown-content {
        position: relative;
    }
    .navbar.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
    .dropdown-content a:hover {
        background-color: rgba(224, 222, 222, 0.705);
        color: black;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
}


/* End of Navigation bar*/

hr.new {
    border: 1px solid #20202017;
}

footer {
    background-color: rgb(223, 217, 217);
    width: 100%;
}

.footer {
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    text-align: left;
    max-width: 1024px;
}

.right {
    float: right;
}

.left {
    float: left;
}


/* flex containers */

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.flex-first {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.desc {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: center;
    justify-content: space-evenly;
    width: 100%;
    height: auto;
}

.flex-video {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 15px;
}

.flex-definition {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 15px;
    justify-content: space-around;
}

.flex-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    margin: 0.8rem;
}


/* end of flex containers*/

@media (min-width: 500px) {
    .def-video {
        width: 330px;
        height: 230px;
    }
}

@media (max-width: 499px) {
    .def-video {
        width: 100%;
    }
}

.flex-container>div {
    margin: 5px;
    padding: 5px;
}

.footer-links {
    justify-content: space-between;
    width: 100%;
}

p.desc-content {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 1px;
    text-align: center;
}

.responsive {
    flex: 0 1 420px;
    margin-right: 5rem;
}

.responsive-video {
    flex: 0 1 420px;
}

.video {
    width: 100%;
}

@media (min-width: 500px) {
    .video {
        width: 420px;
        height: 345px;
    }
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

.wrap {
    width: 100%;
    margin-left: 1rem;
}

@media only screen and (max-width: 500px) {
    .wrap {
        width: 100%;
        margin-left: 0.5rem;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.profile {
    max-width: 100%;
    display: block;
    margin: auto;
}

* {
    box-sizing: border-box;
}


/* Slideshow container */

.slideshow-container {
    position: relative;
    background: rgb(223, 217, 217);
}


/* Slides */

@media screen and (min-width: 550px) {
    .mySlides {
        display: none;
        padding: 80px;
        text-align: left;
    }
    .slide {
        float: left;
        margin-right: 2rem;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 550px) {
    .mySlides {
        display: none;
        padding: 30px;
        text-align: left;
    }
    .slide {
        display: none;
    }
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}


/* The dot/bullet/indicator container */

.dot-container {
    text-align: center;
    padding: 20px;
    background: #ffffff;
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


/* Add a background color to the active dot/circle */

.active,
.dot:hover {
    background-color: #717171;
}


/* Add an italic font style to all quotes */

q {
    font-style: italic;
}


/* Add a blue color to the author */

.author {
    color: cornflowerblue;
    text-align: center;
}


/* END OF SLIDESHOW */

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: rgb(250, 244, 244);
}

.container {
    position: relative;
    text-align: left;
    color: #fff2e6;
}

.bottom-center {
    position: absolute;
    top: 83%;
    left: 38%;
    transform: translate(-30%, -50%);
}


/* Accordion */

.accordion {
    background-color: rgb(240, 234, 234);
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

.accordion:hover {
    background-color: rgb(223, 217, 217);
}

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: rgb(250, 244, 244);
}

.accordion:after {
    content: '\002B';
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.open:after {
    content: "\2212";
}


/* accordion end */

.container-background {
    position: relative;
}

.right-top {
    position: auto;
    top: 30px;
    text-align: left;
    color: rgb(15, 15, 15);
    padding-left: 30%;
}


/* frontpage */

.item {
    display: inline-block;
}


/* on PC */

@media screen and (min-width: 800px) {
    .featured-image {
        position: relative;
        float: left;
        width: 100%;
        max-width: 1024px;
    }
    .featured-image img {
        width: 100%;
        z-index: -1;
    }
    .left-top {
        position: absolute;
        top: 0rem;
        left: 0.5em;
        text-align: left;
        color: black;
    }
    .centered-right {
        position: absolute;
        top: 6rem;
        left: 1em;
        right: 53%;
    }
    .centered-right-sv {
        position: absolute;
        top: 6rem;
        left: 1em;
        right: 56.5%;
    }
    .banan {
        margin-left: 4rem;
        margin-right: 6rem;
        text-align: justify;
    }
    h1 {
        margin: 0;
        margin-top: 0.5em;
        margin-left: 1rem;
    }
    .resp {
        margin-left: 2rem;
    }
    .jobs {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}


/* Tablet */

@media screen and (min-width: 700px) and (max-width: 799px) {
    .featured-image {
        width: 100%;
    }
    .featured-image img {
        width: 100%;
    }
    .centered-right,
    .centered-right-sv,
    .left-top {
        width: 100%;
    }
    .banan {
        margin-left: 2rem;
        margin-right: 3rem;
        text-align: justify;
    }
    h1 {
        margin: 0;
        margin-top: 0.5em;
        margin-left: 1rem;
    }
    .resp {
        margin-left: 2rem;
    }
}


/* on Mobile */

@media screen and (max-width: 699px) {
    .featured-image {
        width: 100%;
    }
    .featured-image img {
        width: 100%;
    }
    .centered-right,
    .centered-right-sv,
    .left-top {
        width: 100%;
    }
    .banan {
        text-align: justify;
    }
    ul {
        padding-left: 1rem;
        margin-left: 0.5rem;
    }
    h1 {
        margin-left: 0;
        margin-top: 0.5em;
    }
    .resp {
        margin-left: 0.3rem;
        margin-right: 0.2rem;
    }
}


/*END of frontpage */