/* Anders Westlunds Entreprenad AB */

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;700&display=swap');

:root {
    --primary-color: #be1d2c;
    --secondary-color: #222;
}

/* ==========================================================================
    Generellt
========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

@media only screen and (hover:none) {
	*,
	*::before,
	*::after {
		background-attachment: scroll !important;
		background-position: center center;
	}
}

html {
	font-size: 62.5%;
}

body {
	background-position: center center;
	overflow-x: hidden !important;
	font-family: 'Hind', sans-serif;
}

body.isMobile .body-background {
	background-position: center center;
	background-size: cover;
}

.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
    padding: 15rem 5rem;
}

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

	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
	    padding: 10rem 2rem;
	}
}

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

	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
	    padding: 7.5rem 1.5rem;
	}
}


.section-block-wrapper::after {
	content: '';
	display: table;
	clear: both;
}
.width-1100 .section-block .section-block-wrapper {
	max-width: 110rem;
}
.width-1200 .section-block .section-block-wrapper {
	max-width: 120rem;
}

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

.display-none {
	display: none;
}

.EditMode .display-none {
	display: block;
}

.primary-color {
    color: #be1d2c;
}

.gray .section-block {
	background-color: #d9d9d9;
}

.black .section-block {
	background-color: #222;
}

/* ==========================================================================
    Buttons
========================================================================== */

.btn {
	max-width: 50rem;
    width: auto;
    box-sizing: border-box;
    padding: 1.6rem 4rem;
    border-radius: 2px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: .2em;
    line-height: 1em;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    display: inline-block;
}

.btn-filled-white {
	background: white;
	border: 2px solid white;
	color: #222;
}

.btn-outlined-white {
	background: transparent !important;
	border: 2px solid white;
	color: white;
}

.btn-filled-black {
	background: #222;
	border: 2px solid #222;
	color: white;
}

.btn-outlined-black {
	background: transparent !important;
	border: 2px solid #222;
	color: white;
}

.btn-filled-white:hover {
	background: transparent;
	border: 2px solid white;
	color: white;
}

.btn-filled-black:hover {
	background: transparent;
	border: 2px solid #222;
	color: #222;
}

.btn-outlined-white:hover {
	background: white !important;
	border: 2px solid white;
	color: #222;
}

.btn-outlined-black:hover {
	background: #222 !important;
	border: 2px solid #222;
	color: white;
}


.btn-outlined-primary{
	background: transparent;
	border: 2px solid #be1d2c;
	color: #be1d2c;
}

.btn-outlined-primary:hover {
	background: #ab1827;
	border: 2px solid #ab1827;
	color: white;
}


/* Använd "btn btn-center" för att centrera knappen */
.btn-center {
	margin:0 auto;
	text-align: center;
	display: block;
	width: 20rem;
}

.btn-wrapper {
	margin-top: 5rem;
}

.btn-wrapper .btn {
	margin: 0 1%;
}

@media only screen and (max-width: 480px) {
	.btn {
		display: block;
		width: 100%;
	}
	
	.btn-wrapper .btn {
		margin: 1.5rem 0;
	}
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
p, a , li{
	line-height: 1.8em;
	font-size: 1.6rem;
	color: #222;
	font-family: inherit;
	font-weight: 400;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #222;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Hind', sans-serif;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 1.4em;
	color: #222;
	text-transform: normal;
}

h5 {
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.large-text {
	font-size: 4em;
}

@media only screen and (max-width: 550px) {
	.large-text {
	font-size: 2em;
}
}

/* lilla "abc"-blocket */
.smalltext-type {
	max-width: none;
}
/* stora "ABC"-blocket */
.normaltext-type {
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
}
.small-title{
	font-size: 2rem;
	
}



/* ==========================================================================
Split Wrapper
========================================================================== */

.split-section .normaltext-type {
	max-width: none;
}

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

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

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

.split-content.overlap {
	margin-left: -20%;
	background-color: rgba(255,255,255, 1);
}

.split-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;

    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;

    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: unset !important;
}

@supports (object-fit: cover) {
    .split-image img {
        position: relative;
        transform: none;
        top: unset;
        left: unset;

        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 1100px) {
	
	.split-wrapper.reverse {
		flex-direction: row;
	}
	
	.split-content {
		width: 100%;
		padding: 0 0 5rem;
	}
	
	.split-image {
		width: 100%;
		padding: 0;
	}
}



/* ==========================================================================
Header / Navigation
========================================================================== */

/* Header */ 

header {
	background-color: transparent;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
	height: 10rem;
	box-shadow: none;
}

header .container {
	max-width: 160rem;
	padding: 0 5rem;
}

header .container::after {
	content: '';
	display: table;
	clear: both;
}


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

/* Header Logo */

header .header-logo {
   	width: auto;
    padding: 0;
    display: block;
    float: left;
	transition: all 500ms linear;
}

.header-logo-text {
    font-family: 'Hind', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #FFF;
    line-height: 10rem;
    transition: all 300ms linear;
}

.header-logo-text:hover {
	text-decoration: none;
	color: #ab1827 !important;
}


nav.mainmenu ul.TemplateMenu > li {
    line-height: auto;
    height: auto;
    transition: all 500ms linear;
}

nav.mainmenu {
	text-align: right;
}

nav.mainmenu a {
	font-family: inherit;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 100px;
	color: #222;
	text-transform: none;
	padding: 0 1rem;
    transition: all 500ms linear;
}

nav.mainmenu li:hover,
nav.mainmenu li.active {
	background-color: transparent;
}

nav.mainmenu li:hover a,
nav.mainmenu li.active a {
	color: #be1d2c !important;
	text-decoration: none;
}

header .mobile-menu span{
	height: 2px;
    width: 100%;
    background: #222;
    border-radius: 0px;
    margin-bottom: 7px;
	display: none;
}

header.scrolled .mobile-menu span{
    background: #FFF;
}

/* Media query for only showing scrolled effect above 981px */
@media only screen and (min-width: 981px) {
	header.scrolled {
		height: 8rem;
		transition: all 500ms linear;
		background-color: #222;
		box-shadow: 0 1rem 3rem rgba(0,0,0, .1);
	}

	header.scrolled .header-logo-text {
		line-height: 8rem;
		transition: all 500ms linear;
	}

	header.scrolled nav.mainmenu ul.TemplateMenu > li {
		line-height: 8rem;
	    transition: all 500ms linear;
	}

	header.scrolled nav.mainmenu a {
		line-height: 8rem;
		transition: all 500ms linear;
		color: #FFF;
	}

}

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

	header {
		height: 6rem;
		width: 100vw !important;
	}
	
	header.scrolled {
		background-color: #222;
	}


	header .header-logo {
	    width: auto;
	    padding: 0;
	    float: left;
	    left: 2rem;
	}
	
	header .header-logo a {
		line-height: 6rem;
	}


/* Hamburgarmeny – Den är default svart, men för att ändra färg eller ikon använd koden nedan.*/
	.openmenu {
	    width: 60px;
	    height: 60px;
	    left: 0;
	    top: 0;
	    padding: 20px 17px;
	}

	nav.mainmenu {
	 	text-align: left;
	 	box-shadow: none;
	}

	nav.mainmenu .Padding {
		border-top:none !important;
	}

	nav.mainmenu li a {
		font-size: 2rem;
		border-bottom: none;
		margin: 2rem 0px;
		color:#222 !important;
		padding-left: 40px;
		line-height: 5rem;
	}

	nav.mainmenu li:hover a,
	nav.mainmenu li.active a {
		color: #222 !important;
	}

	nav.mainmenu li:hover, nav.mainmenu li.active {
    	background-color: transparent;
	}

	.openmenu {
	    background-image: none;
	}
	
	.closemenu {
		background-image: none;
	}
	
	.closemenu::before,
	.closemenu::after {
		width: 24px;
		height: 2px;
		top: 12px;
		content: '';
		position: absolute;
		display: block;
		background-color: #222;	
	}
	
	.closemenu::before {
		transform: rotate(45deg);
	}
	
	.closemenu::after {
		transform: rotate(-45deg);
	}

	header .mobile-menu span{
		display: block;
	}

}


/* ==========================================================================
Top-section
========================================================================== */

.top-section {
	height: 100%;
	background: rgba(190,29,44, .8);
	background: linear-gradient(260deg, rgba(255,255,255,0) 40%, rgba(190,29,44, .8) 40%);
}

.page-title-wrap {
	background-color: transparent;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 160rem;
    text-align: left;
    padding: 0 5rem;
}

.page-title-wrap h1,
.page-title-wrap h2 {
	color: #fff;
	padding:0;
	line-height: 1em;
	text-shadow: none;
}
.page-title-wrap h5{
	color: #fff !important;
	padding:0;
	line-height: 1em;
	text-shadow: none;
	margin-top: 2rem;
}


.heading-name {
	display: block;
	font-size: .4em;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.heading-usp {
	display: block;
}

@media only screen and (min-width: 1500px) {
	.top-section {
		background: linear-gradient(260deg, rgba(255,255,255,0) 47%, rgba(190,29,44, .8) 47%);
	}
}

@media only screen and (max-width: 1024px) {
	
	.page-title-wrap {
		padding: 0 2rem;
	}
}

@media only screen and (max-width: 768px) {
	.top-section {
		background: linear-gradient(185deg, rgba(255,255,255,0) 40%, rgba(190,29,44, .8) 40%);
	}
	
	.page-title-wrap {
		top: 65%;
	}
}

/* Om oss
========================================================================== */
.section-about h2 {
	padding:0;
	text-align:center;
}

/* Services
========================================================================== */
#services h2 {
	text-align: left;
}

.keywords {
	list-style: none;
	padding-inline-start: 0;
}

.keywords li {
	color: #be1d2c;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: .1em;
	cursor: pointer;
}

.keywords li.active {
	font-weight: 700;
}

.keywords li:not(:first-child)::before {
	content: '/';
	margin: 0 1em;
	font-weight: 400;
}

@media only screen and (max-width: 980px) {
	#services .col-block {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	
	.keywords li {
		font-size: 1.4rem;
	}
	
	.keywords li:not(:first-child)::before {
		content: '/';
		margin: 0 .5em;
	}

}

/* Tjänster
========================================================================== */

#machines .section-block {
	font-size: 0;
}

.tjanste-card {
	width: 31.33%;
	margin: 1%;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	overflow: hidden;
	height: 400px;
}

.tjanste-card:nth-child(1) {
	background-image: url('/files/background/awentreprenad-cover.jpg');
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tjanste-card:nth-child(2) {
	background-image: url('/files/background/awentreprenad-cover.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tjanste-card:nth-child(3) {
	background-image: url('/files/background/awentreprenad-cover.jpg');
	background-position: 90% center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tjanste-card:nth-child(4) {
	background-image: url('/files/background/awentreprenad-cover.jpg');
	background-position: 90% center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tjanste-card:nth-child(5) {
	background-image: url('/files/background/awentreprenad-cover.jpg');
	background-position: 90% center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tjanste-card .overlay {
	padding: 8rem 4rem;
	background-color: rgba(0, 0, 0, 0.6);
	height: 100%;
	-webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10rem);
}

.tjanste-card:hover .overlay {
	background-color: rgba(191, 29, 45, .7);
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.tjanste-card * {
	color: #fff;
}

.tjanste-card h5 {
	padding-bottom: 15px;
}

.tjanste-card h2 {
	font-size: 35px;
	font-weight: 700;
	padding-bottom: 15px;
	line-height: 45px;
}

@media only screen and (max-width: 1024px) {
	.tjanste-card {
		width: 48%;
	}
}

@media only screen and (max-width: 550px) {
	.tjanste-card {
		width: 100%;
		margin: 0 0 5rem;
	}
}

/* References
========================================================================== */

#references .section-block-wrapper {
	display: flex;
	flex-wrap: wrap;
}

#references .col-0 {
	width: 40%;
	padding: 10rem 5rem;
	background-color: #be1d2c;
}

#references .col-0 * {
	color: #FFF;
}

#references .col-1 {
	position: relative;
	width: 60%;
	max-height: 60rem;
	padding: 0;
	overflow:hidden;
}

#references .col-1::before {
	content: '';
	display: block;
	height: 100%;
	width: 20%;
	
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	
	background: rgb(255,255,255);
	background: linear-gradient(275deg, rgba(255,255,255,0) 50%, rgba(190,29,44,1) 50%);
}


.EditMode #references .col-1::before {
	display: none;
}

@media only screen and (max-width: 1024px) {
	
	#references .col-0 {
		width: 100%;
	}
	
	#references .col-1 {
		width: 100%;
	}
	
	#references .col-1::before {
		height: 8rem;
		width: 100%;
		
		background: linear-gradient(-3deg, rgba(255,255,255,0) 50%, rgba(190,29,44,1) 50%);
	}
	
}

@media only screen and (max-width: 480px) {
	
	#references .col-0 {
		padding: 7.5rem 1.5rem 3rem !important;
	}
	
	
}

.reference-slider {
	margin: 0;
}

/* Lightslider */

.lSSlideOuter {
	position: relative;
}

.lSSlideOuter .lSPager.lSpg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-image: linear-gradient(to top, rgba(0,0,0, .6) , rgba(0,0,0,0));
}

.lSSlideOuter .lSPager.lSpg>li a {
	background-color: #e67480 !important;
}

.lSSlideOuter .lSPager.lSpg>li.active a, 
.lSSlideOuter .lSPager.lSpg>li:hover a {
	background-color: #be1d2c !important;
}
.lSAction>a {
	top: 50% !important;
	z-index: 2 !important;
}

/* Galleri
========================================================================== */
.gallery-wrapper {
	display:flex;
	flex-wrap:wrap;
}

.gallery-wrapper a {
	width:30.333%;
	margin:1.5%;
	height: 31rem;
}

@media only screen and (max-width:980px) {
	.gallery-wrapper a {
		width:47%;
	}
}

@media only screen and (max-width:500px) {
	.gallery-wrapper a {
		width:100%;
		margin:1rem 0;
	}
}
 
/* Contact
========================================================================== */

#contact-us .col-0 {
	padding-right: 5rem;
	padding-top: 5rem;
}

#contact-us .col-1 {
	background-color: #FFF;
	padding: 5rem;
}

/* Contact options */

.contact-options {
	margin: 5rem 0;
	font-style: normal;
}

.contact-option {
	display: flex;
	margin: 3rem 0;
}

.contact-option::before {
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	font-size: 1.5em;
	margin-right: 2rem;
	vertical-align: middle;
	color: #be1d2c;
	width: 2em;
	text-align: center;
}

.contact-option.address::before {
	content: '\f3c5';
}

.contact-option.phone::before {
	content: '\f67d';
}

.contact-option.mail::before {
	content: '\f658';
}

/* Contact form  */

.Contact .ContactForm div.ContactFormMessage p, 
.Contact .ContactForm .ContactFormEmail p, 
.Contact .ContactForm .ContactFormField p, 
.Contact .ContactForm .ContactFormName p {
	color: #000;
}

.ContactForm {
	display: flex;
	flex-wrap: wrap;
}

#contact-us .ContactFormName,
#contact-us .ContactFormEmail,
#contact-us .ContactFormField,
#contact-us .ContactFormMessage {
	width: 100%;
	position: relative;
	top: auto;
	left: auto;
	display: inline-block;
}



#contact-us .ContactForm input,
#contact-us .ContactForm textarea {
	border: 1px solid lightgray;
	border-radius: 5px;
	padding: 1.2em;
	height: 15rem;
}

#contact-us input:focus,
#contact-us textarea:focus {
	border-color: #be1d2c !important;
}

#contact-us input::placeholder,
#contact-us textarea::placeholder {
	font-size: .8em;
} 

#contact-us .ContactForm .ContactSubmit {
	width: 100% !important;
	max-width: none;
    padding: 1.6rem 4rem;
    background-color: #be1d2c;
    border: 2px solid #be1d2c;
    color: #FFF;
    display: block;
    border-radius: 2px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 1.4rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    font-family: inherit;
}

#contact-us .ContactForm .ContactSubmit:hover {
	background-color: #931522;
	border: 2px solid #931522;
	color: #FFF;
}

.LayoutPage .Contact .ContactForm div.ContactFormMessage p {
	margin-top: 10px;
}

div.submit-button-container{
	width: 100% !important;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none){

	
	#contact-us .ContactForm input:not(.ContactSubmit),
	#contact-us .ContactForm textarea {
		padding: 0 !important;
	}

}

@media only screen and (max-width: 768px) {
	
	#contact-us .col-block {
		width: 100%;
	}
	
	
	#contact-us .section-block {
		background-size: 100% 10rem;
	}

}

@media only screen and (max-width: 480px) {
	
	#contact-us .col-1 {
		padding: 3rem 2rem !important;
	}

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

/* Speciella margins */
.m-0-auto {
    margin: 0 auto;
}

/* Text och typsnitt
========================================================================== */
/* Övriga klasser */
.text-center {
    text-align: center;
}

/* Färger
========================================================================== */
/* Bakgrundsfärger*/
.bg-primary {
    background: rgba(var(--primary-color));
}

/* Texter */
.text-white {
    color: rgba(var(--white-color)) !important;
}

/* Grafiska element
========================================================================== */
/* Pil */
.arrow-right {
    position: relative;
}

.arrow-right::after {
    content: '\2192';
    position: absolute;
    top: 5rem;
    right: 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    transform: translateX(50%);
    color: rgb(var(--primary-color));
}

/* Border raduis */
.br-50 {
    border-radius: 50%;
}

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

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

@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 {
        width: 100%;
        margin: 1rem 0;
    }
}


/* crads-1 */
.cards-1 .card-item {
	padding:0rem 2rem 0 0;
}

/* Cards 2 */
.cards-2 .card-item {
    padding: 4rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.cards-2 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.cards-2 .icon-wrapper i {
    font-size: 3.5rem;
}

@media only screen and (max-width: 1050px) {
    .cards-2 .card-item.arrow-right::after {
        display: none;
    }
}

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

.pay{
	box-shadow: 4px 2px  2px rgba(128, 128, 128, 0.264);
	
}


/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color: #222;
	padding: 0;
	color: #fff;
}

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

.footer h5 {
	text-align: left;
	color: #be1d2c;
}

.footer p, 
.footer a {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #FFF;
	font-weight: 300;
}

.footer-container {
    display: flex;
    padding: 10rem 0 10rem;
}

.footer-section {
    width: 40%;
    padding-right: 10rem;
}

.footer-logo {
    width: 20rem;
    margin: 0;
    margin-bottom: 3rem;
    display: block;
    text-align: left;
}

/* FOOTER MENU */

.footer-nav {
    width: 100%;
}

.footer-menu-wrapper {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding-inline-start: 0;
    margin-top: 0;
}

.footer-menu {
    text-align: left;
    padding-right: 2rem;
}

.footer-heading {
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 1.7rem;
	color: #be1d2c;
}

/* FOOTER SUBMENU */

.footer-submenu {
    padding-inline-start: 0;
    list-style-type: none;
}

.footer-submenu li {
	text-align: left;
}

.footer .footer-menu-link {
	font-size: 1.6rem;
	line-height: 2em;
}

.footer-menu-link:hover {
	color: #931522;
	text-decoration: underline;
}
/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
	margin: auto;
	justify-content: center;

}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
    filter: invert();
}
@media only screen and (max-width: 1024px) {
	
	.footer-container {
	    flex-wrap: wrap;
	}
	
	.footer-section {
	    width: 100%;
	    order: 2;
	    padding-right: 0;
	}
	
	.footer-nav {
		width: 100%;
		order: 1;
		padding-right: 0;
    }
    
    .footer-menu-wrapper {
	    flex-wrap: wrap;
	}

	.footer-menu {
	    width: 25%;
	}
	
	.footer-logo {
	    margin: 0 auto;
	}
	
}

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


@media only screen and (max-width: 550px) {
	
	.footer .container {
		padding: 0 2rem;
	}
    	
	.footer-menu {
	    width: 100%;
	    margin-bottom: 3rem;
	}

}
/* ==========================================================================
Media queries
========================================================================== */


@media only screen and (max-width: 1024px) {
	.width-1200 .section-block-wrapper {
		max-width: 98rem;
	}


}



