/* Ginsara AB */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&family=Bad+Script&family=Nanum+Gothic:wght@400;700&display=swap');
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

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



/* ==========================================================================
Generellt 
========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	/*
	-webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
*/
}

@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;
	-webkit-font-smoothing: antialiased;
}


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

}

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

.LayoutPage .section-wrapper {
	background-color: #f5f1ec;
}

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

.btn {
	max-width: 21rem;
	width: 100%;
	box-sizing: border-box;
	padding: 1.2rem 1.8rem !important;
	background-color: #f07026;
	color: #fff !important;
	border: 1px solid #f07026;
	text-align: center !important;
	text-transform: uppercase;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.4s ease-in-out;
	display: inline-block;
	transition: 0.4s;
	border-radius: 0rem;
	-webkit-font-smoothing: antialiased;
	font-size: 1.3rem !important;
	font-weight: 400;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.btn:hover {
	border: 1px solid #000;
	color: #fff !important;
	background-color: #000;
}


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

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

.width-1100 .section-block .section-block-wrapper {
	max-width: 110rem;
}

.width-1200 .section-block .section-block-wrapper {
	max-width: 120rem;
}

.width-1300 .section-block .section-block-wrapper {
	max-width: 130rem;
}

.width-1400 .section-block .section-block-wrapper {
	max-width: 140rem;
}

/*
.section-block li:before {
	content: "\f185";
	color: #3e5164;
	font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    font-family: 'Font Awesome 5 Pro';
}

.section-block ul {
	list-style: none;
}

.section-block li {
	padding-bottom: 1rem;
}
*/

.display-none {
	display: none;
}

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

/* split */

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

.split-content {
	width: 50%;
	text-align: left;
	display: flex;
	justify-content: center;
	align-items: center;
}

.split-text {
	padding: 10rem 8rem;
	padding-right: 4rem;
}

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


@media only screen and (max-width: 1000px) {
	.split-wrapper {
		display: block;
	}

	.split-content {
		width: 100% !important;
	}

	.split-image {
		width: 100% !important;
		height: 50rem !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 only screen and (max-width: 600px) {

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

/* Modal som öppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
	display: none;
	z-index: 9;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
}

body:not(.EditMode) .section-auto-modal .section-block {
	position: fixed;
	top: 50%;
	left: 50%;
	width: calc(100% - 4rem);
	max-width: 60rem;
	max-height: 95vh;
	padding: 6rem;
	border-radius: 2rem;
	overflow: auto;
	background-size: cover;
	transform: translate(-50%, -50%);
	background-image: url('/assets/images/julgran-1000px.jpg');
	z-index: 100;
}

.pb-0 {
	padding-bottom: 0;
}

body:not(.EditMode) .section-auto-modal .section-block::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: -1;
	pointer-events: none;
}

.section-auto-modal .close-modal {
	position: absolute;
	top: 1rem;
	right: 2rem;
	font-size: 3rem;
	cursor: pointer;
	color: rgb(255, 255, 255);
}

.section-auto-modal .small-title {
	font-weight: 800;
	color: rgb(255, 255, 255);
	text-align: center;
	letter-spacing: normal;
}

.section-auto-modal p {
	color: rgb(255, 255, 255);
	font-weight: 400;
}

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

	.section-auto-modal h4 {
		font-size: 2rem !important;
	}

	body:not(.EditMode) .section-auto-modal .section-block {
		max-height: 60rem;
		margin-top: 3rem;
	}
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
p,
a,
li {
	color: #8c8686;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	font-size: 1.7rem;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-transform: none;
}

.link-styled {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	font-style: normal;
	line-height: 1.7;
	text-transform: uppercase;
	letter-spacing: .3em;
	color: #1F3D51;
}

.link-wrapper {
	padding-top: 2.5rem !important;
}

.arrow-link::after {
	content: ' \f178';
	opacity: 1;
	transition: all .3s ease;
	font-family: 'Font Awesome 5 Pro';
	margin-left: 3px;
	font-weight: 400;
}

.arrow-link:hover::after {
	content: ' \f178';
	opacity: 1;
	margin-left: 10px;
}

a:hover {
	text-decoration: none;
	color: inherit;
}

h1,
h2,
h3,
h4 {
	font-family: 'Open Sans', sans-serif;
}

h2 {
	font-style: normal;
	text-transform: none;
	color: #606060;
	line-height: 1.7;
	letter-spacing: normal;
	font-weight: 700;
	font-size: 5rem;
	padding-bottom: 2rem;
	margin: 0 auto;
	letter-spacing: 0.03em;
}

h3 {
	font-weight: 800;
	font-size: 1.6rem;
	font-style: normal;
	line-height: 1.7;
	padding-bottom: 2rem;
	letter-spacing: .9rem;
	color: #231F20;
}

h4 {
	font-size: 3rem;
	font-weight: 600;
	padding-bottom: 2rem;
	padding-top: 0;
	text-align: left;
	color: #252523;
	text-transform: none;
	letter-spacing: 0.1em;
}


h5 {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	font-style: normal;
	line-height: 1.7;
	text-transform: uppercase;
	padding-bottom: 1.5rem;
	letter-spacing: .3em;
	color: #f07026;
}

.script {
	font-family: 'Bad Script', cursive;
}

/* lilla "abc"-blocket */
.smalltext-type {
	max-width: 90rem;
}

/* stora "ABC"-blocket */
.normaltext-type {
	max-width: 90rem;
	margin: 0 auto;
	text-align: center;
}

.heading-type h5 {
	text-align: center;
}

.heading-type p {
	max-width: 80rem;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 3rem;
}

.italic {
	font-style: italic;
}

.bold {
	font-weight: 700;
}

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

.ingress {
	font-style: italic;
	color: #3e5164;
	font-weight: 300;
	font-size: 2.5rem;
	line-height: 1.7;
	margin: 0 auto;
	padding-bottom: 1.5rem;
}

.text-decoration {
	font-style: italic;
	font-weight: 700;
}

@media only screen and (max-width: 1200px) {
	h2 {
		font-size: 5rem;
	}
}

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

	p,
	a,
	li {
		font-size: 1.6rem;
	}

}

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

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

header {
	-webkit-transition: all 500ms linear;
	-moz-transition: all 500ms linear;
	-o-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
	transition: all 500ms linear;
	background-color: rgba(255, 255, 255, 0);
	box-shadow: none;
}

header.scrolled {
	display: block;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: none;
	margin-top: 0;
}

header .container {
	max-width: 100%;
}

header .header-logo {
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	width: 16rem;
	padding: 5px 10px;
}

@media only screen and (max-width: 580px) {
	header .header-logo {
		width: 10rem;
	}
}

/*
header.scrolled .header-logo {
    width: 16rem;
    padding: 5px 10px;
}
*/

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

header .close-menu {
	display: none;
}

header .close-menu:before,
header .close-menu:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 3px;
	background-color: #f07026;
}

header .close-menu:before {
	transform: rotate(45deg);
}

header .close-menu:after {
	transform: rotate(-45deg);
}

/* header.scrolled .mobile-menu span { background: #fff; } */

/* Navigation */

nav.mainmenu {
	text-align: right;
}

nav.mainmenu li {
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
}

nav.mainmenu li a {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: #333;
	padding: 0 1rem;
	font-size: 1.3rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-shadow: none;
	display: inline-block;
	display: none;
}

header.scrolled nav.mainmenu li a {
	display: inline-block;
}

nav.mainmenu li:hover,
nav.mainmenu li.active {
	background: transparent;
	border-bottom: none;
	cursor: pointer;
	/*     color:  #eda790 !important; */
}

header.scrolled nav.mainmenu li:hover a,
header.scrolled nav.mainmenu li.active a,
nav.mainmenu li:hover a,
nav.mainmenu li.active a {
	color: #3e5164 !important;
}

nav.mainmenu li .fab {
	font-size: 2rem;
}



/* Bokaknapp */

#bokatid {
	position: absolute;
	font-size: 1.4rem;
	bottom: 0;
	right: 0;
	padding: 2.5rem 3rem;
	background: #f07026;
	display: block;
	/* 	width:30rem; */
	height: 7.2rem;
	text-align: center;
	transition: all ease .2s, top linear 0s, right linear 0s, left linear 0s, width linear 0s;
	font-family: 'Qucksand', sans-serif;
	font-weight: 500;
	color: #fff;
	font-size: 1.3rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-shadow: none;
}

header.scrolled #bokatid {
	border-radius: 0 !important;
	background-color: #f07026;
}

#bokatid span {
	transition: margin ease .2s;
}

#bokatid:hover {
	background-color: #000 !important;
	color: #fff;
}

@media only screen and (max-width: 980px) {
	.openmenu {
		/*
		background: transparent url('/files/menu-white.png') no-repeat center center;
	    background-size: 250px 25px;
	    width: 30px;
	    height: 30px;
	    right: 30px;
	    top: 20px;
*/
	}

	nav.mainmenu {
		text-align: center;
		width: 100%;
		box-shadow: none;
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		height: 100%;
		overflow-y: scroll;
		background-color: #fff !important;
	}

	nav.mainmenu .Padding {
		padding-left: 0;
		margin-top: 7.2rem;
	}

	nav.mainmenu ul.TemplateMenu>li {
		height: 6.0rem;
		width: 100%;
	}

	nav.mainmenu li a {
		font-size: 1.7rem;
		border-bottom: none;
		margin: 2.0rem 0;
		color: #333 !important;
		padding-left: 1rem;
		display: block !important;
	}

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

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

	nav.mainmenu a:before {
		display: none;
	}

	.openmenu,
	.closemenu {
		background-image: none;
	}

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

	.header-btn {
		display: none !important;
	}


}


/* ==========================================================================
Top-section
========================================================================== */
.top-section {
	overflow: hidden;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	display: none;
}


.EditMode .topsection-new {
	margin-top: 20rem !important;
}

#top {
	height: 100vh;
	padding: 2rem;
}

#top .col-block {
	padding: 0 !important;
	height: calc(100vh - 4rem);
}

#top .col-1 {
	width: calc(50% - 2rem);
	margin-left: 2rem;
}

#top .col-1 {
	position: relative;
}

.big-img-wrapper {
	margin-bottom: 2rem;
	height: calc(100vh - 41rem);
}

.top-img-big {
	background-image: url('/assets/images/ginsara-top-img1.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 100%;
}

.small-img-wrapper {
	font-size: 0;
}

.top-img-small {
	background-size: cover;

	background-repeat: no-repeat;
	width: calc(50% - 1rem);
	vertical-align: top;
	display: inline-block;
	height: 35rem;
	position: absolute;
	bottom: 0;
}


.top-img-1 {
	background-image: url('/assets/images/ginsara-top-img2.jpg');
	left: 50%;
	margin-left: 1rem;
	background-position: center center;
}

.top-img-2 {
	background-image: url('/assets/images/ginsara-top-img3.jpg');
	margin-right: 1rem;

	background-position: 84% center;
}


.page-title-wrap {
	background-color: transparent;
	top: 30%;
	left: 50%;
	width: 100%;
	max-width: none;
	padding: 0;
	transform: translate(-50%, 0%);
	-ms-transform: translate(-50%, 0%);
	-moz-transform: translate(-50%, 0%);
	-webkit-transform: translate(-50%, 0%);

}

.page-title-innerwrap {
	width: 100%;
	max-width: 87rem;
	text-align: left !important;
	position: relative;
	left: -1px;
	padding-left: 15rem;
	box-sizing: border-box;
}


.page-title-wrap h1 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.6rem;
	font-style: normal;
	line-height: 1.7;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	letter-spacing: .3em;
	text-shadow: none;
	color: #606060;

}

.page-title-wrap h2 {
	color: #f07026;
	font-size: 8.5rem;
	line-height: 1.3;
	font-weight: 300;
	padding-bottom: 3rem;
	text-shadow: none;
	letter-spacing: 1px;
}

.usp-decoration {
	font-weight: 700;
}

.page-title-wrap p {
	padding-top: 1rem;
	max-width: 90rem;
	color: #606060;
	font-weight: 400;
	letter-spacing: 0.05em;
	padding-left: 5rem;
	max-width: 62rem;
}

.page-title-wrap a {
	display: block;
	color: #fff !important;
	font-weight: 700;
}



@media only screen and (max-width: 1440px) {
	.page-title-wrap h2 {
		font-size: 7rem;
	}

	.page-title-wrap {
		top: 28%;
	}

	.page-title-innerwrap {
		max-width: 67rem;
		padding-left: 10rem;
	}

}

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

	.page-title-wrap p,
	.page-title-wrap h1 {
		font-size: 1.5rem;
		padding-left: 0;
	}

	.page-title-wrap h2 {
		font-size: 6rem;
	}

	.page-title-innerwrap {
		max-width: 57rem;
	}

	.top-img-small {
		height: 25rem;
	}

	.big-img-wrapper {
		height: calc(100vh - 31rem);
	}

}

@media only screen and (max-width: 1050px) {
	.page-title-innerwrap {
		padding-left: 5rem;
		max-width: 50rem;
	}
}

@media only screen and (max-width: 1024px) {
	.page-title-wrap {
		top: 29%;
	}
}

@media only screen and (max-width: 1000px) {
	.page-title-wrap {
		top: 19%;
	}

	#top .col-0 {
		width: 100% !important;
		height: calc(65vh - 2rem);
		padding: 0 !important;
		margin: 0 !important;
	}

	#top .col-1 {
		width: 100% !important;
		height: calc(35vh - 2rem);
		padding: 0 !important;
		margin: 0 !important;
	}

	.big-img-wrapper {
		display: none;
	}

	.small-img-wrapper {
		height: 100%;
		width: 100% !important;
	}

	.top-img-small {
		height: 100%;
	}
}

@media only screen and (max-width: 600px) {
	#top {
		padding: 1rem;
	}

	#top .col-0 {
		height: calc(70vh - 1rem);
	}

	#top .col-1 {
		height: calc(30vh - 1rem);
	}

	.page-title-wrap {
		top: 30%;
	}

	.page-title-innerwrap {
		padding-left: 3rem;
	}

	.page-title-wrap p,
	.page-title-wrap h1 {
		font-size: 1.2rem;
		padding-bottom: 2rem;
	}

	.page-title-wrap h2 {
		font-size: 3.1rem;
		padding-bottom: 1rem;
	}

	.top-img-small {
		width: calc(50% - 0.5rem);
	}

	.top-img-1 {
		margin-left: 0.5rem;
	}

	.top-img-2 {
		margin-right: 0.5rem;
	}
}



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

/* Om oss
========================================================================== */
.about {
	background-color: #fff !important;
}

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

.about h2,
.about h5 {
	text-align: left;
}

.about .smalltext-type {
	text-align: left;
	/* 	max-width: 80rem; */
	padding-left: 7rem;
	padding-top: 2rem;
}


@media only screen and (max-width: 800px) {
	.about h2 {
		font-size: 4rem;
	}
}

@media only screen and (max-width: 700px) {
	.about .smalltext-type {
		padding-left: 0rem;
		padding-top: 2rem;
	}

}

@media only screen and (max-width: 600px) {
	.about h2 {
		font-size: 3.4rem;
	}
}

/* Parallax
========================================================================== */


#parallax {
	background-image: url('/assets/images/ginsara-parallax.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	text-align: center;
	height: 50rem;
}

#parallax .section-block {
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

#parallax h2 {
	color: #fff;
	padding-bottom: 0;
}

#parallax .fas {
	color: #f07026;
}


@media only screen and (max-width: 1100px) {
	#parallax h2 {
		font-size: 4rem;
		max-width: 90rem;
		margin: 0 auto;
	}

}

@media only screen and (max-width: 870px) {
	#parallax {
		height: 40rem;
	}

	#parallax h2 {
		font-size: 3rem;
		max-width: 70rem;
		margin: 0 auto;
	}

}

@media only screen and (max-width: 600px) {
	#parallax h2 {
		font-size: 2.5rem;
	}

	#parallax .section-block {
		height: 100%;
		background-color: rgba(0, 0, 0, 0.6);
		padding: 13rem 3rem !important;
	}
}



/* TjÃƒÆ’Ã‚Â¤nster
========================================================================== */

.treatment-div .pris {
	float: right;
	font-weight: 800;
	color: #231F20;
	letter-spacing: 0.08em;
	font-size: 1.6rem;
	padding-bottom: 0.5rem;
	font-style: normal;
	font-family: 'Open Sans', sans-serif;
}

.treatment-div {
	border-bottom: 1px dotted #9e9e9e;
	margin-bottom: 2.5rem;
}

.section-block .menu {
	border-bottom: 1px solid #5b5b5b;
	padding-bottom: 5rem;
}

.menu h5 {
	font-weight: 700;
	font-size: 2rem;
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.treatment-div h3 {
	letter-spacing: 0.08em;
	font-size: 1.6rem;
	padding-bottom: 0.5rem;
}

.treatment-div p {
	font-size: 1.5rem;
	font-style: italic;
}

.menu .showSingle {
	font-family: 'Bad Script', cursive;
	font-size: 3rem;
	margin-right: 2rem;
	color: #5b5b5b;
}

.menu .showSingle:hover,
.menu .showSingle.active {
	text-decoration: underline !important;
	cursor: pointer;
	color: #f07026;
}

.menu .cnt {
	margin: 5% 0%;
	background: transparent;
}

.targetDiv {
	font-size: 0;
}

.menu-col-1,
.menu-col-2 {
	width: 46%;
	vertical-align: top;
	display: inline-block;
}

.drinks .menu-col-1,
.soda .menu-col-1 {
	width: 78%;
}

.menu-col-1 {
	padding-right: 3%;
}

.menu-col-2 {
	padding-left: 3%;
}

.menu .pris {
	float: right;
}


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

	.menu-col-1,
	.menu-col-2 {
		width: 98%;
		padding-right: 0;
		padding-left: 0;
	}

}

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

	.menu .showSingle {
		font-size: 2.2rem;
		line-height: 2.5;
		margin-right: 2rem;
	}
}


/* karta
========================================================================== */
#hitta-hit {
	font-size: 0;
}

@media only screen and (max-width: 1024px) {
	#hitta-hit iframe {
		height: 40rem !important;
	}
}

@media only screen and (max-width: 600px) {
	#hitta-hit iframe {
		height: 35rem !important;
	}
}

/* ==========================================================================
Undersidor 
========================================================================== */
.SubPage .top-section {
	display: none;
}

.SubPage .section-block .col-1 {
	padding-right: 3%;
}

.SubPage .section-block .col-2 {
	padding-left: 3%;
}

/* Kontakt
========================================================================== */
/*
.sub-kontakt .subpage-topsection {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('/resources/backgrounds/flower-16.jpg');
	height: 500px;
}
*/



/* ==========================================================================
Footer
========================================================================== */
.footer {
	padding: 0;
	box-sizing: border-box;
	background-color: #454545;

}

.footer * {
	color: #fff !important;
}

.footer .container {
	max-width: none;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;

}

.footer .footer-top {
	max-width: 160rem;
	min-height: 23rem;
	padding: 8rem 2rem 6rem 2rem;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.footer-col-top {
	width: 15%;
	box-sizing: border-box;
}

.footer-col-top:first-child {
	width: 30%;
}

.footer-col-top:nth-child(4) .fas {
	margin-left: 10px;
}

.footer img {
	width: 33rem;
	height: auto;
	padding-bottom: 0.8rem
}

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

.footer .container .footer-wrapper {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.footer .footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(190, 190, 190, 0.68);
	text-align: center;
	margin: 0 auto;
	width: 100%;
	padding: 15px;
	margin: 0 auto;
	box-sizing: border-box;
	background-color: transparent;
	max-width: 160rem;
	min-height: 10rem;
	padding: 2rem 2rem;
	box-sizing: border-box;
	line-height: 1rem;
}

.footer-col-bottom {
	width: 50%;
	box-sizing: border-box;
}

.footer-col-bottom:first-child p {
	display: inline-block;
}

.footer-col-bottom:first-child img {
	margin-right: 20px;
}


.footer .container .fab {
	margin: 0;
}

.footer .social-icons {
	padding-top: 10px;
}

.footer p,
.footer a,
.footer li {
	font-size: 1.5rem;
	padding: 0;
	font-weight: 300;
	line-height: 1.8em;
	padding-bottom: 4px;
	color: #fff;
	text-decoration: none !important;
}

.footer h3 {
	font-size: 2rem;
	text-transform: unset;
	letter-spacing: 0.1em;
	padding-bottom: 1.2rem;
	color: #fff;
	font-weight: 500;
	padding-top: 0;
	letter-spacing: 1px;
}

.footer * {
	text-align: left !important;
}

.footer a {
	display: inline-block;
}

.footer a:hover {
	color: #fff !important;
	text-decoration: underline !important;
}

.footer .container .fab:hover {
	color: #fff !important;
}

.footer .container .fab {
	vertical-align: sub;
	color: #fff !important;
	display: inline-block;
}

/* WebbEss Stamp  */
.footer .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:1100px) {

	.footer .footer-bottom {
		min-height: auto;
	}

	.footer-col-top:first-child {
		width: 70%;
		margin: 0 auto;
	}

	.footer-col-top {
		width: 100%;
		margin-bottom: 3rem !important;

	}

	.footer-col-bottom {
		width: 100%;
		margin: 10px 0;
	}

	.footer *,
	.footer-col-bottom:last-child p {
		text-align: center !important;
	}

	.footer h4 {
		padding-bottom: 10px;
	}

}

@media only screen and (max-width: 650px) {
	.footer-col-top:first-child {
		width: 90%;
		margin: 0 auto;
	}
}

/* ==========================================================================
Media queries
========================================================================== */
@media only screen and (max-width: 1440px) {}


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



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


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