/*  Stavegren & Partners Ekonomikonsult AB */

/* Typsnitt - Stozl Medium och Neue Haas Grotesk Text Medium och Roman */
@import url("https://use.typekit.net/nif6gdu.css");

/* 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: 10rem;

    /* 	Colors */
    --black-color: 34, 34, 34;
    --white-color: 255, 255, 255;
    --gray-light-color: 242, 242, 242;

    --accent-skogsgron-color: 53, 69, 51;
    --accent-apple-color: 125, 148, 119;
    --accent-papper-color: 200, 193, 174;
    --accent-mjolk-color: 250, 249, 246;
    --accent-bla-color: 178, 197, 197;
    --accent-rost-color: 167, 113, 51;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 10000000;
    --mobile-menu-height: 10rem;
    --mobile-menu-bg: 255, 255, 255;

    /* Other */
    --box-shadow-soft: 0 1rem 3.5rem rgba(var(--black-color), .15);
    --box-shadow-sharp: 0 .5rem 1rem rgba(var(--black-color), .15);
}
 
/* Layout 
========================================================================== */
.section-block {
    padding: 18rem 5rem;
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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

    .sm-hidden {
        display: none;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: neue-haas-grotesk-text, sans-serif;
    color:rgb(var(--black-color));
}

/* Rubriker */
.section-title {
    font-size: 4rem;
    padding-bottom: 3rem;
    font-family: stolzl, sans-serif;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    line-height: 5.2rem;
    color: rgb(var(--black-color));
}

.medium-title {
    font-family: neue-haas-grotesk-text, sans-serif;
    padding-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.6rem;
}

.small-title {
    padding-bottom: .5rem;
    font-weight: 500;
    font-size: var(--base-size);
    line-height: 1.4;
    color: rgb(var(--black-color));
}

.ingress {
    padding-bottom: .5rem;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.4;
}

.text-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
    letter-spacing: .1em;
    font-weight: 400;
    color: rgb(var(--black-color));
}

/* Brodtext & lankar */
p {
    font-weight: 400;
    color: rgb(var(--black-color));
}

a {
    color: rgb(var(--black-color));
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

p a {
    font-size: inherit;
}

/* Övriga klasser */
.text-lg {
    font-size: 2rem;
}

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

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

.text-block {
    max-width: 90rem;
}

.text-medium {
    font-weight: 500;
}

.text-block-center {
    max-width: 80rem;
    margin: 0 auto;
}

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

.mw-60 {
    max-width: 60rem;
}

.mw-50 {
    max-width: 50rem;
}

.m-0-auto {
    margin: 0 auto;
}

/* Listor */
ul.two-columns {
    columns: 2;
    column-gap: 3rem;
}

li.text-lg {
    line-height: 2.4em;
}

.text-box-center{
    justify-content: center;
    margin: auto;
}

@media only screen and (max-width: 1000px) {
    /* Rubriker */
    .section-title {
        font-size: 3rem;
        padding-bottom: 2rem;
        line-height: 3.2rem;
    }

    .medium-title {
        padding-bottom: 1rem;
        font-size: 1.8rem;
        line-height: 2.6rem;
    }

    .ingress {
        font-size: 1.8rem;
    }

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

@media screen and (max-width: 580px) {
    ul.two-columns {
        columns: 1;
    }
}

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

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

.btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 1rem;
}


/* Knappar */
.btn {
    min-width: 18rem;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 4rem;
    border-width: 2px;
    text-align: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    text-decoration: none;
}

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

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    color: rgb(var(--black-color));
    font-weight: 500;
}

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

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

.arrow-link.arrow-down:hover::after {
    transform: rotate(90deg) translateY(-1rem);
}

/* 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(--primary-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: transparent;
    transition: .3s ease;
}

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

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

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

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 3rem;
    font-weight: 100;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-1rem); }
    60% { transform: translateY(-.5rem); }
}

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

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

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

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

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

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

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

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

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

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

.bg-accent-is {
    background-color: rgb(var(--accent-bla-color));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 580px) {
    .cards-wrapper.w-25-0 .card-item,
    .cards-wrapper.w-25 .card-item  {
        width: 100%;
    }
}

/* Cards 1 */
.cards-1 .card-item {
    background-color: rgb(var(--accent-apple-color));
    padding: 7rem 3rem 4rem;
}

.cards-1 .card-item * {
    color: rgb(var(--white-color));
}

.cards-1 .small-title {
    text-transform: uppercase;
    letter-spacing: .2em;
    padding-bottom: 1.5rem;
}

.cards-1 .card-footer {
    padding: 1rem 0 0;
    text-align: right;
}

/* Card 3-3 */
.card-3-3 .card-body {
    z-index: 1;
    position: relative;
    width: 85%;
    margin: -3rem auto 0;
}

.card-3-3 .card-body-full {
    width: 100%;
}

.card-3-3 .contact-item i {
    margin-right: 1rem;
}

.card-3-3 a {
   text-decoration: none;
}

@media only screen and (max-width: 480px) {
    .card-3-3 .card-body {
        z-index: 1;
        position: relative;
        width: 90%;
        margin: -3rem auto 0;
    }
}

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    background: transparent;
    overflow: hidden;
    position: relative;
    transition: .5s ease;
    display: flex;
    flex-direction: column;
}

.cards-7 a.card-item:hover {
    background-color: rgb(var(--accent-mjolk-color));
}

.cards-7 .image-wrapper {
    position: relative;
}

.cards-7 .image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.cards-7 .image-wrapper.ratio-big {
    padding-top: 62.5%;
}

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

.cards-7 .medium-title {
    font-size: 2rem;
    padding-bottom: 2rem;
}

/* Logos 1 */
.logos-1 .card-item {
    text-align: center;
    display:flex;
    align-items: center;
    justify-content: center;
}

.logos-1 img {
    width: auto;
    max-height: 20rem;
    transition: .3s ease;
    object-fit: contain;
    margin: 0 auto;
    padding: 2rem;
}

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

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

@media only screen and (max-width: 850px) {
    .logos-1 .card-item {
        background-color: transparent;
    }
}

@media only screen and (max-width: 350px) {
    .logos-1 .card-item {
        padding: 0;
    }
}

/* Gallery */
.cards-gallery .image-wrapper {
    height: 45rem;
    overflow: hidden;
}

/* 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-content {
    position: relative;
    z-index: 1;
    width: 50%;
    padding: 8rem;
    overflow: hidden;
    transition: all .3s ease;
}

/* speciella klasser */
.split-content.space-between {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

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

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

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

.split-wrapper.justify-between {
    justify-content: space-between;
}

/* Specifika bredder */
.split-wrapper .w-40 {
    width: 40%;
}

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

/* Speciella paddings */
.split-wrapper .pb-0 {
    padding-bottom: 0;
}

.split-content.pl-0 {
    padding-left: 0;
}

.split-content.pt-0 {
    padding-top: 0;
}

/* Speciella margins */
.split-wrapper .ml--5 {
    margin-left: -5rem;
}

.split-wrapper .mr--5 {
    margin-right: -5rem;
}

.split-wrapper .ml--10 {
    margin-left: -10%;
}

.split-wrapper .mr--10 {
    margin-right: -10%;
}

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

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

.split-video .fancybox-video {
    display: none;
}

/* Split image med grid */
.split-images-grid {
    justify-content: space-between;
    padding-right: 1rem;
}

.split-images-grid .split-content {
    border-radius: 2px;
    width: calc(50% - 1rem);
}

.split-image-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    gap: 1rem;
    width: 50%;
    margin: -1rem 0;
}

.split-image-grid .grid-image {
    position: relative;
    width: 100%;
}

.split-image-grid>.grid-image:nth-child(1) {
    grid-column: 1 / 3;
    -ms-grid-column: 1;
    grid-row: 1 / 3;
    -ms-grid-row: 1;
}

.split-image-grid>.grid-image:nth-child(2) {
    grid-column: 3 / 3;
    -ms-grid-column: 2;
    grid-row: 1 / 1;
    -ms-grid-row: 1;
}

.split-image-grid>.grid-image:nth-child(3) {
    grid-column: 3 / 3;
    -ms-grid-column: 2;
    grid-row: 2 / 2;
    -ms-grid-row: 2;
}

.split-image-grid .split-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

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

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

    .split-wrapper.mobile-reverse {
        flex-direction: column-reverse;
    }

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

    .split-image,
    .split-video,
    .split-image-grid {
        width: 100%;
    }

    /* Split image med grid */
    .split-images-grid .split-content {
        width: 100%;
        padding-bottom:3rem;
    }

    .split-image-grid {
        width: 100%;
        margin: 0;
    }

    .split-image-grid .split-image {
        position: relative;
    }
}

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

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

    .split-content.space-between {
        padding: 5rem 2rem;
    }

    /* Split image med grid */
    .split-images-grid .split-content {
        padding: 0 0 3rem;
    }

    .split-image-grid {
        gap: .5rem;
    }
}

/* Parallax
========================================================================== */
.parallax {
    min-height: 55vh;
    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;
    }
} 

/* Grafiska element
========================================================================== */
.br-2 {
    border-radius: 2rem;
}

.box-shadow-soft {
    box-shadow: var(--box-shadow-soft);
}

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


/* Aspect ratio */
.aspect-ratio {
    position: relative;
    overflow: hidden;
}

.aspect-2-3 {
    padding-top: 66.67%;
}

.aspect-3-2 {
    padding-top: 150%;
}

.aspect-4-3 {
   padding-top: 133%;
}

.aspect-1-1 {
    padding-top: 100%;
}

.aspect-3-4 {
    padding-top: 75%;
}

.aspect-5-4 {
    padding-top: 125%;
}

.aspect-5-6 {
    padding-top: 83%;
}

/* Bildjustering */
.image-wrapper img.op-top {
    object-position: top;
}

.image-wrapper img.op-center-20 {
    object-position: center 20%;
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0) 100%);
}


/* Header / Navigation
========================================================================== */
header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 160rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* header */
.mobile-menu {
    display: flex;
    align-items: center;
    order: 3;
}

.mobile-menu {
    background-color: transparent;
    transition: 0.3s ease;
}

.mobile-menu.scrolled {
    background-color: rgb(var(--white-color));
}

.openmenu {
    display: none;
}

/* header logo */
.header-logo {
    justify-self: center;
    order: 2;
    z-index: 0;
}

.header-logo img {
    min-width: 20rem;
    padding: 0.5rem 0;
}

/* nav */
.mobile-menu .mainmenu {
    padding: calc(var(--mobile-menu-height) * 2) 5rem 10rem;
    background-color: rgb(var(--accent-skogsgron-color));
    position: absolute;
}

.mobile-menu .Navigator .Padding {
    height: 100%;
}

.mobile-menu .TemplateMenu {
    min-height: 100%;
    max-width: 150rem;
    margin: 0 auto;
    flex-direction: column;
}

/* Bottom Nav */
.mobile-menu .TemplateMenu  .nav-bottom {
    align-self: flex-end;
    margin: auto 0 0;
    width: auto;
}

.nav-bottom .socials {
    display: flex;
    justify-content: flex-end;
    margin: 0 -.5rem 1rem 0;
}

.nav-bottom .socials .circle-icon {
    display: flex;
    padding: 0;
}

.nav-bottom .nav-submenu {
    padding: 0;
    text-align: right;
    background-color: transparent;
}

.nav-bottom .nav-submenu a {
    padding: 0;
    color: rgb(var(--white-color));
    font-weight: 400;
    line-height: 3.5rem;
}

/* Header innan scroll */
.IndexPage header:not(.scrolled) {
    --menu-color: rgb(var(--white-color));
}

.IndexPage header:not(.scrolled) .header-logo {
    filter: invert(1);
}

/* Hamburgare */
.hamburger.is-clicked {
    --menu-color: rgb(var(--white-color));
}

.mobile-menu .hamburger {
    order: 0;
    margin: 0 auto 0 -1rem;
}

/* Navigering */
.mobile-menu .TemplateMenu > li > a {
    font-size: 4rem;
    color: rgb(var(--white-color));
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
    line-height: 8rem !important;
}

.mobile-menu .TemplateMenu a:hover, 
.mobile-menu .TemplateMenu li.active > a {
    color: rgb(var(--accent-papper-color));
} 

.show-mobile {display: none;}

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

.header-cta-wrapper .btn {
    padding: 1rem 2rem;
}

.IndexPage header:not(.scrolled) .btn, 
.active-menu .btn {
    background-color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
    color: rgb(var(--black-color));
}

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

    .mobile-menu .mainmenu {
        padding: var(--mobile-menu-height) 3rem 10rem;
    }   

    .mobile-menu .TemplateMenu > li > a {
        font-size: 2.5rem;
        line-height: 6rem !important;
    }
}

@media only screen and (max-width: 990px) {
    .mobile-menu {
        --mobile-menu-height: 7rem;
        background-color: rgb(var(--white-color));
    }

    .IndexPage header:not(.scrolled).mobile-menu {
        background-color: transparent;
    }

    header .container {
        display: grid;
        grid-template-columns: 7rem 1fr 7rem;
    }

    .header-cta-wrapper {
       display: none;
    }

    .mobile-menu .header-logo a {
        margin: 0 auto;
        display: block;
        width: 12rem;
    }

    .mobile-menu .header-logo img, .mobile-menu.scrolled .header-logo img {
        width: 12rem;
        min-width: unset;
    }

    .show-mobile {display: block;}

}

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

    .mobile-menu .mainmenu {
        padding: var(--mobile-menu-height) 2rem 10rem;
    }

    .mobile-menu .TemplateMenu ul li a {
        font-size:1.6rem
    }
}

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

/* Top-section
========================================================================== */
.top-section .section-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
}

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

.top-section .split-gallery .slick-list {
    width: 100%;
    height: 100%;
}

.top-section .slick-track {
    height: 100%;
}

.split-gallery {
    position: relative;
}

.split-gallery::after {
    position: absolute;
    z-index: 1;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(/assets/images/knot-topsection.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: top left;
}

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

    .top-section .section-block {
        min-height: unset;
    }

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

    .top-section .split-gallery {
        width: 100%;
        height: 50vh;
    }

    .top-section .split-content {
        margin: -5rem 2rem 0;
        width: auto;
    }

    .top-section .split-gallery::before {
        position: absolute;
        z-index: 1;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(var(--black-color), .2);
    }
}

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

/* Sektion Services
========================================================================== */

.section-services .cards-wrapper {
    margin: 0 -2rem;
}

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

    .section-services .cards-wrapper {
        margin: 0;
    }
    
    .section-services .w-25 .card-item {
        width: calc(50% - 1rem);
        margin: 0 0 4rem;
    }

    .section-services .cards-wrapper.w-25 .card-item:not(:last-child) {
        margin-right: auto;
    }

    .section-services .cards-wrapper .card-item.w-50 {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    
    .section-services .w-25 .card-item {
        width: 100%;
    }

    .section-services .card-item p {
        font-size: 1.4rem;
    }
}

/* Sektion New name
========================================================================== */
@media only screen and (max-width: 1000px) {
    .expanding-split .split-content {
        width: calc(100% + 6rem);
        margin: 0 -3rem;
        padding: 10rem 3rem 13rem;
    }

    .expanding-split .split-image {
        position: relative;
        z-index: 2;
        margin: -3rem 0 0;
    }
}

@media only screen and (max-width: 580px) {
    .expanding-split .split-content {
        width: calc(100% + 4rem);
        margin: 0 -2rem;
        padding: 5rem 2rem 8rem;
    }
}

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

/* Intro Split
========================================================================== */

.intro-split .split-content {
    max-width: 55rem;
    padding: 0 4rem 0 0;
    overflow: unset;
}

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

/* Meny for undersidor
========================================================================== */
.page-nav {
    position: sticky;
    z-index: 3;
    top: var(--mobile-menu-height);
}

.EditMode .page-nav {
    position: static;
}

.page-nav .section-block {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.page-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-nav a {
    color: rgb(var(--white-color));
    margin: 0 2rem 0 0;
}

@media screen and (max-width: 990px) {
    .page-nav {
        top: 7rem;
    }
}

/* ==========================================================================
Undersida - Om oss 
========================================================================== */

/* Sektion Historia (.section-history)
========================================================================== */

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

    .section-history .split-image {
        width: 100%;
    }

    .section-history .split-content {
        margin: -5rem 2rem 0;
        width: auto;
    }
}

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

/* Sektion Vara kunder (.section-clients)
========================================================================== */
.section-clients {
    overflow: hidden;
}

.scroll-wrapper {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
}

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

.scroll-wrapper .card-item {
    margin: 0 2rem;
}

.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -7rem;
    width: 5rem;
    height: 5rem;
}

.scroll-wrapper .slick-prev {
    right: 50%;
}

.scroll-wrapper .slick-next {
    left: 50%;
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    font-size: 4rem;
}

@media only screen and (max-width: 1024px) {
    .scroll-wrapper {
        margin: 0 0 0 -1rem;
    }

    .scroll-wrapper .card-item {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
}

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

    .section-clients .section-block {
        padding-bottom: 10rem;
    }

    .scroll-wrapper {
        margin: 0 0 0 -.5rem;
    }

    .scroll-wrapper .card-item {
        margin: 0 .5rem;
    }
}

/* Sektion Kvalitetssakring (.section-quality)
========================================================================== */
/* Zoom Image Wrapper */
.zoom-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 30%;
    overflow: hidden;
}

.zoom-image-wrapper img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all .6s ease;
}

.zoom-image-wrapper img:hover {
    transform: translateY(-50%) scale(1.1);
    transition: all 4s ease;
}

.section-quality .text-wrapper {
    position: relative;
    margin: -15rem 0 0 10rem;
    padding: 5rem 7rem;
    max-width: 65rem;
}

.section-quality .text-wrapper.reverse {
    margin: -15rem 10rem 0 auto;
}

@media only screen and (max-width: 1024px) {
    /* Zoom Image Wrapper */
    .zoom-image-wrapper {
        width: calc(100% + 6rem);
        margin: 0 -3rem;
        padding-top: 40rem;
    }

    .section-quality .text-wrapper {
        margin: -5rem 3rem 0 5rem;
        padding: 3rem 5rem;
    }

    .section-quality .text-wrapper.reverse {
        margin: -5rem 5rem 0 auto;
    }
}

@media only screen and (max-width: 580px) {
    /* Zoom Image Wrapper */
    .zoom-image-wrapper {
        width: calc(100% + 4rem);
        margin: 0 -2rem;
        padding-top: 30rem;
    }

    .section-quality .text-wrapper {
        margin: -3rem 0 0;
        padding: 3rem 2rem;
    }

    .section-quality .text-wrapper.reverse {
        margin: -3rem 0 0;
    }
}

/* Sektion Certifikat (.section-certificate)
========================================================================== */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

@media only screen and (max-width: 750px) {
    
    .section-certificate .w-25 .card-item {
        width: calc(50% - 1rem);
        margin: 0 0 4rem;
    }

    .section-certificate .cards-wrapper.w-25 .card-item:not(:last-child) {
        margin-right: auto;
    }

    .section-certificate .cards-wrapper .card-item.w-50 {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    
    .section-certificate .w-25 .card-item {
        width: 100%;
    }

    .section-certificate .card-item .logo-wrapper {
        aspect-ratio: unset;
    }

    .section-certificate .card-item p {
        font-size: 1.4rem;
    }

}


/* ==========================================================================
Undersida - Tjanster
========================================================================== */

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

@media only screen and (max-width: 1000px) {
    .section-operation .cards-wrapper .card-item {
        width: 100%;
        margin: 0 0 5rem;
        overflow: visible;
    }

    .section-operation .cards-wrapper .image-wrapper {
        padding-top: 50%;
        margin: 0 -3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-operation .cards-wrapper .image-wrapper {
        margin: 0 -2rem;
    }
}


/* ==========================================================================
Undersida - Kontakt
========================================================================== */

/* Sektion Medarbetare (.section-coworkers)
========================================================================== */
.cards-wrapper.coworkers {
    display: grid;
    grid-template-columns: repeat(11, 3fr);
    gap: 7.5rem 1rem;
}

.cards-wrapper.coworkers .card-item {
    grid-column-end: span 6;
}

.coworkers .card-item .text-wrapper {
    padding: 2rem 0 0;
}

.coworkers .card-item a {
    word-break: break-all;
}

/* Kort utan bild */
.card-no-image {
    justify-content: center;
}

@media screen and (min-width: 751px) {

    .cards-wrapper.coworkers .card-item {
        grid-column-end: span 4;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 2),
    .cards-wrapper.coworkers .card-item:nth-child(8n + 1) {
        grid-column-end: span 4;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 3) {
        grid-column: 5 / span 5;
        grid-row-start: 2;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 4) {
        grid-column: 10 / span 3;
        grid-row-start: 2;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 5) {
        grid-column: 1 / span 5;
        grid-row-start: 3;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 6) {
        grid-column-start: 6;
        grid-row-start: 3;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 7) {
        grid-column-end: span 4;
        grid-row-start: 4;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 8) {
        grid-column: 9 / span 4;
        grid-row-start: 4;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 9) {
        grid-column: 1 / span 5;
        grid-row-start: 5;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 10) {
        grid-column: 6 / span 5;
        grid-row-start: 5;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 11) {
        grid-column: 5 / span 5;
        grid-row-start: 6;
        justify-content: flex-end;
    }

    .cards-wrapper.coworkers .card-item:nth-child(8n + 12) {
        grid-column: 10 / span 3;
        grid-row-start: 6;
    }

}

@media screen and (min-width: 751px) {
    .cards-wrapper.coworkers {
        gap: 2rem;
    }
}

@media screen and (min-width: 1025px) {
    .cards-wrapper.coworkers {
        gap: 4.5rem;
    }
}

@media screen and (max-width: 750px) {
    .coworkers .small-title {
        padding: 0 0 1rem;
    }

    .coworkers p {
        font-size: 1.4rem;
        padding: 0 0 .7em;
        line-height: 1.2;
    }

    .coworkers .text-sm {
        font-size: 1rem;
    }
}

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

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

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 12rem 0 7rem;
    border-bottom: 1px solid rgb(var(--accent-papper-color));
}

.footer-menu {
    padding: 0 7.5rem 0 0;
}

.footer-menu:last-of-type {
    margin: 0 0 0 auto;
    margin-top: 3rem;
    padding: 0;
}

.footer-menu .footer-logo {
    width: 15rem;
}

.footer-logo.mobile-logo {
    display: none;
}

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

.footer p,
.footer li,
.footer a {
    font-size: 1.4rem;
    line-height: 2;
    color: rgb(var(--white-color));
}

.footer .nav {
    text-transform: uppercase;
}


.footer a:hover:not(.circle-icon) {
    text-decoration: none;
}

.footer-menu .socials {
    display: flex;
    flex-direction: column;
}

.socials .circle-icon {
    background-color: rgb(var(--white-color));
    color: rgb(var(--accent-skogsgron-color));
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0;
}

.socials .circle-icon em::before {
    font-size: 1.2rem;
}

.socials .circle-icon:hover {
    background-color: rgb(var(--accent-papper-color));
}

.badge {
    max-height: 18rem;
    max-width: 8rem;
    margin: auto;
    margin-top: 0.5rem;

}

.footer .partner-logo {
    max-height: 7rem;
    max-width: 31rem;
    object-fit: contain;
    margin: 0 0 0 2rem;
}

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

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

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

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

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

    .footer-container {
        padding: 0 3rem;
    }
    
    /* Footer top */
    .footer-menu,
    .footer-menu:last-of-type {
        width: 48%;
        padding: 0 0 5rem;
        margin: 0;
    }

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

    .footer-menu .socials {
        flex-direction: row;
    }
}

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-top {
        padding-bottom: 3rem;
    }

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

    .footer-logo.mobile-logo {
        display: block;
        width: 30rem;
        margin: 0 auto;
    }

    .footer-menu:last-of-type {
        display: flex;
        margin-bottom: 5rem;
        width: 100%;
    }

    .footer .partner-logo {
        margin: 0 2rem;
    }

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

}

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