/* El-Connect I Väst AB  */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,600;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600&display=swap');


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

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

    /* 	Colors */
    --primary-color: 126, 178, 38;
    --secondary-color: 7, 18, 74;


    --black-color: 0, 0, 0;
    --gray-dark-color: 75, 75, 75;
    --gray-light-color: 230, 230, 230;
    --white-color: 255, 255, 255;

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

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

/* ==========================================================================
Undersida: Formulär / OBS MICKE TEST
========================================================================== */
.form-section .section-block-wrapper {
    max-width: 100rem;
}

.form-wrapper .deliveryaddress,
.form-wrapper .invoiceaddress {
    display: none;
}

.form-wrapper,
.deliveryaddress,
.invoiceaddress {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.deliveryaddress h2,
.invoiceaddress h2 {
    text-align: center;
    display: block;
    width: 100%;
    margin: 2rem 0;
}


.formfield-wrapper {
    border: none;
    width: 50%;
    padding-bottom: 2.5rem;
    margin: 0;
}

.formfield-wrapper.w-100 {
    width: 100%;
}

.formfield-wrapper legend,
.formfield-wrapper a {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.formfield-wrapper textarea,
.formfield-wrapper input[type="text"i],
.formfield-wrapper input[type="number"i] {
    border: none;
    background-color: #deded9;
    padding: 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    letter-spacing: 1px;
}

.formfield-wrapper textarea {
    height: 150px;
    font-family: 'Public Sans', sans-serif;
}
.formfield-wrapper select {
    border: none;
    background-color: #deded9;
    padding: 1rem 2rem 1rem 1rem;
    border-radius: 2rem;
    width: 100%;
}

.formfield-wrapper input[type="text"i].error,
.formfield-wrapper input[type="number"i].error {
    background-color: #ead7d7;
}

.formfield-wrapper label {
    font-size: 1.7rem;
}

.formfield-wrapper .error {
    font-weight: 600;
}

.formfield-wrapper input[type="range"i] {
    width: 100%;
}

.formfield-wrapper.submit-input {
    width: 100%;
}

.total-merge,
.total-merge .formfield-wrapper {
    width: 100%;
}

.formfield-wrapper button,
button:disabled,
button[disabled] {
    min-width: 100%;
    padding: 1.8rem;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 5rem;
    text-align: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
    border: 1px solid rgb(var(--secondary-color));
    display: block;
    cursor: pointer;
}

.formfield-wrapper button:hover {
    background-color: rgb(var(--primary-color));
    color: white;
    cursor: pointer;
}

.dropzone {
    border: 2px dashed #ccc;
    border-radius: 1.5rem;
    padding: 20px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropzone.dragover {
    background: #e1e1e1;
    border-color: #999;
}
.dz-message { font-size: 1.5rem; }

.file-list {
    width: 100%;
    margin-top: 15px;
}

.file-list td {
    padding: 2px 5px;
    font-size: 1.5rem;
    text-align: left;
}

.file-list .remove-file {
    color: red;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.loading::after {
    content: '\f3f4';
    display: inline-block;
    margin-left: 1rem;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    animation-name: spin;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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




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

.section-block-wrapper {
    max-width: var(--section-width);
}

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

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

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

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

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

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

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

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

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

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

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

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

.section-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    padding-bottom: .5em;
    font-family: 'Prompt', sans-serif;
}

.small-title {
    font-size: 2.8rem;
    line-height: 1.4;
    padding-bottom: 1rem;
}

.text-label::before {
    content: '';
    position: relative;
    right: 1.3rem;
    display: inline-block;
    height: 0.1rem;
    width: 2.5rem;
    margin-bottom: .3em;
    margin-left: 1.3rem;
    border-bottom: 2px solid rgb(var(--primary-color));
}


.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

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

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

a:hover {
    text-decoration: none;
}

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

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

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

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

/* List-check */
.list-check {
    list-style: none;
}

.list-check {
    padding: 0;
}

.list-check li {
    font-size: 1.4rem;
    padding-botom: .5rem;
}

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


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

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

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

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

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

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

/* Knappar */
.btn {
    min-width: 20rem;
    font-family: 'Prompt', sans-serif;
    padding: 1.4rem 2rem;
    font-weight: 400;
    font-size: 1.4rem;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-primary-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-primary-filled:hover {
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    color: rgb(var(--primary-color));
}

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

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

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


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

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

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

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

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

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

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

/* Gradient */
.gradient-white-graylight {
    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));
}

/* Grafiska element
========================================================================== */
/* Linje genom element */
.line-through-primary {
    position: relative;
}

.line-through-primary::before {
    position: absolute;
    content: '';
    display: block;
    height: calc(100% - 4rem);
    width: 2px;
    top: 2rem;
    left: 3.5rem;
    background-color: rgb(var(--primary-color));
}

@media only screen and (max-width: 650px) {
    .line-through-primary::before {
        left: 2rem;
    }
}

/* Borders */
.border-bottom-dotted-primary {
    border-bottom: 1px dotted rgb(var(--primary-color));
}

/* Borders */
.border-bottom-primary {
    border-bottom: 4px solid rgb(var(--primary-color));
}


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

    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0.0) 100%);
}

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: rgb(var(--black-color), .5);
}

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

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

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

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

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

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

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

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

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

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

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

    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Generellt */
a.card-item {
    transition: .3s ease;
}



/* Card 1-1 */

.card-1-1 i {
    margin-right: 1rem;
}


/* Card 2-2 */
.card-2-2 .card-item {
    border-radius: 5px;
}

.card-2-2 a.card-item:hover {
    background: rgb(var(--gray-light-color));
}

.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    margin: 0 2rem;
    border-radius: 0 0 1rem 1rem;
}

.card-2-2 .card-header i {
    font-size: 3rem;
}

@media only screen and (max-width: 480px) {
    .card-2-2 .card-header {
        width: 5rem;
        height: 5rem;
    }

    .card-2-2 .card-header i {
        font-size: 2rem;
    }
}


/* Card 2-5 */
.card-2-5 .card-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
    border: 2px solid rgb(var(--primary-color));
}

.card-2-5 .card-body {
    flex: 1 1 0px;
    padding: 0 3rem;
}

@media only screen and (max-width: 650px) {
    .card-2-5 .card-header {
        width: 4rem;
        height: 4rem;
    }

    .card-2-5 .card-header i {
        font-size: 1.8rem;
    }
}

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

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

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

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

.split-image {
    width: 50%;
    border-radius: 1rem;
}

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

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

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

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


@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%;
    }

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

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

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

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

    .full-width .split-content {
        padding: 5rem 2rem 3rem;
    }
}

/* Header / Navigation
========================================================================== */

header {
    background-color: transparent;
}

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

header .container {
    padding: 0 5rem;
}

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

.header-logo img {
    padding: 2.6rem 0;
}

header.scrolled .header-logo a {
    color: rgb(var(--black-color));
}

/* Nav */
.TemplateMenu a {
    font-weight: 300;
    font-family: 'Prompt', sans-serif;
    color: rgb(var(--white-color));
}

header.scrolled .TemplateMenu a {

    color: rgb(var(--black-color));
}


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

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

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

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

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

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

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

    .header-logo img {
        padding: 2.3rem 0;
    }

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

    .TemplateMenu a,
    .header-logo a {
        color: rgb(var(--black-color));
    }
}

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

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

    .header-logo a {
        font-size: 1.3rem;
        text-decoration: none;
    }

}



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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: flex-end;
    margin-top: calc(-1 * var(--menu-height));
    min-height: calc(90vh - 0rem);
    background: linear-gradient(46deg, rgb(var(--black-color), .8), rgb(var(--black-color), .2));
    overflow: hidden;
}

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

.top-section h1 {
    font-size: 6rem;
    font-weight: 300;
    padding-bottom: 1rem;
}

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

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

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

/* Infogalleri
========================================================================== */
.section-info {
    overflow: hidden;

}

.split-slider {
    display: flex;
    flex-wrap: wrap;
}


.slick-slider img {
    border-radius: 1rem;
}

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

/* Bild-slider */
.split-slider .split-image-wrapper .slick-list {
    overflow: visible;
}

.split-slider .split-image-wrapper {
    width: 50%;
    margin-right: 3rem;

}

.split-slider .split-image-wrapper .slick-track {
    display: flex;
}

.split-slider .slide-image {
    height: auto;
    margin: 0 3rem 0 0;
    border-radius: 1rem;
}

.split-slider .image-wrapper {
    width: 100%;
    height: 100%;
    transition: padding .8s ease;
}

/* Text-slider */
.split-slider .split-text-wrapper {
    position: relative;
    width: calc(50% - 3rem);
    margin-left: -3rem;
    padding: 7rem;
    border-radius: 1rem;

}

.split-slider .split-text-wrapper p {
    max-width: 45rem;
}

/* slick knappar */
.split-slider .slick-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    background-color: rgba(var(--secondary-color), 1);
    border: 1px solid rgba(var(--secondary-color), 1);
    cursor: pointer;
    transition: .4s;
}

.split-slider .slick-arrow.slick-prev {
    right: 4rem;
}

.split-slider .slick-arrow:not(.slick-disabled):hover,
.split-slider .slick-arrow:not(.slick-disabled):focus {
    background-color: rgba(var(--secondary-color), .6);
    border: 1px solid rgba(var(--secondary-color), .6);
}

.split-slider .slick-prev:after,
.split-slider .slick-next:after {
    color: rgb(var(--white-color));
    font-size: 2rem;
}

/* Dots */
.split-slider .slick-dots {
    position: absolute;
    top: 5rem;
    left: -5px;
    padding: 0 1rem;
    margin: 0;
    width: auto;
    justify-content: flex-start;
    background-color: rgb(var(--primary-color));
    border-radius: 2px 5px 5px 0;
}

.split-slider .slick-dots::after {
    position: absolute;
    content: '';
    display: block;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 5px solid rgb(var(--secondary-color));
    border-left: 5px solid transparent;
}

.split-slider .slick-dots li::before {
    color: rgb(var(--white-color), .4);
}

.split-slider .slick-dots li.slick-active::before {
    color: rgb(var(--white-color));
}

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

    /* Bild-slider */
    .split-slider .split-image-wrapper {
        margin-right: 1rem;
    }

    .split-slider .slide-image {
        margin: 0 1rem 0 0;
    }

    /* Text-slider */
    .split-slider .split-text-wrapper {
        padding: 5rem;
        width: calc(50% - 1rem);
        margin-left: -1rem;
    }

    /* Dots */
    .split-slider .slick-dots {
        top: 2rem;
    }
}


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

    /* Bild-slider */
    .split-slider .split-image-wrapper {
        width: 100%;
    }

    /* Text-slider */
    .split-slider .split-text-wrapper {
        position: relative;
        width: 100%;
        margin: 2rem 0 0;
    }
}

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

    /* Text-slider */
    .split-slider .split-text-wrapper {
        padding: 4rem 2rem 6rem;
    }

    .split-slider .slick-dots {
        top: 1rem;
    }

}

/* ==========================================================================
sektion: Sa fungerar det
========================================================================== */
.section-steps .split-content {
    padding-top: 0;
    padding-bottom: 0;
}

.section-steps .split-image {
    position: sticky;
    top: calc(var(--menu-height-scrolled) * 2);
    align-self: flex-start;
}


/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 50rem;
    padding-bottom: 0;
    /* margin-top: calc(-1 * var(--menu-height)); */
}

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


/* Hero - Hero-title
========================================================================== */
.hero-title .section-block {
    background-image: linear-gradient(to bottom, transparent 46rem, rgb(var(--white-color)) 46rem);
}

.hero-title-wrapper {
    width: 35rem;
    padding: 1.5rem 3rem;
    text-align: center;
    border-radius: 1.5rem;
    border: 3px solid rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

.hero-title-wrapper .section-title {
    padding-bottom: 0;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 40rem;
        background-image: linear-gradient(to bottom, transparent 36rem, rgb(var(--white-color)) 36rem);
    }
}

.map {
    font-size: 0;
}

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

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

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

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

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

.footer .text-label {

    color: rgb(var(--white-color));
}

.footer .text-label::before {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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