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

    /* 	Colors */
    --primary-color: 110, 198, 202;
    --primary-light-color: 188, 199, 199;
    --primary-dark-color: 78, 159, 163;

    --black-color: 34, 34, 34;
    --gray-dark-color: 75, 75, 75;
    --gray-light-color: 248, 248, 248;
    --white-color: 255, 255, 255;

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

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

/* Layout
========================================================================== */
.section-wrapper {
    background: rgb(var(--white-color));
}

.section-block {
    padding: 10rem 2rem;
}

.mw-600:not(.section-wrapper) {
    max-width: 60rem;
}

.mw-1000 .section-block-wrapper,
.mw-1000:not(.section-wrapper) {
    max-width: 100rem;
}

/* Paddings */

.p-3 {
    padding: 3rem;
}

.p4 {
    padding: 4rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.pb-0 {
    padding-bottom: 0rem !important;
}

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

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

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

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

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

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

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

.pb-3:not(.section-wrapper) {
    padding-bottom: 3rem;
}

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

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

.py-0 .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

/* Margins */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

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

.mb-5 {
    margin-bottom: 5rem;
}

.opct img {
    object-position: center top;
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: "IBM Plex Sans", sans-serif;
}

/* Rubriker */
.text-label {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: rgb(var(--gray-dark-color));
    text-transform: uppercase;
}

.section-title {
    padding-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: rgb(var(--gray-dark-color));
    text-transform: uppercase;
}

.small-title {
    padding-bottom: 1rem;
    font-size: 2.1rem;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: rgb(var(--gray-dark-color));
}

.text-title {
    font-size: var(--base-size);
    font-weight: 700;
    padding: .5em 0 .2em;
}

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

p a {
    text-decoration: underline;
}

p a:hover,
li a:hover {
    color: rgb(var(--black-color));
    text-decoration: none;
}

a {
    font-size: inherit;
    color: inherit;
    text-decoration: none;
    transition: .25s ease;
}

.a-bold {
    font-size: 2.1rem;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: rgb(var(--gray-dark-color));

}

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

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

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

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

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

.text-light {
    font-weight: 300;
}

/* Listor */
.styled-list {
    padding: 0 0 0 2rem;
    list-style: none;
}

.styled-list li {
    padding-bottom: 1rem;
}

.styled-list a {
    text-decoration: underline;
}

.styled-list li::before {
    display: inline-block;
    content: "\f336";
    width: 1.5em;
    margin-left: -1.5em;
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    color: rgb(var(--primary-color));
    vertical-align: top;
}

.styled-list.text-white li,
.styled-list.text-white li::before {
    color: rgb(var(--white-color));
}

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    padding: 1.3rem 3.5rem;
    margin: .5rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    transition: .2s ease;
}

.ContactSubmit {
    margin: 0;
}

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

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

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

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

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

.arrow-link::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

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

.circle-icon:hover {
    color: rgb(var(--primary-color));
    background-color: rgb(var(--black-color));
}

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


/* Linje genom element */
.line-through-primary {
    position: relative;
}

.line-through-primary::before {
    position: absolute;
    content: '';
    display: block;
    height: calc(100% - 4rem);
    width: 2px;
    top: 2rem;
    left: 3.5rem;
    background-color: rgb(var(--primary-color));
}

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

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

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

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

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

/* Overlays */
.overlay-primary:not(.section-wrapper),
.overlay-primary .section-block {
    background: rgba(var(--primary-dark-color), .85);
}

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

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

.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

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

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

.op-top img {
    object-position: center top;
}

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

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

/* Bakgrundsbilder */
.parallax-kvinnor-kok {
    background-image: url(/assets/images/backgrounds/kvinnor-kok-2000px.jpg);
}

.parallax-diversity {
    background-image: url(/assets/images/diversity-paralax.jpg);
}

.parallax-team {
    background-image: url(/assets/images/backgrounds/team-pa-rad-utomhus-1920px.jpg);
}

.parallax-skratt {
    background-image: url(/assets/images/backgrounds/glada-kvinnor-2000px.jpg);
}

.parallax-motesrum {
    background-image: url(/assets/images/backgrounds/motesrum-2000px.jpg);
}

.parallax-spegel {
    background-image: url(/assets/images/spegel-2000px.jpg);
}

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

/* Bakgrunder */
.section-quote {
    background-image: url(/assets/images/citattecken-ljusbla.svg);
    background-size: 15vw;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (max-width:750px) {
    .section-quote {
        background-size: 15rem;
    }

    .section-quote .pt-5 {
        padding-top: 0;
    }
}

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

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

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

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

.split-image {
    width: 50%;
}

.split-video {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 50%;
}

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

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

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

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

    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

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

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

    .split-content[class*="bg"] {
        padding: 2rem;
    }

    .full-width .split-content {
        padding: 5rem 2rem;
    }

    .split-image.p-2 {
        padding: 1rem;
    }
}

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

.cards-wrapper.justify-center {
    justify-content: center;
    margin: auto;
}

.cards-wrapper.align-center {
    align-items: center;
}

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

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

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

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

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

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

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

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

/* Cards 1 – Recensionskort */
.cards-1 .card-item {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: rgb(var(--white-color));
    border-radius: 3px;
    margin: 0 2rem 0 0;
}

.cards-1 p {
    font-size: 1.5rem;
}

.cards-1 .card-footer {
    display: flex;
    align-items: flex-end;
    background-color: rgba(var(--primary-color), .2);
    padding: 0 2rem 1rem;
    margin: auto 0 0;
}

.cards-1 .quote-sign {
    width: 7rem;
    height: 7rem;
    padding: 1.5rem;
    margin: -1.5rem 2rem 0 0;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
    border: 3px solid rgb(var(--white-color));
}

.cards-1 .text-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    padding: 1rem 0;
}

.cards-1 .text-title span {
    display: block;
}

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

@media only screen and (max-width: 580px) {
    .cards-1 .card-item {
        margin: 0 1rem 0 0;
    }

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

    .cards-1 .quote-sign {
        align-self: flex-start;
        width: 4rem;
        height: 4rem;
        padding: 1rem;
        border-width: 2px;
        margin-top: -6px;
    }

    .cards-1 .text-title {
        font-size: 1.2rem;
    }
}

/* Cards 2 - Tjanstekort */
.cards-2 .card-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    margin-top: 10rem !important;
    text-align: center;
    background: rgb(var(--white-color));
    box-shadow: -.3rem .9rem 1rem rgba(var(--black-color), .1);
}

.cards-2 .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 15rem;
    padding: 2rem;
    margin: -10rem auto 2rem;
    border-radius: 50%;
    background: rgb(var(--primary-color));
}

.cards-2 .image-wrapper img {
    height: 7.7rem;
}

.cards-2 .icon-wrapper i {
    font-size: 3.5rem;
}

.cards-2 .text-wrapper {
    flex-grow: 1;
}

.cards-2 .small-title {
    text-transform: uppercase;
}

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


/* Card 2-5 */
.card-2-5 .card-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
    border: 2px solid rgb(var(--primary-color));
}

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

@media only screen and (max-width: 500px) {
    .card-2-5 .card-body {
        padding: 0 1rem;
    }
}



/* Cards 7 - Nyhetskort */
.cards-7 .card-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 3px;
    background: rgb(var(--white-color));
    box-shadow: -.3rem .9rem 1rem rgba(var(--black-color), .1);
    overflow: hidden;
}

.cards-7 .image-wrapper {
    height: 25rem;
}

.cards-7 .text-wrapper {
    flex-grow: 1;
    padding: 2rem;
}

.cards-7 .text-wrapper.pt-0 {
    padding-top: 0;
}

.cards-7 .tag {
    position: relative;
    top: -2rem;
    display: inline-block;
    padding: .2rem .7rem;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgb(var(--white-color));
    border-radius: .8rem;
    background: rgb(var(--primary-color));
    border: 2px solid rgb(var(--white-color));
}

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

.cards-7 .arrow-link {
    padding: 0 2rem 2rem 2rem;
}

/* Cards 8 - Medarbetarkort, Kundkort */
.cards-8 .card-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    text-decoration: none;
}

.cards-8 .image-wrapper {
    height: 40rem;
    border-radius: 3px;
}

.cards-8 .image-wrapper.smaller {
    height: 25rem;
}

.cards-8 .text-wrapper {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
}

.cards-8 .text-wrapper.mt--7 {
    min-height: 7rem;
    margin: -7rem auto 0;
}

.cards-8 .text-wrapper .small-title {
    padding-bottom: 0;
    font-weight: 400;
    color: rgb(var(--white-color));
}

.cards-8 .text-wrapper p:not(.small-title),
.cards-8 .text-wrapper a {
    font-size: 1.6rem;
    padding-bottom: 0;
    color: rgb(var(--white-color));
}

/* Cards 8 Alt 1 */
.cards-8.alt-1 .text-wrapper {
    position: relative;
    width: calc(100% - 3rem);
    flex: 1 1 0px;
    padding: 2rem;
    margin: 0 auto;
    transform: translateY(-3rem);
    border-radius: 3px;
}

.cards-8.alt-1 .small-title {
    padding-bottom: 1em;
}

.cards-8.alt-1 .arrow-link {
    margin: auto 0 0;
    padding-top: 1rem;
}

/* Logos 1 */
.logos-1 .card-item {
    text-align: center;
}

.logos-1 img {
    width: auto;
    max-height: 12rem;
    filter: grayscale() opacity(.5);
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

.logos-1 img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

@media only screen and (max-width: 868px) {
    .logos-1 img {
        max-height: 8rem;
    }
}

/* Grafiska element
========================================================================== */
/* Video ratio */
.video-ratio {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-ratio video,
.video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonnier-video .video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1100px) {
    .bonnier-video .video-ratio video {
        height: 100%;
    }
}


/* Box shadow */
.boxshadow {
    box-shadow: 0 10px 30px rgb(var(--black-color), .2)
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0.0) 100%);
    overflow: hidden;
}

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

/* Header / Navigation
========================================================================== */
header {
    background: transparent;
}

header.scrolled,
.SubPage header {
    background: rgb(var(--white-color));
}

header .container {
    justify-content: center;
}

/* Header logo */
.header-logo a {
    width: 33rem;
    height: var(--menu-height);
    background-image: url(/assets/images/logos/amazingleaders-white.svg);
    background-size: 87%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: .25s ease;
}

header.scrolled .header-logo a,
.SubPage header .header-logo a,
header.active-menu .header-logo a {
    height: var(--menu-height-scrolled);
    background-image: url(/assets/images/logos/amazingleaders.svg);
}

/* Nav */
.mainmenu {
    flex-grow: 1;
    padding-left: 9.1rem;
}

.TemplateMenu {
    justify-content: center;
}

.TemplateMenu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--white-color));
}

.TemplateMenu ul {
    width: 32rem;
    z-index: 2;
}

header.scrolled .TemplateMenu a,
.SubPage header .TemplateMenu a {
    color: rgb(var(--gray-dark-color));
}

header .TemplateMenu a:hover,
.SubPage header .TemplateMenu a:hover,
.TemplateMenu li.active>a {
    color: rgb(var(--primary-color));
}

/* Dropdown */
.TemplateMenu ul a {
    color: rgb(var(--gray-dark-color));
}

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: .2rem 1.5rem;
    margin: 0 .5rem;
}

.dropdown-list.show .btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-list {
    position: relative;
    cursor: pointer;
}

.dropdown-list ul {
    display: none;
    position: absolute;
    width: calc(100% - 1rem);
    padding: 0;
    text-align: center;
    list-style: none;
}

.dropdown-list.show ul {
    display: block;
}

.dropdown-list ul .btn {
    width: 100%;
    padding: .2rem 1rem;
    border-radius: 0;
}

.header-cta-wrapper img {
    max-width: 2rem;
}

/* Mobilmeny */
.mobile-menu .container {
    justify-content: right;
}

.mobile-menu .header-logo {
    flex-grow: 1;
}

header.mobile-menu .header-logo a,
header.scrolled.mobile-menu .header-logo a,
.SubPage header.mobile-menu .header-logo a {
    width: 20rem;
}

.mobile-menu .mainmenu {
    padding-left: 2rem;
    padding-right: 2rem;
}

.mobile-menu .TemplateMenu>li>a,
.mobile-menu.scrolled .TemplateMenu>li>a {
    color: rgb(var(--black-color));
}


@media only screen and (max-width: 480px) {
    header .container {
        padding: 0;
    }

    header.mobile-menu .header-logo a,
    header.scrolled.mobile-menu .header-logo a,
    .SubPage header.mobile-menu .header-logo a {
        width: 15rem;
        height: var(--mobile-menu-height);
    }
}

/* EditMode */
.EditMode.WebbEssDIY header {
    position: relative;
    top: 10px !important;
}

.EditMode .header-logo {
    display: none;
}

.EditMode .TemplateMenu ul {
    width: 27rem;
    border-left: 2px solid rgb(var(--primary-color));
    border-bottom: 2px solid rgb(var(--primary-color));
}

.EditMode .TemplateMenu>li>ul>li>ul {
    width: 35rem;
    right: -35rem;
}

.EditMode .TemplateMenu>li>ul>li>ul a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.EditMode .TemplateMenu ul a {
    font-weight: 400;
}

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

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 60rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%, -50%);
}

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

/* Formular*/
.section-auto-modal .ContactForm {
    display: flex;
    justify-content: space-between;
    max-width: 70rem;
    margin: 0 auto;
}

.section-auto-modal .ContactForm .ContactFormMessage {
    display: none;
}

.section-auto-modal .ContactForm .ContactSubmit {
    margin-top: 2rem;
}

.section-auto-modal .ContactForm p {
    position: relative;
    left: 10px;
    bottom: -13px;
    display: inline-block;
    padding: 5px 3px;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: rgb(var(--primary-color));
    background-color: rgb(var(--white-color));
}

.section-auto-modal .ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 3px;
}

.section-auto-modal .ContactForm input[type="text"]:not(.illegal),
.section-auto-modal .ContactForm textarea:not(.illegal) {
    border-radius: 3px;
    background-color: rgb(var(--white-color));
}

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

    .section-auto-modal .ContactFormName {
        margin-bottom: 0;
    }
}

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

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

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

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

.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;
    max-width: 45rem;
    max-height: calc(100vh - 12rem);
    padding: 2rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

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

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

@media only screen and (max-width: 450px) {
    .popup-window {
        padding: 2rem 3rem 2rem 2rem;
    }

    .icon-close-popup {
        top: 1rem;
    }
}



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

/* Topsection
========================================================================== */
.topsection .section-block {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 100vh;
    padding: 10rem 2rem 20rem;
}

.topsection {
    margin-top: calc(-1 * var(--menu-height));
    background: rgb(var(--black-color), .5);
}

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

.topsection .section-title {
    font-size: 5.5rem;
    color: rgb(var(--white-color));
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 .6rem 1rem rgb(var(--black-color), .2);
}

.topsection p {
    color: rgb(var(--white-color));
    font-size: 2.2rem;
}

.topsection .btn {
    min-width: 20rem;
}

@media only screen and (max-width: 1050px) {
    .topsection .section-block-wrapper {
        max-width: 65rem;
    }

    .topsection .section-title {
        font-size: 3.5rem;
    }
}

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

    .topsection p {
        font-size: 1.7rem;
    }
}

/* About
========================================================================== */
.section-about {
    padding-bottom: 10rem;
}

@media only screen and (max-width: 580px) {
    .section-about {
        padding-bottom: 0;
    }
}

/* Nyhetsbrev
========================================================================== */
/* Generellt för formular */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
}

.ContactForm p {
    font-size: 1.5rem;
}

.ContactForm input:not(.ContactSubmit) {
    height: 3.5rem;
    border-radius: .5rem;
    overflow: hidden;
}

.ContactFormMessage textarea {
    border-radius: .5rem;
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    background: rgba(var(--primary-color), .8);
}

.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 60vh;
    padding: 10rem 4rem;
}

.hero.vh-40 .section-block {
    min-height: 40vh;
}

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

.hero .section-title {
    font-size: 5.5rem;
    color: rgb(var(--white-color));
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    color: rgb(var(--white-color));
    max-width: 75rem;
}

/* Bild + rubrik */
.hero-wrapper {
    display: flex;
    align-items: center;
}

.hero-wrapper .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 15rem;
    padding: 2rem;
    margin: 0 5rem 0 0;
    border-radius: 50%;
    border: 3px solid rgb(var(--white-color))
}

.hero-wrapper .image-wrapper img {
    height: 7.7rem;
}

.hero-wrapper .section-title {
    flex: 1 1 0px;
}

.hero-wrapper .section-title .usp {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
}

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

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

    /* Bild + rubrik */
    .hero-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-wrapper .image-wrapper {
        margin: 0 0 2rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 40vh;
    }

    .hero .section-block {
        padding: 4rem 2rem;
    }

    /* Bild + rubrik */
    .hero .section-title,
    .hero-wrapper .section-title .usp {
        font-size: 2.5rem;
    }
}

/* Nyheter
========================================================================== */
.news-img {
    margin: auto;
    text-align: center;
    max-width: 500px;
}

.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: 1300px) {
    .ledarskap-news .col-1 {
        width: 100%;
        text-align: center;
        padding-bottom: 4rem;
    }

    .ledarskap-news .col-2 {
        width: 100%;

    }
}

/* Kontakta oss-CTA
========================================================================== */
.section-cta-contact {
    background: rgb(var(--primary-light-color));
}

/* ==========================================================================
Undersida: Om oss > Medarbetarundersida
========================================================================== */
.section-team a {
    text-decoration: none;
}

.section-team a em {
    margin-right: .5rem;
}

/* ==========================================================================
Undersida: Tjanster > Tjansteundersida
========================================================================== */

/* Sektion Anmalan
========================================================================== */
.registration-wrapper {
    max-width: 35rem;
    margin: 0 0 0 auto;
    border-radius: 3px;
}

.registration-wrapper p:not(.text-title),
.registration-wrapper li {
    font-size: 1.5rem;
}

@media only screen and (max-width: 980px) {
    .registration-wrapper {
        max-width: unset;
        margin: 5rem 0 0;
    }

    .registration-wrapper .dates-wrapper {
        display: inline-block;
        width: 49%;
        vertical-align: top;
    }
}

@media only screen and (max-width: 580px) {
    .registration-wrapper .dates-wrapper {
        display: block;
        width: 100%;
    }
}

.citat-box {
    height: 150px;
    padding: 5rem;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
    border-radius: 1rem;
}

/* ==========================================================================
Undersida: Kunder
========================================================================== */

/* Sektion Recensioner
========================================================================== */
.section-testimonials {
    overflow: hidden;
}

/* Slider */
.testimonials.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.testimonials.cards-wrapper .slick-track {
    display: flex;
}

.testimonials.cards-wrapper .card-item {
    display: flex;
    height: auto;
}

/* Slick Dots */
.testimonials .slick-dots {
    justify-content: flex-start;
    padding: 0;
    margin: 1rem 0 0;
}

.testimonials .slick-dots li:not(.slick-active) {
    opacity: .5;
}

.testimonials .slick-dots li::before {
    color: rgb(var(--white-color));
}

.testimonials .slick-dots li.slick-active::before {
    color: rgb(var(--white-color));
    opacity: 1;
}

/* Slick Arrow */
.testimonials .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
}

.testimonials .slick-arrow::after {
    font-weight: 300;
}

.testimonials .slick-next {
    right: 2rem;
}

.testimonials .slick-prev {
    left: auto;
    right: 6rem;
}

/* ==========================================================================
Undersida: Aktuellt  
========================================================================== */
.card-item.display-none {
    display: none;
}

/* Taggar */
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tags-list .tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    border-radius: 2rem;
    background: rgb(var(--gray-light-color));
    cursor: pointer;
    transition: .5s ease;
}

.tags-list .tag:hover,
.tags-list .tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

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

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--white-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}

/* ==========================================================================
Kontakt
========================================================================== */

/* Sektion Formular
========================================================================== */
.section-contactform .col-0 {
    padding-bottom: 10rem;
}

.section-contactform .col-1 {
    background-color: rgb(var(--white-color));
    padding: 4rem;
    border-radius: 3px 3px 0 0;
}

/* Formular */
.section-contactform .ContactForm {
    flex-direction: column;
}

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

/* Sektion Karta
========================================================================== */
.section-map {
    font-size: 0;
}

.section-map iframe {
    width: 100%;
    height: 50rem;
    border: none;
}

/* Sektion Nyhetsbrev
========================================================================== */
.section-news-letter .section-block {
    max-width: 100rem;
    padding: 8rem;
}
.section-news-letter .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-news-letter .ContactForm input[type="text"]:not(.illegal),
.section-news-letter input[type="email"]:not(.illegal),
.section-news-letter .ContactForm input[type="tel"]:not(.illegal){
    border: none;
}

.section-news-letter .ContactForm div {
    width: 49%;
}
.section-news-letter .ContactForm p{
    color: rgb(var(--white-color));
    font-weight: 600;
}

@media only screen and (max-width: 1024px) {
    .section-news-letter .ContactForm div {
        width: 100%;
    }
    .section-news-letter .section-block {
        padding: 3rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background: rgb(var(--gray-dark-color));
}

.footer-container {
    padding: 0 5rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

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

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

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
}

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

.footer p,
.footer a:not(.circle-icon),
.footer li {
    font-size: 1.5rem;
    color: rgb(var(--white-color));
}

.footer a:not(.circle-icon):hover {
    color: rgb(var(--primary-color));
}

.footer .circle-icon {
    color: rgb(var(--white-color));
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-bottom p,
.footer-bottom a {
    padding: .5rem .2rem;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* WebbEss Stamp  */
.footer .footer-bottom .webbess-stamp {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

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

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

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

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

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