/* Reuterbring Fastighetsforvaltning */

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

/* open sans , B Garamond */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

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

    /* 	Colors */
    --primary-color: 175, 208, 194;

    --black-color: 0, 0, 0;
    --gray-dark-color: 17, 17, 17;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1150;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
}

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

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

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

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

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

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

.p-2 {
    padding: 2rem;
}

/* Specifika margins */
.mb-2 {
    margin-bottom: 2rem;
}

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

.mw-1000 .section-block-wrapper {
    max-width: 100rem !important;
}

.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

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

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

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

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

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

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

/* rubriker */
.section-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 300;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
    font-family: inherit;
    font-family: 'EB Garamond', serif;
}

.small-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgb(var(--black-color));
    font-family: inherit;
    font-family: 'EB Garamond', serif;
}

.text-label {
    font-size: 1.4rem;
    line-height: 1.3;
    font-family: inherit;
    padding-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(var(--primary-color));
}

/* Text */
p {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 300;
    text-decoration: none;
}

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

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

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

/* Pill Wrapper */
.pill-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    margin: 2rem 0 5rem;
}

.pill-item {
    background-color: rgba(var(--primary-color), 0.3);
    border-radius: 4rem;
    padding: 0.8rem 1rem 0.8rem 0.9rem;
    margin: 0 0.8rem 0.8rem 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.pill-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: rgb(var(--primary-color));
    font-size: 1rem;
    color: rgb(var(--white-color));
    margin: 0 0.8rem 0 0;
    border-radius: 50%;
}

.pill-item .small-title {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    padding: 0;
}

a.pill-item:hover {
    background-color: rgba(var(--primary-color), 1);
    transition: all 0.3s ease-in-out;
}

a.pill-item:hover .small-title {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 550px) {
    .pill-item .small-title {
        font-size: 1.4rem;
    }
}

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

@media only screen and (max-width: 600px) {
    .text-label {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.7rem;
        line-height: 1.4;
    }

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-decoration: none;
    line-height: 1;
    border-radius: 1rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn::after {
    content: " \2023";
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.4s ease;
}

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 600;
    font-size: 1.5rem;

}

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

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background: rgb(var(--white-color));
    transform: translatex(-50%);
}

.bouncing-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    color: rgb(var(--white-color));
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 3rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media only screen and (max-width: 1000px) {
    .bouncing-arrow-wrapper {
        width: 4rem;
        height: 4rem;
        right: 3rem;
        bottom: -1rem;
    }

    .bouncing-arrow {
        width: 3.4rem;
        height: 3.4rem;
    }

    .bouncing-arrow i {
        font-size: 2rem;
    }
}

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

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

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

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

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

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

@media only screen and (max-width: 900px) {
    .gradient-white-primary {
        background-image: linear-gradient(to bottom, rgb(var(--white-color)) 70%, rgb(var(--primary-color)) 30%);
    }
}

/* Grafisk element
========================================================================== */
/* Border radius */
.br-1 {
    border-radius: 1rem;
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: linear-gradient(90deg, rgb(var(--black-color), 0.2) 0%, rgb(var(--black-color), 0.5) 0%, rgb(var(--black-color), 0) 100%);
}

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

/* Parallax
========================================================================== */
/* Halvsektionsparallax */
.parallax-half {
    position: relative;
}

.parallax-half::after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 65%;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-size: cover;
}

.parallax-half .section-block {
    z-index: 2;
    position: relative;
    padding-top: 30rem;
    background-image: linear-gradient(to bottom, rgba(var(--black-color), 0.6) 60%, rgb(var(--gray-light-color)) 60%);
}

@media only screen and (hover: none) {
    .parallax-half .section-block {
        padding-top: 15rem;
    }

    .parallax-half::after {
        background-attachment: scroll;
        background-position: center center;
    }
}

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

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

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

/* Cards 2 */
.cards-2 {
    margin-top: -5rem;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 5%);
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.cards-2 .card-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.cards-2 a.card-item:hover {
    text-decoration: none;
    background-color: rgb(var(--primary-color), 0.4);
}

.cards-2 .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.cards-2 i {
    width: 4rem;
    margin-right: 1rem;
    font-size: 3rem;
    color: rgb(var(--primary-color));
}

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

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

    .cards-2 .small-title {
        font-size: 1.9rem;
        padding-bottom: 0;
        margin-bottom: 0.5rem !important;
    }

    .cards-2 i {
        width: 3.5rem;
    }
}

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    background: rgb(var(--gray-light-color));
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.cards-7 .text-wrapper {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    flex: 1;
}

.cards-7 .btn-wrapper {
    margin-top: 1rem;
}

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

/* 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;
    transition: 0.3s ease-in-out;
    border-radius: 1rem;
}

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

.cards-10 .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.cards-10 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--black-color), 0.65);
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-radius: 1rem;
}

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

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

.cards-10 .text-wrapper.border {
    margin: 5rem;
    border: 1px solid rgb(var(--white-color));
}

.cards-10 .card-item .text-wrapper * {
    color: rgb(var(--white-color));
}

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

    .cards-10 .text-wrapper.border {
        margin: 2rem;
    }
}

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

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

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

.split-image {
    width: 50%;
    border-radius: 3px;
}

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

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

@media screen and (max-width: 1200px) {
    .split-content {
        width: 100%;
        padding: 0 0 5rem;
    }

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

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

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

/* Header / Navigation
========================================================================== */
header {
    z-index: 15;
    background-color: transparent;
}

header.scrolled {
    box-shadow: 0 1rem 3rem rgb(var(--black-color), 0.1);
    transition: all 0.2s ease;
    border-bottom: none;
    background-color: rgb(var(--white-color));
}

header .container {
    height: 100%;
    padding: 0 2rem;
}

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

.header-logo a {
    font-size: 2rem;
    width: 20rem;
    font-weight: 500;
    color: rgb(var(--white-color));
    font-family: inherit;
}

header.scrolled .header-logo a,
header.active-menu .header-logo a {
    color: rgb(var(--gray-dark-color)) !important;
}

.TemplateMenu>li:first-child {
    display: none;
}

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

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

header nav.mainmenu a:hover {
    color: rgb(var(--primary-color));
}

.mobile-menu nav.mainmenu a {
    padding-right: 0;
    color: rgb(var(--gray-dark-color));
    font-size: 1.3rem;
}

.TemplateMenu ul {
    min-width: 35rem;
    border-radius: 1rem;
}

.TemplateMenu ul a {
    color: rgb(var(--gray-dark-color));
}

/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/2/vara-fastigheter/"],
body:not(.EditMode) .TemplateMenu a[href="/17/7/uthyrning/"] {
    pointer-events: none;
}

/* Hamburgare */
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    background-color: rgb(var(--primary-color));
}

@media only screen and (max-width: 1000px) {
    .header-logo a {
        font-size: 1.5rem;
    }
}

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

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), 0.3);
}

.top-section .section-block {
    padding-top: 12rem;
}

.top-section .section-block-wrapper {
    max-width: 85rem;
    margin: 0;
    text-align: center;
}

.top-section h1 {
    padding-bottom: 3rem;
    color: rgb(var(--white-color));
    font-size: 7rem;
    font-weight: 300;
    font-family: 'EB Garamond', serif;
    line-height: 1.3em;
    text-align: center;
}

.top-section p {
    font-size: 2.5rem;
    font-style: italic;
}

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

@media only screen and (max-width: 660px) {
    .top-section {
        min-height: 100vh;
    }

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

    .top-section p {
        font-size: 2rem;
    }

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

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

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

    .top-section p {
        font-size: 1.7rem;
    }
}

/* CTA (.cta-section)
========================================================================== */
@media only screen and (max-width: 1050px) {
    .cta-section .cards-wrapper.w-50 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

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

/* Sektion galleri (.section-gallery)
========================================================================== */
.section-gallery {
    background-image: url(/assets/images/nordiska-museet-2000px.jpg);
    background-size: cover;
    background-position: center;
}

.section-gallery .section-block-wrapper {
    padding: 4rem;
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .05);
    background-color: rgb(var(--white-color));
}

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

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

/* Hero
========================================================================= */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 57vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), 0.3);
}

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

.hero .text-label {
    padding-bottom: 2rem;
    font-size: 1.8rem;
}

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

@media only screen and (max-width: 1150px) {
    .hero {
        padding-top: var(--menu-height);
    }
}

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

    .hero h1 {
        font-size: 2.5rem;
        padding-bottom: 1rem;
    }
}

/* ==========================================================================
Undersida: Vara fastigheter > Bjurbacken & Gubben Noak
========================================================================== */

/* Karta
========================================================================== */
.section-map {
    font-size: 0;
}

/* ==========================================================================
Undersida: Uthyrning > Forrad/Lokaler & Parkeringsplatser/Garageplatser
========================================================================== */
.section-local .split-image {
    max-height: 50rem;
}

.case-textblock {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
}

/* Slick Settings */
.slick-list,
.slick-track {
    height: 100%;
}

.slick-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    transform: translateX(-50%);
    background-color: rgb(var(--white-color));
    border-radius: 1rem;
    height: 2rem;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: relative;
    width: 7px;
    height: 7px;
    content: "";
    text-align: center;
    opacity: 0.4;
    border-radius: 4px;
    background-color: rgb(var(--black-color));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: rgb(var(--primary-color));
    width: 20px;
    transition: all 0.2s ease;
}

/* ==========================================================================
Undersida: Intresseanmalan
========================================================================== */
.contact-section .section-block-wrapper {
    padding: 0 5rem;
    background-color: rgb(var(--gray-light-color));
}

.contact-section .layout-2 .col-0 {
    padding: 3rem;
    margin: -5rem 0 -5rem;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    background-color: rgba(var(--white-color));
}

.contact-section .layout-2 .col-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ContactForm p {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.ContactForm select {
    width: 100%;
    height: 5rem;
    border: 1rem;
    border: 1px solid rgb(var(--gray-light-color));
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border: 1px solid rgb(var(--gray-light-color));
}

/* Dölj fält */
.contact-section .field-2 {
    display: none;
}

@media only screen and (max-width: 980px) {
    .contact-section .layout-2 .col-0 {
        margin: 5rem 0 0rem;
    }

    .contact-section .section-block-wrapper {
        flex-direction: column-reverse;
        padding: 0;
        background-color: rgba(var(--white-color));
    }
}

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

/* ==========================================================================
Page 401
========================================================================== */

.page-401 header,
.page-401 footer {
    display: none;
}

.EditMode.page-401 header,
.EditMode.page-401 footer {
    display: block;
}

.section-401-1 {
    background-color: rgb(var(--primary-color));
}

.section-401-1 .section-block {
    background-image: linear-gradient(to right top, rgb(var(--white-color), 0.1), rgb(var(--black-color), 0.2));
    min-height: 60vh;
    padding-bottom: 0;
    display: flex;
    align-items: flex-end;
}

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

.error-wrapper {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto -10.1rem;
    border-radius: 1rem;
    border: 1px solid rgb(var(--black-color), 0.1);
    overflow: hidden;
}

.error-content {
    padding: 3rem;
    text-align: center;
    background-color: rgba(var(--white-color), .2);
}

.error {
    font-size: clamp(10rem, 15vw, 35rem);
    font-weight: 700;
    line-height: 1;
    padding: 0;
}

.error-footer {
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--primary-color), 0.1);
    text-align: center;
    padding: 2rem;
}

.error-footer p {
    color: rgb(var(--primary-color));
    font-size: 1.8rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.error-footer p a {
    font-size: inherit;
    text-decoration: underline;
    color: inherit;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--gray-light-color));
}

.footer-container {
    max-width: 160rem;
    padding: 0 5rem;
    margin: 0 auto;
}

.footer a,
.footer li,
.footer p {
    color: rgba(var(--gray-dark-color));
}

.footer a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

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

/* WebbEss Stamp */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
} 
 
.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
}

@media only screen and (max-width: 1024px) {
    .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: 650px) {
    /* Footer top */
    .footer-top {
        padding: 4rem 0 4rem;
    }

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

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

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

    /* WebbEss stamp */
    .webbess-stamp {
        justify-content: flex-start;
    }
}

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