/* Långpannan */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 97, 149, 137;
    --secondary-color: 206, 43, 55;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 239, 223, 206;
    --gray-light-color: 248, 243, 237;
    --white-color: 255, 255, 255;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 980;
    --mobile-menu-height: 7rem;
    --mobile-menu-bg: var(--gray-color);
    --menu-color: var(--black-color);
} 

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

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

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

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

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

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

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

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

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

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

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

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

.section-title {
    padding-bottom: .5em;
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 1.2;
    color: rgb(var(--secondary-color));
    font-family: 'Handlee', sans-serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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;
}

/* Pulse btn */
.pulse-btn,
.ContactSubmit {
    box-shadow: 0 0 0 0 rgb(var(--primary-color));
    -webkit-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 20px rgba(var(--primary-color), 0);
    }
}

@-moz-keyframes pulsing {
    to {
        box-shadow: 0 0 0 20px rgba(var(--primary-color), 0);
    }
}

@-ms-keyframes pulsing {
    to {
        box-shadow: 0 0 0 20px rgba(var(--primary-color), 0);
    }
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 20px rgba(var(--primary-color), 0);
    }
}

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Citat-tecken */
.bg-quote {
    position: relative;
}

.bg-quote::after {
    content: '';
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 10rem;
    height: 8.5rem;
    background-image: url(/assets/images/graphics/quote.svg);
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(8deg);
}

.card-item.bg-quote .card-body,
.card-item.bg-quote .card-footer {
    z-index: 1;
    position: relative;
}

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

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

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

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

.parallax .section-block {
    min-height: 40rem;
    background-color: rgb(var(--black-color), .4)
}

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

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

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    border-radius: 1rem;
    text-decoration: none;
    overflow: hidden;
}

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

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

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

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 2-1 */
.card-2-1 .card-item {
    border: 1px solid rgb(var(--gray-color));
    transition: .3s ease;
}

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

.card-2-1 .card-header {
    margin-bottom: 2rem;
    font-size: 5rem;
}

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

.card-2-2 .icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    margin: 0 2rem 0 0;
}

.card-2-2 .icon-wrapper i {
    font-size: 2.5rem;
}

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

.card-2-2 a.card-item p {
    transition: .2s ease;
}

.card-2-2 a.card-item:hover p {
    color: rgb(var(--primary-color));
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 25rem;
}
/* Card 3-2 */
.card-3-2 .image-wrapper {
    height: 45rem;
}
@media only screen and (max-width: 580px) {
    .card-3-1 .image-wrapper {
        height: 20rem;
    }
}

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

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

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

.split-image {
    width: 50%;
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
    box-shadow: 0 0 20px rgb(var(--black-color), .1);
    border-radius: 1rem;
}

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

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

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

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: 70rem;
    max-height: 90vh;
    padding: 4rem;
    border-radius:2rem;
    overflow: auto;
    transform: translate(-50%,-50%);
    background: rgb(var(--white-color));
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
    color: rgb(var(--black-color));
  }

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


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

/* Logo */
.header-logo {
    flex: 1 1 0px;
}

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

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

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

header:not(.mobile-menu) .TemplateMenu>li>ul {
    border: 1px solid rgb(var(--secondary-color));
    border-top: none;
}

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

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

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

    /* Header logo */
    .header-logo a {
        font-size: 1.6rem;
    }

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

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    overflow: visible;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(50% + 50.00px) calc(100% - 50px), 50% 100%, calc(50% - 50.00px) calc(100% - 50px), 0 calc(100% - 50px));
}

.top-section .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    background-color: rgb(var(--black-color), .5);
}

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

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

.top-section .section-title {
    font-size: 6rem;
    font-weight: 600;
}

.top-section p {
    max-width: 60rem;
    margin: 0 auto;
}

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

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

@media only screen and (max-width: 580px) {
    .top-section {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(50% + 30px) calc(100% - 30px), 50% 100%, calc(50% - 30px) calc(100% - 30px), 0 calc(100% - 30px));
    }

    .top-section .section-block {
        min-height: 75vh;
    }

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

/* Erbjudande
========================================================================== */
.offer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
}

.offer-wrapper .text-block {
    align-self: center;
    width: calc(100% - 20rem);
    padding-left: 5rem;
}

.procentage-badge {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    top: -4rem;
    bottom: 0;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    box-shadow: 10px 10px 10px rgb(var(--black-color), .15);
    background-image: linear-gradient(-177deg, transparent 17px, rgb(var(--white-color)) 17px);
    transform: rotate(10deg);
}

.procentage-badge::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 51%;
    display: block;
    width: 93px;
    height: 12px;
    border-radius: 50%/100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: rotate(3deg) translateX(-50%);
    background: rgb(var(--white-color));
    box-shadow: inset 2px 3px 3px rgba(0, 0, 0, 0.1), 6px 4px 2px rgba(0, 0, 0, 0.1), 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.procentage-badge p {
    padding: 0;
    font-size: 9rem;
    font-weight: 600;
}

.procentage-badge i {
    font-size: 9rem;
}

@media only screen and (max-width: 980px) {
    .procentage-badge {
        width: 15rem;
        height: 15rem;
    }

    .procentage-badge::after {
        width: 83px;
    }

    .offer-wrapper .text-block {
        width: calc(100% - 15rem);
        padding-left: 3rem;
    }
}

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

@media only screen and (max-width: 580px) {
    .procentage-badge {
        width: 10rem;
        height: 10rem;
    }

    .procentage-badge::after {
        width: 70px;
    }

    .procentage-badge p,
    .procentage-badge i {
        font-size: 5rem;
    }

    .offer-wrapper .text-block {
        width: calc(100% - 10rem);
        padding-left: 2rem;
    }

    .offer-wrapper .section-title {
        font-size: 1.6rem;
    }
}

/* Referensjobb
========================================================================== */
.section-scroll {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 5rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

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

.scroll-wrapper.cards-wrapper .card-item {
    height: auto;
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

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

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--white-color));
}

.scroll-wrapper .slick-next {
    right: 2rem;
}

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


/* CTA
========================================================================== */
.section-cta {
    background-image: url('/assets/images/mat-2000px.jpg');
}

.section-cta .section-block-wrapper {
    justify-content: center;
    align-items: center;
}

.section-cta .col-0 {
    position: relative;
    max-width: 45rem;
    padding: 2rem 4rem 4rem;
    border-radius: 1rem;
    background: rgb(var(--white-color));
    box-shadow: 11px 10px 20px rgb(var(--black-color), .1);
}

.section-cta .col-1 {
    max-width: 60rem;
    padding: 6rem 3rem 6rem 6rem;
    background: rgb(var(--gray-light-color));
}

/* Formular */
.section-cta .ContactForm {
    margin-top: 2rem;
}

.ContactForm p {
    font-weight: 600;
    font-size: 1.4rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 5px;
    background: rgb(var(--gray-light-color));
}

@media screen and (max-width: 1250px) {
    .section-cta .col-1 {
        padding: 5rem 3rem 5rem 4rem;
    }
}

@media screen and (max-width: 980px) {
    .section-cta .section-block-wrapper {
        flex-direction: column-reverse;
    }

    .section-cta .col-0 {
        width: 60rem;
        max-width: 100%;
        padding: 2rem 4rem 4rem;
        border-radius: 0 0 5px 5px;
    }

    .section-cta .col-1 {
        width: 60rem;
        max-width: 100%;
        padding: 3rem 4rem;
        border-radius: 5px 5px 0 0;
    }
}

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

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

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

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

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

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

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

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

/* ==========================================================================
Undersida: Meny/Prislista
========================================================================== */
.menu-wrapper {
    border: 3px solid rgb(var(--primary-color));
}

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

.tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -3rem;
}

.tags-list .tag {
    padding: 1rem 3rem;
    font-size: 1.9rem;
    cursor: pointer;
    transition: .2s ease;
}

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

/* Menyn */
.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 8rem 2rem 10rem
}

.tab-col {
    width: 100%;
}

.tab-col.w-50 {
    width: calc(50% - 4rem);
    margin: 0 2rem;
}

.tab-col .tab-item {
    max-width: 50rem;
    margin: 0 auto;
}

.tab-col .tab-item:not(:last-of-type) {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}


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

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        margin: -2.4rem auto;
        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(--black-color));
    }

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

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

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

    .tags-wrapper .tag {
        padding: 1rem 2rem;
        letter-spacing: normal;
        text-transform: initial;
    }
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
/* Timeline */
.timeline-wrapper {
    position: relative;
    margin-top: 5rem;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgb(var(--gray-light-color));
}

.timeline-item {
    position: relative;
    width: 40%;
    padding: 3rem 0;
}

.timeline-item.item-left {
    margin: 0 0 0 auto;
}

.timeline-item:before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 122%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgb(var(--primary-color));
    border: 4px solid rgb(var(--white-color));
    transform: translateY(-50%);
}

.item-left.timeline-item:before {
    left: -27.6%;
}

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

    .timeline-item {
        width: 100%;
        padding: 5rem 7rem;
    }

    .timeline-item:before,
    .item-left.timeline-item:before {
        left: -.5rem;
    }
}

@media only screen and (max-width: 680px) {
    .timeline-wrapper {
        margin-top: 3rem;
    }

    .timeline-item {
        padding: 2rem 0 2rem 4rem;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-map {
    font-size: 0;
}

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

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

.footer-menu {
    width: 19%;
}

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

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
    color: rgb(var(--primary-color));
}

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

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

.footer-top a {
    transition: .2s ease;
}

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

.footer-top em {
    width: 2rem;
    margin-right: 5px;
    font-size: 1.4rem;
    text-align: center;
}

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

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

.social-menu a {
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    padding: 5px 10px;
    border-radius: 2rem;
    line-height: 1;
    text-decoration: none;
    transition: all .3s ease;
}

.social-menu a:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
    transition: all .3s ease;
}

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

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

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

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

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

    /* Footer top */
    .footer-menu {
        width: 48%;
        margin: 0 0 5rem;
    }

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

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

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

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

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

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

    /* Footer top */
    .footer-menu {
        margin: 0 0 3rem;
    }

    /* Social Menu */
    .social-menu {
        justify-content: center;
    }

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

    .social-menu a {
        font-size: 1.2rem;
    }

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

    .footer-bottom p,
    .footer-bottom a {
        font-size: 1.3rem;
    }

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