/* Forsbloms Fastighetsutveckling AB */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* Colors */
    --primary-color: 233, 90, 12;
    --secondary-color: 255, 236, 0;

    --accent-red-color: 163, 0, 0;

    --black-color: 0, 0, 0;
    --gray-dark-color: 51, 51, 51;
    --gray-light-color: 245, 245, 245;
    --white-color: 255, 255, 255;

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

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

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

    /* Other */
    --box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
}

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

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

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

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

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

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

.pb-5 {
    padding-bottom: 5rem;
}

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

.p-4 {
    padding: 4rem;
}

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

/* Speciella margins */
.m-0-auto {
    margin: 0 auto;
}

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

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

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

/* rubriker */
.section-title {
    font-size: 4.5rem;
    line-height: 1.4;
    font-weight: 600;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
    font-family: 'Playfair Display', sans-serif;
}

.small-title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(var(--black-color));
    font-family: 'Quicksand', sans-serif;
}

.text-label {
    font-family: inherit;
    font-weight: 400;
    color: rgb(var(--black-color));
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

/* Text */
p {
    font-weight: 300;
    color: rgb(var(--black-color));
}

.bolder-p{
    font-weight: 500 !important;
}
a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 300;
    text-decoration: none;
}

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

/* Ovriga klasser */
.text-bold {
    font-weight: 600;
}

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

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

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

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

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

/* listor  */
.facts-list {
    list-style: none;
    padding-inline-start: initial;
    margin: 0;
}

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

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

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

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

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

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

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

.btn-wrapper.flex-end {
    justify-content: flex-end;
}

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.8rem 3.2rem;
    margin: .5rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    border-radius: 4rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

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

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

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

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

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

/* .btn-secondary-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));
}

/* Knapp med cirkel */
.btn-circle {
    position: relative;
    padding: 1.9rem 3rem;
    transition: all .3s ease;
}

.btn-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 3rem;
    background: rgb(var(--primary-color), .4);
    transition: all .3s ease;
}

.btn-circle:hover::before {
    width: 100%;
}

.btn-circle span {
    position: relative;
}

.btn-circle::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .3s ease;
}

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: rgb(var(--primary-color));
}

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

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

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

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

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

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

    .btn::after {
        display: none;
    }
}

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

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

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

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

.gradient-primary-white {
    background: linear-gradient(90deg, rgb(var(--primary-color), .7) 40%, rgb(var(--white-color)) 40%);
}

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

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

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

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

@media only screen and (max-width: 1000px) {
    .gradient-primary-white {
        background: linear-gradient(to top, rgb(var(--primary-color), .7) 20%, rgb(var(--white-color)) 20%);
    }
}

/* Grafiska element
========================================================================== */

/* Border raduis */
.br-50 {
    border-radius: 50%;
}

.box-shadow {
    box-shadow: var(--box-shadow);
}

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

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

.cards-wrapper.align-center {
    align-items: center;
}

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

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

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

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

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

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


/* Cards 1 */
.cards-1 .card-item {
    position: relative;
    padding: 4rem;
}

.cards-1 .card-item::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-image: linear-gradient(90deg, rgb(var(--primary-color)) 0%, rgb(var(--secondary-color)) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

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

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

/* Cards 2 */
.cards-2 .card-item {
    padding: 4rem;
    border-radius: 5rem;
    transition: 0.2s ease-in-out;
}

.cards-2 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 12rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.cards-2 .icon-wrapper i {
    font-size: 4.5rem;
}

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

/* Cards 10 */
.cards-10 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 40rem;
    text-decoration: none;
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    transition: 0.3s ease-in-out;
}

.cards-10 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.cards-10 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color), 0.45);
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.cards-10 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), 0.6);
}

.cards-10 .text-wrapper {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 5rem;
    color: rgb(var(--white-color));
}

.cards-10 .card-item .text-wrapper p {
    color: rgb(var(--white-color));
    font-size: 4rem;
}

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

    .cards-10 .card-item .text-wrapper p {
        font-size: 2.8rem;
    }

    .cards-10 .card-item {
        min-height: 20rem;
    }
}

/* Logos 1 */
.logos-1 .card-item {
    text-align: center;
}

.logos-1 img {
    width: 100%;
    max-height: 10rem;
    transition: 0.2s ease-in-out;
    object-fit: contain;
    padding: 1rem;
}

.logos-1 img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

/* Speciella hojder */

.logos-1 img.mh-12 {
    max-height: 12rem;
}

@media only screen and (max-width: 868px) {
    .logos-1 img {
        max-height: 8rem;
    }
}

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

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

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

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

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

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

@media screen and (max-width: 1000px) {
    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

    .split-image {
        width: 100%;
    }
}

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

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

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

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

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

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

/* Header / Navigation
========================================================================== */
header.scrolled {
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
}

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

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

/* nav */
.TemplateMenu a {
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: .1em;
    color: rgb(var(--black-color));
}

header:not(.mobile-menu) .TemplateMenu ul {
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    width: auto;
    column-count: 2;
}

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

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

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

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


/*.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: 1rem 1.5rem;
    line-height: 1;
}*/

/* Mobilmeny */
.mobile-menu .TemplateMenu li {
    padding: 0 2rem;
}
/* Mobilmeny - dropdown-funktionalitet */
/*.mobile-menu .expandable-li {
    position: relative;
    width: calc(100% - 3rem);
    cursor: pointer;
}

.mobile-menu .expandable-li .dropdown-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 5rem;
    font-size: .7em;
    font-weight: 700;
}

.mobile-menu .expandable-li .dropdown-arrow i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgb(var(--secondary-color));
}*/

/*.mobile-menu .expandable-li ul,
.TemplateMenu>li:hover>ul,
.TemplateMenu>li>ul>li:hover>ul {
    display: none;
}*/

@media only screen and (max-width: 1000px) {
    .header-logo img {
    padding: 1.5rem 0;
}
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    max-width: 100% !important;
    min-height: 92vh;
    padding-top: 7rem;
}

.top-section h1 {
    font-size: 7rem;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 2rem;
    font-family: 'Playfair Display', sans-serif;
    color: rgb(var(--white-color));
    text-align: center;
}

.top-section p {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
    color: rgb(var(--white-color));
}

.top-section .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

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

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

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

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

    .top-section .btn-wrapper {
        flex-direction: column;
    }

    .top-section .btn-wrapper a {
        margin: 1rem 0;
    }
}

/* Sektion Galleri
========================================================================== */
.gallery-section .section-block-wrapper {
    background-color: rgb(var(--gray-light-color));
    padding: 4rem;
    border-radius: 3px;
}

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

@media only screen and (max-width: 580px) {
    .gallery-section .section-block-wrapper {
        background-color: transparent;
        padding: 0;
    }
}

/* Konceptuteckling
========================================================================== */
.section-concept {
    background-image: url("/assets/images/innegard-2000px.jpg");
}

.section-concept .section-block {
    background-color: rgb(var(--black-color), .4);
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 40vh;
}

.hero .section-block {
    padding: 10rem 4rem 0;
}

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

/* Hero - Hero-title
========================================================================== */
.hero-title {
    justify-content: flex-start;
}

.hero-title .section-block {
    padding: 10rem 4rem 0 0;
    margin-bottom: -2rem;
}

.hero-title .section-block-wrapper {
    max-width: 40rem;
    width: 100%;
    padding: 2rem 4rem;
    text-align: left;
    background: rgb(var(--primary-color));
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
}

.hero-title h1 {
    padding: 0;
    font-size: 4rem;
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
.team-section .cards-2 a {
    display: inline-block;
}

.team-section .cards-2 a:hover {
    text-decoration: underline;
}

.team-section img {
    max-height: 45rem;
    border-radius: 3px;
    object-position: center top;
}

.title-contact {
    padding-top: 2rem;
}

.links {
    display: flex;
    justify-content: space-between;
    background-color: rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--primary-color));
    margin-bottom: 2rem;
}

/* ==========================================================================
Undersida: Fastighetsutveckling
========================================================================== */
.cards-10.alt-2 .image-wrapper::after,
.cards-10.alt-2:hover .image-wrapper::after {
    background-color: rgb(var(--black-color), .0);
}

.cards-10.alt-2 .card-item {
    align-items: flex-end;
    justify-content: flex-start;
}

.cards-10.alt-2 .card-item:hover .text-wrapper {
    transform: translateY(-1rem)
}

.cards-10.alt-2 .text-wrapper {
    background-color: rgb(var(--black-color), .6);
    width: 100%;
    padding: 2rem;
    text-align: left;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.cards-10.alt-2 .text-wrapper p {
    font-size: rgb(var(--base-size));
}

.cards-10.alt-2 .small-title {
    border-bottom: 1px solid rgb(var(--white-color));
    padding-bottom: 1rem;
}

/* ==========================================================================
Undersida: Projektsidor
========================================================================== */
.facts-list {
    padding: 2rem;
    border: 1px solid rgb(var(--gray-dark-color));
    border-radius: .4rem;
    margin-top: 2rem;
}
/* ==========================================================================
Undersida: Nyheter
========================================================================== */

.news-text{
height: 27rem;
}
/* ==========================================================================
Undersida: Kontakt
========================================================================== */

/* Badge wrapper 
==========================================================================*/
.section-badge .badge-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-right: 5rem;
    margin-top: -20rem;
    transform: rotate(3deg);
}

.section-badge .badge-item {
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    max-width: 40rem;
    text-align: center;
    background-color: rgb(var(--white-color));
    box-shadow: 0.5rem 0.5rem 2rem rgb(55 58 97 / 10%);
}

.section-badge .small-title {
    padding-bottom: 0;
}

.section-badge img {
    width: 17rem;
    margin-top: 2rem;
}

@media only screen and (max-width: 1100px) {
    .section-badge .badge-wrapper {
        right: 2rem;
    }
}

@media only screen and (max-width: 900px) {
    .section-badge .badge-wrapper {
        padding-right: 0rem;
        margin-top: 3rem;
        transform: rotate(2deg);
    }

    .section-badge .badge-item {
        max-width: 50rem;
        margin: 2rem;
    }
}

@media only screen and (max-width: 550px) {
    .section-badge .badge-wrapper {
        justify-content: center;
    }

    .section-badge .badge-item {
        margin: 1rem;
    }
}

.cards-1 a {
    display: block;
    margin: 8px 0;
}

.cards-1 i {
    margin-right: 5px;
}


/* ==========================================================================
Footer
========================================================================== */
.footer-container {
    padding: 0 5rem;
}

.footer p,
.footer a {
    color: rgba(var(--black-color));
    font-weight: 300;
}

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

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

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

/* 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: 1024px) {
    .footer-container {
        padding: 0 3rem;
    }
}

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