/* Betong & Microcement 08 AB */

/* Fonts */
@import url("https://use.typekit.net/ner2fpi.css");
/* Aos */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');


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

    /* 	Colors */
    --primary-color: 130, 153, 159;
    --primary-light-color: 186, 199, 202;
    --secondary-color: 106, 154, 139;
    --white-color: 255, 255, 255;
    --black-color: 17, 17, 17;
    --gray-light-color: 238, 238, 238;
    --gray-dark-color: 53, 53, 53;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1300;
    --mobile-menu-height: 8rem;
    --mobile-menu-bg: var(--primary-light-color);
    --menu-color: var(--white-color);
}

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

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

.p-3 {
    padding: 3rem;
}

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

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

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

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

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

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

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

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

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

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

/* Margins*/
.mt-2 {
    margin-top: 2rem;
}

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

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

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

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

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

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

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

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

/* Ovriga klasser */
.block {
    display: block;
}

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

    .mt-2 {
        margin-top: 0rem;
    }
}

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: sofia-pro, sans-serif;
    color: rgb(var(--gray-dark-color));
}

/* Rubriker */
.text-label {
    position: relative;
    font-size: 1.3rem;
    line-height: 1.3;
    padding-bottom: .4em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgb(17, 17, 17);
}

.section-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
    padding-bottom: 2rem;
    color: transparent;
    color: rgb(17, 17, 17);
}

.small-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgb(17, 17, 17);
}

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


/* Brodtext och lankar */
p {
    font-weight: 300;
    line-height: 1.7;
    color: rgb(var(--gray-dark-color));
}

.p-small {
    font-size: 1.7rem !important;
}

a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

p a {
    text-decoration: underline;
    text-decoration-color: rgb(var(--secondary-color));
    text-underline-offset: 3px;
    transition: all .2s ease;
}

p a:hover {
    text-decoration: none;
    transition: all .2s ease;
}

/* Listor */
.styled-list {
    list-style: none;
    padding-inline-start: 3rem;
}

.styled-list.row-list {
    display: flex;
    flex-wrap: wrap;
}

.styled-list li {
    position: relative;
    margin-bottom: .5em;
}

.styled-list.row-list li {
    margin: 0 4rem 0 0;
}

.styled-list li::before {
    content: '\f00c';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    top: 50%;
    left: -3rem;
    background-color: rgb(var(--primary-color));
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

.arrow-list {
    padding-left: 0;
    list-style: none;
}

.arrow-list li {
    position: relative;
}

.arrow-list li::before {
    content: '\f054';
    padding-right: 1.5rem;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
}

.col-list {
    columns: 25rem 2;
}

.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    max-width: 100rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.list-pills li {
    display: flex;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin: .5rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    color: rgb(var(--black-color));

    width: 60%;
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        width: 100%;
        padding: 1rem;
        font-size: 1.4rem;
    }
}

/* Ovriga klasser */

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

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

.space-between {
    justify-content: space-between !important;
}

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

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

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

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

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    appearance: none;
    display: inline-block;
    min-width: 20rem;
    padding: 1.4rem 3rem;
    font-family: inherit;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    line-height: 1;
    border-radius: 3rem;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}


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

.btn-primary-filled:hover,
.ContactSubmit:hover,
.ContactSubmit:focus {
    color: rgb(255, 255, 255);
    border: 1px solid transparent;
    background-color: rgba(var(--primary-color), .4);
}

.btn-primary-filled-light {
    color: rgb(255, 255, 255);
    border: 1px solid transparent;
    background-color: rgba(var(--primary-color), .4);
}

.btn-primary-filled-light:hover {
    color: rgb(255, 255, 255);
    border: 1px solid rgba(var(--primary-color), .4);
    background-color: transparent;
}

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

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

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


.btn-white-filled {
    color: rgb(17, 17, 17);
    border: 1px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}



/* Knapp med cirkel */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
    transition: .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);
}


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

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

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

@media only screen and (max-width: 1000px) {
    .btn-wrapper.space-between {
        justify-content: center !important;
    }

    .btn-wrapper {
        flex-direction: column !important;
    }

    .btn {
        margin-bottom: 2rem;
    }
}

@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: rgba(var(--primary-color), .1);
}

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

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

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

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

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

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

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

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

.text-muted {
    color: rgba(var(--white-color), .8);
}

/* Grafiska element
========================================================================== */
/* Border Radius */
.rounded-1 {
    border-radius: 1rem;
}

.rounded-2 {
    border-radius: 2rem;
}

/* Borders */

.border-left {
    border-left: 1px solid;
}

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

.border-left-white {
    border-left: 1rem solid rgb(var(--white-color));
}

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

/* Box shaddow */
.box-shadow {
    box-shadow: -1px 0px 11px rgba(0, 0, 0, .2);
}

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

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

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

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

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

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

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

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

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

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

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


/* Border pÃ¥ bild */
.split-image.border-right-white,
.split-image.border-left-white {
    border: 1rem solid rgb(var(--white-color));
}

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

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

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

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

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

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

}

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

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

    .split-wrapper .w-80,
    .split-wrapper .w-20 {
        width: 100%;
    }

    /* Select every split-wrapper w class bg-... */
    .split-wrapper.bg-primary .split-content {
        padding: 2rem;
    }

    /* Bakgrundsfarg */
    .bg-primary-light .split-content {
        padding-top: 3rem;
    }
}

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

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

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

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

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

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

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

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

}

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

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

/* Cards 2 */

.cards-2 .card-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-radius: .5rem;
    border: 1px solid rgb(var(--gray-light-color));
    background-color: rgb(var(--white-color));
    transition: 0.2s ease-in-out;
}

.cards-2 figure,
.cards-2 .icon-wrapper {
    width: 9rem;
    height: 9rem;
    border-radius: 0 1.5rem 1.5rem 0;
    margin: 0;
    padding: 0;
}

.cards-2 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-2 i {
    font-size: 3rem;
    color: rgb(var(--white-color));
}

.cards-2 .text-wrapper {
    text-align: left;
    padding: 0 1.5rem;
    width: calc(100% - 9rem);
}

.cards-2 p {
    font-size: 1.6rem;
    max-width: 30ch;
}

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

    .cards-2 figure,
    .cards-2 .icon-wrapper {
        width: 5rem;
        height: 5rem;
        border-radius: 0 .5rem .5rem 0;
    }

    .cards-2 .text-wrapper {
        width: calc(100% - 5rem);
    }

}



/* Cards 14 */

.cards-14 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 2rem;
    transition: all .3s ease;
}

.cards-14 a.card-item:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}

.cards-14 i {
    width: 5rem;
    font-size: 3rem;
}

.cards-14 p {
    padding-bottom: 0;
    font-size: 1.4rem;
}

.cards-14 .contact-info {
    font-size: 1.6rem;
    font-weight: 400;
}


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

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

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

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

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

/* Parallax
========================================================================== */
.parallax {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 40vh;
    max-height: 58rem;
}

.parallax-index {
    background-image: url(/assets/images/microcement-house.jpg);
}

.parallax-trappa {
    background-image: url(/assets/images/microcement-trappa-gra-1920.jpg);
}

.parallax-badrum {
    background-image: url(/assets/images/microcement-ljust-badrum-1500.jpg);
}

.parallax-lagenhet {
    background-image: url(/assets/images/microcement-vardagsrum-lagenhet-1920.jpg);
}

.parallax-text {
    height: auto;
}

.parallax-text .section-block {
    background-color: rgba(var(--black-color), .4);
}

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


/* Video ratio
========================================================================== */
.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video,
.video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Accordion
========================================================================== */
.accordion-item {
    padding-bottom: 2rem;
}

.accordion-question {
    position: relative;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgb(var(--primary-color));
    cursor: pointer;
}

.accordion-question::after {
    content: "\f078";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

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

.accordion-question .text-title {
    padding: 0 2.5rem 0 0;
}

.accordion-answer {
    padding: 2rem 0;
}


/* Modal som oppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color), .7);
}

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    overflow: auto;
    background: rgb(var(--primary-color));
    transform: translate(-50%, -50%);
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
        padding: 3rem 2rem;
    }
}


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

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

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    border: 1px solid rgb(var(--white-color));
    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);
}

/* Innehall */
.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: #FFF;
    border-radius: 2.5rem 2.5rem 5px 2.5rem;
    box-shadow: 0 0 7rem rgba(0, 0, 0, 0.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;
    display: flex;
    align-items: center;
    justify-content: center;
    top: .8rem;
    right: .8rem;
    font-size: 2.5rem;
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.icon-close-popup:hover {
    background-color: rgb(var(--gray-light-color));
}

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

    .icon-close-popup {
        top: 1rem;
    }
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    background-color: rgb(var(--primary-color));
    transition: all .2s ease;
}

.EditMode header .container {
    max-width: none;
}

/* Top header */
.top-header {
    max-width: 140rem;
    margin: 0 auto;
    border-bottom: 1px solid rgba(var(--white-color), 0.4);
    overflow: hidden;
    transition: .3s ease;
}

.top-header ul {
    display: flex;
    justify-content: flex-end;
    padding: .75rem 0;
    margin: 0;
    list-style: none;
}

.top-header li {
    line-height: 1;
    font-size: 0;
}

.top-header li:not(:last-child) {
    margin: 0 2rem 0 0;
}

.top-header a {
    font-size: 1.3rem;
    color: rgba(var(--white-color), .6);
}

.top-header a:hover {
    color: rgb(var(--white-color));
}

.top-header a i {
    color: rgb(var(--white-color));
}

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

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

.EditMode nav.mainmenu {
    margin: 0;
}

.TemplateMenu a {
    position: relative;
    font-weight: 500;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(var(--white-color), .6);
    padding: 0 1rem;
}

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

.TemplateMenu ul li.active>a,
.TemplateMenu ul a:hover {
    color: rgb(var(--black-color));
}

.TemplateMenu>li>a {
    padding: 0;
    margin: 0 1rem;
}

.TemplateMenu>li:last-child>a {
    margin-right: 0;
}

.TemplateMenu>li.active>a::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(var(--white-color));
    left: 0;
    bottom: 0;
}

/* Ta bort klick */
.TemplateMenu a[href="/17/10/microcement/"],
.TemplateMenu a[href="/17/14/vara-tjanster/"],
.TemplateMenu a[href="/17/66/vara-orter/"] {
    pointer-events: none;
}

.TemplateMenu>li:first-child {
    display: none;
}

/* Dropdowns */
.expandable::after {
    transform: none;
}

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

.TemplateMenu ul a {
    color: rgba(var(--black-color), .7);
    letter-spacing: 0;
    text-transform: none;
}

.TemplateMenu>li>ul {
    right: 0;
}

.EditMode .TemplateMenu>li>ul>li>ul {
    width: 30rem;
    right: -30rem;
}

/* CTA-wrapper */
.cta-side-wrapper {
    z-index: 2;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;
}

.cta-side-wrapper a {
    position: relative;
    left: 0;
    display: block;
    padding: 1.5rem;
    margin: .5rem 0;
    white-space: nowrap;
    background: rgb(var(--secondary-color));
    transition: 0.4s ease-in-out;
    font-size: 1.6rem;
    color: #fff;
}

header.scrolled .cta-side-wrapper a {
    left: calc(100% - 2rem - 1.5rem);
    /* 100% - i's width - a's padding-left */
}

.cta-side-wrapper a:hover {
    color: rgb(var(--black-color));
    background: rgb(var(--primary-color));
}

header.scrolled .cta-side-wrapper a:hover {
    left: 0;
}

.cta-side-wrapper i {
    width: 2rem;
}

/* Mobilmeny */
.mobile-menu .TemplateMenu {
    padding-bottom: 5rem !important;
}

.mobile-menu .header-logo img,
.mobile-menu.scrolled .header-logo img {
    max-height: 3rem;
    padding: 0.5rem 0;
}

.mobile-menu .TemplateMenu>li>a {
    color: rgba(var(--black-color), .7);
    margin: 0 0 0 2rem;
}

.mobile-menu .TemplateMenu a {
    padding: 0;
    font-size: 1.5rem;
}

.mobile-menu .TemplateMenu ul a {
    font-size: 1.4rem;
}

.mobile-menu .TemplateMenu>li.active a::before {
    background-color: rgb(var(--black-color));
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    min-height: 80vh;
    background-image: url(/files/background/microcement-bathroom.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.top-section .section-block {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    padding-bottom: 0;
}

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

.hero-box {
    width: 100%;
    max-width: 88rem;
    padding: 3.5rem 3.5rem 10rem;
    border: 3px solid #6A9A8B;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

.top-section h1 {
    padding-bottom: 1.2em;
    color: rgb(var(--white-color));
    line-height: 1;
    font-size: 5.3rem;
    font-weight: 300;
    padding: 0 0 1.2rem;
}

.top-section p {
    max-width: 60rem;
    padding-top: 0.4em;
    font-size: 3.2rem;
    font-weight: 300;
    color: rgb(var(--white-color));
}

.hero-box i {
    color: #6A9A8B;
    font-size: 2.5rem;
}

.badge {
    background: rgb(var(--primary-color));
    max-width: 65rem;
    padding: 3rem;
    position: absolute;
    right: 0;
    bottom: 5rem;
    border: 1px solid white;
}

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

    .hero-box {
        max-width: 45rem;
        padding: 2.5rem 2.5rem 7rem;
    }

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

    .top-section p {
        font-size: 2.8rem;
    }
}

@media only screen and (max-width: 980px) {
    .badge {

        bottom: 40rem;
    }
}

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

    .hero-box {
        padding: 2rem 2rem 5rem;
    }

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

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

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

/* Sektion Tjanster
========================================================================== */

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

    .section-services .cards-2 {
        justify-content: space-between;
    }

    .section-services .cards-2 .card-item {
        width: calc(100% / 2 - .5rem);
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 900px) {
    .section-services .cards-2 .arrow-link {
        position: relative;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 2rem;
    }

    .section-services .cards-2 .arrow-link::after {
        position: absolute;
        right: 0;
        top: 60%;
        transform: translateY(-50%);
    }
}

@media only screen and (max-width: 750px) {
    .section-services .cards-2 .card-item {
        width: 100%;
    }
}

/* Sektion Usp
========================================================================== */
.section-usp {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 40vh;
}

/* Sektion Instagram 
========================================================================== */
.insta-widget {
    position: relative;
    margin-bottom: -3rem;
    overflow: hidden;
}

/* Styling for sjalva carden */
.insta-widget .eapps-instagram-feed-posts-item {
    border-radius: 1rem;
}

/* ==========================================================================
Undersidor - generellt for alla undersidor
========================================================================== */

/* Hero
========================================================================== */
.hero .section-block {
    position: relative;
    z-index: 1;
    padding: 20rem 2rem;
    overflow: hidden;
}

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

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

/* Generellt for formular
========================================================================== */
.ContactForm p {
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
}

.Contact .ContactForm input.text,
.Contact .ContactForm textarea.textmessage {
    border-radius: 3px;
}

.Contact .ContactForm textarea.textmessage {
    height: 15rem;
}

.ContactForm input[type="text"],
.ContactForm input[type="number"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm input[type="date"],
.ContactForm input[type="datetime-local"],
.ContactForm select,
.ContactForm textarea,
.ContactForm .file-dropzone {
    font-size: 1.6rem;
    background-color: rgb(var(--gray-light-color));
}

/* Formular med 50% falt */
.form-w-50 .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 95rem;
    margin: 0 auto;
}

.form-w-50 .ContactForm>div {
    width: 49%;
}

.form-w-50 .ContactForm div.file-field,
.form-w-50 .ContactForm div.textarea-field,
.form-w-50 .ContactForm div.submit-button-container {
    width: 100%;
}

@media only screen and (max-width: 680px) {
    .form-w-50 .ContactForm>div {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    body:not(.EditMode) .form-w-50 .ContactForm {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Microcement
========================================================================== */

/* Sektion Farger
========================================================================== */
.color-wrapper .card-item {
    width: calc(100% / 5 - 2rem);
    margin: 0 1rem 5rem;
}

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

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

@media only screen and (max-width: 580px) {
    .color-wrapper .card-item {
        width: calc(100% / 2 - 1rem);
        margin: 0 .5rem 3rem;
    }
}

/* ==========================================================================
Undersida: Arbetsmetoder
========================================================================== */

/* Sektion Ladda ner filer
========================================================================== */
.download-wrapper {
    list-style: none;
    margin: 0 0 5rem;
    padding: 0;
}

.download-wrapper li {
    border-radius: 2px;
}

.download-wrapper li:nth-child(odd) {
    background-color: rgba(var(--primary-color), .1);
}

.download-wrapper a {
    color: rgb(var(--primary-color));
    line-height: 1.4;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
}

.download-wrapper a:hover {
    text-decoration: underline;
}

.download-wrapper i {
    font-size: 1.5em;
    display: inline-block;
    position: relative;
    margin-right: 2rem;
}

@media only screen and (max-width: 580px) {
    .download-wrapper {
        margin: 0 -2rem 5rem;
    }

    .download-wrapper a {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
Undersida: Kurser
========================================================================== */
.dates {
    /*columns: 10rem 2;*/
    padding: 0 0 0 2rem;
}

.dates li {
    font-size: 1.6rem;
    color: rgb(var(--gray-dark-color));
}

/* ==========================================================================
Undersida: FAQ
========================================================================== */
.faq-list {
    width: 70%;
    margin: auto;
}

/* Intresseanmalan
========================================================================== */
.parallax-courses {
    height: auto;
    background-image: url(/assets/images/microcement-vardagsrum-lagenhet-1920.jpg);
}

.parallax-courses .section-block {
    padding-top: 15rem;
    padding-bottom: 12rem;
    background-color: rgba(var(--black-color), .3);
}

body:not(.EditMode) .form-wrapper,
body:not(.EditMode) .section-apply .ContactForm {
    position: relative;
    top: -9rem;
    padding: 5rem;
    background: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    body:not(.EditMode) .section-apply .ContactForm {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Inspiration
========================================================================== */
.tags-wrapper {
    position: sticky;
    z-index: 1;
    top: 8rem;
    background-color: white;
    text-align: center;
    padding: 1rem;
    margin: 0 0 3rem;
}

/* Dolj card */
.card-item.hidden-search-item,
.card-item.hidden-tag-item {
    display: none;
}


/* Sektion Galleri
========================================================================== */
.gallery-wrapper figure {
    position: relative;
    width: 100%;
    padding: 100% 0 0;
    margin: 0;
    overflow: hidden;
    border-radius: 1rem;
}

.gallery-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all .4s ease;
    transform-origin: center;
}

.gallery-wrapper .card-item:hover img {
    transform: scale(1.05) translateY(-50%);
    transition: all .3s ease;
    transform-origin: center;
}

/* Fancybox */
body .fancybox-bg {
    background-color: rgb(var(--white-color));
}

body .fancybox-button {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1050px) {
    .gallery-wrapper.w-25 .card-item {
        width: calc((100% / 4) - 1rem);
        margin: .5rem;
    }
}

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

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

/* ==========================================================================
Undersida: Hitta applicerare
========================================================================== */

/* Sektion Hitta
========================================================================== */

.tags-list .btn {
    appearance: none;
    cursor: pointer;
    margin: 0 1rem;
    border: 1px solid rgba(var(--secondary-color), .4);
    color: rgb(var(--black-color));
    background-color: transparent;
}

.tags-list .btn:hover {
    background-color: rgba(var(--secondary-color), .4);
    border-color: transparent;
}

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

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

    .tags-wrapper {
        margin: 0 -2rem 3rem;
        padding: 1rem 0;
    }

    .tags-list {
        display: flex;
        flex-wrap: nowrap;
        padding: 0 2rem;
        margin: 0 2rem 0 0;
        overflow: hidden;
        overflow-x: scroll;
        scrollbar-width: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        -webkit-mask-image: linear-gradient(90deg, transparent, #fff 10px, #fff 90%, transparent);
        mask-image: linear-gradient(90deg, transparent, #fff 10px, #fff 90%, transparent);
    }

    .tags-list .btn {
        flex: 0 1 auto;
        white-space: nowrap;
        min-width: auto;
        margin: 0 1rem 0 0;
    }

    .tags-list .btn:last-child {
        margin-right: 3rem;
    }
}

/* Sektion Applicerare
========================================================================== */
.ref-wrapper .card-item {
    border-radius: 2px;
    background-color: rgb(var(--white-color));
    padding: 3rem;
}

.ref-wrapper .text-title {
    border-bottom: 1px solid rgb(var(--primary-light-color));
    padding: 0 0 1rem;
    margin: 0 0 1rem;
}

.ref-wrapper .text-title .place {
    opacity: .7;
}

.ref-wrapper .socials {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0 0;
}

.ref-wrapper a {
    font-size: 1.4rem;
    color: rgb(var(--gray-dark-color));
    padding: 0 1rem .5rem 0;
}

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

.ref-wrapper a i {
    color: rgb(var(--primary-color));
    padding: 0 .5rem 0 0;
}

.logo-wrapper {
    max-height: 2.8rem;
    margin-left: 1rem;
}

@media only screen and (max-width: 800px) {
    .ref-wrapper .card-item {
        padding: 2rem;
    }

    .ref-wrapper a i {
        font-size: .7em;
        vertical-align: middle;
    }
}

/* ==========================================================================
Undersida Kontakt
========================================================================== */
.section-contact .col-0 {
    padding: 10rem 5rem 0 0;
}

.section-contact .col-1 {
    z-index: 1;
    position: relative;
    top: -5rem;
    padding: 3rem;
    border-radius: 2px;
    background-color: rgb(var(--white-color));
}

@media only screen and (max-width: 1000px) {
    .section-contact .col-1 {
        top: 0;
        padding: 0;
    }
}

/* ==========================================================================
Undersida: Tack for din forfragan
========================================================================== */
.section-message-sent {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 27rem);
}

/* ==========================================================================
Undersida: Privatpersoner
========================================================================== */


/* For Privatpersoner-sidorna - dolj kontakt-knappen och lagg till varukorg-knappen */
.cart-privatperson-btn {
    display: none !important;
}

.js-cart-page .cta-btn {
    display: none;
}

.js-cart-page .cart-privatperson-btn {
    display: block !important;
}

.js-cart-page header .cta-side-wrapper a,
.js-cart-page header.scrolled .cta-side-wrapper a {
    left: calc(100% - 2rem - 3.5rem);
}

/* End For Privatpersoner */

@media only screen and (hover:none) {
    .cta-side-wrapper {
        display: flex;
        top: unset;
        left: 0;
        bottom: 0;
        right: unset;
        width: 100vw;
        transform: unset;
    }

    .cta-side-wrapper a {
        display: inline-block;
        width: 40.333%;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        margin-right: 0.5rem;
    }

    header.scrolled .cta-side-wrapper a,
    header.scrolled .cta-side-wrapper a:hover {
        left: unset;
    }

    .cta-side-wrapper i {
        width: auto;
        margin-right: .5rem;
    }

    /* For Privatpersoner-sidorna - dolj kontakt-knappen och lagg till varukorg-knappen */
    .cart-privatperson-btn {
        display: none !important;
    }

    .js-cart-page .cta-btn {
        display: none;
    }

    .js-cart-page .cart-privatperson-btn {
        display: inline-block !important;
    }

    .js-cart-page header .cta-side-wrapper a,
    .js-cart-page header.scrolled .cta-side-wrapper a {
        left: unset;
    }

    /* End For Privatpersoner */
}

/* ==========================================================================
Undersida: For proffs > Shop for foretag och partners
========================================================================== */
.proffs-page .cta-side-wrapper {
    display: none;
}

/* Section Products
========================================================================== */
.section-products h2 {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    width: 100%;
    text-align: left;
    border-bottom: 2px solid;
    background-color: #FFF;
    padding: 2rem 0;
    line-height: 1;
}

.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10rem;
}

.product-wrapper .card-item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 2rem 0 1rem;
}

.product-wrapper .card-item:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
}

.product-wrapper .card-item .btn-wrapper {
    align-self: flex-start;
    margin: 0;
}

.product-wrapper .card-item .text-wrapper {
    flex: 1 1 0px;
    padding: 0 4rem 0 0;
}

.product-wrapper .card-item .text-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-wrapper .card-item .small-title {
    padding: 0;
}

.product-wrapper .card-item .price {
    font-weight: 700;
    font-size: 2rem;
}

span.vat-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #535353;
    text-align: right;
}

.inline-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.inline-list li {
    list-style-type: none;
    font-size: 1.4rem;
}

.inline-list li:not(:last-child) {
    padding: 0 1rem 0 0;
    margin: 0 1rem 0 0;
    border-right: 1px solid #eaeaea;
}

.btn-add-to-cart {
    font-weight: 700;
    line-height: 1;
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    min-width: auto;
}

.btn-add-to-cart:hover {
    padding: 1rem 1.5rem;
    cursor: pointer;
}

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

    .product-wrapper .card-item .text-wrapper {
        flex: auto;
        width: 100%;
        padding: 0;
    }

    .product-wrapper .card-item .btn-wrapper {
        margin: 0 0 0 auto;
    }

    .product-wrapper .card-item .small-title {
        font-size: 1.6rem;
        flex: 2 1 0px;
    }

    .product-wrapper .card-item .small-title.price {
        flex: 1 1 0px;
        text-align: right !important;
        padding: 0 0 0 1rem;
    }
}

/* Kundvagnsfunktionalitet */
.cart-btn {
    position: relative;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border-radius: 4rem 0 0 4rem;
    appearance: none;
    border: 1px solid #eaeaea;
    border-right: 0;
    background-color: #FFF;
    cursor: pointer;
}

.cart-btn:hover {
    background-color: #eaeaea;
}

.orderform .cart-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    width: 5rem;
    height: 5rem;
    z-index: -1;
    box-shadow: -1px 0px 11px rgba(0, 0, 0, .2);
}

.cart-icon {
    font-size: 2.2rem;
    color: #333;
}

.cart-amount {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    color: #333;
}

.cart-btn .close-icon {
    display: none;
}

/* Knapp */
.btn-small {
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    text-align: center !important;
    appearance: none;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    background-color: #c2d6d0;
    color: #000;
}

.btn-small:hover {
    background-color: #6A9A8B;
}

/* Kundvagn undersida */
.cart-items-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 2rem;
    padding: 0 0 1rem;
}

.cart-item>* {
    width: 100%;
}

.cart-item:not(:last-child) {
    border-bottom: 1px solid #F2F2F2;
}

.cart-item-title {
    font-weight: 400;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-item-name {
    color: #333;
}

.cart-item-price {
    font-weight: 700;
    color: rgb(0, 0, 0);
}

.cart-item-total {
    display: inline-block;
    margin: 0 1rem;
}

.cart-item-count-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cart-remove {
    display: flex;
    margin: 0 0 0 2rem;
}


/* Cart Visa totalt pris */
.cart-total {
    list-style: none;
    margin: 0 0 5rem;
    padding: 0;
}

.cart-total .total-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #F2F2F2;
}

.total-price span {
    font-weight: 700;
    font-size: 1.3em;
}

.cart-total .info {
    font-size: 1.4rem;
    margin-top: .7rem;
}

/* Bestallningsformular
========================================================================== */
.orderform {
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    max-width: 50rem;
    transition: all .3s ease;
    transform: translateX(100%);
}

.EditMode .orderform {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: none;
    display: block;
    transform: none;
}

.orderform.orderform-opened {
    transform: translateX(0);
    transition: all .3s ease;
}

.orderform::after {
    content: '';
    position: fixed;
    z-index: -2;
    display: block;
    top: 0;
    width: 100vw;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transition: all .2s ease;
}

.orderform.orderform-opened::after {
    opacity: 1;
    transition: all .2s ease;
}

.orderform .section-block {
    width: 100%;
    height: 100%;
    padding: 3rem 3rem 10rem;
    overflow: scroll;
    background-color: #FFF;
    transition: all .3s ease;
}

.orderform .section-block-wrapper {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.orderform .col-block {
    width: 100%;
    padding: 0 0 3rem;
}

.orderform .col-block:last-child {
    padding: 0 0 10rem;
}

.js-return-btn {
    display: none;
    margin-top: 5rem;
    text-align: center;
}

.orderform .ContactForm>.ContactFormField:nth-child(4) {
    display: none;
}

.orderform .Contact .ContactForm div {
    width: 100%;
}

.orderform .Contact p {
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
}

.orderform .ContactSubmit {
    width: 100% !important;
    max-width: unset;
    text-align: center;
}

/* Fieldset */
.ContactForm fieldset {
    margin: 0;
    padding: 0 0 5rem;
    border: none;
}

.ContactForm legend {
    display: block;
    width: 100%;
    font-size: 2.2rem;
    font-family: sofia-pro, sans-serif;
    padding: 0 0 0.5rem;
    margin: 0 0 0.5rem;
    border-bottom: 1px solid #F2F2F2;
}

.orderform .ContactForm fieldset p.legend-description {
    padding-bottom: 1.5rem;
    color: #999;
}

/* Tackmeddelande */
.orderform .form-part .ContactSentMessage {
    padding: 12rem 0 0;
    background: url(/assets/images/cart-icon-done.svg) no-repeat center top;
    background-size: 10rem;
    text-align: center !important;
}

.orderform .form-part .ContactSentMessage p,
.Contact .ContactSentMessage p {
    font-family: sofia-pro, sans-serif;
}

.orderform .form-part .ContactSentMessage p:first-child {
    font-size: 2rem;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    z-index: 1;
    position: relative;
    background-color: rgb(var(--primary-color));
}

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

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

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

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

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

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
    color: rgb(var(--white-color));
}

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

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

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

.footer .socials {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 3rem;
}

.footer .circle-icon {
    width: 3rem;
    height: 3rem;
    font-size: 0;
    margin: 0 1rem 0 0;
    background-color: transparent;
    border: 1px solid rgba(var(--white-color), .6);
    color: rgb(var(--white-color));
    border-radius: 3rem;
}

.footer .circle-icon.footer-logo {
    width: 12rem;
    padding: 0 1rem;
}

.footer .circle-icon:hover {
    color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
}

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

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

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

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

    .footer-container {
        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%;
    }

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

}

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

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

}