/* MEMA AB (Magnus Engstrom Mark och Anlaggning Bygg AB) */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
	/* 	Colors */
	--primary-color: 34, 69, 150;
	--secondary-color: 217, 77, 77;

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

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

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

	/* 	Mobile nav */
	--activate-mobile-menu: 1150;
	--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: 12rem 5rem;
}

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

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

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

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

/* Ovriga klasser */
.justify-center {
	justify-content: center;
}

.of-hidden {
	overflow: hidden;
}

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

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

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

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

.section-title {
	padding-bottom: .5em;
	font-size: 4.3rem;
	font-weight: 700;
	line-height: 1.2;
}

.small-title {
	padding-bottom: .3em;
	font-size: 2.3rem;
	font-weight: 400;
	line-height: 1.4;
}

/* Brodtext och lankar */
p,
li {
	font-weight: 300;
	color: rgb(var(--gray-dark-color));
	line-height: 1.7;
}

a {
	font-weight: 300;
}

/* List-arrow */
.list-arrow {
	padding: 0;
	list-style: none;
}

.list-arrow li::before {
	content: '\f061';
	position: relative;
	top: -2px;
	padding: 0 1rem 0 0;
	color: rgb(var(--secondary-color));
	font-weight: 700;
	font-size: 1.2rem;
	font-family: 'Font Awesome 5 Pro';
}

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

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

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

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

@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: 13rem;
	padding: 1.2rem 2rem;
	margin: 7px;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: 2rem;
	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));
	box-shadow: 0.2rem 0.2rem 0 rgb(var(--secondary-color));
	background-color: rgb(var(--primary-color));
}

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

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

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

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

.btn.arrow-link {
	font-size: 1.4rem;
	font-weight: 600;
}

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

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

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

.circle-icon em:before,
.circle-icon i:before {
	font-size: 1.4rem;
}

/* Knapp med sno */
.btn-snow {
	position: relative;
}

.btn-snow::before {
	content: '';
	display: block;
	position: absolute;
	top: -7px;
	left: -3px;
	right: 0;
	height: 23px;
	background: url('/assets/images/seasons/snow-left.png') no-repeat 0 0,
		url(/assets/images/seasons/snow-middle.png) no-repeat 50% 0,
		url(/assets/images/seasons/snow-right.png) no-repeat 100% 0;
}

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

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

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

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

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

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

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

.br-3 {
	border-radius: 3rem;
	overflow: hidden;
}

.br-4 {
	border-radius: 4rem;
	overflow: hidden;
}

/* Object position */
.of-wrapper img.op-50-20 {
	object-position: 50% 20%;
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
	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), .6)
}

.parallax-medarbetare {
	background-image: url('/assets/images/medarbetare-2000px.jpg');
}

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

a.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: 1200px) {
	.cards-wrapper.w-25 .card-item {
		width: calc((100% / 2) - 2rem);
	}
}

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

/* Card 2-1 */
.card-2-1 .card-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.card-2-1 .card-header {
	margin-bottom: 2rem;
	font-size: 3rem;
}

/* Card 3-6 */
.card-3-6 .card-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 35rem;
	padding: 2rem;
	text-align: center;
}

.card-3-6 .image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.card-3-6 .image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--black-color), .6);
	transition: .3s ease-in-out;
}

.card-3-6 a.card-item:hover .image-wrapper::after {
	background: rgba(var(--black-color), .4);
}

.card-3-6 .card-body {
	z-index: 1;
	position: relative;
}

.card-3-6 .shadow {
	text-shadow: 0.2rem 0.2rem 0 rgb(var(--black-color));
}



/* Logos 1 */
.logos-1 .card-item {
	height: 9rem;
	text-align: center;
	transition: 0.2s ease-in-out;
}

@media only screen and (max-width: 868px) {
	.logos-1 .card-item {
		height: 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,
.split-video {
	width: 50%;
}

.split-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

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

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

	.split-wrapper,
	.split-wrapper.reverse {
		flex-direction: column;
	}

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

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

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

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

/* Gridsplit
========================================================================== */
.grid-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 15rem 1fr;
	gap: 2rem;
}

.grid-split>* {
	width: 100%;
	min-height: 25rem;
	border-radius: 1rem;
}

.grid-split>*:nth-of-type(1) {
	grid-row: 1 / 3;
}

.grid-split>*:nth-of-type(3) {
	grid-row: 2 / 4;
	grid-column-start: 2;
}

.grid-split img {
	position: absolute;
	transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1000px) {
	.grid-split>* {
		min-height: none;
	}

	.grid-split {
		display: flex;
		flex-wrap: wrap;
	}

	.grid-split .split-image {
		min-height: 45rem;
	}
}

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

	.grid-split .split-image {
		min-height: 25rem;
	}
}

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

/* Top header */
.top-header {
	width: 100%;
	max-width: var(--section-width);
	height: 4rem;
	margin: 0 auto;
	border-bottom: 1px solid rgb(var(--gray-light-color));
	overflow: hidden;
	transition: .3s ease;
}

.top-header ul {
	display: flex;
	justify-content: flex-end;
	padding: .5rem 0;
	margin: 0;
	list-style: none;
}

.top-header a {
	padding: 0 1rem;
	font-size: 1.4rem;
	text-decoration: none;
	transition: .2s ease;
}

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

.top-header i {
	margin-right: 5px;
}

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

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

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

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

/* Dropdown */
.TemplateMenu>li>ul {
	width: 25rem;
	border: 1px solid rgb(var(--gray-light-color));
	border-top: none;
	border-radius: 0 0 2rem 2rem;
}

/* Dolj sidor */
body:not(.EditMode, .mobile-menu) .TemplateMenu a[href="/17/9/offertforfragan/"] {
	display: none;
}

/* CTA  */
.header-cta-wrapper {
	position: relative;
	z-index: 9;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	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: 580px) {

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

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

/* Top-section
========================================================================== */
.top-section {
	min-height: calc(100vh - var(--menu-height) - 4rem);
}



.snowflakes {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
}

.fa-snowflake {
	color: #fff !important;
	position: absolute;
	top: -20px;
	animation: fall linear forwards;
}

@keyframes fall {
	to {
		transform: translateY(110vh);
	}
}

/* Loggor
========================================================================== */
.section-logos .section-block-wrapper {
	padding: 3rem;
	border-radius: 2rem;
	background-color: rgb(var(--gray-light-color));
}

.section-logos .slick-list {
	width: 100%;
}

.section-logos .logos-1 .card-item {
	margin: 0 4rem;
}

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

	.section-logos .section-block-wrapper {
		background-color: rgb(var(--gray-light-color));
	}
}

@media only screen and (max-width: 680px) {
	.section-logos .logos-1 .card-item {
		margin: 0 1rem;
	}
}

/* Referenser
========================================================================== */
.section-scroll {
	overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
	margin-bottom: 5rem;
}

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

.scroll-wrapper.cards-wrapper .slick-track {
	display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
	display: flex;
	height: auto;
	margin: 0 1rem;
	transition: all .3s ease;
}

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
	opacity: .5;
	transform: scale(.9);
}

/* Card item */
.scroll-wrapper .card-item {
	display: flex;
	flex-direction: column;
	margin: 0 2rem 0 0;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
	position: absolute;
	top: auto;
	bottom: -4rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: rgb(var(--primary-color));
}

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

.scroll-wrapper .slick-next {
	right: 2rem;
}

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

@media only screen and (max-width: 750px) {
	.scroll-wrapper.cards-wrapper .card-item {
		margin: 0;
	}
}

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

/* Hero
========================================================================== */
.hero {
	min-height: 35rem;
}

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

/* Hero: Hero-split
========================================================================== */
.hero-split {
	background: linear-gradient(to left, rgba(var(--white-color), .85) 70%, rgb(var(--white-color)) 0);
}

@media only screen and (max-width: 1000px) {
	.hero-split {
		background: rgb(var(--white-color), .95);
	}
}

/* Formular
========================================================================== */
.section-form .section-block-wrapper {
	max-width: 100rem;
}

.section-form .ContactForm {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 4rem;
	border-radius: 3rem;
	margin-top: 2rem;
	background-color: rgb(var(--gray-light-color));
}

.section-form .ContactForm>div {
	width: 49%;
}

.section-form .ContactForm div.textarea-field,
.section-form .ContactForm div.file-field,
.section-form .ContactForm div.submit-button-container {
	width: 100%;
}

.ContactForm p {
	font-size: 1.4rem;
	font-weight: 600;
	color: rgb(var(--black-color));
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="number"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="date"]:not(.illegal),
.ContactForm input[type="datetime-local"]:not(.illegal),
.ContactForm select:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm .file-dropzone:not(.illegal) {
	font-size: 1.6rem;
	border-color: transparent;
	border-radius: 1rem;
	background-color: rgb(var(--white-color));
}

.ContactForm .radio-option label,
.ContactForm .checkbox-option label {
	font-size: 1.5rem;
	color: rgb(var(--gray-dark-color));
}

@media only screen and (max-width: 680px) {
	.section-form .ContactForm>div {
		width: 100%;
	}
}

/* CTA
========================================================================== */
.cta-wrapper {
	position: relative;
	padding: 7rem 2rem;
	background-color: rgb(var(--black-color), .7);
}

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

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


/* ==========================================================================
Undersida: Referensprojekt
========================================================================== */
.section-projects .card-3-6 .card-item {
	flex-direction: row;
	align-items: flex-end;
	min-height: 40rem;
	text-align: left;
}

.section-projects .card-3-6 .card-body .section-title {
	font-size: 3rem;
}

.section-projects .card-3-6 .card-body p {
	font-size: 1.7rem;
}



/* Badge */
.badge-wrapper {
	position: absolute;
	top: 2rem;
	left: 2rem;
}

.badge-wrapper .badge {
	display: inline-block;
	padding: .3rem 1.3rem .1rem;
	margin: 0 2px 5px 0;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 2rem;
	color: rgb(var(--white-color));
}

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

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

.finplanering {
	background-color: rgb(150, 34, 120);
}

.markarbete {
	background-color: rgb(175, 119, 62);
}

.palning {
	background-color: rgb(139, 139, 139);
}

.grundlaggning {
	background-color: rgb(77, 146, 217);
}

.schakt {
	background-color: rgb(217, 122, 77);
}

.dagvatten {
	background-color: rgb(77, 81, 217);
}

.dranering {
	background-color: rgb(44, 131, 118);
}

.aterstallning {
	background-color: rgb(217, 77, 77);
}

.utemiljo {
	background-color: rgb(71, 154, 54);
}

.stangsel {
	background-color: rgb(87, 116, 131);
}

.asfaltering {
	background-color: rgb(158, 158, 158);
}

.el {
	background-color: rgb(0, 0, 0);
}

.section-project-img .split-image:after {
	content: '\f302';
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	color: rgb(var(--white-color));
	font-weight: 100;
	font-size: 3rem;
	font-family: 'Font Awesome 5 Pro';
	pointer-events: none;
}
@media only screen and (max-width: 480px) {
.section-projects .card-3-6 .card-body .section-title{
	font-size: 1.9rem;
}
.section-projects .card-3-6 .card-body p {
	font-size: 1.5rem;
}
.section-projects .card-3-6 .card-body .text-label {
	padding-bottom: 0;
}
}
/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.contact-wrapper .card-item {
	width: 30rem;
	margin: 1rem;
}

.contact-item a {
	font-size: 1.5rem;
	text-decoration: none;
	transition: .3s ease;
}

.contact-item a:hover {
	color: rgb(var(--secondary-color))
}

.team-wrapper .card-item {
	align-items: flex-end;
	min-height: 55rem;
}

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

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

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

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

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

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

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

.footer-top p,
.footer-top a {
	font-size: 1.6rem;
	text-decoration: none;
}

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

.footer-top .logo {
	width: 20rem;
	margin-bottom: 1.5rem;
}

/* Sociala medier */
.footer-socials {
	display: flex;
	align-items: center;
}

.footer-socials::before,
.footer-socials::after {
	position: relative;
	display: inline-block;
	content: '';
	flex: 1 1 0%;
	border-top: 1px solid rgb(var(--black-color));
}

.footer-socials::before {
	margin-right: 2rem;
}

.footer-socials::after {
	margin-left: 2rem;
}

/* 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.3rem;
	line-height: 1.6;
	color: rgb(var(--gray-dark-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;
}

@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: 580px) {
	.footer {
		padding: 0 2rem;
	}

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

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

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