/* Redovisnings- & Ekonomikonsulterna i Gavle AB */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* Colors */
    --primary-color: 179, 8, 56;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 147, 149, 152;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

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

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

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

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

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

/* Margins */
.mr-2 {
    margin-right: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

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

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

/* Bredder */

/* Ovriga klasser */
.align-center,
.align-center .section-block-wrapper {
    align-items: center;
}

.mobile-only {
    display: none;
}

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

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

    /* Ovriga klasser */
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

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

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

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: .5em;
    font-size: 4.3rem;
    font-weight: 500;
    line-height: 1.1;
    font-family: "Barlow Condensed", sans-serif;
    color: rgb(var(--gray-dark-color));
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    font-family: "Barlow Condensed", sans-serif;
    color: rgb(var(--gray-dark-color));
}

.ingress {
    font-size: calc(var(--base-size) * 1.3);
}

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

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

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

.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 {
    padding: 0;
    list-style: none;
}

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

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

    /* Rubriker */
    .section-title {
        font-size: 3.8rem;
    }

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

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

    /* Rubriker */
    .section-title {
        font-size: 2.8rem;
    }

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: .3rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid;
    transition: all .4s ease;
}

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

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

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

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

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

.btn-gray-filled:hover {
    color: rgb(var(--gray-color));
    background-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Border radius */
.br-03 {
    border-radius: .3rem;
    overflow: hidden;
}

/* Svartvita bilder */
img:not(header img, .footer-bottom img, .img-color) {
    filter: grayscale(100%);
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

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

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

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

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

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
    padding: 1rem 0;
}

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

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
}

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

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

@media only screen and (max-width: 420px) {
    .card-2-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .card-2-4 .card-header {
        height: unset;
        width: unset;
        margin-bottom: 1rem;
    }

    .card-2-4 .card-body {
        padding: 0;
    }
}

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

.card-3-1 .image-wrapper img {
    object-position: top;
}

.card-3-1 .card-header {
    position: absolute;
    bottom: 0;
    left: 0;
}

.card-3-1 .card-footer a {
    text-decoration: none;
}

.card-3-1 .card-footer i {
    width: 2rem;
}

.card-3-1 .card-footer a:hover {
    color: rgb(var(--gray-dark-color));
}

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

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

/* Card-lists */
.LayoutPage .card-lists .card-item {
    margin-top: 0;
    margin-bottom: 0;
}

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

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

/* Split content header */
.split-content .split-content-header {
    display: flex;
    flex-direction: row;
}

.split-content .split-content-header .icon-wrapper i {
    font-size: 4.5rem;
}

.split-content .split-content-header .section-title,
.split-content .split-content-header .small-title {
    line-height: 1;
}

/* Split med text i bild */
.split-wrapper .text-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.split-wrapper .text-wrapper p {
    display: inline-block;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    text-align: center;
    border-radius: .3rem .3rem 0 0;
}

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

@media screen and (max-width: 1000px) {
    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

    .split-wrapper.top {
        margin-bottom: 3rem;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 0 0 3rem;
        background: transparent;
    }

    .split-image {
        width: 100%;
    }

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

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

    /* Split content header */
    .split-content .split-content-header .icon-wrapper i {
        font-size: 3.5rem;
    }
}

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

    /* Split content header */
    .split-content .split-content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-content .split-content-header .icon-wrapper {
        margin-bottom: 1rem;
    }

    /* Split med text i bild */
    .split-wrapper .text-wrapper p {
        background-color: rgba(var(--white-color), .6);
    }
}

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

/* Top header */
.top-header {
    width: 100%;
    max-width: var(--section-width);
    height: var(--top-header-height);
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
    transition: .3s ease;
}

.scrolled .top-header,
header.active-menu .top-header {
    height: 0;
}

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

.top-header a {
    margin: 0 .5rem;
}

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

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

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

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

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

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

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

/* Link logo */
.link-logo img {
    transition: .3s ease;
}

.header-cta-wrapper .link-logo a {
    width: 3.6rem;
    transition: .3s ease;
}

.top-header .link-logo a {
    width: 3rem;
}

.top-header .link-logo a:hover img,
.header-cta-wrapper .link-logo a:hover img {
    opacity: .5;
}

/* Mobilmeny */
.mobile-menu .TemplateMenu li {
    padding: 0 2rem;
    text-align: center;
}

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

    /* CTA */
    .header-cta-wrapper {
        flex: unset;
    }

    .header-cta-wrapper .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1.2rem;
    }
}

/* CTA-sektion
========================================================================== */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

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

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

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


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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

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

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

.top-section .btn:hover {
    color: rgb(var(--white-color));
}

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

@media only screen and (max-width: 750px) {
    .top-section {
        min-height: calc(100vh - (var(--menu-height) + var(--top-header-height)));
    }
}

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

/* Vara tjanster (.section-services)
========================================================================== */
@media only screen and (max-width: 1050px) {

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

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

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

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 40rem;
    background-color: rgb(var(--black-color), .5);
}

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

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

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

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

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

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

/* Formular
========================================================================== */
.ContactForm p {
    display: none;
}

.ContactForm .checkbox-field p {
    display: block;
}

.ContactForm .asterisk p:after {
    line-height: 1;
    color: rgb(var(--gray-dark-color));
}

.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-item,
.ContactForm .file-dropzone {
    border: none;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="number"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="date"]:not(.illegal),
.ContactForm input[type="datetime-local"]:not(.illegal),
.ContactForm select:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm .file-dropzone:not(.illegal) {
    background-color: transparent;
}

.ContactForm .submit-button-container,
.ContactForm .ContactSubmit {
    margin-bottom: 0;
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */

/* Tidslinje
========================================================================== */
.section-line-wrapper {
    position: relative;
}

.section-line-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgb(var(--gray-light-color));
}

.section-line-item {
    position: relative;
    width: 40%;
}

.section-line-item.item-right {
    margin: 0 0 0 auto;
}

.section-line-item:before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 122%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgb(var(--primary-color));
    border: 4px solid rgb(var(--white-color));
    transform: translateY(-50%);
}

.item-right.section-line-item:before {
    left: -27.6%;
}

@media only screen and (max-width: 980px) {
    .section-line-wrapper::before {
        left: 1rem;
    }

    .section-line-item {
        width: 100%;
        padding: 5rem 7rem;
    }

    .section-line-item:before,
    .item-right.section-line-item:before {
        left: -.1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media only screen and (max-width: 680px) {
    .section-line-item {
        padding: 2rem 0 2rem 4rem;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */

/* Kontaktinformation (.section-contact)
========================================================================== */
.section-contact .section-block-wrapper {
    background-color: rgb(var(--gray-light-color));
    border-radius: .3rem;
    padding: 2rem;
}

/* Formular */
.section-contact .ContactForm {
    padding: 2rem;
}

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

    /* Formular */
    .section-contact .ContactForm {
        padding: 1rem;
    }
}

/* Vart team (.section-team)
========================================================================== */
/* Bredder */
.section-team .cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 3rem);
    margin: 1.5rem;
}

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

    /* Bredder */
    .section-team .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 3rem);
        margin: 1.5rem;
    }
}

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

    /* Bredder */
    .section-team .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1.5rem 0;
    }

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

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

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

/* Jobbansokan (.section-job-form)
========================================================================== */
/* Formular */
@media only screen and (max-width: 980px) {
    .section-job-form .col-1 {
        margin-top: 3rem;
    }
}

/* ==========================================================================
Undersida: Offertfofragan
========================================================================== */
/* Formular */
.section-offer-form .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-offer-form .ContactForm>div {
    width: 49%;
}

.section-offer-form .ContactForm>div.radio-field,
.section-offer-form .ContactForm>div.checkbox-field,
.section-offer-form .ContactForm>div.date-field,
.section-offer-form .ContactForm>div.datetime-field,
.section-offer-form .ContactForm>div.file-field,
.section-offer-form .ContactForm>div.textarea-field,
.section-offer-form .ContactForm>div.submit-button-container {
    width: 100%;
}

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

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

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.footer-menu.socials {
    margin-bottom: 0;
}

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

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

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

.footer .socials li {
    text-align: right;
}

/* 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(--white-color), .5);
}

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

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

    /* Footer top */
    .footer-menu {
        width: 33.333%;
        margin: 0 0 2rem;
    }

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

    .footer-menu.socials li {
        display: inline-block;
    }

    .footer-submenu {
        margin: 0 0 2rem;
    }
}

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

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

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

    /* Footer top */
    .footer .socials {
        margin-bottom: 0;
        text-align: center;
    }

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

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