/* Aderbys Rör */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Bebas+Neue&display=swap');
/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');


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

    /* 	Colors */
    --primary-color: 24, 97, 169;
    --secondary-color: 34, 50, 87;

    --accent-petrol-color: 108, 135, 154;
    --accent-blue-color: 40, 158, 188;
    --accent-red-color: 213, 35, 39;
    --accent-green-color: 183, 170, 57;

    --black-color: 0, 0, 0;
    --gray-dark-color: 77, 77, 78;
    --gray-color: 116, 116, 117;
    --gray-light-color: 240, 240, 241;
    --white-color: 255, 255, 255;

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

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

/* ta ej bort - deras elsida */
.elektriker {
    --primary-color: 23, 138, 75;
}

.isolering {
    --primary-color: 249, 207, 55;
}


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

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

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

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

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

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

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

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

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

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

.pl-2 {
    padding-left: 2rem;
}

/* Margins */
.m-1 {
    margin: 1rem;
}

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

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

.mr-1 {
    margin-right: 1rem;
}

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

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

.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

/* Hojder */
.height-500 {
    height: 50rem;
}

.height-25 {
    height: 25rem;
}

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

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

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

    .pl-2 {
        padding-left: 0;
    }
}

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

/* Rubriker */
.text-label {
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    padding-bottom: 1em;
    font-family: 'Bebas Neue', cursive;
}

.section-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    padding-bottom: .5em;
}

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

h3.small-title {
    padding-bottom: 1rem;
    padding-top: 2rem;
}

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

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    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(--primary-color);
}

a:hover {
    text-decoration: none;
}

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

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

.text-small {
    font-size: 1.3rem;
}

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

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

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

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

.justify-space-around {
    justify-content: space-around;
}

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

/* Vanlig lista */
.list-dot {
    margin-top: 0;
    padding-left: 3rem;
}

/* Ordered List */
.ordered-list {
    padding: 0;
}

.ordered-list li {
    padding: 0 0 1rem;
}

/* Listor */
.list-properties {
    padding: 0;
    margin-top: 0;
    list-style: none;
}

.list-properties li {
    display: flex;
    justify-content: space-between;
    padding-bottom: .3rem;
    margin-bottom: .3rem;
    font-size: 1.4rem;
    border-bottom: 1px solid rgb(var(--gray-color));
}

.list-properties-no-border li {
    border-bottom: none;
}

.cols-2 {
    columns: 2;
    column-gap: 3rem;
}

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

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

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

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

    .cols-2 {
        columns: 1;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 20rem;
    padding: 1.4rem 2rem;
    margin: 5px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    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-accent-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--accent-blue-color));
    background-color: rgb(var(--accent-blue-color));
}

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

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

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

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

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

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

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

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

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

/* Read link */
.read-link {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

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

.read-link.is-clicked::after {
    transform: rotate(180deg);
}

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

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

.circle-icon i:before,
.circle-icon em:before {
    font-size: 1.4rem;
}

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

/* Farger 
==========================================================  */

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

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

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

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

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

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

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

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

.gradient-white-secondary {
    background-image: linear-gradient(to top, rgb(var(--secondary-color)) 50%, rgb(var(--white-color)) 50%);
}

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Borders */
.border-left-gray-light {
    border-left: 1rem solid rgb(var(--gray-light-color));
}

.border-right-gray-light {
    border-right: 1rem solid rgb(var(--gray-light-color));
}

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

/* Object position */
.of-wrapper .op-left {
    object-position: left;
}

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

/* Badge */
.badge-wrapper {
    position: relative;
}

.badge {
    color: rgb(var(--white-color));
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 11rem;
    padding: 2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    clip-path: polygon(13% 13%, 30% 13%, 37% 0%, 50% 8%, 62% 0%, 70% 13%, 87% 13%, 87% 30%, 100% 37%, 92% 50%, 100% 62%, 87% 70%, 87% 87%, 70% 87%, 62% 100%, 50% 92%, 37% 100%, 30% 87%, 13% 87%, 13% 70%, 0% 62%, 8% 50%, 0% 37%, 13% 30%);
}

.filter-badge {
    display: inline-block;
    border-radius: 2rem;
    padding: 0.4rem 1.1rem;
    margin-bottom: 1rem;
}

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

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

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

.card-item {
    text-decoration: none;
    transition: all .3s ease;
}

/* Cards grow */
.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) - 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;
}

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

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

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

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

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

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

/* Card 2-1 - tjanstekort, leverantorer */
.card-2-1 a.card-item {
    border-radius: 3px;
    text-decoration: none;
}

.card-2-1 a.card-item:hover {
    box-shadow: 0 5px 1rem rgba(var(--black-color), .1);
    transition: all .4s ease;
}

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

.card-2-1 .card-header img {
    height: 11rem;
}

@media only screen and (max-width: 580px) {
    .card-2-1 .card-header {
        margin-bottom: 1rem;
        font-size: 5rem;
    }
}

/* Card 3-1 */
.card-3-1 .card-logo {
    display: inline-block;
    max-width: 20rem;
    height: 20rem;
    border-radius: 50%;
}

/* Card 2-3 - steg-steg, kontakt */
.card-2-3 .card-item {
    border-radius: 3px;
}

.card-2-3 .card-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    margin: -1rem 0 0 -1rem;
    border-radius: 55% 45% 47% 53% / 52% 36% 64% 48%;
}

/* Card 3-2 – produkter */
.card-3-2 .card-item {
    border-radius: 3px;
    align-self: flex-start;
    min-height: 46rem;
}

.card-3-2 .kampanjkort {
    border-radius: 3px;
    align-self: flex-start;
    min-height: 35rem;
}

.card-3-2 .kampanjkort-big {
    border-radius: 3px;
    align-self: flex-start;
    min-height: 40rem;
}


.card-3-2 .card-item.mh-unset {
    min-height: unset;
}

.card-3-2 .image-wrapper {
    height: 25rem;
    padding: 2rem 2rem 0;
}

.card-3-2 .image-wrapper.p-2 {
    padding: 2rem;
}

.card-3-2 .image-wrapper img {
    object-fit: contain;
}

.card-3-2 .card-body {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.6rem;
}

.card-3-2 .text-title {
    margin-bottom: auto;
}

.card-3-2 .list-properties {
    margin: 2rem 0 1rem;
}

.card-3-2 .list-properties li {
    border-color: rgb(var(--gray-light-color));
    font-size: var(--base-size);
}

.read-more-text {
    --base-size: 1.4rem;
}

/* Card 3-4 – medarbetarkort */
.card-3-4 .card-item {
    border-radius: 3px;
}

.card-3-4 .image-wrapper {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    margin: 2rem 0 0 2rem;
    border: 1px solid rgb(var(--gray-light-color));
}

.contact-item i {
    color: rgb(var(--accent-red-color));
    margin-right: 1rem;
}

/* Card 3-7 */
.card-3-7 .card-item {
    position: relative;
    text-decoration: none;
}

.card-3-7 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-7 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .4);
    transition: .3s ease-in-out;
}

.card-3-7 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .6);
}

.card-3-7 .card-body {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 17vw;
}

.card-3-7 .small-title {
    padding: 0;
}

.card-3-7 .btn-wrapper {
    margin: auto 0 0;
}

@media only screen and (max-width: 580px) {
    .card-3-7 .card-body {
        min-height: 20rem;
    }
}

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

.logos-1 img {
    width: 100%;
}

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

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

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

.split-image {
    width: 50%;
}

.split-image>* {
    width: 100%;
}

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

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

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

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

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

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

    /* Border på bild */
    .split-image.border-right-gray-light,
    .split-image.border-left-gray-light {
        border: none;
        /* border: 1rem solid rgb(var(--gray-light-color)); */
    }
}

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

    .split-wrapper,
    .split-content {
        background-color: transparent;
    }

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

    .split-wrapper .text-white {
        color: rgb(var(--gray-dark-color));
    }
}

/* 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: 450px;
    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: 50rem;
    overflow: auto;
}

.popup-wrapper .small-title {
    padding-top: 0;
}

/* Modal
========================================================================== */
.modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
}

.blocker {
    z-index: 100;
}

.modal a.close-modal {
    display: none;
}

.modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
}

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

    .blocker {
        padding: 1rem;
    }
}

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

header .container {
    max-width: none;
}

/* Logo */
.header-logo {
    margin: 0 5rem 0 0;
}

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

.TemplateMenu a {
    font-size: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    color: rgb(var(--black-color));
}

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

.TemplateMenu ul:hover a {
    color: rgb(var(--gray-color))
}

.TemplateMenu ul:hover a:hover {
    color: rgb(var(--black-color))
}

/* Forsta nivan */
.TemplateMenu>li>ul>li>a {
    font-size: 1.6rem;
}

/* Andra nivan */
body:not(.EditMode) .TemplateMenu ul {
    opacity: 0;
    transition: opacity 600ms;
}

body:not(.EditMode) .TemplateMenu li:hover>ul {
    opacity: 1;
    transition: opacity 600ms;
    animation: fade .5s;
}

body:not(.EditMode) .TemplateMenu>li>ul>li {
    position: static;
}

body:not(.EditMode) .mobile-menu .TemplateMenu ul,
body:not(.EditMode) .mobile-menu .TemplateMenu li:hover>ul {
    opacity: 1;
    animation: none;
}

/* Tredje nivan */
body:not(.EditMode) .TemplateMenu>li>ul>li>ul {
    min-height: 100%;
    background-color: rgb(var(--gray-light-color));
}

.TemplateMenu ul ul a {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

/* Fjarde nivan */
.TemplateMenu>li>ul>li>ul>li:hover>ul {
    display: block;
}

.TemplateMenu>li>ul>li>ul>li>ul {
    top: 0;
    right: -20rem;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 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 li {
    margin: 0 .5rem;
}

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

.dropdown-list {
    position: relative;
}

.dropdown-list ul {
    display: none;
    position: absolute;
    width: 15rem;
    left: 50%;
    padding: 3px;
    text-align: center;
    list-style: none;
    transform: translateX(-50%);
    background-color: rgb(var(--white-color));
    border-radius: 1.6rem;
}

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

.dropdown-list ul li {
    margin: 0;
    padding: 3px;
}

.dropdown-list ul .btn {
    width: calc(100% - 1rem);
    padding: 1rem;
}

.dropdown-list i {
    position: relative;
    margin: 0 0 0 3px;
    transform: none;
    transition: all .2s ease;
}

.dropdown-list.show i {
    transform: rotate(180deg);
}

.show-mobile {
    display: none;
}

/* Mobilmeny */
.mobile-menu .container {
    height: var(--mobile-menu-height);
}

.mobile-menu .mainmenu::after {
    position: fixed;
    content: '';
    display: block;
    width: 100%;
    height: var(--mobile-menu-height);
    top: 0;
    left: 0;
    background-color: rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.mobile-menu .Navigator {
    height: auto;
}

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

.mobile-menu .TemplateMenu>li>ul>li {
    border-bottom: 1px solid rgb(var(--gray-color));
    margin-bottom: 2rem;
}

body:not(.EditMode) .mobile-menu .TemplateMenu>li>ul>li>ul {
    padding-left: 0;
    background-color: rgb(var(--white-color));
    columns: 2;
    column-gap: 2rem;
}

.mobile-menu .TemplateMenu>li>ul>li a {
    padding: 0;
}

.mobile-menu .header-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 0 auto;
    padding: 0 2rem 10rem;
}

.mobile-menu .show-mobile {
    display: block;
}

.mobile-menu .hide-mobile {
    display: none;
}

.mobile-menu .dropdown-list {
    margin: 2rem 0 0;
    width: 100%;
}

.mobile-menu .dropdown-list ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    top: auto;
    left: auto;
    transform: none;
    padding: 0;
}

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

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

    .header-cta-wrapper .btn {
        min-width: unset;
        padding: 0.7rem 1.5rem;
    }

    .mobile-menu .dropdown-list li {
        width: 100%;
    }

    .mobile-menu .dropdown-list ul .btn {
        margin: 5px 0;
        width: 100%;
    }
}

/* EditMode */
.EditMode .TemplateMenu ul a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: flex-end;
    min-height: 85vh;
    background-color: rgb(var(--black-color), .55);
}

.top-section .section-title {
    font-size: 4.7rem;
    max-width: 100rem;
    font-weight: 400;
    color: rgb(var(--white-color));
}

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

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

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

/* Sektion Tjanster
========================================================================== */
/* Slider */
.scroll-wrapper.cards-wrapper {
    margin: 0 0 5rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    padding: 0 0 1rem;
}

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

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

.scroll-wrapper.cards-wrapper img {
    display: inline-block;
}

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

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

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

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

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: flex-end;
    min-height: 35vh;
    padding-bottom: 5rem;
}

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

.hero .section-title img {
    width: 8rem;
    margin: 0 2rem 0 0;
}

.hero .section-title img.elektriker-logo {
    width: 13rem;
    margin: 0;
}

.hero .section-title img.isolering-logo {
    width: 10rem;
    margin: 0;
}

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

/* Hero Info
========================================================================== */
.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Breadcrums */
.breadcrumbs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 5px;
}

.hero-info .breadcrumbs:nth-child(1) {
    margin-right: 1rem;
}

.breadcrumbs li {
    font-size: 1.3rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    padding: 0 1rem;
    color: rgb(var(--white-color));
}

.breadcrumbs a {
    font-size: inherit;
    text-decoration: none;
    color: rgb(var(--white-color));
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.hero-info .breadcrumbs:nth-child(1) li:last-child a:not(.clickable) {
    pointer-events: none;
}

@media only screen and (max-width: 580px) {
    .breadcrumbs {
        width: 100%;
    }

    .breadcrumbs:first-child {
        margin-bottom: 2rem;
    }

    .breadcrumbs li {
        font-size: 1.2rem;
    }

    .breadcrumbs li:not(:last-child)::after {
        padding: 0 5px;
    }

    .breadcrumbs:first-child li:not(:last-child) {
        display: flex;
        width: 18%;
    }

    .breadcrumbs:first-child li:not(:last-child) a {
        white-space: nowrap;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

/* Hero-text
========================================================================== */
.hero-text .section-title {
    padding: 0 0 1rem;
    margin: 0 0 1rem;
    color: rgb(var(--white-color));
    font-size: 4.5rem;
    border-bottom: 2px solid rgb(var(--white-color));
}

.hero-text p {
    color: rgb(var(--white-color));
    font-size: 2rem;
}

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

/* Subnavigering
========================================================================== */
.section-sub-header {
    z-index: 2;
    position: sticky;
    top: var(--menu-height);
    background-color: rgb(var(--primary-color));
    overflow: auto;
    white-space: nowrap;
}

.EditMode .section-sub-header {
    position: static;
}

.mobile-menu+main .section-sub-header {
    top: var(--mobile-menu-height);
}

.sub-header ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sub-header ul li {
    display: inline-block;
}

.sub-header a {
    font-size: 1.4rem;
    font-weight: 300;
    text-decoration: none;
    line-height: 5rem;
    color: rgb(var(--white-color));
    padding: 0 1rem;
    transition: all .3s ease;
}

.sub-header a:hover {
    background-color: rgb(var(--secondary-color));
}

/* CTA-sektion (.section-cta)
========================================================================== */
.section-cta .section-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: rgb(var(--black-color));
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-wrapper .text-block {
    max-width: 65rem;
}

.cta-wrapper h3.small-title {
    padding-top: 0;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

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

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

/* ==========================================================================
Undersida: foretag > Referenser
========================================================================== */

/* Sok + filtrering
========================================================================== */
.card-item.hidden-search-item {
    display: none;
}

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

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

.centered-tags {
    max-width: 100rem;
    justify-content: center;
    margin: 3rem auto 2rem;
}

.tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    box-shadow: 1px 1px 5px rgb(var(--black-color), .2);
    border-radius: 2rem;
    background-color: rgb(var(--white-color));
    cursor: pointer;
    transition: .5s ease;
    text-decoration: none;
}

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

.tag:hover,
.tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--accent-red-color));
}

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

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

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

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

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

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

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

    .centered-tags {
        margin: 0;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
        background-color: rgb(var(--white-color));
        color: rgb(var(--black-color));
    }
}

/* ==========================================================================
Undersida: Butik
========================================================================== */
.section-map-contact .section-block {
    padding-top: 0;
}

.map-contact-wrapper {
    position: relative;
}

.map-contact-wrapper iframe {
    width: 100%;
    height: 60rem;
    border: none;
}

.map-contact-wrapper .cards-wrapper {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40rem;
}

@media only screen and (max-width: 580px) {
    .map-contact-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .map-contact-wrapper .cards-wrapper {
        position: static;
        width: 100%;
    }

    .map-contact-wrapper .cards-wrapper .card-item {
        width: 100%;
        box-shadow: none;
    }

    .map-contact-wrapper iframe {
        height: 30rem;
    }
}

/* ==========================================================================
Undersida: Butik > Vara leverantorer
========================================================================== */
@media only screen and (max-width: 940px) {
    .btn-block {
        display: block;
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Installation
========================================================================== */
.installation-split .split-content {
    padding-left: 2rem;
}

.installation-split .split-image {
    padding-right: 1rem;
}

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

    .installation-split .split-image {
        padding-right: 0rem;
    }
}

.card-images {
    max-width: 15rem;
    margin: auto;
}

/* ==========================================================================
Undersida: Installation > Comfortkollen
========================================================================== */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgb(var(--white-color));
    padding: 4rem;
}

.ContactForm div {
    width: 49%;
}

.ContactForm .ContactFormMessage,
.ContactFormField.file-field,
.file-upload-container,
.file-dropzone {
    width: 100% !important;
}

.ContactForm .ContactFormMessage textarea {
    min-height: 15rem;
}

.ContactForm p {
    font-family: 'Open Sans', sans-serif;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.ContactFormField.checkbox-field,
.select-wrapper {
    width: 100% !important;
}

.group-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100% !important;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100% !important;
}

.ContactFormField.textarea-field,
.submit-button-container {
    width: 100% !important;
}

input[type="radio"],
input[type="checkbox"] {
    height: 2rem;
    width: 2rem;
}

.ContactForm input.illegal,
.ContactForm textarea.illegal {
    background-color: #FFECEC;
}

.ContactSubmit {
    margin: 0;
}

.asterix p:after {
    content: "*";
    margin-left: 6px;
    color: rgb(var(--accent-red-color));

}

/* Bekraftelseruta */
.ContactSentMessage {
    padding: 1rem 1rem 1rem 7rem;
    margin-bottom: 2rem;
    border-radius: .5rem;
    background-color: rgba(var(--primary-color), .2);
    background-image: url(/assets/images/icons/message-sent.svg);
    background-size: 4rem;
    background-position: 1.5rem center;
    background-repeat: no-repeat;
}

.ContactSentMessage p {
    padding: 0;
}

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

@media (max-width: 768px) {
    .group-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .group-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ==========================================================================
Undersida: Varmepump > Enskild sida
========================================================================== */
.product-split .split-content {
    width: calc(100% - 20rem);
    padding-left: 0;
}

.product-split .split-image {
    width: 20rem;
}

@media only screen and (max-width: 1000px) {
    .product-split .split-content {
        width: 100%;
    }

    .product-split .split-image {
        width: 100%;
    }

    .product-split .split-image img,
    .info-split .split-image img {
        display: block;
        margin: 0 auto;
        padding-bottom: 3rem;
    }
}

/* ==========================================================================
Undersida: Varmepump > Leverantorer
========================================================================== */
.partner-logo {
    transition: all 0.3s ease-in-out;
}

.partner-logo:hover {
    filter: invert(50%);
}

@media only screen and (max-width: 1024px) {
    .partner-logo {
        padding-bottom: 2rem;
    }
}

/* ==========================================================================
Undersida: Konsument > Tips och rad enskilda sidor
========================================================================== */

/* Blog Hero
========================================================================== */
.blog-hero {
    padding-bottom: 10rem;
}

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

.blog-hero .hero-info {
    justify-content: center;
}

@media only screen and (max-width: 750px) {
    .blog-hero {
        padding-bottom: 0;
    }
}

/* Blog Content
========================================================================== */
.blog-content .section-block {
    padding-top: 0;
}

.blog-content .section-block-wrapper {
    position: relative;
    margin-top: -10rem;
    max-width: 80rem;
}

.EditMode .blog-content .section-block-wrapper {
    margin-top: 0;
}

.blog-content .section-block-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    box-shadow: 0 1rem 2rem rgba(var(--black-color), .1);
}

.blog-content .col-block {
    z-index: 1;
    position: relative;
    padding: 5rem;
    background-color: rgb(var(--white-color));
    border-radius: 0.5rem 0.5rem 0 0;
}

.blog-content .figure {
    display: flex;
    justify-content: center;
    margin: 2rem auto 3rem;
}

.blog-content .section-title,
.blog-content .small-title {
    padding-top: 1em;
    padding-bottom: 0.5em;
}

.blog-content p,
.blog-content li {
    line-height: 2;
    padding: 0 0 1em;
}

@media only screen and (max-width: 750px) {
    .blog-content .section-block-wrapper {
        margin-top: 5rem;
    }

    .blog-content .section-block-wrapper::before {
        display: none;
    }

    .blog-content .col-block {
        padding: 0;
    }
}

/* ==========================================================================
Undersida: Konsument > Fardigt badrum
========================================================================== */

/* Sektion Galleri (.section-slider)
========================================================================== */
.section-slider {
    overflow: hidden;
}

.gallery-slider .slick-slide {
    margin: 0 1rem;
    border-radius: 3px;
}

.gallery-slider .slick-list {
    overflow: visible;
}

/* Slick Settings */
.gallery-slider .slick-list,
.gallery-slider .slick-track {
    height: 100%;
}

/* Slick Arrow */
.gallery-slider .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
    transform: translateY(-50%);
}

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

.gallery-slider .slick-prev {
    left: 2rem;
}

.gallery-slider .slick-next {
    right: 2rem;
}

/* Slick Dots */
.gallery-slider .slick-list {
    width: 100%;
}

.gallery-slider .slick-dots {
    position: relative;
    width: auto;
    padding: 0;
    margin: 1rem 0;
}

.gallery-slider .slick-dots li.slick-active::before {
    opacity: 1;
    color: rgb(var(--primary-color));
    transition: all .2s ease;
}

@media only screen and (max-width: 980px) {
    .gallery-slider .slick-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==========================================================================
Undersida: Konsument > Kampanj
========================================================================== */
.offer-wrapper {
    max-width: 50rem;
    display: flex;
}

.offer-img {
    padding: 2rem;
    max-width: 20rem;
}


/* ==========================================================================
Undersida: Om oss > Kontakt
========================================================================== */
.section-team .col-0 {
    width: 20rem;
    padding: 0;
}

.section-team .col-1 {
    width: calc(100% - 20rem);
}

@media only screen and (max-width: 1300px) {
    .section-team .card-3-4 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 980px) {
    .section-team .col-block {
        width: 100%;
        padding: 0;
    }
}

@media only screen and (max-width: 750px) {
    .section-team .card-3-4 .card-item {
        width: 100%;
    }
}

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

.elektriker .footer {
    background-color: rgba(var(--black-color));
}

.isolering .footer {
    background-color: rgba(var(--black-color));
}

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

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

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

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

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

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--white-color));
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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