/* Affarsminglet Facelift */

/* Fonts: Pacifico, Libre Franklin & poppins */
@import url('https://fonts.googleapis.com/css?family=Pacifico|Libre+Franklin:500,800|Poppins:300,400,500,600,700&display=swap');

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

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

    /* 	Colors */
    --primary-color: 83, 22, 38;
    --primary-dark-color: 56, 11, 0;
    --primary-light-color: 134, 55, 76;
    --secondary-color: 255, 130, 57;
    

    --black-color: 0, 0, 0;
    --gray-dark-color: 68, 68, 68;
    --gray-light-color: 236, 236, 236;
    --gray-lighter-color: 248, 248, 248;
    --white-color: 255, 255, 255;
    --purple-color: 85, 0, 85;
    --accent-red-color: 209, 109, 85;

    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .07);

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

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

/* Layout
========================================================================== */
.section-block {
    padding: 12rem 4rem;
}

/* EditMode */
.EditMode .display-none {
    display: block;
}

/* Specifika paddings */
.p-0 .section-block,
.p-0:not(.section-wrapper) {
    padding: 0;
}

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

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

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

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

.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-5 .section-block,
.pt-5:not(.section-wrapper) {
    padding-top: 5rem;
}

.pb-5px {
    padding-bottom: 5px;
}

.pt-3 {
    padding-top: 3rem;
}

.pb-1 {
    padding-bottom: 1.5rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

/* Specifika margins */
.mt-0 {
    margin-top: 0 !important;
}

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

.m-1 {
    margin: 1rem;
}

/* Specifika bredder */
.mw-none .section-block-wrapper {
    max-width: unset;
}

.mw-200 {
    min-width: 20rem;
}

.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

.mw-1300 .section-block-wrapper {
    max-width: 130rem;
}

.mw-80 {
    max-width: 70rem;
    margin: 0 auto;
}

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

.w-14 {
    width: 12rem;
}

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

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

    /* Specifika paddings */
    .pl-0 .section-block {
        padding-left: 2rem;
    }
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

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

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
}

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

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

/* Rubriker */
.section-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 4rem;
    line-height: 1.4em;
    padding-bottom: 2rem;
    font-weight: 600;
    color: rgb(var(--gray-dark-color));
}

.small-title {
    font-family: 'Libre Franklin', sans-serif;
    text-transform: none;
    font-weight: 600;
    font-size: 2.7rem;
    padding-bottom: .5rem;
    line-height: 1.5;
    padding-bottom: 2rem;
}

.text-label {
    font-size: calc(var(--base-size)* 1.1);
    font-weight: 600;
    padding-bottom: 1.5rem;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 300;
    font-family: inherit;
    color: rgb(var(--darkgray-color));
    line-height: 1.8;
}

a {
    text-decoration: none;
    font-size: 1.6rem;
    color: rgb(var(--secondary-color));
    font-weight: 300;
}

/* Ovriga klasser */
.f300 {
    font-weight: 300;
}

.f-s-7{
    font-size: 7rem;
}
.text-block-center {
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block-center.mw-60 {
    max-width: 60rem;
    margin-top: 3rem;
}

.link:hover {
    text-decoration: underline;
}

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

.text-italic {
    font-style: italic;
    font-weight: 400;
}

.text-bold {
    font-weight: 800;
}

.small-text {
    font-size: 1.6rem;
    line-height: 2em;
}

.bigger-text {
    font-size: 2.4rem;
    font-weight: 400;
}

.opacity-0 {
    opacity: 0;
}

.justify-center {
    justify-content: center;
}

/* Listor */
.styled-list {
    list-style: none;
}

ul.styled-list {
    padding-inline-start: 2rem;
}

.styled-list li {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 2rem;
}

.styled-list li::before {
    content: '\2713\0020';
    position: absolute;
    top: 15%;
    left: -2.5rem;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: 2.6rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

/* Prick lista */
.bullet-list {
    list-style: none;
}

.bullet-list li {
    position: relative;
    padding-left: 2.5rem;
    margin: 1rem 0;
}

.bullet-list li::before {
    content: '\f111';
    position: absolute;
    top: 50%;
    left: -2.5rem;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

/* Custom list, med pil */
.custom-list {
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 2.5rem;
    margin: 1rem 0;
}

.custom-list li::before {
    content: "\f105";
    display: inline-block;
    color: #FF8038;
    font-weight: bold;
    font-family: 'Font Awesome 5 Pro';
    width: 1em;
    margin-left: -1em;
}

ol li::marker {
    color: #FF8038;
    font-weight: bold;
    margin-right: 1.5rem;
}

@media only screen and (max-width: 980px) {
    .section-title.text-center:not(.IndexPage .section-title.text-center) {
        text-align: left;
    }
}

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

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

/* Lista pills */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.list-pills li {
    display: flex;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin: .5rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    color: rgb(var(--black-color));
}
 /* Listpills på sidan NBC Metting Point sidan */
.section-nbc .list-pills li::before {
    background-color: rgb(var(--secondary-color));
}

.section-nbc .list-pills li {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        width: 100%;
        padding: 1.5rem;
        font-size: 1.4rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-wrapper.center {
    justify-content: center;
}

.btn-wrapper.multiple .btn:first-child {
    margin-right: 1rem;
}

/* Knappar */
.btn,
.ContactSubmit {
    max-width: 50rem;
    padding: 1.5rem 2rem;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.6rem;
    border-radius: 2rem;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

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

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

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

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

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 0.5rem;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.circle-icon:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

/* Lank med ikon */
.icon-links {
    padding: .5rem 1rem;
    font-size: var(--base-size);
    color: rgb(var(--white-color));
    line-height: 1;
    border-radius: 2rem;
    text-decoration: none;
    transition: all .3s ease;
}

.icon-links i {
    margin-right: .5rem;
}

.icon-links:hover {
    color: rgb(var(--white-color));
    text-decoration: none;
    background-color: rgb(var(--secondary-color));
}

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

.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;
}

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

    .btn-wrapper.multiple .btn:first-child {
        margin-right: 0rem;
        margin-bottom: 1rem;
    }
}

/* Farger
========================================================================== */
/* Bakgrundsfarger */

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

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

.bg-primary-20 {
    background-color: rgba(var(--primary-color), 0.2);
}

.bg-lightgray {
    background-color: rgb(var(--gray-light-color));
}

.bg-lightergray {
    background-color: rgb(var(--gray-lighter-color));
}

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

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

.gradient-white-gray .section-block {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--gray-lighter-color)) 50%);
}

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

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

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

.text-accent {
    color: rgb(var(--primary-light-color));
}

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

/* Grafiska element
========================================================================== */
/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Object position */
.of-wrapper .op-50-60 {
    object-position: 50% 60%;
}

.br-2 {
    border-radius: 2rem;
}

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

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

.split-image {
    width: 50%;
}

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

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

/* Speciella bredder */
.split-wrapper .w-70 {
    width: 70%;
}

.split-wrapper .w-30 {
    width: 30%;
}

.split-wrapper .mh-50 {
    height: 50rem;
}

@media screen and (max-width: 1000px) {

    .split-content,
    .split-wrapper .w-70,
    .split-wrapper .w-30 {
        width: 100%;
    }

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

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

    .split-content.split-bg {
        padding: 5rem 3rem;
    }

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

@media screen and (max-width: 580px) {
    .split-content {
        padding: 0 0 3rem 0;
    }

    .split-content.split-bg {
        padding: 3rem 2rem;
    }
}

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

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

/* Specifika bredder */
.cards-wrapper.w-20 .card-item {
    width: calc((100% / 5) - 3rem);
    margin: 1.5rem;
}

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

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

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

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

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

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

.cards-1 .card-item {
    display: flex;
    box-shadow: var(--box-shadow);
    border: 1px solid rgb(var(--gray-light-color));
    flex-direction: column;
    justify-content: space-between;
}

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

.cards-1 .card-header {
    padding: 5rem 3rem 4rem;
    align-self: flex-start;
}

.cards-1 .card-footer {
    padding: 0;
}

.cards-1 .card-footer p {
    /* width: 60%; */
    padding: 0;
    font-size: 1.6rem;
    font-style: italic;
}

/* Card 1-1 */
.card-1-1 .border-top-black {
    padding-top: 2rem;
    margin-top: 3rem;
}

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

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    border-radius: .8rem;
    box-shadow: var(--box-shadow);
    background: #FFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cards-7 .image-wrapper {
    padding: 4rem;
    max-height: 25rem;
    margin-bottom: 2rem;
}

.cards-7 .text-wrapper {
    padding: 2rem 3rem;
}

.cards-7 .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.cards-7 p {
    font-size: 1.6rem;
}

.cards-7 i {
    color: rgb(var(--secondary-color));
    margin-right: 1rem;
    font-size: 2rem;
}

.cards-7 .btn {
    display: flex;
    justify-content: center;
    border-radius: 0;
    position: relative;
    bottom: 0;
    max-width: 100%;
    min-width: 100%;
    margin-top: 2rem;
}

@media only screen and (max-width: 750px) {
    .cards-7 .image-wrapper {
        max-height: none;
    }
}

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

.js-show-more-text {
    cursor: pointer;
}

.cards-4 .card-item {
    padding: 5rem;
    background-color: rgb(var(--white-color));
    text-decoration: none;
    transition: 0.3s ease-in-out;
    border-radius: 1rem;
    -moz-transform: scale(0.94);
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.cards-4 .card-item.mt-5 {
    margin-top: 5rem;
    margin-bottom: -5rem;
}

.cards-4 .card-item.mt-10 {
    margin-top: 10rem;
    margin-bottom: -10rem;
}

.cards-4 .card-item:hover {
    -moz-transform: scale(0.98);
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

.cards-4 .icon-wrapper {
    display: flex;
    justify-content: center;
}

.cards-4 img {
    max-height: 14rem;
}

.cards-4 .icon-wrapper i {
    margin-bottom: 0rem;
    margin: 0;
    font-size: 10rem;
    color: rgb(var(--primary-color));
}

.cards-4 .text-wrapper {
    width: 100%;
    margin-top: 2rem;
    padding-top: 3rem;
}

@media only screen and (max-width: 1000px) {
    .cards-4 .card-item.mt-5 {
        margin-top: 0rem;
        margin-bottom: 0rem;
    }

    .cards-4 .card-item.mt-10 {
        margin-top: 0rem;
        margin-bottom: 0rem;
    }
}

@media only screen and (max-width: 600px) {
    .cards-4.w-33 .card-item {
        padding: 2rem;
    }
}

/* Cards 14 */
.cards-14 {
    max-width: 50rem;
    margin: 0 auto;
}

.cards-14 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 2rem;
    transition: all .3s ease;
}

.cards-14 a.card-item:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}

.cards-14 i {
    width: 5rem;
    font-size: 3rem;
}

.cards-14 p {
    padding-bottom: 0;
    font-size: 1.4rem;
}

.cards-14 .contact-info {
    font-size: 1.6rem;
    font-weight: 400;
}

/* Modal som oppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
}

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    padding: 4rem;
    border-radius: 3px;
    background: #FFF;
    transform: translate(-50%, -50%);
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
}

@media only screen and (max-width: 1000px) {
    body:not(.EditMode) .section-auto-modal .section-block {
        position: fixed;
        top: 50%;
        left: 50%;
        height: 90vh;
        width: 100%;
        border-radius: 3px 3px 0 0;
        overflow-y: auto;
        overflow-x: hidden;
        background: #FFF;
        transform: translate(-50%, -50%)
    }

    body:not(.EditMode) .section-auto-modal .section-block-wrapper {
        max-width: 50rem;
    }

}

@media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
        padding: 3rem 2rem;
    }
}

/* CTA Appar, Google Play och Apple Store */
.cta-appar {
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    left: 50%;
    padding: 0.5rem;
    transform: translateX(-50%);
    border-radius: 1rem;
    background: rgb(var(--secondary-color));
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

.cta-appar p {
    font-size: 1.5rem;
    text-align: center;
}

.cta-appar .text-bold {
    font-weight: 600;
}

.cta-appar .uppercase {
    font-size: 1.3rem;
    font-weight: 300;
}

.cta-appar .cta-download-app {
    display: flex;
    margin: auto;
    margin-top: 0;
    justify-content: center;
}

.cta-appar .cta-download-app img {
    max-height: 3rem;
    padding-right: .7rem;
    padding-left: .7rem;
}

.cta-appar img {
    width: 9rem;
}

/* Header / Navigation
========================================================================== */
header {
    background: rgb(var(--primary-dark-color));
}

header .container {
    justify-content: space-between;
}

.EditMode header .container {
    max-width: none;
}

/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/25/var-kunskap/"] {
    pointer-events: none;
}

/* Top header */
.top-header {
    width: 100%;
    max-width: var(--section-width);
    height: 4rem;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--white-color));
    overflow: hidden;
    transition: .3s ease;
}

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

.top-header a {
    padding: 0 2rem 0 1rem;
    text-decoration: none;
    transition: .2s ease;
    font-weight: 500;
    font-size: 1.2rem;
    color: rgb(var(--white-color));
}

.top-header a:hover {
    color: rgb(var(--secondary-color));
}

.top-header i {
    font-size: 1em;
    margin: 0 5px 0 0;
}

.flag-wrapper img {
    max-width: 3rem;
    padding-top: 0.8rem;
}

header:not(.mobile-menu) .container {
    height: var(--menu-height);
}

/* Header logo */
header:not(.mobile-menu) .header-logo {
    align-self: flex-end;
}

header:not(.mobile-menu) .header-logo img {
    padding: 0 1rem 0 0;
    max-height: 10rem;
    background-color: rgb(var(--primary-dark-color));
    margin-bottom: 1rem;
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.3rem;
    color: rgb(var(--white-color));
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--secondary-color));
}

.TemplateMenu li.active>a,
.TemplateMenu ul a:hover {
    color: rgb(var(--secondary-color));
}

/* Dropdown */
.TemplateMenu ul {
    background: rgb(var(--primary-color));
}

/* Ta bort klick / Dolj */
body:not(.EditMode) .TemplateMenu a[href="/17/3/om-oss/"],
body:not(.EditMode) .TemplateMenu a[href="/17/7/kontakt/"] {
    display: none;
}

body:not(.EditMode) .TemplateMenu a[href="/17/3/om-oss/"],
body:not(.EditMode) .TemplateMenu a[href="/17/7/kontakt/"] {
    pointer-events: none;
}

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

.header-cta-wrapper li {
    margin: 0 .5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

.header-cta-wrapper a {
    display: flex;
    align-items: center;
}

.header-cta-wrapper a:hover i,
.header-cta-wrapper a:hover p {
    color: rgb(var(--accent-orange-color));
}

.header-cta-wrapper i {
    font-size: 1.9rem;
}

.header-cta-wrapper p {
    font-weight: 600;
    font-size: 1.4rem;
    padding: 0;
}

/* Mobilmeny */
.mobile-menu .TemplateMenu {
    flex-wrap: wrap;
    background: rgb(var(--primary-color));
}

.mobile-menu .mainmenu {
    background: rgb(var(--primary-color));
}

body:not(.EditMode) .mobile-menu a[href="/17/3/om-oss/"],
body:not(.EditMode) .mobile-menu a[href="/17/7/kontakt/"] {
    display: block;
}

.mobile-menu .top-header {
    display: none;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
    transition-timing-function: ease;
    transition-duration: .2s;
    transition-property: opacity, top, transform;
    transition-delay: .2s, .2s, 0s;
    background: white;
}

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

@media only screen and (max-width: 433px) {
    .header-cta-wrapper p {
        line-height: 1.1;
        font-size: 1.2rem;
    }
}

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

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

.top-section .section-block {
    padding: 12rem 8rem;
}

.top-section-text-box {
    max-width: 60rem;
}

.top-section h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
    font-size: 3.8rem;
    font-weight: 300;
    max-width: 90rem;
    padding-bottom: .4rem;
    color: rgb(var(--white-color));
}

.top-section p.ingress {
    max-width: 60rem;
    font-size: 2.2rem;
    font-weight: 500;
    color: rgb(var(--white-color));
}

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

    .top-section .section-title {
        margin-top: -1rem;
        font-size: 5rem;
    }

    .top-section p.ingress {
        font-size: 2rem;
    }

    .top-section .section-block {
        padding: 11rem 4rem;
    }
}

@media only screen and (max-width: 640px) {
    .top-section-text-box {
        margin-bottom: 12rem;
    }
}

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

@media only screen and (max-width: 480px) {
    .top-section {
        align-items: center;
    }

    .top-section h1 {
        font-size: 3rem;
    }

    .top-section .section-title {
        margin-top: 0;
        font-size: 4rem;
    }

    .top-section p.ingress {
        max-width: 60rem;
        font-size: 1.7rem;

    }
}

/* CTA-bar
========================================================================== */
.cta-bar-wrapper {
    z-index: 1;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    display: flex;
    width: 74rem;
    max-width: calc(100% - 2rem);
    padding: 2rem;
    margin: 0 auto;
    border-radius: 1rem;
    background: rgb(var(--primary-color), .85);
    border: 1px solid rgb(var(--white-color), .2);
    transform: translateX(-50%);
}

.EditMode .cta-bar-wrapper {
    position: relative;
}

.cta-bar-wrapper p {
    padding: 0;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.3;
    color: rgb(var(--white-color));
    font-family: futura-pt-bold, sans-serif;
    text-transform: uppercase;
}

.cta-bar-wrapper p.smaller-text {
    font-size: 1.3rem;
}

.cta-bar-wrapper .btn-wrapper {
    margin-top: 0;
}

.cta-bar-wrapper .btn-wrapper .btn {
    margin-top: 1rem;
}

/* Forsta och Tredje */
.cta-bar-wrapper .item:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 2 - 2rem);
}

.cta-bar-wrapper .item:nth-child(1) {
    padding-right: 2rem;
}

.cta-bar-wrapper .item:nth-child(2) {
    padding-left: 2rem;
}

.cta-bar-wrapper .item:nth-child(1) .image-wrapper {
    width: 10rem;
    margin-right: 1rem;
}

.cta-bar-wrapper .item:nth-child(2) .icon-wrapper {
    width: 9rem;
    margin-left: 1rem;
    font-size: 5rem;
}

/*.cta-bar-wrapper .item:nth-child(3) p {
    text-align: right;
}*/

/* Andra */
.cta-bar-wrapper .item:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 0 2rem;
    text-align: center;
    border-left: 1px solid rgb(var(--white-color));
    /*border-right: 1px solid rgb(var(--white-color));*/
}

.apps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.apps .image-wrapper {
    height: 4rem;
    margin: 0 5px 5px;
}

@media only screen and (max-width: 850px) {
    .cta-bar-wrapper {
        padding: 1rem;
    }

    .cta-bar-wrapper p {
        font-size: 1.4rem;
    }

    /* Forsta */
    .cta-bar-wrapper .item:nth-child(1) {
        padding-right: 1rem;
    }

    /* Andra */
    .cta-bar-wrapper .item:nth-child(2) {
        padding: 0 1rem;
    }

    /* Tredje */
    .cta-bar-wrapper .item:nth-child(3) .icon-wrapper {
        font-size: 4rem;
    }

    .cta-bar-wrapper .item:nth-child(3) {
        padding-left: 1rem;
    }
}

@media only screen and (max-width: 580px) {
    .cta-bar-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    /* QR + kontakt bredvid varandra */
    .cta-bar-wrapper .item:nth-child(1),
    .cta-bar-wrapper .item:nth-child(3) {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
        order: 1;
    }

    .cta-bar-wrapper .item:nth-child(1) {
        padding-right: 1rem;
    }

    .cta-bar-wrapper .item:nth-child(3) {
        border-left: 1px solid rgb(var(--white-color));
        padding-left: 1rem;
    }

    .cta-bar-wrapper .item:nth-child(1) .image-wrapper {
        width: 6rem;
        margin: 0 1rem 0 0;
    }

    .cta-bar-wrapper .item:nth-child(3) .icon-wrapper {
        font-size: 4rem;
        margin: 0 1rem 0 0;
    }

    /* Andra langst ner med full width */
    .cta-bar-wrapper .item:nth-child(2) {
        order: 2;
        width: 100%;
        padding: 1rem 0 0;
        border-top: 1px solid rgb(var(--white-color));
        border-left: none;
        border-right: none;
        text-align: center;
    }

    .cta-bar-wrapper p {
        font-size: 1.4rem;
    }

    .cta-bar-wrapper .btn {
        padding: 1rem 1.2rem;
    }
}

/* Inledning
========================================================================== */
.section-inledning .col-0 {
    background-color: rgb(var(--gray-light-color));
    padding: 8rem;
}

.section-inledning-white .col-0 {
    background-color: rgb(var(--gray-lighter-color));
    padding: 8rem;
}

.section-inledning .col-1 {
    background-color: rgb(var(--gray-lighter-color));
    padding: 8rem;
}

.section-inledning-white .col-1 {
    background-color: rgb(var(--white-color));
    padding: 8rem;
}

@media only screen and (max-width: 980px) {

    .section-inledning .col-0,
    .section-inledning .col-1 {
        padding: 11rem 4rem;
    }
}

@media only screen and (max-width: 580px) {

    .section-inledning .col-0,
    .section-inledning .col-1 {
        padding: 5rem 2rem;
    }
}

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

/* hero
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 50vh;
    justify-content: center;
    background-color: rgb(var(--secondary-color), 0.6);
}

.hero h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 6rem;
    color: rgb(var(--white-color));
    font-style: italic;
    line-height: 1.3;
    text-shadow: 0 2px 3px rgb(var(--black-color), 0.2);
}

.hero h1.text-normal {
    font-style: normal;
}


@media only screen and (max-width: 580px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero {
        min-height: 30vh;
    }

}

/* ==========================================================================
Undersida: Nätverksapp
========================================================================== */
@media only screen and (max-width: 580px) {
    .section-circle .section-block {
        padding-top: 7rem;
    }

    .section-circle h2 {
        padding-top: 2rem;
        padding-bottom: 0;
    }
}

/* ==========================================================================
Undersida: Nätverkscertifierad mötesplats
========================================================================== */

.natverk-statistik-split .section-title,
.natverk-statistik-split li {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 500px) {

    .natverk-statistik-split .section-title,
    .natverk-statistik-split li {
        color: rgb(var(--black-color));
    }
}

/* ==========================================================================
Undersida: Vara moten
========================================================================== */
/* las mer flik */
#read-more-datamingel {
    cursor: pointer;
}

#datamingel-read-more {
    display: none;
}

/* accordion
========================================================================== */
.accordion-question {
    background-color: rgb(var(--primary-light-color));
    position: relative;
    padding: 1rem 2rem 1rem;
    border-bottom: 1px solid rgb(var(--white-color));
    cursor: pointer;
}

.accordion-question::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
    color: rgb(var(--white-color));
}

.accordion-item.active .accordion-question::after {
    transform: rotate(180deg);
}

.accordion-question p {
    padding-right: 2.5rem;
}

.accordion-answer {
    padding: 2rem;
}

/* ==========================================================================
Undersida bli medlem
========================================================================== */
@media only screen and (max-width: 980px) {
    .member .small-title {
        padding-top: 2rem;
    }
}

@media only screen and (max-width: 980px) {

    .inledning .section-title,
    .inledning .small-title {
        text-align: left;
    }
}

/* formular
========================================================================== */
.section-contact p {
    border-radius: 0.5rem;
    font-size: 1.6rem;
    color: rgb(var(--white-color));
    font-weight: 300;
}

.section-kontakt .section-block-wrapper {
    display: flex;
}

.section-kontakt .col-2 {
    align-self: center;
}

.ContactForm input[type="text"] {
    border-radius: 0.5rem;
    box-sizing: border-box;
    padding: 0.5rem;
}

.ContactForm p {
    color: rgb(var(--white-color))
}

.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 95rem;
    margin: 0 auto;
    background-color: rgb(var(--secondary-color));
    padding: 3rem;
    border-radius: 2rem;
    margin: 2rem 0;
}

.ContactForm div {
    width: 100%;
    border-radius: 1rem;
}

.ContactForm .ContactFormMessage {
    width: 100%;
}

.ContactForm textarea {
    height: 15rem;
    border-radius: 0.5rem;
}

.ContactForm input {
    font-size: 1.4rem;
}

.ContactForm .ContactSubmit {
    margin: 0 auto;
}

.LayoutPage .map {
    font-size: 0;
}

.section-contact .btn {
    margin-top: 2rem;
}

.section-kontakt .field-2 {
    display: none;
}

.ContactForm select {
    width: 100%;
    height: 4rem;
    border: 4px solid rgb(var(--white-color));
    border-radius: 0.5rem;
}

.ContactForm select:focus {
    outline: none;
}

@media only screen and (max-width: 580px) {
    .ContactForm div {
        width: 100%;
    }

    .ContactForm {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida  galleri
========================================================================== */

.section-galleri .image-wrapper {
    height: 30rem;
}


.section-galleri .image-wrapper:hover {
    background-color: rgb(var(--black-color), 0.7);
}

/* =========================================================================
Undersida: Om my-clubroom
========================================================================== */
.hero-image-wrap {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.image-title-wrap.bigger img {
    width: 45rem;
}

.image-title-wrap img {
    width: 25rem;
}

.hero-center {
    justify-content: center;
    align-items: center;
}

.hero-center .section-block {
    padding: 0 5rem;
}

@media screen and (max-width: 700px) {
    .image-title-wrap img {
        max-width: 20rem;
    }

}

/* =========================================================================
Undersida: testa my-clubroom
========================================================================== */
.check-in-wrapper {
    margin: 0 auto;
    max-width: 80rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.check-in-wrapper p {
    max-width: 40rem;
    margin: 0 auto;
}

.btn-image {
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
    transition: 0.2s ease-in-out;
    height: 10rem;
}

.btn-image:hover {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

.logo-wrapper {
    display: flex;
    margin-top: 3rem;
}

.cards-4 .fas.fa-mobile-alt {
    color: #1975bc;
}

.my-clubroom .small-title {
    font-size: 2.4rem;
}


/* Tarta diagram 
======================================================================*/
.diagram-wrapper {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "item1 item2"
        "item4 item3";
    margin-top: 5rem;
}

.diagram-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.reverse-children {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.item1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: item1;
}

.item2 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: item2;
}

.item3 {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: item3;
}

.item4 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: item4;
}

.diagram-item .text-wrapper {
    position: relative;
    z-index: 1;
    width: 55%;
    margin: 0 -5% 0 0;
    padding: 0 2rem 0 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.reverse-children .text-wrapper {
    margin: 0 0 0 -5%;
    padding: 0 0 0 2rem;
}

.diagram-item .image-wrapper {
    position: relative;
    width: 50%;
}

.diagram-item .diagram-image {
    width: 100%;
}

.diagram-item .mobile-diagram-image {
    display: none;
}

/* Diagram Title */
.diagram-title {
    position: absolute;
    padding: 0;
    margin: 0;
    line-height: 1.2;
    max-width: 20rem;
}

.item1 .diagram-title {
    bottom: 7rem;
    left: 9rem;
}

.item2 .diagram-title {
    bottom: 7rem;
    left: 2rem;
}

.item3 .diagram-title {
    top: 7rem;
    left: 2rem;
}

.item4 .diagram-title {
    top: 7rem;
    left: 10rem;
}

/* Hovereffekter */
.diagram-wrapper:hover .diagram-item .image-wrapper {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.diagram-wrapper:hover .diagram-item:hover .text-wrapper {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.diagram-wrapper:hover .diagram-item:hover .image-wrapper {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item1 .image-wrapper {
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
}

.item2 .image-wrapper {
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

.item3 .image-wrapper {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.item4 .image-wrapper {
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}

.diagram-logo {
    position: absolute;
    width: 10%;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

/* Media Query */
@media only screen and (max-width: 1580px) {

    .item1 .image-wrapper,
    .item4 .image-wrapper {
        margin-right: -2rem;
    }

    .item2 .image-wrapper,
    .item3 .image-wrapper {
        margin-left: -2rem;
    }
}

@media only screen and (max-width: 1000px) {
    .diagram-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .diagram-item .image-wrapper {
        margin: 0 auto;
    }

    .diagram-item .text-wrapper {
        padding: 4rem 0;
        opacity: 1;
        width: 100%;
    }

    .diagram-wrapper:hover .diagram-item .image-wrapper {
        opacity: 1;
    }

    .diagram-wrapper:hover .diagram-item:hover .image-wrapper {
        transform: none;
    }

    .diagram-item .diagram-image,
    .diagram-title {
        display: none;
    }

    .diagram-item .mobile-diagram-image {
        display: block;
    }

    .diagram-logo {
        display: none;
    }
}

@media only screen and (max-width: 750px) {
    .diagram-item {
        padding: 0;
    }

    .diagram-item:not(:last-child) {
        padding: 0 0 5rem;
    }

    .diagram-item .text-wrapper {
        width: 100%;
        margin: 0;
        padding: 0 0 2rem;
    }

    .diagram-item .image-wrapper {
        width: 100%;
        max-width: 30rem;
    }

    .item1 .image-wrapper,
    .item4 .image-wrapper {
        margin-left: auto;
    }

    .item2 .image-wrapper,
    .item3 .image-wrapper {
        margin-right: auto;
    }
}

@media only screen and (hover: none) {
    .diagram-item .text-wrapper {
        opacity: 1;
    }
}

/* Sektion Historia
========================================================================== */
.timeline-wrapper {
    position: relative;
    max-width: 120rem;
    margin: 10rem auto 0;
}

.timeline-wrapper a:hover {
    text-decoration: underline;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: rgb(var(--primary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    border-radius: 40px;
}

.timeline-text:before {
    content: "";
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgb(var(--primary-color));
    position: absolute;
    left: -12.5%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0 0 0 4px rgb(var(--white-color));
    box-shadow: 0 0 0 4px rgb(var(--white-color));
    z-index: 1;
}

.item-right .timeline-text::before {
    left: auto;
    right: -13.5%;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.timeline-item.item-left {
    justify-content: flex-end;
}

.timeline-text {
    width: 45%;
}

.timeline-text {
    padding-left: 5rem;
}

.timeline-text p {
    font-size: 1.75rem;
}

.item-right .timeline-text {
    padding-right: 5rem;
    padding-left: 0;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timelime-result {
    font-size: 3rem !important;
    font-weight: 400;
    color: rgb(var(--secondary-color));
    padding: 0 0 1rem 0;
    line-height: 1;
}

@media only screen and (max-width: 1200px) {
    .timeline-text {
        padding-left: 2rem;
    }

    .item-right .timeline-text {
        padding-right: 0;
        padding-left: 2rem;
    }

    .timeline-wrapper {
        margin-top: 4rem;
    }
}

@media only screen and (max-width: 800px) {
    .timeline-wrapper::before {
        left: 0;
    }

    .timeline-item {
        justify-content: flex-end;
    }

    .timeline-item.item-left {
        flex-wrap: wrap-reverse;
    }

    .timeline-text,
    .timeline-image {
        width: calc(100% - 2rem);
    }

    .timeline-text {
        margin-bottom: 2rem;
    }

    .timeline-text:before {
        left: -2.8rem;
    }

    .item-right .timeline-text::before {
        left: -2.8rem;
        right: auto;
    }
}

/* Why Us items
========================================================================== */
/* Why us element  */
.why-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 120rem;
    margin: 5rem auto 0;
}

.why-us {
    position: relative;
    display: flex;
    width: 33%;
    margin-bottom: 2rem;
}

.why-us-icon-wrap {
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 3rem;
    border-radius: 50%;
    background-color: rgb(var(--secondary-color));
    overflow: hidden;
}

.why-us i {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgb(var(--white-color));
}

.why-us-textwrapper {
    flex: 1 1 0px;
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 1rem 0 2rem;
}

@media only screen and (max-width: 1000px) {
    .why-us-wrapper {
        flex-wrap: wrap;
    }

    .why-us {
        width: 100%;
        margin: 0 auto 2rem;
        max-width: 50rem;
    }
}

/* =========================================================================
Undersida: Podd
========================================================================== */
.section-podcast .section-block,
.section-podcast-intro .section-block {
    padding-bottom: 0;
}

.section-podcast .podcast-wrapper {
    position: relative;
    z-index: 2;
    max-width: 90rem;
    margin: -10rem auto 5rem;
}

.section-podcast-intro .list-pills li {
    width: 100%;
    text-align: left;
}

@media only screen and (max-width: 580px) {
    .section-podcast .podcast-wrapper {
        margin: 5rem auto;
    }
}

/* ==========================================================================
Undersida  Partners
========================================================================== */

/* Sektion Quote (.section-quotes)
========================================================================== */
.section-quotes {
    background-color: rgba(var(--primary-color), .3);
}

.quote-slider {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
}

.quote {
    text-align: center;
    padding-top: 5rem;
    max-height: 100%;
}

.quote .fas {
    color: rgb(var(--primary-light-color));
    font-size: 3rem;
}

.quote .small-title {
    font-size: 1.6rem;
    margin: 2rem 0;
    font-weight: 400;
}

.quote img {
    width: 20rem;
    margin: 0 auto;
}

.quote p {
    font-size: 1.7rem;
    color: rgb(var(--gray-dark-color));
}

.quote-slider .slick-list {
    width: 100%;
}

.quote-slider .slick-dots {
    padding: 0;
}

/* ==========================================================================
Undersida: Alla moten & mingel
========================================================================== */
.mingel-wrapper .small-title {
    border-bottom: none;
    font-weight: 400;
    padding-bottom: 0;
    padding-top: 1rem;
}

.mingel-wrapper p {
    padding: 0;
    padding-bottom: 1rem;
}

.mingel-wrapper .text-wrapper {
    padding: 4rem 3rem;
}

/* Formular
========================================================================== */
.section-intresseform .ContactForm {
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
}

.section-intresseform .ContactForm p {
    color: rgb(var(--gray-dark-color));
    line-height: 1.2;
}

.section-intresseform .grecaptcha-badge {
    display: none;
}

.section-intresseform .ContactFormName,
.section-intresseform .ContactFormEmail,
.section-intresseform .ContactFormField {
    width: 49%;
}

.section-intresseform .ContactFormName input,
.section-intresseform .ContactFormEmail input,
.section-intresseform .ContactFormField input,
.section-intresseform .ContactFormMessage input {
    font-size: 16px;
}

@media only screen and (max-width: 1000px) {

    .section-intresseform .ContactFormName,
    .section-intresseform .ContactFormEmail,
    .section-intresseform .ContactFormField {
        width: 100%;
    }
}

/* Formular (anvands ej)
========================================================================== */
.section-auto-modal .ContactForm {
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.section-auto-modal .ContactForm p {
    color: rgb(var(--gray-dark-color));
    line-height: 1.2;
}

.section-auto-modal .grecaptcha-badge {
    display: none;
}

.section-auto-modal .ContactFormName,
.section-auto-modal .ContactFormEmail,
.section-auto-modal .ContactFormField {
    width: 49%;
}

.section-auto-modal .ContactFormName input,
.section-auto-modal .ContactFormEmail input,
.section-auto-modal .ContactFormField input,
.section-auto-modal .ContactFormMessage input {
    font-size: 16px;
}

@media only screen and (max-width: 1000px) {

    .section-auto-modal .ContactFormName,
    .section-auto-modal .ContactFormEmail,
    .section-auto-modal .ContactFormField {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Fokus: Bygg & fastighetssystem
========================================================================== */
.focus .quote-slider {
    max-width: 120rem;
}

.focus .section-title,
.focus .small-title,
.focus li,
.focus .heading,
.focus p {
    text-align: left;
}

.focus .quote .small-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.focus .heading::before {
    content: "\f105";
    display: inline-block;
    color: rgb(var(--secondary-color));
    font-weight: bold;
    font-family: 'Font Awesome 5 Pro';
    width: 1em;
}

.focus .heading {
    font-size: 2rem;
    font-weight: 400;
}

.quote {
    max-width: 90%;
    margin: 0 auto;
}

/* slick knappar */
.quote-slider .slick-arrow {
    position: absolute;
    top: auto;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    background-color: rgb(var(--secondary-color));
    border: 1px solid rgb(var(--secondary-color));
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: .4s;
}

.slick-track {
    display: flex !important;
}

.quote-slider .slick-arrow::after {
    font-size: 3rem;
}

.quote-slider .slick-list {
    width: 100%;
}

.slick-slide {
    height: auto !important;
}

.quote-slider .slick-arrow::after {
    color: rgb(var(--white-color));
    font-weight: 400;
}

.quote-slider .slick-arrow:not(.slick-disabled):hover,
.quote-slider .slick-arrow:not(.slick-disabled):focus {
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.quote-slider .slick-arrow.slick-disabled {
    opacity: .5;
}

.quote-slider .slick-prev {
    left: 0;
}

.quote-slider .slick-next {
    right: 0;
}

@media only screen and (max-width: 1250px) {
    .focus .quote-slider {
        max-width: 95%;
    }
}

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

@media only screen and (max-width: 580px) {


    .quote-slider .slick-prev {
        left: 1rem;
    }

    .quote-slider .slick-next {
        right: 1rem;
    }

    .quote-slider .slick-arrow {
        top: 1rem;
    }

    .quote {
        padding: 6rem 0rem;
    }
}

/* ==========================================================================
Undersida NewBussinesCenter
========================================================================== */
.section-nbc .price-wrapper {
    max-width: 50rem;
    padding: 1.5rem 2rem;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.6rem;
    border-radius: 2rem;
    text-align: center;
    color: rgb(var(--white-color));
    border: 2px solid rgb(var(--primary-light-color));
    background-color: rgb(var(--primary-light-color));
    margin: 4rem;
}

.price-wrapper p {
    padding-bottom: 0;
}

/* List-check */
.section-nbc .list-check,
.section-nbc .list-check-primary {
    padding: 0;
    list-style: none;
}

.section-nbc .list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Font Awesome 5 Pro';
}

.section-nbc .list-check-primary li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Font Awesome 5 Pro';
}

.nbc-logo-wrapper{
    max-width: 40rem;
    margin: auto;
}

/* ==========================================================================
Undersida GDPR Policy 
========================================================================== */
.gdpr .small-title {
    font-weight: 300;
    letter-spacing: 1.5px;
}

.gdpr p,
.gdpr li {
    font-size: 1.5rem;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background: linear-gradient(90deg, rgb(var(--primary-dark-color)) 0%, rgb(var(--purple-color)) 90%);
}

.footer-container {
    padding: 0 2rem;
}

.footer a:hover {
    text-decoration: underline;
}

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

.footer-menu {
    width: 20%;
    margin-bottom: 2rem;
}

.footer-menu-large {
    width: 40%;
}

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
    color: rgb(var(--white-color));
    text-transform: uppercase;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--white-color));
    text-decoration: none;
}

.footer-top .logo {
    width: 15rem;
    max-width: 100%;
    margin: 1rem 0 0;
    margin-bottom: 1rem;
}

/* Social Menu - GDPR */
.footer .social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: right;
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    text-decoration: none;
}

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
}

.footer-bottom em::before {
    font-size: 1.4rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

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

@media only screen and (max-width: 1024px) {

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

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@media only screen and (max-width: 750px) {

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

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


/*Utkast*/


.cardBox {
    float: left;
    font-size: 1.2em;
    margin: 1% 0 0 1%;
    perspective: 800px;
    transition: all 0.3s ease 0s;
    width: 23.7%;

}

.cardBox:hover .card {
    transform: rotateY(180deg);
}

.card {
    background: #222;
    cursor: default;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.4s ease 0s;
    width: 100%;
    -webkit-animation: giro 1s 1;
    animation: giro 1s 1;
    background-image: url(/assets/images/crowd.png);
}

.card p {
    margin-bottom: 1.8em;
}

.card .front,
.card .back {
    backface-visibility: hidden;
    box-sizing: border-box;
    color: white;
    display: block;
    font-size: 1.2em;
    height: 100%;
    padding: 0.8em;
    position: absolute;
    text-align: center;
    width: 100%;
}

.card .front strong {
    background: #fff;
    border-radius: 100%;
    color: #222;
    font-size: 1.5em;
    line-height: 30px;
    padding: 0 7px 4px 6px;
}

.card .back {
    transform: rotateY(180deg);
}

.card .back a {
    padding: 0.3em 0.5em;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 1px;
    font-size: 0.9em;
    transition: all 0.2s ease 0s;
}

.card .back a:hover {
    background: #fff;
    color: #333;
    text-shadow: 0 0 1px #333;
}

.cardBox:nth-child(1) .card .back {
    background: cornflowerblue;
}

.cardBox:nth-child(2) .card .back {
    background: orange;
}

.cardBox:nth-child(3) .card .back {
    background: yellowgreen;
}

.cardBox:nth-child(4) .card .back {
    background: tomato;
}

.cardBox:nth-child(2) .card {
    -webkit-animation: giro 1.5s 1;
    animation: giro 1.5s 1;
}

.cardBox:nth-child(3) .card {
    -webkit-animation: giro 2s 1;
    animation: giro 2s 1;
}

.cardBox:nth-child(4) .card {
    -webkit-animation: giro 2.5s 1;
    animation: giro 2.5s 1;
}

@-webkit-keyframes giro {
    from {
        transform: rotateY(180deg);
    }

    to {
        transform: rotateY(0deg);
    }
}

@keyframes giro {
    from {
        transform: rotateY(180deg);
    }

    to {
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .cardBox {
        margin-left: 2.8%;
        margin-top: 3%;
        width: 100%;
    }

    .card {
        height: 285px;
    }

    .cardBox:last-child {
        margin-bottom: 3%;
    }
}

@media screen and (max-width: 480px) {
    .cardBox {
        width: 94.5%;
    }

    .card {
        height: 260px;
    }
}




.strips {
    min-height: 50vh;
    max-width: 50rem;
    justify-content: center;
    margin: auto;
    text-align: center;
    overflow: hidden;
    color: white;
}

.strips__strip {
    will-change: width, left, z-index, height;
    position: absolute;
    width: 20%;
    min-height: 50vh;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strips__strip:nth-child(1) {
    left: 20%;
}

.strips__strip:nth-child(2) {
    left: 40%;
}

.strips__strip:nth-child(3) {
    left: 60%;
}


.strips__strip:nth-child(1) .strip__content {
    background: #531626;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-animation-name: strip1;
    animation-name: strip1;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;

}

.strips__strip:nth-child(2) .strip__content {
    background: rgb(250, 128, 56);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-animation-name: strip2;
    animation-name: strip2;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;

}

.strips__strip:nth-child(3) .strip__content {
    background: #531626;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-animation-name: strip3;
    animation-name: strip3;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}



@media screen and (max-width: 760px) {
    .strips__strip {
        min-height: 20vh;
    }

    .strips__strip:nth-child(1) {
        top: 40vh;
        left: 0;
        width: 100%;
    }

    .strips__strip:nth-child(2) {
        top: 60vh;
        left: 0;
        width: 100%;
    }

    .strips__strip:nth-child(3) {
        top: 80vh;
        left: 0;
        width: 100%;

    }

    .intro {
        margin-bottom: 5rem !important;
    }

}

.strips .strip__content {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.strips .strip__content:hover:before {
    -webkit-transform: skew(-30deg) scale(3) translate(0, 0);
    -ms-transform: skew(-30deg) scale(3) translate(0, 0);
    transform: skew(-30deg) scale(3) translate(0, 0);
    opacity: 0.1;
}

.strips .strip__content:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.05;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: skew(-30deg) scaleY(1) translate(0, 0);
    -ms-transform: skew(-30deg) scaleY(1) translate(0, 0);
    transform: skew(-30deg) scaleY(1) translate(0, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strips .strip__inner-text {
    will-change: transform, opacity;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 70%;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    -ms-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strips__strip--expanded {
    width: 100%;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 3;
    cursor: default;
}

@media screen and (max-width: 760px) {
    .strips__strip--expanded {
        min-height: 100vh;
    }
}

.strips__strip--expanded .strip__content:hover:before {
    -webkit-transform: skew(-30deg) scale(1) translate(0, 0);
    -ms-transform: skew(-30deg) scale(1) translate(0, 0);
    transform: skew(-30deg) scale(1) translate(0, 0);
    opacity: 0.05;
}

.strips__strip--expanded .strip__title {
    opacity: 0;
}

.strips__strip--expanded .strip__inner-text {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.strip__title {
    display: block;
    margin: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    font-size: 3.5vw;
    color: white;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 760px) {
    .strip__title {
        font-size: 28px;
    }
}

.strip__close {
    position: absolute;
    font-size: 2rem;
    right: 3vw;
    top: 20rem;
    opacity: 0;
    z-index: 10;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.strip__close--show {
    opacity: 1;
}

@-webkit-keyframes strip1 {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip1 {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip2 {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip2 {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip3 {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip3 {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip4 {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip4 {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip5 {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip5 {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}