/* Magnusson & Kennberg Varumarkesutveckling AB - FACELIFT  */

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

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

    /* 	Colors */
    --primary-color: 122, 48, 49;
    --secondary-color: 164, 164, 164;
    --gray-color: 85, 85, 85;
    --gray-light-color: 238, 238, 238;
    --gray-dark-color: 250, 250, 250;
    --white-color: 255, 255, 255;

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

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

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

/* Specifika paddings */
.p-2 {
    padding: 2rem;
}

.pl-0 .section-block {
    padding-left: 0;
}

.pr-0 .section-block {
    padding-right: 0;
}
.pb-0 .section-block {
    padding-bottom: 0;
}

.pt-0 .section-block {
    padding-top: 0;
}

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

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* margins */
.mb-2 {
    margin-bottom: 2rem;
}

/* Specifika bredder */
.width-1000 .section-block-wrapper {
    max-width: 100rem;
}

.width-1500 .section-block-wrapper {
    max-width: 150rem;
}

.width-1600 .section-block-wrapper {
    max-width: 160rem;
}

.mw-none .section-block-wrapper {
    max-width: unset;
}

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

@media only screen and (max-width: 980px) {
    .col-1 {
        padding-top: 1rem;
    }
}

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

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

/* Rubriker */
.section-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
    padding-bottom: 2rem;
    text-align: center;
}

.small-title {
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.text-label {
    font-size: var(--base-size);
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: .4rem;
    padding-bottom: 2rem;
    text-shadow: none;
    font-style: normal;
    text-align: center;
    font-weight: 400;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 300;
}

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

/* Ovriga klasser */
.whitespace {
    white-space: nowrap;
}

.no-wrap {
    word-break: break-all;
}

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

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}
.justify-center{
    justify-content: center;
}
/* List-circle */
.list-circle {
    padding: 0;
    list-style: none;
}

.list-circle li::before {
    content: '\f111';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}

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

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

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

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

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

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

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

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
}

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

.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 2.2rem;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

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

.btn-primary-border:hover {
    border: 1px solid rgb(var(--secondary-color));
}

.btn-white {
    color: rgb(var(--primary-color));
    border: rgb(var(--secondary-color));
    background-color: rgb(var(--white-color));
}

.btn-white:hover {
    color: rgb(var(--secondary-color));
}

.btn-primary-filled2,
.ContactSubmit {
    padding: 1rem;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

.btn-primary-filled2:hover,
.ContactSubmit:hover,
.ContactSubmit:focus {
    background: rgb(var(--secondary-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
}

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

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 4rem;
    font-weight: 500;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

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

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

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


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

.bg-secondary {
    background-color: rgb(var(--secondary-color));
}
.bg-white {
    background-color: rgb(var(--white-color));
}
.bg-primary *,
.bg-secondary * {
    color: rgb(var(--white-color));
}

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

.br-1{
    border-radius: 0.5rem;
}
/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

.split-image {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.split-image-text img {
    object-fit: contain !important;
}

@supports (object-fit: cover) {
    .split-image {
        min-height: unset !important;
    }

    .split-image img {
        position: static;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

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

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

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

/* speciella paddings */
.split-wrapper .pl-0 {
    padding-left: 0;
}

.split-wrapper .pr-0 {
    padding-right: 0;
}

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

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

    .split-content {
        width: 100%;
    }

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

    .pl-0 .section-block {
        padding: 2rem;
    }

    .pr-0 .section-block {
        padding: 2rem;
    }
}

@media only screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

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

    /* Speciella klasser */
    .pl-0 .split-content {
        padding-top: 2rem;
        padding-left: 2rem;
    }

    .pr-0 .split-content {
        padding-right: 2rem;
    }
}
/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

@media only screen and (max-width: 750px) {
    /* Bredder */
    .cards-wrapper.w-50 .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 1-1 */
@media only screen and (max-width: 380px) {
    .card-1-1 .card-body a {
        display: block;
    }
}

/* Parallax
========================================================================== */
.parallax {
    max-width: 100% !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 60rem;
}

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

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

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

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

/* Knappar */
.popup-button {
    position: relative;
    width: 7.5rem;
    height: 7.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;
    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: 8rem;
    max-width: 45rem;
    max-height: calc(100vh - 12rem);
    padding: 4rem;
    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;
    }
}



/* Header / Navigation
========================================================================== */
/* header logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
}

.header-logo img {
    max-width: 20rem;
}

/* nav */
nav.mainmenu a {
    font-weight: 500;
    font-size: 1.35rem;
    color: rgb(var(--gray-color));
}

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

.header-cta-wrapper .circle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 .5rem;
    color: rgb(var(--white-color));
    border-radius: 50%;
    background: rgb(var(--primary-color));
    transition: all .4s ease;
}

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

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

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

    .header-cta-wrapper li:nth-child(3),
    .header-cta-wrapper li:nth-child(4) {
        display: none;
    }
}

@media only screen and (max-width: 375px) {
    .header-cta-wrapper {
        display: none;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    min-height: 80vh;
    background: linear-gradient(10deg, rgba(0, 0, 0, .2) 0%, rgb(136 53 53 / 50%) 0%, rgb(0 0 0 / 20%) 100%);
    overflow: hidden;
}

.top-section .section-block {
    width: 80%;
    margin: 0 auto;
}

.top-section h1 {
    text-align: center;
    font-size: 5.5rem;
    color: rgb(var(--white-color));
    padding-bottom: 1rem;
    max-width: 100rem;
    font-weight: 400;
    margin: 0 auto;
}

.top-section p {
    color: rgb(var(--white-color));
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

.top-section .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.top-section .btn-wrapper a {
    margin: 1.5rem;
}

.top-section span {
    color: rgb(var(--white-color));
    font-weight: bolder;
}

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

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

@media only screen and (max-width: 680px) {
    .top-section .section-block {
        width: 90%;
    }

    .top-section .btn-wrapper a {
        margin: 1%;
    }
}

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

/* Puff pa startsidan
========================================================================== */
.circle-puff {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    width: 20rem;
    height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transform: rotate(10deg);
    text-decoration: none;
    transition: all .2s ease;
}

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

.circle-puff * {
    text-align: center;
    color: rgb(var(--white-color));
}

.circle-puff .small-title {
    font-size: 1.4rem;
}

.circle-puff p {
    font-size: 1.3rem;
    padding: 0;
}

.circle-puff .arrow-link {
    padding: 0;
}

@media only screen and (max-width: 1000px) {
    .circle-puff {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem 2rem 0 auto;
    }
}

/* Startsida: Om oss
========================================================================== */
.about .text-label,
.about .section-title {
    text-align: left;
}

/* Startsida: Tjanster
========================================================================== */
.service-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 8rem;
}

.service-wrapper a {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 20%;
    border-radius: 3px;
    margin-bottom: 2rem;
    background-color: rgb(var(--white-color));
    overflow: hidden;
    transition: all .4s ease;
}

.service-wrapper a:hover {
    text-decoration: none;
    background-color: rgb(var(--primary-color));
    transition: all .8s ease;
}

.service-wrapper a:hover * {
    color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
}

/* 1:a rutan */
.service-wrapper a:nth-child(1) {
    background-color: rgb(var(--primary-color));
}

.service-wrapper a:nth-child(1) * {
    color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
}

/* Slut 1:a rutan */

.service-wrapper .icon-wrapper {
    width: 100%;
    padding: 5rem 4rem 2rem;
}

.service-wrapper i {
    font-size: 5rem;
    color: rgb(var(--primary-color));
}

.service-wrapper .text-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 4rem 5rem;
}

.service-wrapper h2 {
    border-bottom: 1px solid rgb(var(--primary-color));
    padding: 0 0 1rem;
    margin-bottom: 2rem;
}

.service-wrapper p {
    font-size: 1.6rem;
}

.service-wrapper .arrow-link {
    width: 100%;
    color: rgb(var(--primary-color));
}

@media only screen and (max-width: 1260px) {
    .service-wrapper .icon-wrapper {
        padding: 3rem 2rem 1rem;
    }

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

@media only screen and (max-width: 1180px) {
    .service-wrapper a {
        width: 48%;
        max-width: 60rem;
        margin: 0 auto 2rem;
    }
}

@media only screen and (max-width: 680px) {
    .service-wrapper a {
        width: 100%;
    }

    .service-wrapper {
        margin-top: 0;
    }
}

/* Tjanster Roda traden
========================================================================== */

.workshop-menu .varumarke {
    display: none;
}

.varumarke-site {
    display: none !important;
}

.workshop-menu .varumarke-site {
    display: contents !important;
}

/* Startsida: Parallax 
========================================================================== */
.parallax-start {
    background-image: url('/assets/images/magnusson-kennberg-office-bg-2000px.jpg');
}

/* Startsida: Nyheter
========================================================================== */
.news-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    margin-top: 8rem;
}

.news-wrap .news-box {
    width: calc(100% / 2 - 4rem);
    margin: 1.5%;
    display: inline-block;
    text-align: left;
    padding: 0;
    background-color: transparent;
    overflow: hidden;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    position: relative;
    text-decoration: none !important;
}

.news-wrap .news-box:hover {
    background-color: rgb(var(--white-color));
}

.news-wrap .news-text {
    padding: 3rem 2rem;
}

.news-wrap .news-image {
    height: 35rem;
    overflow: hidden;
    width: 100%;
}

.news-wrap .news-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.news-wrap .news-image img.contain {
    object-fit: contain;
}

.news-wrap .arrow-link {
    padding: 0rem 1rem 1rem 2rem;
}

.news-wrap .small-title {
    padding-bottom: 0.5rem;
}

.news-wrap a {
    font-weight: 400;
}

/* Slick knappar */
.news-wrap .slick-arrow {
    position: absolute;
    top: 50%;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    background-color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
}

.news-wrap .slick-arrow:not(.slick-disabled):hover,
.news-wrap .slick-arrow:not(.slick-disabled):focus {
    background-color: transparent;
}

.news-wrap .slick-arrow.slick-disabled {
    opacity: .5;
}

.news-wrap .slick-prev {
    left: -2.5rem;
}

.news-wrap .slick-next {
    right: -2.5rem;
}

/* Slick pilar */
.news-wrap .slick-prev:before,
.news-wrap .slick-next:before {
    color: rgb(var(--secondary-color));
    font-size: 2rem;
    font-family: 'Font Awesome 5 Pro';
}

.news-wrap .slick-prev::before {
    content: '\f104';
}

.news-wrap .slick-next::before {
    content: '\f105';
}

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

    /* Slick */
    .news-wrap .slick-arrow {
        top: -50px;
    }

    .news-wrap .slick-prev {
        left: 0rem;
    }

    .news-wrap .slick-next {
        left: 5rem;
    }
}

@media only screen and (max-width: 750px) {
    .news-wrap {
        flex-direction: column;
    }

    .news-wrap .news-text {
        padding: 1rem;
        padding-top: 2rem;
    }

    .news-wrap .news-box {
        width: 100%;
        margin: 0 0 3rem 0;
    }

    .news-wrap .arrow-link {
        padding: 0rem 1rem 1rem 1rem;
    }
}

/* Startsida: Instagram
========================================================================== */
.instagram {
    overflow: hidden;
}

.instagram .section-title {
    margin-bottom: 8rem;
}

.instagram .section-title a {
    font-size: 4.5rem;
    font-weight: 400;
}

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

/* Startsida: FAQ
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--gray-light-color));
    transition: .3s ease;
}

.accordion-item:hover,
.accordion-item.active {
    background: rgb(var(--primary-color));
    transition: all .4s ease;
}
.accordion-header:hover p, 
.accordion-item.active p  {
color: white;
}
.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

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

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

.accordion-body {
    padding: 0 2rem 2rem;
}
.accordion-item p {
    color: rgb(var(--black-color));
}
.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}


/* Startsida: Kontakt
========================================================================== */
#kontakt .section-block {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 1;
    position: relative;
    background-image: linear-gradient(to bottom, #fafafa 50%, #eeeeee 50%);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #7a3031;
    width: 85%;
    padding: 5rem 4rem;
    border-radius: 3px;
    text-align: left;
    color: rgb(var(--white-color));
    margin: 0 auto;
}

.cta-wrapper .btn-wrapper {
    align-self: center;
    margin: 0;
    min-width: 22rem;
}

.cta-wrapper .btn-wrapper .btn {
    margin-left: 4rem;
}

#kontakt .section-title {
    padding-bottom: 1rem;
    font-size: 3rem;
    text-align: left;
}

.cta-wrapper .text-label {
    text-align: left;
}


@media only screen and (max-width: 860px) {
    .cta-wrapper {
        flex-wrap: wrap;
    }

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

    .cta-wrapper .btn-wrapper .btn {
        margin-left: 0rem;
    }

}

@media only screen and (max-width: 550px) {
    .cta-wrapper {
        padding: 3rem 2rem;
        width: 95%;
    }

    #kontakt .section-title {
        font-size: 2.4rem;
    }

}

/* ==========================================================================
Undersidor - generellt
========================================================================== */

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    background: linear-gradient(90deg, rgb(58 51 51 / 61%) 0%, rgb(29 11 11 / 47%) 0%, rgb(156 8 8 / 23%) 100%);
}

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

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

@supports (object-fit: cover) {
    .bg-image-wrapper img {
        position: static;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Text i top-section */
.bg-image * {
    color: rgb(var(--white-color));
}


/* ==========================================================================
Undersida: ServiceDesign 
========================================================================== */

/* Vilken karaktar 
========================================================================== */
.karaktar .section-title {
    margin-bottom: 8rem;
}

.product-wrap {
    display: flex;
    flex-wrap: wrap;
}

.product-box {
    width: 21.333%;
    margin: 1.5%;
    padding: 0;
    text-align: left;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.product-box .object-fit-wrapper {
    height: 42rem;
}

.product-text {
    z-index: 5;
    position: relative;
    width: 90%;
    margin: -9rem auto 0;
    padding: 3.5rem 1.5rem;
    border-radius: 3px;
    background-color: rgb(var(--primary-color));
}

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

/* Kommunikationsplattform 
========================================================================== */
.plattform .section-title {
    font-size: 3.2rem;
}

.plattform .small-title {
    font-size: 2rem;
    margin-bottom: 0rem;
    margin-top: 1rem;
}

@media only screen and (max-width:1280px) {
    .product-text {
        width: 90%;
        padding: 2rem;
    }

    .product-box {
        width: 30.333%;
    }
}

@media only screen and (max-width: 1024px) {
    .product-box {
        width: 49.333%;
        margin: 0 0 4rem;
    }

    .product-box .object-fit-wrapper {
        height: unset;
    }

    .product-box img {
        margin: 0 auto;
        display: block;
    }
}

@media only screen and (max-width: 640px) {
    .product-box {
        width: 100%;
        margin: 0 0 4rem;
    }

    .plattform .section-title {
        font-size: 2.6rem;
    }
}


/* ==========================================================================
Undersida: Bestall boken
========================================================================== */

/* Formular
========================================================================== */
.bestall-boken .ContactForm h3 {
    padding-top: 10px;
}

.bestall-boken .ContactForm p {
    color: rgb(var(--primary-color));
    font-size: 16px;
    font-weight: 600;
}

.bestall-boken span {
    font-size: 1.2rem;
}

.bestall-boken .ContactForm {
    padding: 0rem 4rem 4rem 4rem;
}

.bestall-boken .ContactForm div {
    width: 100%;
}

.bestall-boken .ContactFormMessage {
    display: none;
}

.bestall-boken .ContactForm input.ContactSubmit {
    background: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
    border: 2px solid rgb(var(--primary-color));
    width: 22rem;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    color: rgb(var(--white-color));
    display: block;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.bestall-boken .ContactForm input.ContactSubmit:hover {
    background: rgb(var(--secondary-color));
    border: 2px solid rgb(var(--secondary-color));
    cursor: pointer;
}


@media only screen and (max-width: 680px) {
    .bestall-boken .ContactForm {
        padding: 0rem 2rem 2rem 2rem;
    }
}

/* ==========================================================================
Undersida: Bestall boken
========================================================================== */
.section-form .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 80rem;
    padding: 1rem;
}

.section-form .ContactForm div {
    width: 49%;
}

.section-form .ContactForm .textarea-field,
.section-form .ContactForm .submit-button-container {
    width: 100%;
}


.section-form .ContactForm input[type="text"],
.section-form .ContactForm textarea {
    border: none;
}

.section-form .ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    background-color: #f3f5f5;
}

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

/* ==========================================================================
Undersida: Det langsiktiga varumarket
========================================================================== */
.section-newsletter .col-wrapper {
    display: flex;
    justify-content: center;
}

.section-newsletter .section-title {
    padding-top: 3rem;

}

#mc_embed_signup {

    clear: left;
    font: 14px Helvetica, Arial, sans-serif;
    max-width: 50rem;
}

#mc_embed_signup input {
    border: 1px solid rgb(var(--gray-color));
}

#mc-embedded-subscribe {
    clear: both;
    width: 5rem !important;
    display: block !important;
    margin: 1em 0 1em 5% !important;
}

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


/* Footer top */
.footer-top {
    display: grid;
    gap: 2rem;
    grid-template-columns: auto auto auto auto;
    padding: 10rem 5rem 5rem;
}

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

.footer .footer-heading {
    color: rgb(var(--primary-color));
    font-size: 1.8rem;
}

.footer p,
.footer a,
.footer li {
    color: rgb(var(--black-color));
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.footer li {
    font-weight: 600;
}

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

.footer a {
    text-decoration: none;
    transition: .2s ease;
}

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

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

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

.footer .social-list {
    display: flex;
    color: rgb(var(--white-color));
}

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

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

    /* Footer top */
    .footer-top {
        grid-template-columns: auto auto;
    }
}

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

    /* Footer top */
    .footer-top {
        grid-template-columns: auto;
        padding: 10rem 2rem 5rem;
    }

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

    .footer .social-list {
        margin-bottom: 1rem;
        ;
    }
}