/* Steam on Wheels AB */

/* Typsnitt - General Sans */
@import url("https://api.fontshare.com/css?f[]=general-sans@400,401,500,600,700,701&display=swap");

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 11rem;
    --menu-height-scrolled: 9rem;

    /* 	Colors */
    --primary-color: 24, 38, 56;
    --secondary-color: 100, 184, 237;

    --black-color: 20, 23, 38;
    --gray-color: 85, 85, 85;
    --gray-dark-color: 51, 51, 51;
    --gray-light-color: 233, 233, 234;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1250;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 24, 38, 56;
    --menu-color: rgb(var(--white-color));
}

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

.section-block-wrapper {
    max-width: 130rem;
}

/* Speciella paddings */
.pt-0 .section-block {
    padding-top: 0;
}

.pr-0 .section-block {
    padding-right: 0;
}

.pl-0 .section-block {
    padding-left: 0;
}

.pb-0 .section-block,
.pb-0 {
    padding-bottom: 0;
}

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

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

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

.mt-5 {
    margin-top: 5rem;
}
.my-1{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

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

.mw-900 .section-block-wrapper {
    max-width: 90rem;
}

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

.mh-none {
    max-height: none !important;
}

.h-100 {
    height: 100%;
}

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

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

    :root {
        --base-size: 1.5rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'General Sans', sans-serif;
    color: rgb(var(--primary-color));
}

/* Rubriker */
.section-title {
    padding-bottom: 3rem;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
}

.small-title {
    padding-bottom: 0.5rem;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.4;
}

.text-label {
    padding-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: inherit;
}

.text-label::before {
    position: relative;
    content: "";
    display: inline-block;
    width: 5rem;
    border-top: 2px solid;
    margin: 0 1rem 0 0;
    vertical-align: middle;
    top: -2px;
}

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

a {
    font-size: 1.6rem;
    text-decoration: none;
}

ul {
    padding-top: 0;
}

/* ovriga klasser */
.text-block-center {
    max-width: 70rem;
    margin: 0 auto;
}

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

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

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

.text-italic {
    font-style: italic;
}

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

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

.small-weight {
    font-weight: 400;
}

/* Listor */
.list-circle {
    list-style: none;
}

.list-circle li {
    position: relative;
    padding-left: 0rem;
}

.list-circle li::before {
    content: "\f111";
    position: absolute;
    top: 50%;
    left: -2.5rem;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: 0.8rem;
    font-family: "Font Awesome 5 Pro";
    transform: translateY(-50%);
}

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

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

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

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

    .section-title {
        font-size: 2.5rem;
        line-height: 1.4em;
        padding-bottom: 1rem;
    }

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

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

    .text-label::before {
        width: 2rem;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 22rem;
    padding: 1.8rem 2rem;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

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

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

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

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


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

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

.circle-icon em {
    font-size: 0;
}

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

.social-wrapper .circle-icon:nth-child(2) {
    margin-left: 2rem;
}

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

    .btn-wrapper .btn:nth-child(2) {
        margin-top: 2rem;
    }

}

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

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

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

.bg-overlay .section-block {
    background-color: rgb(var(--black-color), 0.6);
}

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

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

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

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    /* margin-top: calc(-1 * var(--menu-height)); */
}

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

/* Parallax
========================================================================== */
.parallax {
    min-height: 60rem;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

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


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

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

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

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

/* Cards 2 */
.cards-2 .card-item {
    padding: 4rem;
    border-radius: 5rem;
    background-color: rgb(var(--primary-color));
    border-radius: 0.5rem;
    transform: scale(0.94);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}


.cards-2 .card-item:hover {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

.cards-2 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    margin-bottom: 1rem;
    margin: auto;
}

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

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

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    background: rgb(var(--white-color));
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 1rem;
    position: relative;
}

.cards-7 .card-item.center {
    justify-content: center;
}

.cards-7 .image-wrapper {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.cards-7 .image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

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

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

.split-image {
    width: 50%;
    max-height: 60rem;
}

.split-image.mh-none {
    display: flex;
    align-items: center;
}

.split-image .h-100 {
    max-height: 60rem;
}

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

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

/* Speciella paddings */
.split-wrapper .pl-0 {
    padding-left: 0;
}

/* Speciella margins */
.split-wrapper .mt--5rem {
    margin-top: -5rem;
}

/* Speciella bredder o hojder */
.split-wrapper .w-45 {
    width: 45%;
}

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

.split-wrapper .h-65 {
    max-height: 65rem;
}

@media screen and (max-width: 1100px) {
    .split-wrapper .mt--5rem {
        margin-top: 0rem;
    }

    .split-content {
        width: 100%;
        padding: 0 0 5rem;
    }
    .split-wrapper .w-45 {
        width: 100%;
    }
    .split-wrapper .w-55 {
        width: 100%;
    }

    .split-content.full {
        padding: 5rem 0rem;
    }

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

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

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


}


/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--primary-color));
}

/* Logo */
.header-logo {

    filter: invert();
}

/* Nav */
nav.mainmenu a {
    font-weight: 500;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(var(--white-color));
}

nav.mainmenu {
    flex-grow: 1;
}

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

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 3rem;
    margin: 0;
}

.header-cta-wrapper .btn:nth-child(1) {
    margin-right: 1rem;
}

.header-cta-wrapper i {
    margin-left: 0.5rem;
}

/* Mobilmeny */
header.mobile-menu .header-logo {
    flex-grow: 1;
}

header.mobile-menu .container {
    padding: 0 1rem;
}

.mobile-menu .header-cta-wrapper .btn {
    padding: 5px 1rem;
    font-size: 1rem;
}

@media only screen and (max-width: 350px) {
    .header-cta-wrapper .btn.first {
        display: none;
    }
}

/* ==========================================================================
Startsida
========================================================================== */
/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 10rem);
    margin-top: 0rem;
    /* margin-top: calc(-1 * var(--menu-height)); */
    background-image: linear-gradient(to top, rgba(var(--black-color), 0.7), rgba(var(--black-color), 0.3));
}

.top-section h1 {
    padding-bottom: 0;
    font-size: 4.7rem;
    font-weight: 400;
    max-width: 50rem;
    color: rgb(var(--white-color));
}


.top-section p {
    color: rgb(var(--white-color));
    max-width: 60rem;
    padding-top: 2rem;
}

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

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

@media only screen and (max-width: 1200px) {
    .top-section h1 {

        max-width: 40rem;
    }
}

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

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

/* Sektion Call to action (.section-cta)
========================================================================== */

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 4rem;
    text-align: left;
    background-color: rgb(var(--primary-color));
    border-radius: 3rem;
}

.EditMode .cta-wrapper {
    transform: none;
}

.cta-content {
    max-width: 80rem;
    padding: 0 5rem 0 0;
}

.cta-wrapper .btn-wrapper {
    display: flex;
    align-self: center;
    justify-content: flex-end;
    margin: 0;
    flex: 1 1 0%;
}

.cta-title {
    padding-bottom: 1rem;
}


@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-wrap: wrap;
    }

    .cta-content {
        padding: 0 0 2rem;
        width: 100%;
    }

    .cta-wrapper .btn-wrapper {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 768px) {
    .cta-wrapper {
        padding: 3rem 2rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */

.hero {
    background: linear-gradient(90deg, rgba(var(--black-color), 0.2) 0%, rgba(var(--black-color), 0.8) 0%, rgba(var(--black-color), 0) 100%);
}

.hero .section-block {
    display: flex;
    align-items: flex-end;
    min-height: 80vh;
    padding: 10rem 4rem 4rem;
}

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

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

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

/* Hero: Hero-text
========================================================================== */
.hero-text .section-title {
    font-size: 6rem;
}

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

@media only screen and (max-width: 580px) {
    .hero-text .section-title {
        font-size: 4rem;
        padding-bottom: 1rem;
    }

    .hero-text p {
        font-size: var(--base-size);
    }
}

/* Kontaktformular
========================================================================== */
.ContactForm p {
    color: rgb(var(--white-color));
    line-height: 1.8;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.25rem;
}

.ContactForm input[type="text"],
.darkform .ContactForm input[type="email"],
.darkform .ContactForm input[type="tel"],
.ContactForm textarea {
    border: none;
    background-color: rgb(var(--white-color));
    border-radius: 0.5rem;
}

/* mörkt kontaktformulär (.darkform) */
.darkform .ContactForm p {
    display: none;
}

.darkform .ContactForm input[type="text"],
.darkform .ContactForm input[type="email"],
.darkform .ContactForm input[type="tel"],
.darkform .ContactForm textarea {
border: none;
border-radius: 0.5rem;
}

.darkform .ContactForm input[type="text"]:not(.illegal),
.darkform .ContactForm input[type="email"]:not(.illegal),
.darkform .ContactForm input[type="tel"]:not(.illegal),
.darkform .ContactForm textarea:not(.illegal) {
background-color: rgb(var(--gray-light-color));
}

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

/* Företagare (.section-foretagare)
========================================================================== */


@media only screen and (max-width: 980px) {
    .section-foretagare .ContactForm {
        margin-top: 3rem;
    }
}

/* ==========================================================================
Undersida: Vara tjanster
========================================================================== */

/* Pris privatperson
========================================================================== */
.responsive-table {
    width: 100%;
    max-width: 110rem;
    margin: 0 auto;
    overflow: hidden;
}

.table {
    width: 100%;
    display: table;
    border: 1px solid rgb(var(--primary-color), 0.1);
    margin: 0;
}

.row.header {
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.row {
    display: table-row;
    background: rgb(var(--white-color));
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

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

.row.header:hover {
    background: rgb(var(--primary-color));
}

.cell {
    display: table-cell;
}

.row .cell {
    width: 45%;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    color: rgb(var(--black-color));
    line-height: 1.2;
    font-weight: unset !important;
    border-bottom: 1px solid rgb(var(--primary-color), 0.1);
    text-transform: none;
    font-weight: 400;
    letter-spacing: normal;
}

.row .cell.small,
.row .cell.smaller {
    width: 20%;
}

.row.header .cell {
    font-size: 1.6rem;
    color: rgb(var(--white-color));
    line-height: 1.2;
    font-weight: 400 !important;
    padding-top: 19px;
    padding-bottom: 19px;
}

.table,
.row {
    width: 100% !important;
}

.row p {
    font-size: 1.55rem;
    padding-bottom: 0;
    line-height: 1.5;
}

.pris-sectionen{
    background: white;
    padding: 10px;
}

@media (max-width: 950px) {
    .row {
        border-bottom: 1px solid rgb(var(--gray-light-color));
        padding-bottom: 2rem;
        padding-top: 3rem;
        padding-right: 1.5rem;
        margin: 0;
    }

    .row .cell {
        border: none;
        padding-left: 0rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .row .cell:nth-child(1) {
        padding-left: 3rem;
    }

    .row .cell {
        color: rgb(var(--gray-dark-color));
        line-height: 1.2;
        font-weight: unset !important;
    }
}

@media screen and (max-width: 768px) {
    .table {
        display: block;
    }

    .row {
        display: block;
    }

    .cell {
        display: block;
    }

    .row .cell {
        padding-left: 3rem;
    }

    .row.header {
        padding: 0;
        height: 0;
    }

    .row.header .cell {
        display: none;
    }

    .row .cell:before {
        font-size: 1.3rem;
        color: rgb(var(--gray-dark-color));
        line-height: 1.2;
        text-transform: uppercase;
        font-weight: unset !important;
        margin-bottom: 1.3rem;
        content: attr(data-title);
        min-width: 10rem;
        display: block;
    }
}


@media screen and (max-width: 550px) {
    .SubPage .table-section .section-block {
        max-width: 90rem;
        margin: 0 auto;
        padding: 0 1.5rem 5rem;
    }

    .row.header .cell {
        font-size: 1.5rem;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
    }

    .row .cell {
        width: unset;
        padding: 1.5rem 0.8rem;
    }
}

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

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

.accordion-header p {
    color: rgb(var(--white-color));
    font-size: 2rem;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 3rem;
    right: 2rem;
    font-size: 1.8rem;
    font-family: "Font Awesome 5 Pro";
    transition: 0.5s ease;
    color: rgb(var(--secondary-color));
}

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

.accordion-header p {
    padding-right: 2.5rem;
    padding-bottom: 0;
}

.accordion-body {
    padding: 2rem;
    background-color: rgb(var(--gray-light-color), 0.3);
}

/* ==========================================================================
Underida kontakt
========================================================================== */
.section-contact {
    background-image: url(/assets/images/bilratt-2000.jpg);
}

/* sociala medier */
.social-wrapper {
    display: flex;
    list-style-type: none;
    padding-inline-start: 0;
}

/* ==========================================================================
Footer
========================================================================== */
.footer-container {
    max-width: 140rem;
    padding: 0 5rem;
    margin: 0 auto;
}

.footer :is(p, a) {
    color: rgba(var(--black-color), 0.7);
    font-weight: 400;
    font-size: var(--base-size);
}

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

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

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

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

.footer .text-label {
    color: rgb(var(--primary-color));
    font-weight: 600;
    font-style: normal;
}

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

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

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

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

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

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


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

.footer-bottom .circle-icon:hover {
    color: rgb(var(--primary-dark-color));
}

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

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

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

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

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

@media only screen and (max-width: 1200px) {
    .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%;
    }

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

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

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

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

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