/* No Leftovers AB */

/* Typsnitt: Brush script Ltd, Loos Normal, Politica */
@import url("https://use.typekit.net/iyr3pgs.css");

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

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

    /* 	Colors */
    --primary-color: 184, 0, 0;
    --secondary-color: 235, 156, 156;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1100;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 17, 17, 17;
    --menu-color: rgb(255, 255, 255);
}

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

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

/* Specifika paddings */
.pt-0 .section-block {
    padding-top: 0;
}
.pb-0 .section-block {
    padding-bottom: 0;
}

.p-0 .section-block {
    padding: 0;
}

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

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

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

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

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

.mw-70 {
    max-width: 70rem;
    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: 'politica', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 0.9em;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    padding-bottom: 0.3em;
    font-family: 'loos-normal', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.3;
}

.small-title {
    padding-bottom: 0.5em;
    font-family: 'politica', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.4;
}

/* Brodtext och lankar */
p {
    font-weight: 400;
    color: #333;
}

a {
    color: rgb(var(--primary-color));
    font-weight: 400;
    text-decoration: none;
}

/* ovriga klasser */
.text-center {
    text-align: center;
}

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

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

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

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

.btn-wrapper .btn {
    margin: 1rem;
}

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

/* Knappar */
.btn {
    display: inline-block;
    min-width: 20rem;
    padding: 1.3rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

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

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
}

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

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background-color: rgb(30, 30, 30);
    transform: translateX(-50%);
}

.bouncing-arrow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0.5rem;
    left: 0.5rem;
    width: 5rem;
    height: 5rem;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
}

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

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-1rem);
    }
    60% {
        transform: translateY(-0.5rem);
    }
}

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

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

/* Farger
========================================================================== */
/* Bakgrundsfarger */

.bg-black {
    background-color: rgb(17, 17, 17);
}

.bg-darkgray {
    background-color: rgb(30, 30, 30);
}

.bg-black-grey .section-block{  
    background-image: linear-gradient(
        to bottom,
        rgb(17, 17, 17) 50%,
        rgb(30, 30, 30) 50%
    );
  
}


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

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

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

.text-muted {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

.cards-10-wrapper .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 40rem;
    margin: 1rem;
    border: 1px solid #14213d;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

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

.cards-10 .image-wrapper::after {
    transition: all 0.4s ease;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.cards-10 .card-item:hover .image-wrapper::after {
    background: rgba(0, 0, 0, 0.7);
}

.cards-10 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.cards-10 .text-wrapper {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 15rem 2rem;
}

.cards-10 .card-item .text-wrapper * {
    color: #fff;
}


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

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

/* Cards 16 */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cards-16 .card-item {
    position: relative;
    padding: 25rem 2rem 2rem;
}

.cards-16 .text-wrapper {
    z-index: 1;
    position: relative;
    height: 100%;
    padding: 2rem 3rem;
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 3px;
}

.cards-16 .text-wrapper  * {
    text-align: center;
}

.cards-16 .small-title {
    line-height: 1.5;
    text-align: center;
    padding: 0;
}

.cards-16 a {
    display: block;
}

.cards-16 a:hover:not(.btn) {
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cards-16 .small-title::after {
    display: inline-block;
    content: " \2023";
    margin-left: 0.5rem;
    transition: all 0.4s ease;
    vertical-align: middle;
}

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


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

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

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

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

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

/* Split image med grid */
.split-images-grid {
    justify-content: space-between;
}

.split-images-grid .split-content {
    padding: 7rem 4rem;
    border-radius: 2px;
    width: calc(50% - 1rem);
}

.split-image-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    gap: 1rem;
    width: 50%;
}

.split-image-grid .grid-image {
    position: relative;
    width: 100%;
}

.split-image-grid > .grid-image:nth-child(1) {
    grid-column: 1 / 3;
    -ms-grid-column: 1;
    grid-row: 1 / 1;
    -ms-grid-row: 1;
}

.split-image-grid > .grid-image:nth-child(2) {
    grid-column: 1 / 1;
    -ms-grid-column: 2;
    grid-row: 2 / 2;
    -ms-grid-row: 1;
}

.split-image-grid > .grid-image:nth-child(3) {
    grid-column: 2 / 2;
    -ms-grid-column: 2;
    grid-row: 2 / 2;
    -ms-grid-row: 2;
}

.split-image-grid .split-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

@media screen and (max-width: 1200px) {
    .split-images-grid .split-content {
        padding: 3rem;
        width: calc(60% - 1rem);
    }

    .split-image-grid {
        width: 40%;
        margin: -1rem 0;
    }
}

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

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

    .split-image-grid .split-image {
        max-height: 30rem;
    }

    /* Split image med grid */
    .split-images-grid {
        padding: 1rem;
    }

    .split-images-grid .split-content {
        width: 100%;
    }

    .split-image-grid {
        width: 100%;
        margin: 0;
    }

    .split-image-grid .split-image {
        position: relative;
    }
}

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

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

    /* Split image med grid */
    .split-images-grid .split-content {
        padding: 2rem 1rem;
    }
}

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

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

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

/* Header / Navigation
========================================================================== */
header {
    background-color: transparent;
    transition: all 0.2s ease;
}

header.scrolled {
    background-color: rgb(17, 17, 17);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Nav */

nav.mainmenu a {
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    transition: all 0.3s ease;
}

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

header.scrolled nav.mainmenu a {
    color: #fff;
    transition: all 0.3s ease;
}

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

/* Dolja Hem i menyn  */
nav.mainmenu ul.TemplateMenu > li:first-child {
	display: none;
}


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

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

/* Mobilmeny */
@media only screen and (max-width: 550px) {
    .header-cta-wrapper .btn {
        display: none;
    }

    header .container {
        padding: 0 1rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    min-height: calc(100vh - 5rem);
    margin-top: -10rem;
    background-color: rgba(0, 0, 0, 0.6);
}

.top-section h1 {
    text-align: center;
    font-family: 'brush-script-std';
    font-weight: 400;
    font-style: normal;
    font-size: 9rem;
    color: #fff;
    padding-bottom: 0;
}

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

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

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

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

/* Sektion Intro (.section-intro)
========================================================================== */
.section-intro {
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 550px) {
    .section-intro * {
        text-align: left;
    }
}

/* Sektion Om (.section-split)
========================================================================== */
.section-split .split-content {
    padding-left: 0;
}

/* Sektion Tjanster (.section-services)
========================================================================== */

.section-services {
    background-image: linear-gradient(
        to bottom,
        rgb(30, 30, 30) 10rem,
        rgb(17, 17, 17) 10rem
    );
    position: relative;
    z-index: 1;
}

.section-services::after {
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(images/wave.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    top: 10rem;
    left: 0;
    pointer-events: none;
    transform: translateY(-100%);
    opacity: 0.3;
}

/* Sektion Info (.section-info)
========================================================================== */

.section-info {
    position: relative;
    z-index: 1;
}

.section-info::after {
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(images/wave.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    bottom: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* Sektion Instagram (.section-insta)
========================================================================== */
.section-insta {
    overflow: hidden;
}

.section-insta .eapps-instagram-feed-posts-item {
    border-radius: 3px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.09);
}

.section-insta .eapps-instagram-feed-posts-view.eui-slider-slide {
    padding: 1rem 0 5rem;
}

.section-insta .eapps-instagram-feed-posts-slider-nav {
    top: auto;
    bottom: -2rem;
    width: 4rem;
    height: 4rem;
    box-shadow: none !important;
    background-color: rgb(var(--primary-color)) !important;
}

.section-insta .eapps-instagram-feed-posts-slider-nav-icon {
    left: 50% !important;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto !important;
}

.section-insta .eapps-instagram-feed-posts-slider-next {
    right: auto;
    left: 3rem;
}

.section-insta .eapps-instagram-feed-posts-slider-prev {
    left: 2rem;
}

.section-insta .eui-slider-arrow {
    visibility: visible;
    opacity: 0.5;
}

.section-insta .eui-slider-arrow-enabled {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

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

/* Header image, video
========================================================================== */
.hero h1,
.hero-solid h1 {
    color: white;
    font-size: 5rem;
    font-family: 'loos-normal', sans-serif;
    text-align: center;
}

.hero .section-block {
    padding: 11rem 5rem;
}

.hero .bg-video-wrapper {
    height: 55%;
}

.SubPage header {
    background-color: #111;
}

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

@media only screen and (max-width: 600px) {
    .hero h1,
    .hero-solid h1 {
        font-size: 3.5rem;
    }

    .hero-solid .section-block {
        padding: 12rem 4rem;
    }
}

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


/* ========================================================================
Undersida: Restaurangerna - Nassjo/Jonkoping
========================================================================== */

.restaurants {
    z-index: 1;
    position: relative;
}

.restaurants .cards-16 .card-item * {
    text-align: center;
}

.restaurants .cards-16 .card-item a:not(.btn) {
    font-size: 2rem;
}

.restaurants .cards-16 .card-item a:hover:not(.btn) {
    text-decoration: underline;
}

/* bg-bild */
.restaurants::after {
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(images/wave.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    left: 0;
    pointer-events: none;
    transform: translateY(-100%);
    opacity: 0.3;
}

@media only screen and (max-width: 800px) {
    .restaurants .cards-16 .card-item {
        margin: 0;
        margin-top: 10rem;
    }
}

@media only screen and (max-width: 600px) {
    .restaurants .cards-16 .card-item {
        margin: 0;
        margin-top: -1rem;
    }

    .restaurants .cards-16 .card-item {
        padding: 13rem 2rem 2rem;
    }

    .restaurants .cards-16 .text-wrapper {
        padding: 2rem 1rem;
    }
}

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

@media only screen and (max-width: 1050px) {
    .map iframe {
        height: 40rem;
    }
}

@media only screen and (max-width: 550px) {
    .map iframe {
        height: 30rem;
    }
}

/* Instagram
========================================================================== */
.instagram {
    overflow: hidden;
}

/* ==========================================================================
Undersida: Meny 
========================================================================== */
.tab-container {
    padding: 5rem 5rem;
    border-radius: 1rem;
    position: relative;
    top: -7rem;
}

/* Tabbval */
.tabs-wrapper {
    margin-bottom: 2rem;
}

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

.tabs-heading {
    display: none;
}

.tab {
    display: inline-block;
    padding: 1rem 2rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    cursor: pointer;
    border-right: 1px solid rgb(var(--primary-color));
}

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

/* Innehall */
.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 3rem;
}

.tab-col {
    width: calc((100% / 2) - 2rem);
}

.tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 4rem;
}

.tab-item .small-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    color: #fff;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px dotted rgb(var(--primary-color));
}

/* Info innan menyn */
.tab-col.w-100 {
    width: 100%;
    text-align: center;
}

.tab-item.info .small-title {
    border-bottom: none;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    font-size: 2.2rem;
    font-style: italic;
    justify-content: flex-start;
}

.tab-item.info .fas {
    color: rgb(var(--primary-color));
}

.tab-item.info {
    margin: 0 auto;
}

.tab-item .price {
    display: none;
    padding-left: 1rem;
}

.tab-item .description {
    font-size: 1.4rem;
    color: #fff;
}

@media only screen and (max-width: 980px) {
    /* Tabbval */
    .tabs-wrapper {
        position: relative;
        max-width: 25rem;
        padding: 1rem 2rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tabs-heading {
        display: block;
    }

    .tabs-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: #fff;
    }

    .tabs-heading i {
        margin-left: 2rem;
    }

    .tabs-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: #fff;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    }

    .tab {
        color: #111;
    }

    .tabs-wrapper.opened .tabs-list {
        display: block;
    }

    .tab {
        display: block;
        padding: 1.5rem 1rem;
        letter-spacing: normal;
        text-transform: initial;
    }
}

@media only screen and (max-width: 750px) {
    /* Innehall */
    .tab-col {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .tab-container {
        padding: 5rem 1.5rem;
        top: -2rem;
    }

    /* Tabbval */
    .tabs-wrapper {
        max-width: 100%;
    }

    /* Innehall */
    .tab-item .small-title {
        font-size: 1.5rem;
    }

    .tab-item .description {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(17, 17, 17);
}

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

.footer a {
    color: #fff;
}

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

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

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

.footer .small-title {
    font-size: 1.8rem;
    color: rgb(var(--primary-color));
    font-weight: 700;
}

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

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

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

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

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

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

    /* 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: 450px) {
    /* Footer top */
    .footer-top {
        padding: 8rem 0 4rem 0;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}
