/* Metafor Media Aktiebolag */

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
	/* 	Layout  */
	--col-padding: 3rem;
	--menu-height: 6rem;
	--menu-height-scrolled: 6rem;
	--section-width: 140rem;

	/* 	Colors */
	--primary-color: 23, 36, 60;
	--primary-light-color: 39, 62, 104;

	--black-color: 0, 0, 0;
	--gray-dark-color: 58, 58, 58;
	--gray-color: 128, 128, 128;
	--gray-light-color: 230, 230, 230;
	--white-color: 255, 255, 255;

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

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

/* Layout
========================================================================== */

.section-block {
	padding: 10rem 5rem;
}

.section-block-wrapper {
	max-width: var(--section-width);
}

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

/* Paddings */
.p-1 {
	padding: 1rem;
}
.p-3{
	padding: 3rem;
}

.pt-0 .section-block {
	padding-top: 0;
}

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

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

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

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

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

.py-0 .section-block {
	padding-top: 0;
	padding-bottom: 0;
}

.px-0 .section-block {
	padding-left: 0;
	padding-right: 0;
}

/* Margins */
.mt-3 {
	margin-top: 3rem;
}
.mb-3 {
	margin-bottom: 3rem;
}
.mb-10{
	margin-bottom: 10rem !important;
}

@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: 'Cabin', sans-serif;
}

/* Rubriker */
.text-label {
	font-size: 1.4rem;
	font-weight: 600;
	text-transform: uppercase;
	padding-bottom: 1em;
	color: rgb(var(--white-color));
}

.section-title {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: .5em;
	color: rgb(var(--white-color));
}

.small-title {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.4;
	padding-bottom: .7em;
	color: rgb(var(--white-color));
}

.text-title {
	font-size: var(--base-size);
	font-weight: 400;
	color: rgb(var(--white-color));
}

.ingress {
	font-size: calc(var(--base-size) * 1.2);
	font-weight: 700;
}

/* Brodtext och lankar */
p,
li {
	font-weight: 400;
	color: rgb(var(--gray-light-color));
}

a {
	font-size: inherit;
	font-weight: 400;
	text-decoration: underline;
	color: inherit;
}

a:hover {
	text-decoration: none;
}

/* 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-underline{
	text-decoration: underline;
}
.block-center{
	display: block;
	margin: auto;
	margin-top: 5rem;
}

@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;
	}
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
	min-width: 20rem;
	padding: 1.4rem 2rem;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	transition: all .4s ease;
}

.js-show-more-text {
	max-width: 25rem;
}
.btn-primary-filled {
	color: rgb(var(--white-color));
	border: 1px solid rgb(var(--primary-color));
	background-color: rgb(var(--primary-color));
}
.btn-primary-filled:hover {
	border: 1px solid rgb(var(--white-color));
}

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

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

.btn-ner::after {
    content: ' \f107';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}
.btn-upp::after {
    content: ' \f106';
	display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

/* Arrow link */
.arrow-link {
	font-size: var(--base-size);
	padding-right: 1rem;
	color: rgb(var(--gray-dark-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: 480px) {
	.btn {
		display: block;
		width: 100%;
	}
}

/* Farger
========================================================================== */
/* Bakgrunder */
.section-wrapper:not(.landmarken) {
	background-color: rgb(var(--black-color));
}

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

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

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

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


/* Bakgrundsbild
========================================================================== */
.bg-image {
	position: relative;
	/*overflow: hidden;*/
}

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

.parallax {
	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;
	}
}

/* Modal
========================================================================== */
.modal {
	max-width: 170rem;
	width: 100%;
	max-height: 80vh;
	padding: 4rem 4rem;
	border-radius: 0;
	box-shadow: none;
	overflow: auto;
	background-color: rgb(var(--primary-color));
}

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

.blocker {
	z-index: 100;
}

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

.modal a.close-modal {
	display: none;
}

.modal .custom-close-modal {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 3rem;
}

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

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

	.blocker {
		padding: 1rem;
	}
}

/* Grafiska element
========================================================================== */
.border-gray {
	border: 1px solid rgb(var(--gray-light-color));
}

.of-wrapper .op-top {
	object-position: top center;
}

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

.card-item {
	text-decoration: none;
	transition: all .3s ease;
}

/* Card grow */
.cards-grow .card-item {
	display: flex;
	flex-direction: column;
}

.cards-grow .card-body {
	flex-grow: 1;
}

/* 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-100 .card-item {
	width: 100%;
	margin: 1rem 0;
}

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

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

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

/* Card 2-5 */
.card-2-5 .card-item {
	display: flex;
	align-items: center;

}

.card-2-5 .card-header {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
}

.card-2-5 .card-header i {
	font-size: 2.7rem;
}

.card-2-5 .card-body {
	padding: 0 1.5rem;
}

.card-2-5 .card-item .small-title {
	padding-bottom: 0.2em;
	transition: .3s ease;
}

.card-2-5 .card-item:hover .small-title {
	text-decoration: underline;
}

/* Card 3-1 */
.card-3-1 .card-item {
	background-color: rgb(var(--gray-dark-color));
	align-self: flex-end;
	transition: transform .2s;
}

.card-3-1 a.card-item:hover {
	transform: scale(1.05) !important;
}

.card-3-1 .image-wrapper {
	padding: 1px;
}

.cards-category .image-wrapper {
	height: 70rem;
}

.card-3-1 .card-body {
	padding: 2rem;
	text-align: center;
}

@media only screen and (max-width: 1050px) {
	.cards-category .image-wrapper {
		height: 50rem;
	}
}

@media only screen and (max-width: 550px) {
	.cards-category .image-wrapper, .card-3-1 .card-item .image-wrapper {
		height: 30rem;
	}
}


/* Kod för alla kort men konst
========================================================================== */

/* Höjd på bilderna */
.art-wrapper .card-item img {
	max-height: 44rem;
}

/* kod för förstoringsglas ikon */
.image-icon .card-item i {
	color: rgb(var(--white-color), .7);
    font-size: 2.5rem;
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
}

/* 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%;
}
.split-column{
	display: flex;
	flex-direction: column-reverse;
}
/* Speciella bredder */
.split-wrapper .w-70 {
	width: 70%;
}

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

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

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

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

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

	.split-content,
	.split-wrapper .w-70,
	.split-wrapper .w-60,
	.split-wrapper .w-40,
	.split-wrapper .w-30 {
		width: 100%;
	}

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

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

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

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

/* Header / Navigation
========================================================================== */
/* Top header */
.top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 3.1rem;
    padding: 2rem 0;
    margin: 0 auto;
background: rgb(var(--black-color));
    overflow: hidden;
    transition: .3s ease;
}


.top-header a {
    display: flex;
    align-items: center;
    margin: 0 8px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: .2s ease;
}

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

.top-header div {
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
    margin-right: 4px;
    border-radius: 50%;

}



header {
	background-color: rgb(var(--black-color));
}

.IndexPage header:not(.scrolled) {
	background-color: transparent;
}

header .container {
	padding: 0 5rem;
}

/* Logo */
.header-logo {
	margin: 0 auto 0 0;
}

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

.TemplateMenu>li>a:hover {
	color: rgb(var(--gray-color));
}

.TemplateMenu>li.active >a{
	color: rgb(var(--gray-color));
}

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

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

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

/* Mobilmeny */
.mobile-menu .container {
	height: var(--mobile-menu-height);
	background-color: rgb(var(--black-color));
}

.mobile-menu .hamburger {
	margin: 0 -1rem 0 1rem;
}

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

@media only screen and (max-width:700px) {
    .top-header li {
        font-size: 1.2rem;
        line-height: 1.3;
    }
}

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

	.header-cta-wrapper .btn {
		min-width: unset;
		padding: 0.7rem 1.5rem;
	}
}

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

/* Top-section
========================================================================== */
.top-section {
	/*background-image: url(/assets/images/art/far-kunde-1200px.jpg);*/
	background-image: url(/assets/images/art/minified/ungkarlsmiddag-900px.jpg);
	margin-top: calc(-1 * var(--menu-height) - 1px);
}

.top-section .section-block {
	display: flex;
	align-items: center;
	min-height: 100vh;
	background-color: rgb(var(--black-color), .3);
}

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

.text-banner {
	background-color: rgb(var(--black-color));
	padding: 4rem 0;
	text-align: center;
}

.top-section .section-title {
	font-size: 6.7rem;
	font-weight: 400;
	color: rgb(var(--white-color));
	display: block;
}

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

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

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

/* Sektion Om mig
========================================================================== */

.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
	align-items: flex-start;
}

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

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--primary-light-color));
    transition: .3s ease;
}

.accordion-item:hover,
.accordion-item.active {
    background: rgb(var(--primary-light-color));
}

.accordion-header {
    position: relative;
    display: flex;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

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

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

.accordion-header em,
.accordion-header i {
    flex-shrink: 0;
    min-width: 2.5rem;
    margin-right: 2rem;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
}

.accordion-body {
    padding: 0 2rem 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

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

    .accordion-header::after {
        top: 1.5rem;
        right: .8rem;
    }

    .accordion-header em,
    .accordion-header i {
        min-width: 2rem;
        margin-right: 1rem;
        font-size: 1.5rem;
        line-height: 2;
    }

    .accordion-body {
        padding: 0 1rem 1rem;
    }
}


@media only screen and (max-width: 1440px) {
	.split-wrapper.split-about .split-content {
		padding-left: 0;
	}
}

/* Sektion Nyheter
========================================================================== */

.section-news {
	overflow: hidden;
}

.scroll-wrapper {
	padding-bottom: 5rem;
}

.scroll-wrapper .slick-list {
	overflow: visible;
	width: 100%;
}

.section-news .scroll-wrapper .card-item {
	display: flex;
	height: auto;
	margin: 0 2rem 0 0;
}

/* slick knappar */
.scroll-wrapper .slick-arrow {
	position: absolute;
	top: auto;
	bottom: -2rem;
	width: 4rem;
	height: 4rem;
	font-size: 0;
	background-color: rgb(var(--primary-color));
	border: 1px solid rgb(var(--primary-color));
	border-radius: 50%;
	cursor: pointer;
	transition: .4s;
}

.scroll-wrapper .slick-arrow::after {
	color: rgb(var(--white-color));
	font-weight: 300;
}

.scroll-wrapper .slick-arrow:not(.slick-disabled):hover,
.scroll-wrapper .slick-arrow:not(.slick-disabled):focus {
	background-color: rgb(var(--primary-dark-color));
	border-color: rgb(var(--primary-dark-color));
}

.scroll-wrapper .slick-arrow.slick-disabled {
	opacity: .5;
	cursor: not-allowed;
}

.scroll-wrapper .slick-prev {
	left: auto;
	right: 5rem;
}

.scroll-wrapper .slick-next {
	left: auto;
	right: 0;
}

@media only screen and (max-width: 1024px) {
	.section-news .scroll-wrapper .card-item {
		margin: 0 2rem 0 0;
	}
}

@media only screen and (max-width: 580px) {
	.section-news .scroll-wrapper .card-item {
		margin: 0 1rem 0 0;
	}
}

.news .card-item {
	align-self: stretch;
}

.news .image-wrapper {
	position: relative;
	padding-top: 75%;
	overflow: hidden;
}

.news .image-wrapper img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.form-all {
	padding: 2rem !important;
}

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
	display: flex;
	align-items: center;
	max-height: 30rem;
}

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

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

@media only screen and (max-width: 580px) {
	.hero .section-block {
		min-height: 25rem;
	}

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

/* ==========================================================================
Undersida: Om Staffan
========================================================================== */
.section-steps .split-content {
	padding-top: 0;
	padding-bottom: 0;
  }
  
  .section-steps .split-image {
	position: sticky;
	top: calc(var(--menu-height-scrolled) * 2);
	align-self: flex-start;
  }

/* ==========================================================================
Undersida: nyhetsbrev
========================================================================== */
/* Formular*/
.section-nyhetsbrev .ContactForm {
    display: flex;
    max-width: 50rem;
    margin: 0 auto;
}

.section-nyhetsbrev .ContactForm p,
.section-nyhetsbrev .ContactForm div:not(.ContactFormEmail) {
    display: none;
}

.section-nyhetsbrev .ContactForm div.ContactFormEmail {
    width: calc(100% - 20rem);
}

.section-nyhetsbrev .ContactForm div.ContactFormEmail input {
    height: 100%;
    border-radius: 3rem 0 0 3rem;
	border: 0.1rem solid rgb(var(--black-color));
}
.section-nyhetsbrev .submit-button-container{
	display: block !important;
}
.ContactForm .checkbox-option label{
	color: rgb(var(--white-color));
}
.ContactForm .file-dropzone span{
	display: none !important;
}
/* Knapp */
.section-nyhetsbrev .ContactForm .ContactSubmit {
    min-width: 20rem;
    padding: 1.5rem 0;
    text-align: center;
    color: rgb(var(--black-color));
    background-color: rgb(var(--white-color));
    border-radius: 0 3rem 3rem 0;
	border: 0.1rem solid rgb(var(--black-color));
}

.section-nyhetsbrev .ContactForm .ContactSubmit:hover {
    background-color: transparent;
	color: rgb(var(--white-color));
	border: 0.1rem solid rgb(var(--white-color));
}

@media only screen and (max-width: 520px) {
	.ContactForm > div{
		margin-bottom: 0;
	}
	.section-nyhetsbrev .ContactForm {
        flex-wrap: wrap;
    }

	.section-nyhetsbrev .ContactForm div.ContactFormEmail {
        width: 100%;
    }

	.section-nyhetsbrev .ContactForm div.ContactFormEmail input {
        height: 100%;
        padding: 1.5rem 1.5rem;
        border-radius: 1.5rem 1.5rem 0 0;
    }
	.section-nyhetsbrev .ContactForm .submit-button-container {
		width: 100%;
	}
    /* Knapp */
    .ContactForm .ContactSubmit {
        width: 100% !important;
        padding: 1.5rem 0;
        border-radius: 0 0 1.5rem 1.5rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color: rgb(var(--primary-color));
	padding: 0 5rem;
}

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

.footer-logo {
	width: 10rem;
}

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

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

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

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

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

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
	color: rgb(var(--white-color), .6);
	text-decoration: none;
}

.footer a:hover {
	text-decoration: none;
	color: rgb(var(--white-color));
}

/* Social Menu */
.social-menu {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid rgb(var(--white-color), .5);
}

.social-menu li {
	margin: 1rem 2rem 1rem 0;
}

.social-menu a {
	font-size: 1.4rem;
	color: rgb(var(--white-color));
	padding: 5px 10px;
	border-radius: 2rem;
	line-height: 1;
	text-decoration: none;
	transition: all .3s ease;
}

.social-menu a:hover {
	background-color: rgb(var(--white-color));
	color: rgb(var(--black-color));
	transition: all .3s ease;
}

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

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

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

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

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

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

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

	.footer-menu-large p {
		max-width: 55rem;
	}
}

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

	/* Footer top */
	.footer-menu,
	.footer-menu-large {
		width: 100%;
	}
}

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