/* Kyl och maskinservic  */

/* Brodtext: source-sans-pro, Rubriker: mrs-eaves */
@import url("https://use.typekit.net/unm3cig.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: 8rem;

    /* 	Colors */
    --primary-light-color: 201, 224, 227;
    --primary-color: 0, 71, 119;

    --black-color: 0, 0, 0;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

    --accent-red-color: 163, 0, 0;

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

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

/* Specifika paddings */
.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

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

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

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

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

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

.p-4 {
    padding: 4rem;
}

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

/* Specifika bredder */
.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

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

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: source-sans-pro, sans-serif;
}

/* rubriker */
.section-title {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 400;
    padding-bottom:2rem;
    color: rgb(var(--black-color));
    font-family: mrs-eaves, sans-serif;
}

.small-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(var(--black-color));
    font-family: mrs-eaves, sans-serif;
}

.text-label {
    font-size: 1.6rem;
    max-width:25rem;
    line-height: 1.3;
    padding-bottom:1rem;
    margin-bottom:1rem;
    font-family: inherit;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgb(var(--primary-color));
    color: rgb(var(--black-color));
}

/* Text */
p {
    font-weight: 300;
    color: rgb(var(--black-color));
}

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

.link {
    color: rgb(var(--primary-color));
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

/* Ovriga klasser */
.text-center {
    text-align: center;
}

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

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

/* listor */
.contacts-list {
    list-style: none;
    padding-inline-start: initial;
    margin: 0;
}

.contacts-list a:hover {
    text-decoration: underline;
}

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

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

@media only screen and (max-width: 550px) {
    .text-label {
        font-size: 1.2rem;
    }

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

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

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

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

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

.btn-wrapper.flex-end {
    justify-content: flex-end;
}

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.8rem 3.2rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    border-radius: 1px 3rem 3rem 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn::after {
    content: " \2023";
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: translateX(1rem);
    transition: transform 0.4s ease;
}

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

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

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: rgb(var(--primary-color));
}

.arrow-link::after {
    content: " \f178";
    display: inline-block;
    margin-left: 0.5rem;
    font-family: "Font Awesome 5 Pro";
    font-size: 0.7em;
    transition: transform 0.4s ease;
}

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

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

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

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

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

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

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

.gradient-white-light {
    background-image: linear-gradient( to bottom, rgb(var(--white-color)) 40%,  rgb(var(--beige-light-color)) 40% );
}

.gradient-primary-light {
    background-image: linear-gradient( to bottom, rgb(var(--white-color)) 30%, rgb(var(--primary-light-color)) 30%);
}

.gradient-primary-light-white {
    background: linear-gradient( to right, rgba(var(--primary-light-color)) 70%, rgb(var(--white-color)) 40%);
}

@media only screen and (max-width: 1000px) {
    .gradient-primary-light-white {
        background: linear-gradient(to right, rgba(var(--primary-light-color)) 70%, rgb(var(--primary-light-color)) 40%);
    }
}

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

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

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

/* Grafiska element
========================================================================== */
/* Borders */
.border-top-black {
    border-top: 1px solid rgb(var(--black-color));
}

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


/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: linear-gradient( 90deg, rgba(var(--black-color), 42) 0%, rgba(var(--black-color), 0.5) 0%, rgba(var(--black-color), 0) 100% );
}

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


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

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

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

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

.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;
    max-width: 45rem;
    max-height: calc(100vh - 12rem); 
    padding: 4rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

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

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

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

    .icon-close-popup {
        top: 1rem;
    }
}
/* Parallax
========================================================================== */
.parallax {
    min-height: 40rem;
    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;
    }
}

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

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

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

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

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

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

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

/* Cards 5 */
.cards-5 .card-item {
    text-decoration: none;
    transition: 0.3s ease;
    padding: 2rem;
}

.cards-5 .icon-wrapper {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: rgb(var(--primary-color));
}

.cards-5 .card-item:hover {
    background-color: rgb(var(--primary-light-color));
}

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

/* Card 18 */
.cards-18 {
    border-left: 1px solid rgb(var(--black-color), 0.1);
    margin-top: 2rem;
}

.cards-18 .card-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid rgb(var(--black-color), 0.1);
    border-right: 1px solid rgb(var(--black-color), 0.1);
    background-color: rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--black-color), 0.1);
}

.cards-18 .image-wrapper {
    max-height: 28rem;
}

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

@media only screen and (max-width: 580px) {
    .cards-18 .card-item {
        padding: 1.5rem;
    }

    .cards-18 .text-wrapper {
        flex-grow: 1;
        padding: 2rem 0 1rem;
    }
}

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

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

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

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

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


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

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

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

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

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

/* Header / Navigation
========================================================================== */
header {
    transition: all 0.2s ease;
}

header.scrolled {
    box-shadow: 0 1rem 3rem rgb(var(--black-color), 0.1);
    transition: all 0.2s ease;
}

header .container {
    padding: 0 2rem;
}

nav.mainmenu ul > li.expandable-li > a{
    cursor: default;
 }
 

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

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

.mobile-menu .header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2.8rem;
    margin-left: 0;
}

/* nav */
nav.mainmenu a {
    font-weight: 400;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

header nav.mainmenu a:hover, header nav.mainmenu li.active a {
    color: rgb(var(--primary-color));
}


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

@media only screen and (max-width: 360px) {
    .mobile-menu .header-cta-wrapper .btn {
        min-width: unset;
        padding: 1rem 1.5rem;
        margin-left: 0;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    max-width: 100% !important;
    background-color: rgba(var(--black-color), 0.35);
    min-height: 92vh;
}

.top-section .text-label {
    color: rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--white-color));
    max-width: 30rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.top-section .section-title {
    font-size: 8rem;
    font-weight: 400;
    line-height: 1.1;
    font-family: mrs-eaves, sans-serif;
    color: rgb(var(--white-color));
}

.top-section h1 {
    max-width: 80rem;
    text-align: center;
    padding-top: 3rem;
}

.top-section .text-label {
    display: block;
}

.top-section .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

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

    .top-section h1 {
        max-width: 60rem;
    }
}

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

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

    .top-section .text-label {
        max-width: 20rem;
    } 
}

@media only screen and (max-width: 400px) {
    .top-section .section-title {
        font-size: 3.3rem;
        line-height: 1.2;
    }

    .top-section h1 {
        max-width: 30rem;
    }
}






@media only screen and (max-width: 540px) {
    .hero-cta {
        transform: translateY(-10%);
        display: flex;
        background-color: rgb(var(--white-color));
        box-shadow: 0 1rem 3rem rgb(var(--black-color), 0.1);
        border-radius: 8rem;
    }
}




.section-form .ContactForm {
   flex-wrap: wrap;
   position: relative;
   transform: translateY(-50%);
   display: flex;
   background-color: rgb(var(--white-color));
   box-shadow: 0 1rem 3rem rgb(var(--black-color), 0.1);
   border-radius: 8rem;
}

.section-form .ContactForm div {
   flex: 1 1 1rem;
   padding: 1rem;
   font-family: inherit;
   margin-bottom:0;
   font-size: 2rem;
   border: none;
   border-radius: 0;
   border:none;
}

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

.section-form .ContactForm input[type="submit"] {
width:auto;
}

.section-form .ContactForm .ContactFormMessage  {
   display:none;
}

.section-form .ContactForm p {
 display:none;
}

.grecaptcha-badge {
    display: none;
}

.section-form .ContactForm input[type="submit"]{
    width: 100%;
}

.ContactSentMessage {
    padding: 5rem 0 8rem;
}
.ContactFormName .text-field{
    width: 100%;
}
@media only screen and (max-width: 800px) {
    .section-form .ContactForm {
        flex-wrap: wrap;
    }

    .section-form .ContactSubmit, .section-form .ContactForm {
        border-radius: 0;
    }

    .section-form .ContactForm input[type="submit"]{
        width:100%;
        }
}

@media only screen and (max-width: 700px) {
.section-form .ContactForm div {
   flex: none;
width: 100%;
}
.section-form .ContactForm{
    border-radius: 2rem;
}
}


/* parallax, bild
========================================================================== */
.section-picture {
    background-image: url(/assets/images/kok-kvinnor-2000.jpg);
    min-height: 40rem;
}

/* Text-sektion med storre texter
========================================================================== */
.section-text {
    position: relative;
    overflow: hidden;
}

.section-text::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10rem;
    width: 40%;
    height: 100%;
    background-image: url("/assets/images/tvattmaskin.png");
    background-repeat: no-repeat;
    background-size: 62rem;
    opacity: 0.1;
}

.section-text .col-1 {
    display: flex;
    align-self: flex-end;
}

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

.section-text p {
    font-size: 2rem;
}

@media screen and (max-width: 580px) {
    .section-text p {
        font-size: 1.7rem;
    }

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

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 10rem 4rem;
    background-image: url(/assets/images/wave.svg);
    background-size: 100% 12rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

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

.hero-icon {
    position: relative;
    overflow: hidden;
}

.EditMode .hero-icon::after {
    content: none;
}

.hero-icon::after {
    content: "";
    position: absolute;
    left: calc(100% - 40%);
    bottom: -6rem;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/varmepump.svg");
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 2;
}

.hero-icon.fridge::after {
    content: "";
    position: absolute;
    left: calc(100% - 30%);
    bottom: -6rem;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 2;
    background-image: url("/assets/images/vitvara.svg");
}

.hero-icon.clean::after {
    content: "";
    position: absolute;
    left: calc(100% - 35%);
    bottom: -6rem;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 2;
    background-image: url("/assets/images/stadmaskin.svg");
}

.hero-icon.wash::after {
    content: "";
    position: absolute;
    left: calc(100% - 35%);
    bottom: -6rem;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 2;
    background-image: url("/assets/images/power-wash.svg");
}

@media only screen and (max-width: 1050px) {
    .hero-icon::after {
        left: calc(100% - 60%);
    }
}

@media only screen and (max-width: 580px) {
    .hero-icon::after {
        left: calc(100% - 50%);
    }

    .hero .section-block {
        padding: 4rem 2rem;
    }
}

/* ==========================================================================
Undersida: Varmepumpar
========================================================================== */

.section-pump .split-image {
    border: none;
    box-shadow: none;
    justify-content: center;
    display: flex;
}

.section-pump .split-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), 0.25);
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.center-image {
    z-index: 1;
    position: absolute;
    align-self: center;
    justify-content: center;
    display: flex;
    box-shadow: var(--box-shadow);
    border: 1rem solid rgb(var(--primary-color));
    max-width: 40rem;
}

@media only screen and (max-width: 580px) {
    .center-image {
        max-width: 20rem;
    }
}


/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */


/* formularet */
.section-report .ContactForm {
     display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.section-report .ContactForm .ContactFormMessage {
    width: 100%;
}

.section-report .ContactForm p {
    color: rgb(var(--primary-color));
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem;
}

.section-report .ContactForm input[type="text"],
.section-report .ContactForm textarea,
.section-report .ContactForm input[type="email"]:not(.illegal) {
    border: none;
    background-color: rgb(var(--primary-light-color));
}
.section-report .submit-button-container{
    width: 100% !important;
}
@media only screen and (max-width: 1200px) {
    .section-report .layout-12 .col-1,
    .section-report .layout-12 .col-2 {
        width: 100%;
    }

    .section-report .layout-12 .col-1 {
        margin-bottom: 5rem;
    }

    .section-report .layout-12 .col-2{
        padding-left:0;
    }
}

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

/* ==========================================================================
Footer
========================================================================== */

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

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

.footer :is(p, a, li) {
    color: rgba(var(--primary-color));
    font-weight: 300;
}

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

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

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

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

.footer .text-label {
    color: rgb(var(--black-color));
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    max-width: 100%;
    border: none;
    font-size: 1.8rem;
}

.footer-top .contact em {
    color: rgb(var(--primary-color));
    width: 2.5rem;
}

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

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

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

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
    color: rgb(var(--primary-color));
}

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

/* Logotyper i footern */
.footer-bottom-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgb(var(--gray-light-color), 0.5);
    background-color: rgb(var(--gray-light-color));
    border-radius: 2px;
}

.footer-col-bottom img {
    max-width: 20rem;
    max-height: none;
    margin: 0 auto;
}

.footer .footer-bottom a:hover {
    text-decoration: none !important;
}

/* WebbEss Stamp */
.webbess-stamp {
    min-width: 20rem;
}

.webbess-stamp a {
    padding: 0;
    font-size: 1.3rem;
    font-weight: 400;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

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

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

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

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

    .webbess-stamp a {
        justify-content: flex-start;
    }

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

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

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

    .footer-top {
        padding: 4rem 0 4rem;
    }
}
