/* Taste by Nordrest */

/* Typsnitt */
@import url("https://use.typekit.net/ldv0tiy.css");

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 71, 117, 128;
    --secondary-color: 47, 48, 79;

    --accent-blue-color: 215, 251, 255;
    --accent-orange-color: 250, 173, 25;
    --accent-yellow-color: 255, 240, 179;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 247, 250, 250;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

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

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

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

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
} 

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

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

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

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title,
.section-menu h2 {
    padding-bottom: .5em;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: rgb(var(--secondary-color));
}

.small-title,
.section-menu h6 {
    padding-bottom: .3em;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--secondary-color));
}

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

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

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

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

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

.text-smaller {
    font-size: 1.5rem;
    font-style: italic;
}

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

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    transition: all .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-primary-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
}

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

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

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

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

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

@media only screen and (max-width: 580px) {
    .btn {
        margin: 5px;
    }
} 

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

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

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

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

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

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

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

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

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 40rem;
    background-color: rgb(var(--black-color), .4);
}

.parallax-monster {
    background-image: url('/assets/images/graphics/monster-1200px.jpg');
}

.parallax-monster .section-block {
    background-color: rgb(var(--white-color), .7);
}

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

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

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

.card-item {
    text-decoration: none;
}

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

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

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

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

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

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

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

/* Cards 3-5 */
.card-3-5 .card-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 35rem;
}

.card-3-5 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(.3);
}

.card-3-5 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--primary-color), .4);
    transition: .3s ease;
}

.card-3-5 .card-item:hover .image-wrapper::after {
    background: rgb(var(--secondary-color), .6);
}

.card-3-5 .card-body {
    z-index: 1;
    position: relative;
    padding: 2rem;
    text-align: center;
}

.card-3-5 .section-title {
    text-shadow: 0 0 10px rgb(var(--black-color));
}

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

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

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

.split-image {
    width: 50%;
}

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

/* Split m grafik */
.split-wrapper.bg-monster {
    position: relative;
    background-color: rgb(var(--gray-light-color), .9);
}

.split-wrapper.bg-monster::after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/assets/images/graphics/monster-1200px.jpg);
}

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

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

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

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

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

/* Modal
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color), .7);
}

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 75vh;
    padding: 0;
    overflow: auto;
    background-image: url('/assets/images/graphics/monster-1200px.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 3rem;
    transform: translate(-50%, -50%);
}

body:not(.EditMode) .section-auto-modal.event .section-block {
    max-width: 100rem;
    max-height: 80vh;
}

body:not(.EditMode) .section-auto-modal.event .section-block-wrapper {
    padding: 0;
}

body:not(.EditMode) .section-auto-modal .section-block-wrapper {
    padding: 4rem;
    background-color: rgb(var(--white-color), .7);
}

body:not(.EditMode) .section-auto-modal img {
    height: 25rem;
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
}

@media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block-wrapper {
        padding: 3rem 2rem;
    }
}

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

header:not(.scrolled) {
    border: none;
    background: transparent;
}

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

header:not(.mobile-menu) .header-logo img {
    width: 25rem;
}

header:not(.scrolled) .header-logo img {
    filter: brightness(0) invert();
}

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

header:not(.mobile-menu, .scrolled) .TemplateMenu>li:not(.active)>a:not(:hover) {
    color: rgb(var(--white-color));
}

header:not(.mobile-menu, .scrolled) .TemplateMenu li.active>a,
header:not(.mobile-menu, .scrolled) .TemplateMenu a:hover {
    color: rgb(var(--accent-yellow-color));
}

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

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    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 .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

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

    /* Header logo */
    .header-logo {
        margin-left: 3rem;
    }
}

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

    /* Header logo */
    .header-logo {
        margin-left: 2rem;
    }

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    margin-top: calc(var(--menu-height) * -1);
    border-left: 4rem solid rgb(var(--white-color));
    background-color: rgb(var(--black-color), .6);
    background-image: url(/assets/images/graphics/border-bottom-left-rounded.svg);
    background-size: 10rem;
    background-position: left bottom;
    background-repeat: no-repeat;
    overflow: visible;
}

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

.top-section .text-block {
    max-width: 85rem;
}

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

.top-section .section-title span {
    display: block;
}

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    right: 5rem;
    bottom: -2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgb(var(--gray-light-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: 1200px) {
    .top-section .section-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 680px) {
    .top-section {
        border-left: 2rem solid rgb(var(--white-color))
    }

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

    .bouncing-arrow-wrapper {
        display: none;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 55vh;
    margin-top: calc(var(--menu-height) * -1);
    text-align: center;
    border-left: 4rem solid rgb(var(--white-color));
    background-color: rgb(var(--black-color), .6);
    background-image: url(/assets/images/graphics/border-bottom-left-rounded.svg);
    background-size: 10rem;
    background-position: left bottom;
    background-repeat: no-repeat;
    overflow: visible;
}

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

.hero .section-title {
    font-size: 6rem;
    color: rgb(var(--white-color));
}

.hero .btn-wrapper {
    margin-top: 4rem;
}

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

@media only screen and (max-width: 680px) {
    .hero {
        min-height: 60vh;
        border-left: 2rem solid rgb(var(--white-color));
    } 

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

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

/* ==========================================================================
Undersida: Restaurangsida 
========================================================================== */

/* Meny
========================================================================== */
.section-menu .section-block-wrapper {
    max-width: 100rem;
    padding: 10rem 5rem;
    border-radius: 3rem;
    text-align: center;
    background: rgb(var(--white-color));
}

.section-menu .menu-wrapper {
    max-width: 75rem;
    margin: 0 auto 3rem; 
}
 
.section-menu .menu-item {
    padding: 2rem 0;
}

.section-menu h6 {
    color: rgb(var(--primary-color));
}

.section-menu .menu-item p {
    padding: 0;
}

.section-menu .menu-item p:not(:first-of-type, .eng-meny) {
    margin: 1rem 0 0;
    border-top: 1px dotted rgb(var(--primary-color), .3);
}

.section-menu .menu-item p:not(.eng-meny) {
    padding: 1rem 0 0;
    color: rgb(var(--black-color));
}

.section-menu .eng-meny {
    font-size: 1.4rem;
    font-style: italic;
}

.section-menu .menu-pdf {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: rgb(var(--primary-color)); 
}

.section-menu .menu-pdf i {
    margin-right: 1rem;
}

.section-menu .menu-pdf a {
    text-decoration: none;
}

.section-menu #previous,
.section-menu #next {
    display: none;
}

@media only screen and (max-width: 580px) {
    .section-menu .section-block-wrapper {
        padding: 2.5rem 1.5rem
    }

    .section-menu .menu-item p:not(.eng-meny) {
        font-size: 1.4rem;
    }

    .section-menu .eng-meny {
        font-size: 1.3rem;
    }
}

/* Section-catering Arenastaden
========================================================================== */
.section-catering .col-1 {
    width: 35%;
}

.section-catering .col-2 {
    width: 65%;
}

.section-catering .tab-container {
	padding: 4rem 2rem;
    border-radius: 3rem;
	background-color: rgb(var(--gray-light-color));
	min-height: 50rem;
}

/* Tabbval */
.section-catering .tabs-wrapper {
	margin-bottom: 5rem;
}

.section-catering .tabs-list {
	text-align: left;
	display: flex;
	flex-direction: column;
}

.section-catering .tabs-heading {
	display: none;
}

.section-catering .tab {
	display: inline-block;
	padding: 1rem 2rem;
	color: rgb(var(--white-color));
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .3rem;
	cursor: pointer;
}

.section-catering .menu-tab {
	background: rgb(var(--primary-color));
	margin: 0.2rem;
    border-radius: 3px;
}

.section-catering .tab-active {
	color: rgb(var(--black-color));
}

/* Innehåll */
.section-catering .tab-col {
	width: calc((100% / 1) - 2rem);
	margin-top: 2rem;
}

.section-catering .tab-wrapper .small-title {
	margin-bottom: 1rem;
	font-size: 2.6rem;
    font-weight: 600;
	text-transform: uppercase;
}

.section-catering .tab-item {
	display: flex;
	flex-direction: column;
	padding-bottom: 1.5rem;
}

.section-catering .tab-item .small-title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	letter-spacing: .2rem;
    font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
	border-bottom: 1px dotted rgb(var(--gray-color));
	text-align: start;
}

.section-catering .tab-item .prices {
	padding-left: 1rem;
}

.section-catering .tab-item .description {
	font-size: 1.3rem;
	font-style: italic;
	text-align: start;
	color: rgb(var(--gray-dark-color));
}

.section-catering .tab-item.info .small-title {
	font-size: 1.6rem;
	letter-spacing: .1rem;
	line-height: 1.3;
    text-transform: none;
	border-bottom: none;
}

.section-catering .tab-item.info .description {
	font-size: 1.4rem;
	font-style: normal;
}

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

	.section-catering .col-1,
    .section-catering .col-2 {
		width: 100%;
        padding: 0 1rem;
	}

	.section-catering .tabs-wrapper {
		margin: auto;
		margin-bottom: 4rem;
	}

	/* Tabbval */
	.section-catering .tabs-wrapper {
		position: relative;
		padding: 1rem 2rem;
		background: rgb(var(--primary-color));
		cursor: pointer;
        border-radius: 3px;
	}

	.section-catering .tabs-heading {
		display: block;
	}

	.section-catering .tabs-heading p {
		display: flex;
		justify-content: space-between;
		padding-bottom: 0;
		color: rgb(var(--white-color));
	}

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

	.section-catering .tabs-list {
		display: none;
		z-index: 1;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		text-align: left;
		background: rgb(var(--white-color));
		box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
	}

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

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

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

	/* Innehåll */
	.section-catering .tab-col {
		width: 100%;
	}
}

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

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

	/* Innehåll */
	.section-catering .tab-item .small-title {
		font-size: 1.4rem;
	}

	.section-catering .tab-item .description {
		font-size: 1.2rem;
	}
}

/* Kontakt
========================================================================== */
.bg-block {
    position: relative;
    padding: 10rem 5rem;
}

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

@media only screen and (max-width: 750px) {
    .section-contact .card-item {
        padding: 0;
    }
}

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

/* ==========================================================================
Footer
========================================================================== */
.footer {
    position: relative;
    padding: 0 5rem;
    border-right: 6rem solid rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    background-image: url(/assets/images/graphics/border-bottom-left-rounded.svg);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

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

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

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

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
    color: rgb(var(--white-color));
}

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

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

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

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

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

    .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%;
    }
}

@media only screen and (max-width: 680px) {
    .footer {
        padding: 0 2rem;
        border-right: 2rem solid rgb(var(--white-color));
    }

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

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

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