/* Björsons Måleri Eftr. Aktiebolag */

/* Typsnitt – jaf-facitweb, trade-gothic-next */
@import url("https://use.typekit.net/gwb8gdq.css");

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;

    /* 	Colors */
    --primary-color: 11, 77, 68;
    --secondary-color: 60, 194, 177;

    --black-color: 20, 20, 20;
    --gray-dark-color: 61, 61, 61;
    --gray-color: 110, 109, 107;
    --gray-light-color: 245, 243, 238;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
}

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

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

/* Speciella paddings */
.pt-0 .section-block {
    padding-top: 0;
}

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

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

.pb-3 {
    padding-bottom: 5rem;
}

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

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

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

.p-0 .section-block {
    padding: 0;
}

/* Speciella margins */
.mt-5 {
    margin-top: 5rem;
}

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

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


/* Ovrigt */
.block {
    display: block;
}

@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-weight: 300;
    font-family: trade-gothic-next, sans-serif;
}

/* Rubriker */
.section-title {
    font-family: jaf-facitweb, sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 300;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.small-title {
    font-family: jaf-facitweb, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

.text-label {
    font-family: jaf-facitweb, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 400;
    padding-bottom: 2rem;
}

.text-title {
    font-size: var(--base-size);
    font-weight: 700;
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: var(--secondary-color);
}

a:hover {
    text-decoration: none;
}

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

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

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

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


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

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

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

    .section-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 18rem;
    padding: 1.7rem 2.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    border-radius: .8rem;
    -webkit-transition: all .4s ease;
    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:focus,
.ContactSubmit:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cover {
    object-fit: cover;
}

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

.justify-center,
.cards-wrapper.justify-center {
    justify-content: center;
}

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

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

.card-item {
    text-decoration: none;
}

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

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

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

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

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

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

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

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

/* Card 2-2 */
.card-2-2 .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 15rem;
    padding: 2rem;
    margin: -7rem auto 3rem;
    font-size: 6rem;
    border-radius: 50%;
}

/* Styling for arrow-link pa card */
.card-item .arrow-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: rgba(var(--black-color), .7);
    padding: 0;
    transition: all .3s ease;
}

.card-item .arrow-link::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(var(--black-color), .4);
    transition: all .3s ease;
    border-radius: 50%;
}

.card-item:hover .arrow-link,
.card-item:hover .arrow-link::after {
    transform: none;
    color: rgb(var(--black-color));
    border-color: rgb(var(--black-color));
    transition: all .3s ease;
}

/* Cards 2 */
.cards-2 .card-item {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    background-color: rgb(var(--white-color));
}

.cards-2 .image-wrapper {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.cards-2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.cards-2 .small-title {
    padding: 0 0 1rem;
    margin: 0 0 2rem;
    border-bottom: 1px dotted rgb(var(--primary-color));
}

.cards-2 .small-title i {
    font-size: 1.2em;
    margin: 0 1rem 0 0;
}

.cards-2 .btn-wrapper {
    height: 7rem;
    margin: auto 0 0;
    padding: 2rem 3rem;
}

/* Cards 11 */
.cards-11 .card-item {
    background-color: rgb(var(--gray-light-color));
    border-radius: 3px;
    overflow: hidden;
}

.cards-11 .image-wrapper {
    aspect-ratio: 1/1;
}

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

.cards-11 .small-title {
    border-bottom: 1px dotted rgb(var(--primary-color));
    color: rgb(var(--primary-color));
}

.cards-11 p,
.cards-11 a {
    display: block;
    padding-bottom: .3rem;
    font-size: 1.5rem;
    text-decoration: none;
}

.cards-11 em {
    margin-right: 1rem;
}

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

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

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

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

.split-image {
    width: 50%;
    border-radius: 3px;
}

.split-image.align-start {
    aspect-ratio: 4/3;
}

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

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

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

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

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

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

.split-image-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr;
    gap: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Video */
.bg-video {
    position: relative;
    overflow: hidden;
}

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

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

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

/* Header / Navigation
========================================================================== */
/* Header */
.IndexPage header:not(.scrolled, .mobile-menu) {
    background-color: transparent;
}

header .container {
    max-width: 150rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* logo */
.header-logo img {
    padding: 1.5rem 0;
}

.header-logo a {
    display: block;
    width: 100%;
    height: calc(var(--menu-height) - 1rem);
    font-size: 0;
    background-image: url('/assets/images/bm-vit.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    transition: .3s ease;
}

header.scrolled .header-logo a,
header.scrolled.mobile-menu .header-logo a,
.SubPage header:not(.scrolled) .header-logo a,
header.mobile-menu.active-menu .header-logo a {
    background-image: url('/assets/images/bm-logga.png');
}


/* nav */
.mainmenu {
    margin: 0 0 0 auto;
}

.TemplateMenu a {
    font-weight: 400;
    font-size: 1.4rem;
    padding: 0 1rem;
    color: rgb(var(--gray-color));
}

.IndexPage header:not(.scrolled, .mobile-menu) a {
    color: rgb(var(--white-color));
}

.TemplateMenu a:hover,
header.scrolled .TemplateMenu a:hover {
    color: rgb(var(--secondary-color));
}

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

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

/* Mobilmeny */
.mobile-menu .hamburger {
    margin: 0 0 0 1rem;
}

.mobile-menu .mainmenu a {
    padding: 0 2rem;
}

.mobile-menu .header-cta-wrapper {
    margin: 0 0 0 auto;
}

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

    .header-logo a {
        background-image: url('/assets/images/bm-logga.png') !important;
    }
}

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

@media only screen and (max-width: 480px) {
    .mobile-menu {
        display: flex;
        align-items: center;
    }

    header .container {
        padding: 0 1rem;
    }

    .header-logo {
        margin-right: 2rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */
/* Top Section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
}

.top-section .section-block {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding-bottom: 5rem;
    background-color: rgb(var(--black-color), .3);
    /*background-color: rgb(var(--primary-color), .8);*/
    /*background-image: url(/assets/images/dextry-dekor-white.svg);*/
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 110% center;
}

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

.top-section .col-wrapper {
    max-width: 90rem;
}

.top-section h1 {
    font-size: 5rem;
    font-weight: 700;
}

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

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

@media only screen and (max-width: 800px) {
    .top-section {
        margin-top: 0;
    }

    .top-section .section-block {
        min-height: 50vh;
        background-position: 30vw center;
    }

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

/* Sektion Om
========================================================================== */
.section-about .split-image {
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.section-about .split-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-about .reco-badge {
    text-align: center;
}

.section-about .block {
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .section-about .split-image {
        padding: 2rem;
    }
}

@media only screen and (max-width: 800px) {
    .section-about .split-content {
        background-color: transparent;
    }

    .section-about .split-image {
        padding: 1rem;
    }
}

/* Sektion Tjanster
========================================================================== */
.section-services {
    background-image: url(/assets/images/kvinnlig-malare-roller-1920.jpg);
    overflow: hidden;
}

.section-services .section-block {
    background-color: rgba(var(--primary-color), .8);
    background-image: linear-gradient(rgb(var(--white-color)), rgb(var(--white-color)));
    background-size: 100% 7rem;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.section-services .card-item {
    background-color: rgb(var(--gray-light-color));
}

.section-services .card-item .btn-wrapper {
    background-color: rgba(var(--black-color), .05);
}

/* Scroll Wrapper */
.scroll-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 7rem;
}

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

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

.section-services .scroll-wrapper .slick-slide {
    display: flex;
    height: auto;
    margin: 0 2rem 0 0;
}

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

.scroll-wrapper .slick-arrow:not(.slick-disabled):hover,
.scroll-wrapper .slick-arrow:not(.slick-disabled):focus {
    background-color: rgb(var(--gray-light-color));
}

.scroll-wrapper .slick-arrow.slick-disabled {
    opacity: .5;
}

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

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

.scroll-wrapper .slick-prev::after,
.scroll-wrapper .slick-next::after {
    color: rgb(var(--black-color));
    font-size: 2rem;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
}

.scroll-wrapper .slick-prev::after {
    content: '\f104';
}

.scroll-wrapper .slick-next::after {
    content: '\f105';
}

.slick-list,
.slick-track {
    height: 100%;
}

@media only screen and (max-width: 700px) {
    .section-services .section-block {
        background-size: 100% 5rem;
    }

    .section-services .scroll-wrapper .slick-slide {
        margin: 0 1rem 0 0;
    }

    .section-services .card-item .text-wrapper {
        padding: 3rem 2rem;
    }

    .section-services .card-item .btn-wrapper {
        height: 5rem;
        padding: 1rem 2rem;
    }
}

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

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

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

.section-map iframe {
    height: 40rem;
}

/* Sektion Kontaktuppgifter (.section-contact)
========================================================================== */
.section-contact .col-1 {
    background-color: rgb(var(--gray-light-color));
    border-radius: 3px;
    padding: 3rem;
    align-self: flex-start;
}

/* Kontaktuppgifter */
.section-contact .card-item {
    background-color: rgb(var(--gray-light-color));
    transition: all .3s ease;
}

.section-contact .card-item .text-wrapper {
    padding: 2rem;
}

.section-contact .card-item .small-title {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.4rem;
    padding: 0 0 .5rem;
    margin: 0 0 1rem;
}

.section-contact .card-item .small-title i {
    margin: 0 .5rem 0 0;
}

.section-contact .card-item p {
    font-size: 1.4rem;
    line-height: 1.5;
}

.section-contact .card-item:hover {
    background-color: rgb(var(--primary-color));
}

.section-contact .card-item:hover * {
    color: rgb(var(--white-color));
    border-color: rgb(var(--white-color), .6);
}

/* Kontaktformular */
.section-contact .Contact {
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px dotted rgb(var(--primary-color));
}

.section-contact .Contact input,
.section-contact .Contact input[type="email"],
.section-contact .Contact input[type="tel"],
.section-contact .Contact select,
.section-contact .Contact textarea {
    border-radius: 5px;
}

.section-contact .Contact p {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.3;
}

/* GDPR */
.section-contact .ContactFormField.checkbox-field label {
    font-size: 1.4rem;
}

.section-contact .ContactFormField.checkbox-field p {
    display: none;
}

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

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

    /* Kontaktuppgifter */
    .section-contact .card-item .text-wrapper {
        padding: 1rem;
    }
}

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

    .section-contact .col-1 {
        width: calc(100% + 4rem);
        max-width: none;
        margin: 0 -2rem;
    }
}

/* ==========================================================================
Undersida > Medarbetare
========================================================================== */

/* Kontaktuppgifter */

.contact-details {
    padding: 1rem 0 0;
    font-style: normal;
}

.contact-details a {
    font-size: 1.4rem;
    color: rgba(var(--black-color), .7);
}

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

.contact-details a em {
    color: rgb(var(--primary-color));
}

/* ==========================================================================
Undersida > Lediga jobb
========================================================================== */
.section-application .section-block {
    display: flex;
    align-items: center;
}

.section-application .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 75rem;
    padding: 4rem;
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

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

.section-application .ContactForm div {
    width: 100%;
}

.section-application .ContactFormField.file-field,
.section-application .ContactFormField.text-field.adress {
    width: 49%;
}

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

    .section-application .ContactFormField.file-field,
    .section-application .ContactFormField.text-field.adress {
        width: 100%;
    }
}

/* ==========================================================================
404
========================================================================== */
.section-error .section-block {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding-bottom: 0;
    background-image: linear-gradient(to right top, rgb(var(--white-color), 0.1), rgb(var(--black-color), 0.2));
}

/* ==========================================================================
Undersida: Tack for ditt meddelande
========================================================================== */
.section-message .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

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

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

/* Footer Logo */
.footer-logo {
    width: 13rem;
    padding: 1rem 2rem 1.5rem;
    text-align: center;
    border-radius: 0 0 2px 2px;
    background-color: rgb(var(--primary-color));
    text-decoration: none;
}

.footer-logo span {
    display: block;
    font-size: 1rem;
    padding: 0 0 7px;
    color: rgb(var(--white-color));
    line-height: 1;
    text-transform: uppercase;
    text-align: left;
    text-decoration: none;
}

.footer-logo img {
    max-height: 5rem;
}

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

.footer-menu {
    margin: 0 0 0 5rem;
}

.footer-menu:first-child {
    flex: 1;
    margin: 0;
}

.footer-menu:first-child p {
    max-width: 50rem;
}

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

.footer-top :is(p, a, li) {
    color: rgb(var(--black-color), .7);
    font-weight: 400;
    font-size: 1.4rem;
}

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

.footer p.small-title {
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(var(--primary-color));
}

.footer .circle-icon {
    width: 3rem;
    height: 3rem;
    font-size: 0;
    margin: 0 .5rem 0 0;
    color: rgb(var(--white-color));
}

.footer .circle-icon em {
    font-size: 0;
    color: rgb(var(--white-color));
}

.footer .circle-icon em::before {
    font-size: 1.4rem;
    color: rgb(var(--white-color));
}

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

.footer-bottom p {
    font-size: 1.4rem;
    color: rgb(var(--black-color), .5);
}

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

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


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

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

    /* Footer Logo */
    .footer-logo {
        width: 10rem;
        padding: .5rem .5rem 1rem;
    }

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

    .footer-menu:first-child {
        width: 100%;
        flex: none;
        margin: 0 0 3rem;
    }
}

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

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

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

}

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