/* AllCall / Vellux */

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/*@import url('https://fonts.googleapis.com/css?family=Playfair+Display|Strait:300,400');
@import url('https://fonts.googleapis.com/css?family=Strait');*/

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* Colors */
    --primary-color: 60, 113, 182;
    --primary-dark-color: 48, 90, 145;
    --secondary-color: 57, 143, 208;
    /*--secondary-color: 239, 177, 90;*/

    --black-color: 0, 0, 0;
    --gray-dark-color: 74, 75, 78;
    --gray-color: 235, 235, 235;
    --gray-light-color: 240, 242, 246;
    --white-color: 255, 255, 255;

    /* Layout */
    --col-padding: 3rem;
    --top-header-height: 3.5rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 150rem;

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

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

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

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

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

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

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

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

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

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

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

.p-2 {
    padding: 2rem;
}

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

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

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

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

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

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

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

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

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

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

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

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

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

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.small-title {
    padding-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    color: rgb(var(--black-color));
    font-family: "Afacad", sans-serif;
}

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

/* Brödtext */
p,
li {
    color: rgb(var(--gray-dark-color));
    line-height: 1.7;
    font-weight: 300;
}

/* Övriga klasser */
.text-block {
    max-width: 80rem;
}

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

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

.text-block-95-center {
    width: 95rem;
    max-width: 100%;
    margin: 0 auto;
}

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

/* List-circle */
.list-circle {
    padding: 0;
    list-style: none;
}

.list-circle li::before {
    content: '\f111';
    padding: 0 1rem 0 0;
    color: #efb15a;
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}

/* Lista */
.styled-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 5rem 0 0 0;
    list-style: none;
}

.styled-list li {
    position: relative;
    width: 50%;
    padding: 0 5rem 0 8rem;
    margin: 0 0 4rem;
}

.styled-list li::before {
    content: '\f00c';
    position: absolute;
    left: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    color: rgb(var(--white-color));
    font-weight: 400;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    font-family: 'Font Awesome 5 Pro';
}

@media only screen and (max-width: 980px) {
    .styled-list li {
        width: 100%;
        padding: 0 0 0 8rem;
        margin: 2rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .styled-list li {
        padding: 0 0 0 5.5rem;
    }

    .styled-list li::before {
        left: 0;
    }
}

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    padding: 1.6rem 4rem;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    margin: 7px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    background-color: rgb(var(--primary-dark-color));
    border-color: rgb(var(--primary-dark-color));
}

.btn-white-filled {
    color: rgb(var(--primary-color));
    background-color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
}

.btn-white-filled:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.btn-secondary-filled {
    color: #FFF;
    background: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
}

.btn-secondary-filled:hover {
    background: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    text-decoration: none;
    color: rgb(var(--primary-color));
}

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

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

@media only screen and (max-width: 480px) {
    .btn-wrapper .btn {
        margin: 1.5rem 0;
    }

    .btn {
        display: block;
        width: 100%;
    }
}

/* Lank med ikon */
.icon-links {
    padding: 5px 10px;
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    line-height: 1;
    text-decoration: none;
    transition: all .3s ease;
}

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

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

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

.bg-gray {
    background-color: #f8f8f8;
}

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

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

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

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

.border-top-gray {
    border-top: 1px solid rgb(var(--gray-color));
}

/* Box shadow */
.box-shadow {
    box-shadow: rgba(var(--black-color), 0.05) 0px 6px 24px 0px;
}

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

.cards-wrapper:not(.w-100, .logos-1) {
    margin-left: -1rem;
    margin-right: -1rem;
}

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

/* Card 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-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

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

@media only screen and (max-width: 780px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

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

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

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 25rem;
}

.card-3-1 img {
    object-fit: scale-down;
    padding: 1rem;
}

/* Cards 7*/
.cards-7 .card-item {
    margin: 0 1rem 0 0;
    text-decoration: none;
    background: #FFF;
}

.cards-7 .image-wrapper {
    height: 20rem;
}

/*.cards-7 .text-wrapper {
    padding: 2rem;
    border-bottom: 5px solid #efb15a;
}*/

/*.cards-7 .small-title {
    padding-bottom: 0;
    font-weight: 300;
}*/

/* Card-3-7 */
.card-3-7 .image-wrapper {
    height: 25rem;
}

.card-3-7 .btn {
    width: 100%;
    margin: 0;
}

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

/* Logos 1 */
.logos-1 img {
    width: 100%;
    max-height: 5rem;
    filter: grayscale();
}

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

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

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

.split-image {
    width: 50%;
}

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

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

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

/* Flera bilder i split-image */
.split-images {
    display: flex;
    flex-wrap: wrap;
}

.split-images img {
    width: 100%;
    padding: 2rem;
}

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

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

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

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

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

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

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

.bg-image,
.bg-video {
    position: relative;
    overflow: hidden;
}

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

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

/* Header / Navigation
========================================================================== */
header {
    box-shadow: rgba(var(--black-color), 0.05) 0px 6px 24px 0px;
    border-bottom: 1px solid rgb(var(--gray-color));
}

header:not(.scrolled) {
    box-shadow: none;
    border-color: transparent;
}

/* Top header */
.top-header {
    width: calc(100% + 10rem);
    height: var(--top-header-height);
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-color));
    overflow: hidden;
    transition: .3s ease;
    margin-left: -5rem;
    margin-right: -5rem;
    padding: 0 5rem;
    align-content: center;
}

header.scrolled .top-header,
.mobile-menu.active-menu .top-header {
    height: 0;
    border-bottom: transparent;
}

.top-header ul {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 0.2rem 0;
    list-style: none;
    max-width: var(--section-width);
}

.top-header a {
    font-size: 1.3rem;
    text-decoration: none;
    transition: .2s ease;
    color: rgb(var(--black-color));
}

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

.top-header i {
    margin-right: 5px;
}

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

/* Nav */
.TemplateMenu a {
    font-weight: 400;
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    color: rgb(var(--black-color));
}

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

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

/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/5/branscher/"] {
    pointer-events: none;
}

/* Dolj hem */
body:not(.EditMode) .TemplateMenu>li:nth-child(1) {
    display: none;
}

/* Dropdown */
header:not(.mobile-menu) .TemplateMenu ul {
    border: 1px solid rgb(var(--gray-color));
    border-top: none;
}

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

.header-cta-wrapper li {
    margin: 0 .5rem;
}

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

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

/* Nav */
/*.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    font-family: 'Open Sans', sans-serif;
}

.TemplateMenu a:hover {
    color: #a8a8a8;
    text-decoration: none;
}

.TemplateMenu li.active>a {
    color: rgb(var(--secondary-color));
}*/

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1.5rem 3rem;
    margin: 0 .5rem;
}*/

/* Mobilmeny */

@media only screen and (max-width: 1300px) {
    /* Top header */
    .top-header {
        width: calc(100% + 4rem);
        margin-left: -2rem;
        margin-right: -2rem;
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 580px) {
    /* Top header */
    .top-header {
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
    }

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

    /* CTA  */
    /*.header-cta-wrapper .btn {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
        white-space: nowrap;
        margin-right: 0.5rem;
    }*/
    /* CTA */
    .header-cta-wrapper .btn {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: calc(90vh - (var(--menu-height) + var(--top-header-height)));
    /*background-image: linear-gradient(to top, rgb(var(--accent-blue-dark), .8), rgb(var(--accent-blue-dark), .5));*/
    background: rgba(0, 0, 0, .4);
}

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

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

.top-section .section-title {
    font-size: 6rem;
}

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

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

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

@media only screen and (max-width: 480px) {
    .top-section .btn-wrapper .btn {
        margin-right: 7px;
    }
}

/* Välj din bransch
========================================================================== */
/*.section-services {
    overflow: hidden;
}

.scroll-wrapper.slick-slider {
    display: block;
    padding-top: 6rem;
}

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

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

.scroll-wrapper .slick-arrow:not(.slick-disabled):hover,
.scroll-wrapper .slick-arrow:not(.slick-disabled):focus {
    background-color: transparent;
}

.scroll-wrapper .slick-prev {
    right: 5rem;
}

.scroll-wrapper .slick-next {
    right: 0;
}*/


/* Loggor
========================================================================== */
/*.references-logos .slick-track {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.references-logos img {
    max-width: calc(100% - 4rem);
    max-height: 6rem;
    margin: 2rem;
}*/

/* Referenser - loggor
========================================================================== */
.section-slider {
    overflow: hidden;
}

.section-slider .slick-list {
    width: 100%;
}

.section-slider .card-item {
    height: 6rem;
    margin: 0 2rem;
}

@media only screen and (max-width: 580px) {
    .section-slider .card-item {
        height: 10rem;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */
/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 40rem;
    /*background-image: linear-gradient(to top, rgb(var(--black-color), .8), rgb(var(--black-color), .5));*/
    background: rgba(0, 0, 0, .4);
}

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

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

.hero .section-title {
    font-size: 6rem;
}

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

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

    .hero .section-title {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
Undersida: Produkter
========================================================================== */
.products-wrapper .card-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-wrapper .card-item {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    padding: 3rem;
}

/* ==========================================================================
Undersida: Återförsäljare
========================================================================== */
.resellers-wrapper .card-item {
    padding: 2rem 3rem;
    background-color: #FFF;
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 10%);
    border-radius: 2px;
    border-bottom: 5px solid #efb15a;
}

.resellers-wrapper p {
    padding-bottom: 0;
}

/* ==========================================================================
Undersida: Kontakt / Testa gratis
========================================================================== */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 130rem;
    padding: 5rem;
    margin: 0 auto;
    background: #FFF;
}

.ContactForm div {
    width: 31.333%;
}

.ContactForm div.ContactFormMessage,
.ContactForm .select-wrapper,
.ContactFormField.radio-field,
.ContactForm .group-wrapper,
.ContactForm .checkbox-field {
    width: 100%;
}

.ContactForm .radio-group .group-wrapper {
    display: flex;
}

.ContactSubmit {
    max-width: 35rem;
    margin: 2rem auto 0;
    border-style: none;
}

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

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

    .ContactForm div {
        width: 100%;
    }
}

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

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 13rem 0 2rem;
}

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

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

.footer-top .text-label {
    padding: 0 0 2rem;
    line-height: 1;
    color: rgb(var(--white-color));
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    font-size: 1.5rem;
    text-decoration: none;
    color: rgb(var(--white-color));
}

.footer a:not(.icon-links):hover {
    text-decoration: none;
    color: rgba(var(--white-color), .5);
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

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

.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;
    opacity: 1;
    filter: invert();
}

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

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

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

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

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

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

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

    /* Footer top */
    .footer-top {
        padding: 8rem 0 0;
    }

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

    .webbess-stamp {
        margin: 0 auto 1.5rem;
    }
}