/* STOCKHOLM SCHAKT & GRUS AB */

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Titillium+Web:ital,wght@0,300;1,300&display=swap');

:root {
    --primary-color: #FF7D03;
    --brown: #B3876C;
    --gray: #DFE0DF;
    --yellow: #FFF5E9;
}

/* ==========================================================================
    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%;
}

#aspnetForm {
	height: auto;
}

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

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

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


.pt-0 .section-block {
	padding-top:0 !important;
}
@media only screen and (max-width: 1000px) {

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

	.pt-0 .section-block {
		padding-top:5rem !important;
	}
}

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

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


.section-block-wrapper::after {
	content: '';
	display: table;
	clear: both;
}

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

.parallax {
	background-attachment: fixed;
	background-size: cover;
}

.justify-center {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 500px) {
	.justify-center {
		display: block;
	}
}

/* ==========================================================================
    Colors
========================================================================== */

.primary-color {
    color: #FF7D03;
}

.secondary-color {
    color: #B3876C;
}

.white {
	color: #FFF;
}

.bg-orange .section-block {
	background-color: #FF7D03;
}

.bg-brown .section-block {
	background-color: #B3876C;
}

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

.bg-yellow .section-block {
	background-color: #FFF5E9;
}

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



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

.btn::after {
	display: inline-block;
	content: ' \2023';
	margin-left: 1rem;
	transition: all .4s ease;
} 

.btn:hover::after {
	transform: translateX(1rem);
	transition: all .4s ease;
}

.btn-white,
.btn-white:hover {
	background-color: #FFF;
	border-color: #FFF;
	color: #111;
}

.btn-primary,
.btn-primary:hover {
	background-color: #FF7D03;
	border-color: #FF7D03;
	color: #ffffff;
}

.btn-secondary,
.btn-secondary:hover {
	background-color: #f1f8ff;
	border-color: #f1f8ff;
	color: #111;
}


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

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

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

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

a, li{
	line-height: inherit;
	font-size: inherit;
	color: inherit;
	font-family: inherit;
	font-weight: inherit;
}

p a {
	text-decoration: underline;
	color: inherit;
	text-decoration-color: #FF7D03;
	position: relative;
	z-index: 0;
}

p a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #FF7D03;
    z-index: -1;
    opacity: 0;
    transform-origin: bottom;
    transition: all .1s ease;
}

p a:hover::after {
    opacity: 0.3;
    background-color: #FF7D03;
    transform-origin: bottom;
    transition: all .1s ease;
}

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

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


h1 {
	font-size: 7rem;
}

h2 {
	font-size: 4rem;
}

h3 {
	font-size: 3.3rem;
}

h4 {
	font-size: 2.5rem;
}

.lead {
	font-size: 1.25em;
}

.section-title {
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .2em;
	padding-bottom: 1em;
}

/* lilla "abc"-blocket */
.smalltext-type {
	max-width: none;
}
/* stora "ABC"-blocket */
.normaltext-type {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}


.text-block {
	max-width:70rem !important;
}

@media only screen and (max-width: 480px) {
	h1 {
		font-size: 3.5rem;
	}
	
	h2 {
		font-size: 3rem;
	}
	
	h3 {
		font-size: 2.5rem;
	}
	
	h4 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.4rem;
	
	}
	
}



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

.text-white {
	color: #fff;
}



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

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


/* 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;
    }
}
/* Cards 14 */
.cards-14 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 2rem;
    transition: all .3s ease;
}

.cards-14 i {
    width: 5rem;
    font-size: 3rem;
}

.cards-14 p {
    padding-bottom: 0;
    font-size: 1.4rem;
}

.cards-14 .contact-info {
    font-size: 1.6rem;
    font-weight: 400;
}

.cards-14 a {
	display: block;
    transition: all .3s ease;
} 


/* Cards 4*/
.cards-4 {
    display: flex;
	flex-wrap: wrap;
	margin-top:5rem;
}

.cards-4 .card-item {
	padding: 5rem;
	border-radius: 1rem;
    background-color:  #f7ede4;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.cards-4 .icon-wrapper i {
    margin-bottom: 2rem;
    font-size: 6rem;
    color:  #FF7D03;
}

.cards-4 .small-title {
	font-size: 2.5rem;
	padding-bottom:1rem;
}

.cards-4 .text-wrapper {
    width: 100%;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid  #FF7D03;
}

@media screen and (max-width: 580px) {
	.cards-4 .card-item {
		padding: 4rem 2rem;
		
	}
	.cards-4 .icon-wrapper i {
		margin-bottom: 2rem;
		font-size: 4rem;
		color:  #FF7D03;
	}
}


/* ==========================================================================
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: 10rem 7rem;
    text-align: left;
}

.split-image {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

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

.split-wrapper.overlap .split-image {
    margin-top: -10rem;
}

.EditMode .overlap .split-image {
	margin-top: 0;
}

@media screen and (max-width: 1200px) {
	.split-content {
		padding: 10rem 7rem 10rem 0;
	}
}

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



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

/* HEADER BAR */

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

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

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

/* HEADER LOGO */
header .header-logo {
   	/* width: 20rem; */
	width: unset;
    padding: 2rem 0;
    display: block;
    float: left;
	transition: all 500ms linear;
}

header .header-logo a {
	display: inline-block;
	width: 20rem;
	margin-right: 1rem;
}

/* MAIN MENU */

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: 400;
	font-size: 1.3rem;
	line-height: 10rem;
	color: #111;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 0 0.5rem;
    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: #FF7D03 !important;
	text-decoration: none;
}

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

.nav-dropdown:after {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: '\f0d7';
	margin-left: 7px;
	text-decoration: none;
	display: inline-block;
}

nav.mainmenu li:hover .nav-dropdown:after {
	text-decoration: none !important;
}


nav.mainmenu .btn,
.cta-menu .btn {
	line-height: 1 !important;
	padding: 1.2rem 1.7rem;
	font-size: 1.3rem;
	text-transform: uppercase;
	color: #fff;
}

nav.mainmenu .btn:hover {
	color: #FFF !important;
}

/* CTA Button */
.cta-menu {
	float: right;
	line-height: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	transition: all 500ms linear;
	margin-left: 2rem;
}

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

	header .header-logo a {
		width: 15rem;
	}

	.gasell-logo {
		width: 20rem;
	}

	nav.mainmenu a {
	font-size: 1.2rem;
	padding: 0 0.5rem;
}

	.cta-menu {
		position: relative;
		right: 0;
		height: 10rem;
		line-height: 6rem;
		margin-left: 0;
		display: flex;
		align-items: center;
	}
	
	.cta-menu .btn {
		font-size: 1.2rem;
		padding: 1rem;
	}
	
	.cta-menu .btn::after {
		display: none;
	}
}

@media only screen and (max-width: 980px) {
	header {
		height: 6rem;
		width: 100vw !important;
	}
	
	header .container {
		padding: 0 2rem;
	}


	header .header-logo {
	    padding: 0;
	    line-height: 6rem;
	    left: 4rem;
	}


/* 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:#111 !important;
		padding-left: 40px;
		line-height: 5rem;
	}

	nav.mainmenu li:hover a,
	nav.mainmenu li.active a {
		color: #111 !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: #111;	
	}
	
	.closemenu::before {
		transform: rotate(45deg);
	}
	
	.closemenu::after {
		transform: rotate(-45deg);
	}

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

	/* CTA */
	.cta-menu {
		height: 6rem;
	}
}

@media only screen and (max-width: 600px) {
	.gasell-logo {
		display: none;
	}

	header .header-logo a {
		width: 12rem;
	}
	.cta-menu .btn {
		font-size: 1.1rem;
		padding: 1rem;
	}
	
}
@media only screen and (max-width: 350px) {


	header .header-logo a {
		width: 10rem;
	}
	
	
}





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

.top-section {
	height: 70rem;
	background-color: rgba(31, 13, 2, .6);
}

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

.page-title-wrap h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 2rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .3em;
	color: #fff;
	padding: 0 0 1rem;
	line-height: 1.3em;
	text-shadow: none;
}

.page-title-wrap p {
	font-family: 'Titillium Web', sans-serif;
	font-weight: 300;
	font-size: 5rem;
	line-height: 1.5;
	color: #FFF;
	text-align: center;
}

@media only screen and (max-width: 600px) {
	
	.page-title-wrap h1 {
		font-size: 1.6rem;
	}
	.page-title-wrap p {
		font-size: 3rem;
	}
}

/* Video background */
.fullscreen-bg-video {
   	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/* Om oss
========================================================================== */

.intro .section-block {
	padding-top: 5rem;
}

.uc-logo {
	width: 300px;
	padding: 2rem 0;
}

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

@media only screen and (max-width: 480px) {
	.intro .section-block {
		padding-top: 7.5rem;
	}
}

.column-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 7rem;
}

.column-item {
	width: 31%;
    text-align: center;
    padding: 0 4rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-icon img{
    width: 10rem;
}

.column-content {
	padding: 2.3rem 0 0;
}

.column-content h4 {
	font-size: 2.5rem;
	font-weight: 400;
	color: #FF7D03;
}

.column-content p {
	color: #FFF;
	text-align: center !important;
}

/* Tjanster
========================================================================== */

.services.parallax {
	background-image: url(/assets/images/sthlm-sg-fordon-640.jpg);
	background-size: cover;
	background-position: center center;
}

.services .section-block {
	background-color: rgba(74, 52, 38, 0.83);
	backdrop-filter: blur(5px);
}

.info-image {
	width: 300px;
	padding-top: 2rem;
}

@media only screen and (max-width: 500px) {
	.info-image {
		width: 100%;
	}
}

/* Karta - data
========================================================================== */

#karta {
	font-size: 0;
}


/* Contact options
========================================================================== */

#kontakt .col-1 {
	padding-left: 5rem;
	padding-top: 15rem;
	width: 60%;
}

#kontakt .col-0 {
	background-color: #FFF;
	padding: 5rem;
	width: 40%;
	position: relative;
	margin-top: -5rem;
	border-radius: 1rem;
	box-shadow: 0 0 3rem rgba(0,0,0, .1);
}

.contact-section .section-block {
	padding: 0 5rem 7.5rem;
}

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


/* Contact Options */

.contact-option-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.contact-option {
	width: 33%;
	padding: 2rem 2rem 2rem 0;
	text-align: left;
}

.contact-link {
	text-align: left;
	text-decoration: none;
}

.contact-link:hover {
	text-decoration: none;
}

.contact-icon {
	color: #FF7D03;
	font-size: 4rem;
	margin-bottom: 1rem;
}

.contact-title {
	text-transform: uppercase;
	font-size: 1.1em;
	letter-spacing: .1em;
	padding: 0;
	color: #FF7D03;
}

.contact-text {
	font-size: 1.4rem;
	font-style: normal;
	line-height: 1.8;
}

.contact-text a {
	text-decoration: none;
}

@media only screen and (max-width:980px){
	.contact-option {
		width:50%;
	}
}

@media only screen and (max-width:550px){
	.contact-option {
		width:100%;
	}
	.contact-option * {
		text-align: center!important;
	}
}

/* Contact form  */

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

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

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



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

#kontakt input:focus,
#kontakt textarea:focus {
	border-color: #283618 !important;
}

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

#kontakt .ContactForm .ContactSubmit {
	width: 100% !important;
	max-width: none;
    padding: 1.6rem 4rem;
    background-color: #FF7D03;
    border: 2px solid #FF7D03;
    color: #FFF;
    display: block;
    border-radius: 5px;
    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;
}

#kontakt .ContactForm .ContactSubmit:hover {
	background-color: #c96200;
	border: 2px solid #c96200;
	color: #FFF;
}

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

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

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

}

@media only screen and (max-width: 1200px) {
	
	#kontakt .col-0 {
		padding: 3.5rem 2rem;
	}
	
}

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

}

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

}


/* ==========================================================================
undersidor
========================================================================== */

.hero .section-block{
	background-color: #FF7D03 !important;
	position: relative;
	}

	.hero h1 {
		font-size:5rem;
		padding-bottom: 0;
	}

.SubPage .top-section {
	display: none;
}

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-map {
	font-size: 0;
}

/* Kontakt
========================================================================== */
.LayoutPage .section-contact .col-0 {
	width: 60%;
}

.LayoutPage .section-contact .col-1 {
	position: relative;
    width: 40%;
    padding: 4rem;
    margin-top: -20rem;
    border-radius: 1rem;
    box-shadow: 0 0 3rem rgb(0 0 0 / 10%);
	background-color: #FFF;
}

@media only screen and (max-width: 1250px) {
	.LayoutPage .section-contact .col-0 {
		width: 100%;
		float: none;
	}
	
	.LayoutPage .section-contact .col-1 {
		width: 100%;
		max-width: 90rem;
		margin: 5rem auto 0;
		float: none;
	}
}

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

.ad-box{
	text-align: center;
	margin: auto;
	padding-bottom: 5rem;
	margin-top: -2rem !important;
	max-width: 25rem !important;
	z-index: 2 !important;
}

.ad-box img {
	padding: 1rem;
}


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

.footer .container {
    padding: 5rem 0 !important;
    max-width: 150rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-col {
	width: 100%;
}

.footer p,
.footer a {
	font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.4em;
    color: #ffffff;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
    vertical-align: middle;
    padding: 0;
}

.footer a:hover {
	opacity: .5;
}

.footer-info p:not(:first-child)::after,
.footer-info a:not(:first-child)::after {
	content: '\2022';
	display: inline-block;
	margin: 0 1rem;
}

.footer p:last-child::after {
	content: '';
	margin: 0;
}

.footer .footer-logo {
	font-family: 'Titillium Web', sans-serif;
	font-weight: 300;
	font-size: 1.2em;
	text-transform: uppercase;
	color: #ffffff;
}

.footer .footer-logo::after {
	content: '|';
	margin: 0 1rem;
}
/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

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

@media only screen and (max-width: 800px) {
	.footer p {
		display: block;
		text-align: center;
	}
	
	.footer p:not(:last-child)::after,
	.footer .footer-logo::after {
	    margin-left: 0;
	    margin-top: 0;
	    display: block;
	    content: '\2022';
	    font-size: 1.6rem;
	    font-family: 'Open Sans', sans-serif;
	}
	
	.footer p:not(:last-child) {
	    margin-right: 0;
	}
}


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