/* Sareq AB */

@font-face {
    font-family: 'SuisseIntl-Light'; 
    src: url(/assets/fonts/SuisseIntl-Light.otf);
    font-weight: normal; 
} 

@font-face {
    font-family: 'SuisseIntl-SemiBold'; 
    src: url(/assets/fonts/SuisseIntl-SemiBold.otf);
    font-weight: bold; 
} 

/* @font-face { 
    font-family: myFirstFont;
    src: url(sansation_light.woff);
} */   

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css'); 

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 17, 66, 50;
    --secondary-color: 255, 155, 0;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 183, 179, 168;
    /* --gray-light-color: 215, 213, 203; */
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 140rem;

    /* 	Typography */
    --base-size: 1.7rem; 

    /* 	Mobile nav */
    --activate-mobile-menu: 1100;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.6rem;
    }
}


/* Sprak, tex header-cta-wrapper
- Anvand lang-en for allt som endast ska synas pÃ¥ engelska sidan
- Anvand lang-se for aÃ¶lt som endast ska synas pÃ¥ svenska sidan
========================================================================== */
body.en .lang-se,
body:not(.en) .lang-en {
    display: none;
}

body.en .lang-item .en-item,
body.en .lang-wrapper .en-item a {
    text-decoration: underline;
}

body:not(.en) .lang-item .se-item,
body:not(.en) .lang-wrapper .se-item a {
    text-decoration: underline;
}

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.p-4 .section-block,
.p-4:not(.section-wrapper) {
    padding: 4rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

.pt-4 .section-block,
.pt-4:not(.section-wrapper) {
    padding-top: 4rem;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

/* Margins */
.mt-5 {
    margin-top: 5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

/* Bredder */

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

.mw-900 .section-block-wrapper {
    max-width: 90rem;
}

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

.align-start {
    align-items: flex-start;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt  
========================================================================== */
body {
    font-family: 'SuisseIntl-Light', sans-serif; 
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    padding-bottom: .5em;
    font-size: 4rem;
    font-weight: 600; 
    line-height: 1.2;
    color: rgb(var(--primary-color)); 
    font-family: 'SuisseIntl-SemiBold', sans-serif;   
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'SuisseIntl-SemiBold', sans-serif; 
}

.ingress {
    padding-bottom: 1em;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(var(--primary-color)); 
    font-family: 'SuisseIntl-SemiBold', sans-serif;
} 

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
} 

/* List Row */
.list-row {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.list-row li {
    font-size: 1.5rem;
}

.list-row li:not(:last-child)::after {
    content: '|';
    display: inline-block;
    margin: 0 1rem;
}

/* Ovriga klasser */
.text-block {
    max-width: 75rem;
}

.text-block-center {
    max-width: 85rem;
    margin-left: auto;
    margin-right: auto;
}

.text-bold {
    font-weight: 700;
    font-family: 'SuisseIntl-SemiBold', sans-serif;
}

.text-center {
    text-align: center;
} 
.text-left {
    text-align: left;
} 

@media only screen and (max-width: 1200px) {
    .section-title {
        font-size: 3.8rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }

    .text-label {
        font-size: 1.2rem;
    }

    .ingress {
        font-size: 1.7rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    margin-top: 2rem;
}

.btn-wrapper.center {
    text-align: center
}

/* Knappar */
.btn,
.ContactSubmit,
.mfn-sub-submit {
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 600; 
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.mfn-sub-submit,
.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 2px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--primary-color));
    border: 2px solid rgb(var(--primary-color));
    background-color: transparent;
}

.btn-secondary-filled {
    color: rgb(var(--white-color));
    border: 2px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

.btn-secondary-filled:hover {
    color: rgb(var(--secondary-color));
    border: 2px solid rgb(var(--secondary-color));
    background-color: transparent;
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--primary-color));
}

.btn.arrow-link {
    font-size: 1.4rem;
}

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

/* Arrow-btn */
.arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgb(var(--black-color), .2);
}

.arrow-btn i {
    font-size: 2.5rem;
    color: rgb(var(--black-color), .5);
}

/* Pulse btn */
.pulse-btn {
    position: relative;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 2px solid rgb(var(--primary-color));
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0% {
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        opacity: 1;
    }

    100% {
        width: calc(100% + 4px + 50px);
        height: calc(100% + 4px + 50px);
        opacity: 0;
    }
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

.bg-white {
    background-color: rgb(var(--white-color));
}

.bg-primary {
    background-color: rgb(var(--primary-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-secondary {
    color: rgb(var(--secondary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */
/* Badge */
.badge-wrapper {
    position: relative;
}

.badge {
    z-index: 1;
    position: absolute;
    top: 1rem;
    left: 0;
    padding: .5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 .5rem .5rem 0;
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper,
.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    display: flex;
    align-items: center;
    min-height: 50rem;
    background-color: rgb(var(--black-color), .65)
}

.parallax-service {
    background-image: url('/assets/draft/images/about.jpg');
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

@media only screen and (max-width: 580px) {
    .parallax p {
        font-size: var(--base-size);
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.card-item,
.card-item a {
    text-decoration: none;
    transition: all .3s ease;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

/* Specifika bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}
.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

@media only screen and (max-width: 1250px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
    }
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-25 .card-item,
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-25 .card-item,
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .cards-wrapper.p-4,
    .cards-wrapper .p-4 {
        padding: 2rem;
    }
}

/* Card med knapp */
.cards-wrapper.w-arrow-link .card-body {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 10rem;
    transition: .3s ease; 
}

.cards-wrapper.w-arrow-link .card-body .content {
    flex-grow: 1;
}

.cards-wrapper.w-arrow-link .arrow-btn {
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.cards-wrapper.w-arrow-link .bg-primary .arrow-btn {
    border: 1px solid rgb(var(--white-color), .6);
}

.cards-wrapper.w-arrow-link .bg-primary .arrow-btn i {
    color: rgb(var(--white-color), .8)
}

/* Card 1-1 */
.card-1-1 .small-title {
    font-size: 2rem;
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
    align-items: center;
}

.card-2-4 a.card-item:hover {
    background: rgb(var(--gray-light-color));
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
}

.card-2-4 .card-header i {
    font-size: 3rem;
}

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 0 2rem;
}

.card-2-4 .text-small {
    font-size: 1.4rem;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-2-4 .card-body {
        padding: 1rem;
    }
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 30rem;
}

@media only screen and (max-width: 1400px) {
    .card-3-1 .image-wrapper {
        height: 40rem;
    }
}

/* Card 3-1 */
.card-3-1 li {
    font-size: 1.6rem;
}

/* Card 3-5 */
.card-3-5 .card-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 35rem;
    padding: 0;
}

.card-3-5 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
}

.card-3-5 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--primary-color), .4);
}

.card-3-5 .logo {
    z-index: 2;
    position: absolute;
    top: 35%;
    left: 50%;
    max-width: 70%;
    filter: brightness(0) invert(1);  
    transform: translate(-50%, -50%);
}

.card-3-5 .card-body {
    z-index: 1;
    position: relative;
}

.card-3-5 .card-item:hover .card-body {
    margin-bottom: 3rem;
}

.card-3-5 p,
.card-3-1 p {
    padding: 0;
    font-size: 1.6rem;
} 

/* Card 3-6 */ 
.card-3-6 .card-item {
    position: relative;
    padding: 22rem 0rem 0rem;
}

.card-3-6 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-6 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .6);
    transition: .3s ease-in-out;
}

.card-3-6 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .3);
}

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
}

.card-3-6 .small-title,
.card-3-6 p {
    color: rgb(var(--white-color));
}

.card-3-6 p:not(.date, .badge) {
    font-size: 1.6rem;
}

.card-3-6 .date {
    font-size: 1.4rem;
    font-weight: 600;
}

.card-3-6 .arrow-btn {
    display: none; 
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-image {
    width: 50%;
    border-radius: 2px;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

.split-wrapper .align-end {
    align-self: flex-end;
}

/* Ruta bakom text */
.split-wrapper.box {
    margin-bottom: 3rem;
}

.split-wrapper.box .split-content {
    position: relative;
    margin-top: 3rem;
}

.split-wrapper.box .text-block {
    z-index: 1;
    position: relative;
}

.split-wrapper.box .split-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 80%);
    height: calc(100% + 3rem);
}

.split-wrapper.box-white .split-content::after {
    background: rgb(var(--white-color));
}

.split-wrapper.box-gray-light .split-content::after {
    background: rgb(var(--gray-light-color));
}

.split-wrapper.box.reverse .split-content::after {
    left: -80%; 
} 

@media screen and (max-width: 1400px) {
    .split-content {
        padding: 5rem;
    }
}

@media screen and (max-width: 1000px) {
    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 0 0 3rem;
        background: transparent;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }

    /* Ruta bakom text */
    .split-wrapper.box .split-content {
        padding: 3rem 0;
        margin: 0;
    }

    .split-wrapper.box .split-content::after,
    .split-wrapper.box.reverse .split-content::after {
        left: -2.5rem;
        width: calc(100% + 5rem);
        height: calc(100% + 5rem);
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper.box .split-content::after,
    .split-wrapper.box.reverse .split-content::after {
        left: -2rem;
        width: calc(100% + 4rem);
        height: calc(100% + 4rem);
    }
}

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    appearance: none;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--secondary-color));
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    color: rgb(var(--white-color));
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(0);
}

/* InnehÃ¥ll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    width: 350px;
    max-width: calc(100% - 2rem);
    max-height: calc(100vh - 12rem);
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2px;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.popup-header .text-title {
    padding: 0;
    line-height: 1;
}

.icon-close-popup {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}

.icon-close-popup:hover {
    background-color: rgb(var(--gray-light-color));
}

.popup-content {
    padding: 1rem 2rem 3rem;
    max-height: 30rem;
    overflow: auto;
}

.popup-content .small-title {
    font-size: 1.9rem;
}

.popup-content p {
    font-size: 1.4rem;
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.IndexPage header:not(.scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

/* Logo */
.header-logo {
    margin-right: 3rem;
}

.IndexPage header:not(.scrolled, .active-menu) .header-logo {
    filter: invert();
}

/* Nav */
.TemplateMenu a {
    padding: 0 2rem;
    font-weight: 200;
    font-size: 1.6rem;
    color: rgb(var(--black-color));
}

.IndexPage header:not(.scrolled, .mobile-menu) .TemplateMenu > li > a:not(:hover) {
    color: rgb(var(--white-color));
}

.lang-item,
body:not(.EditMode) .TemplateMenu > li:nth-child(1) {
    display: none;
}

/* Dropdown */
header:not(.mobile-menu) .TemplateMenu > li > ul {
    border-left: 1px solid rgb(var(--gray-light-color));
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

/* sprak */
.lang-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin: 0 2rem 0 auto;
}

.lang-wrapper ul {
    display: flex;
    justify-content: flex-end;
    padding: .5rem 0;
    margin: 0;
    list-style: none;
}

.lang-wrapper a {
    padding: 0 1rem;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    text-decoration: none;
    transition: .2s ease;
    font-weight: 700;
}

.lang-wrapper li {
    color: rgb(var(--black-color));
}

.IndexPage .lang-wrapper li,
.IndexPage .lang-wrapper a {
    color: rgb(var(--white-color));
}

.lang-wrapper a.active,
.lang-wrapper a:hover {
    text-decoration: underline;
}

.scrolled .lang-wrapper li,
.scrolled .lang-wrapper a {
    color: rgb(var(--gray-dark-color));
}

/* Mobilmeny */
.mobile-menu .header-logo {
    flex: 1 1 0px;
}

.IndexPage .hamburger .hamburger-inner, 
.IndexPage .hamburger .hamburger-inner::after, 
.IndexPage .hamburger .hamburger-inner::before {
    background-color: rgb(var(--white-color));
}

.hamburger.is-clicked .hamburger-inner, 
.hamburger.is-clicked .hamburger-inner::after, 
.hamburger.is-clicked .hamburger-inner::before,
.scrolled .hamburger .hamburger-inner, 
.scrolled .hamburger .hamburger-inner::after, 
.scrolled .hamburger .hamburger-inner::before {
    background-color: rgb(var(--black-color));
}

@media only screen and (max-width: 1100px) {
    .lang-item {
        display: flex;
        align-items: center;
        max-width: 20rem;
        padding-top: 4rem;
    }

    .lang-item a {
        color: rgb(var(--secondary-color));
        font-size: 1.4rem !important;
        font-weight: 700;
    }

    .lang-item .se-item {
        padding-right: 1rem !important;
    }

    .lang-item .en-item {
        padding-left: 1rem !important;
    }

    .lang-wrapper {
        display: none;
    }
}


@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

.top-section .section-block {
    width: 100%;
}

.top-section .text-block-center {
    max-width: 100rem;
}

.top-section .section-title {
    padding: 0; 
    font-size: 5rem;
    font-weight: 600;
}

.top-section p:not(.text-label) {
    max-width: 65rem;
    margin: 0 auto;
    font-size: 1.7rem;
    color: rgb(var(--white-color));
}

.top-section .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1150px) {
    .top-section .section-title {
        font-size: 3.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-title {
        font-size: 2.8rem;
    }
}

/* Mittensektion
========================================================================== */
.highlights-wrapper .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.highlights-wrapper .card-item:not(:last-of-type) {
    border-right: 1px solid rgb(var(--gray-color), .3);
}

.highlights-wrapper .section-title {
    font-size: 4rem;
    padding-bottom: 1rem;
}

.highlights-wrapper p {
    font-size: 1.8rem;
}

@media only screen and (max-width: 1200px) {
    .highlights-wrapper .card-item {
        width: calc((100% / 2) - 2rem);
    }
    
    .highlights-wrapper .card-item:not(:last-of-type) {
        border-right: none;
    }

    .highlights-wrapper .card-item:nth-child(1),
    .highlights-wrapper .card-item:nth-child(3) {
        border-right: 1px solid rgb(var(--gray-color), .3);
    }
}

@media only screen and (max-width: 680px) {
    .highlights-wrapper .card-item {
        width: 100%;
        margin: 1rem 0;
    }

    .highlights-wrapper .card-item:nth-child(1),
    .highlights-wrapper .card-item:nth-child(3) {
        border-right: none;
    }
    
    .highlights-wrapper .card-item:not(:last-of-type) {
        border-bottom: 1px solid rgb(var(--gray-color), .3);
    }
}

@media only screen and (max-width: 580px) {
    .highlights-wrapper .section-title {
        font-size: 3rem;
    }

    .highlights-wrapper p {
        font-size: 1.7rem;
    }
}

/* Mittensektion
========================================================================== */
.logo img {
    width: 9rem;
    margin-bottom: 2rem;
}

/* Nyheter / Pressreleaser
========================================================================== */
.section-pressreleases-start .mfn-content {
    display: flex;
    flex-wrap: wrap;
}

.section-pressreleases-start .mfn-row {
    position: relative;
    width: calc(100% / 2 - 2rem);
    padding: 22rem 2rem 2rem;
    margin: 1rem;
}

.section-pressreleases-start .mfn-row a {
    text-decoration: none;
}

/* Bilden */
.section-pressreleases-start .mfn-primary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-pressreleases-start .mfn-primary-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-pressreleases-start .mfn-primary-image a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .6);
    transition: .3s ease-in-out;
}

.section-pressreleases-start .mfn-primary-image img {
    position: static;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Text i korten */
.section-pressreleases-start .mfn-date {
    z-index: 1;
    position: relative;
    padding-bottom: .5em;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: normal;
    font-family: inherit;
    line-height: 1.8;
    color: rgb(var(--white-color));
}

.section-pressreleases-start .mfn-title-wrapper a {
    z-index: 1;
    position: relative;
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgb(var(--white-color));
}

.section-pressreleases-start .mfn-preamble {
    z-index: 1;
    position: relative;
    padding-bottom: .5em;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: normal;
    font-family: inherit;
    line-height: 1.8;
    color: rgb(var(--white-color));
}

/* Ta bort pagination */
.mfn-info,
.mfn-pagination {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .section-pressreleases-start .mfn-row {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Prenumerera
========================================================================== */a
.mfn-list {
    list-style: none;
    padding-left: 0;
}

.mfn-list li {
    margin-right: 2rem;
    font-size: 15px;
    font-family: inherit;
}

.mfn-field-row input {
    padding: 1rem;
    max-width: 50rem;
    width: 100%;
    /* border-radius: 3rem; */
    border: 1px solid rgb(var(--gray-color));
    padding: 0.8rem 1.5rem;
    margin: 0;
    font-size: var(--base-size);
    font-weight: 400;
    font-style: normal;
    font-family: inherit;
    line-height: 1.8;
}

.mfn-policy-text {
    display: block;
    margin: 2rem 0 1rem;
}

.mfn-policy-text,
.mfn-policy-approve {
    font-size: 15px;
    font-family: inherit;
}

.mfn-block.mfn-submit {
    margin-top: 3rem;
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 45rem;
    text-align: center;
    background-color: rgb(var(--black-color), .4);
}

.hero .section-block-wrapper {
    width: 100%;
}

.hero .section-title { 
    font-size: 6rem;
    color: rgb(var(--white-color));
}

.hero .bg-image-wrapper img {
    object-position: 50% 100%;
}

.hero .bg-image-wrapper img.op-50-50 {
    object-position: 50% 50%;
}

.hero .bg-image-wrapper img.op-50-25 {
    object-position: 50% 25%;
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 5rem;
    }
}

/* Hero - Med bg-primary
========================================================================== */
.hero .section-block {
    min-height: 35rem;
}

.hero.bg-primary .section-title {
    font-size: 5rem;
} 

@media only screen and (max-width: 1000px) {
    .hero.bg-primary .section-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */

.section-gray-light .section-block-wrapper {
    padding: 10rem 5rem 8rem; 
    background: rgb(var(--gray-light-color));
}

.section-steps .split-content {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .section-steps .split-image {
    position: sticky;
    top: calc(var(--menu-height-scrolled) * 2);
    align-self: flex-start;
  }

@media only screen and (max-width: 580px) {
    .section-gray-light .section-block-wrapper {
        padding: 5rem 2rem;
    }
}

/*.section-history .of-wrapper img {
    object-fit: none;
} */

@media only screen and (max-width: 580px) {
    .section-history .of-wrapper img {
        object-fit: cover;
    }
}

/* ==========================================================================
Undersida: Nyheter
========================================================================== */
.section-pressreleases .mfn-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 85rem;
    margin: 0 auto;
}

.section-pressreleases .mfn-row { 
    position: relative;
    width: 100%;
    margin: 1rem 0;
    padding: 2rem;
    padding-right: 4rem;
    background: rgb(var(--gray-light-color));
    transition: .3s ease;
}

.section-pressreleases .mfn-row:hover {
    padding-right: 2rem;
    margin-left: 2rem;
} 

.section-pressreleases .mfn-row a {
    text-decoration: none;
}

/* Bilden */
.section-pressreleases .mfn-primary-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-pressreleases .mfn-image {
    display: none;
} 

/* Text i korten */
.section-pressreleases .mfn-date {
    padding-bottom: .5em;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: normal;
    font-family: inherit;
    line-height: 1.8;
    color: rgb(var(--primary-color));
}

.section-pressreleases .mfn-title-wrapper a {
    padding-bottom: .3em;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgb(var(--black-color));
    font-family: 'SuisseIntl-SemiBold', sans-serif; 
}

.section-pressreleases .mfn-preamble {
    padding-bottom: .5em;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: normal;
    font-family: inherit;
    line-height: 1.8;
    color: rgb(var(--gray-dark-color));
}

/* ==========================================================================
Undersida: Nyheter > Pressrelease
========================================================================== */
.section-pressrelease,
.section-pressrelease .mfn-date {
    font-size: var(--base-size);
    font-weight: 400;
    font-style: normal;
    font-family: inherit;
    line-height: 1.8;
    color: rgb(var(--gray-dark-color));
}

.section-pressrelease .mfn-loader-single-container {
    max-width: 85rem;
    margin-left: auto;
    margin-right: auto;
}

.section-pressrelease .mfn-content {
    padding-top: 2rem;
}

/* Rubrik */
.section-pressrelease .mfn-title {
    padding-bottom: .5em;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    color: rgb(var(--primary-color));
}

/* Datum */
.section-pressrelease .mfn-date {
    font-weight: 700;
}

/* Ingress */
.section-pressrelease .mfn-preamble strong {
    padding-bottom: 1em;
    font-size: calc(var(--base-size) * 1.1);
    font-weight: 600;
    color: rgb(var(--primary-color));
}

/* Bild */
.section-pressrelease .mfn-primary-image {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

/* Attachments */
.section-pressrelease .mfn-footer {
    padding: 2rem 2rem 0;
    margin-top: 2rem;
    background: rgb(var(--gray-light-color));
}

.section-pressrelease .mfn-attachments-container {
    padding: 2rem;
    background: rgb(var(--gray-light-color));
}

.section-pressrelease .mfn-attachment-text {
    display: block;
    padding-top: 5px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 1000px) {
    /* Rubrik */
    .section-pressrelease .mfn-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
Undersida: Karriar > Ansokan
========================================================================== */
.section-application .col-0 {
    background-color: rgb(var(--gray-light-color));
    padding: 3rem;
}

.section-application .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-application .full-width {
    width: 100%;
}

.section-application .ContactForm > div:not(.submit-button-container, .full-width) {
    width: 49%; 
}

.ContactSentMessage {
    background-color: rgb(var(--gray-light-color));
    padding: 4rem 4rem 4rem 7rem;
    font-size: 1.8rem;
}

.ContactSentMessage p {
    padding: 0;
}

.submit-button-container {
    width: 100%;
}

@media only screen and (max-width: 680px) {
    .section-application .ContactForm > div:not(.submit-button-container, .full-width) {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}

.section-contact .col-2 {
    max-width: 50rem;
    padding: 3rem;
    background-color: rgb(var(--gray-light-color));
}

@media only screen and (max-width: 980px) {
    .section-contact .col-2 {
        max-width: 100%;
        margin-top: 3rem;
    }
}

@media only screen and (max-width: 480px) {
    .section-contact .col-2 {
        padding: 2rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background: rgb(var(--primary-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 0;
}

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

.footer-menu.logo img {
    width: 100%;
    max-width: 22rem;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    font-size: 1.6rem;
    color: rgb(var(--white-color));
    text-decoration: none;
    transition: .2s ease;
} 

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--gray-color));
}

.footer li.icon {
    display: flex;
}

.footer-top em {
    width: 16px;
    margin-top: 6px;
    margin-right: 1rem;
    vertical-align: top;
    text-align: center;
    color: rgb(var(--gray-light-color));
}

/* Policys */
.footer-policys ul {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-policys a {
    margin: 0 1rem;
    font-size: 1.4rem;
    color: rgb(var(--gray-light-color));
    text-decoration: none;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgb(var(--gray-light-color), .5);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgb(var(--gray-light-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
    filter: invert();
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 50%;
    }
}

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-menu {
        width: 100%;
    }

    .footer-submenu {
        margin: 0;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    /* Footer top */
    .footer-top {
        padding: 5rem 0 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}