/* Tassarnas Spa AB */

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

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

body {
	-webkit-font-smoothing: antialiased;
	background-position: center center !important;
}

html {
	font-size: 62.5%;
}

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

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

.LayoutPage .section-block-wrapper {
	max-width: 145rem;
}


.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
	padding: 16rem 6.5rem;
}

.container {
	max-width: 130rem;
}

.lh-3{
	line-height: 3rem !important;
}
.mt-3{
	margin-top: 3rem;
}

.pb-1 {
	padding-bottom: 1rem;
}

@media only screen and (max-width: 1024px) {
	.container {
		max-width: 95rem;
	}

	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
		padding: 8rem 6rem;
	}
}

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

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

/* ==========================================================================
Knappar & speciella länkar
========================================================================== */

.btn {
	font-family: 'Karla', sans-serif;
	font-weight: 700;
	font-style: normal;
	width: 25rem;
	max-width: 25rem;
	box-sizing: border-box;
	padding: 1.6rem 3.9rem;
	cursor: pointer;
	font-size: 1.45rem;
	border-radius: 4rem;
	border: 2px solid transparent;
	;
	outline: none;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: 1.8;
	background-color: #35aebc;
	color: #fff !important;
	letter-spacing: .1em;
	text-transform: uppercase;
	display: block;
}

.btn:hover {
	background-color: #E37FB1;
	color: #fff;
	border: 2px solid transparent;
	;
}

.btn-center {
	margin: 0 auto;
	text-align: center;
	display: block;
	max-width: 25rem;
}

.btn-rosalila {
	border: 2px solid transparent;
	background-color: #E37FB1;
}

.btn-rosalila:hover {
	border: 2px solid #E37FB1;
	color: #E37FB1 !important;
	background-color: transparent;
}

.btn-turkos {
	background-color: #35aebc;
	border: 2px solid #35aebc;
	color: #fff !important;
}

.btn-turkos:hover {
	background-color: #E37FB1;
	color: #fff !important;
	border: 2px solid #E37FB1;
}

.btn-vit-border {
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
}

.btn-vit-border:hover {
	background-color: #fff;
	border: 2px solid #fff;
	color: #666666 !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;
}

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%,-50%);
    transition: .3s ease;
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%,-50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%,-50%) scale(0);
}

/* Innehåll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    max-width: 45rem;
    max-height: calc(100vh - 12rem); 
    padding: 4rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
	background: white;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

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

    .icon-close-popup {
        top: 1rem;
    }
}


/* ==========================================================================
Text och typsnitt
========================================================================== */
p {
	color: #666666;
	font-family: 'Karla', sans-serif;
	font-weight: 400;
	font-style: normal;
	text-decoration: none;
	font-size: 2.2rem;
	line-height: 1.7;
	letter-spacing: normal;
}

a {
	color: #ff7f00;
	font-family: 'Karla', sans-serif;
	font-weight: 800;
	font-style: normal;
	text-decoration: none;
	font-size: 1.5rem;
	line-height: 1.7;
	letter-spacing: .17em;
	text-transform: uppercase;
}

a:hover {
	text-decoration: none;
	color: #333;
}

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

.light-text {
	font-weight: 300;
}

.orange-color {
	color: #f3ab61;
}
.link-nodecoration{
	text-decoration: none;
	color: #666666;
	font-size: 2.2rem;
	font-weight: 400;
}
h3,
h4,
h5,
h6 {
	font-family: 'Josefin Sans', sans-serif;
	font-style: normal;
	text-transform: none;
}

h1,
h2 {
	font-family: 'Josefin Sans', sans-serif;
}

h1 {
	font-weight: 600;
	font-style: normal;
}


h2 {
	font-weight: 700;
	font-style: normal;
	padding-bottom: 2rem;
	text-transform: none;
	color: #333;
	font-size: 5rem;
	line-height: 1.3;
	letter-spacing: normal;
}

h3 {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 900;
	font-size: 1.8rem;
	font-style: normal;
	line-height: 1.7;
	text-transform: uppercase;
	padding-bottom: 8px;
	letter-spacing: .3em;
	color: #E37FB1;
}

h4 {
	font-style: normal;
	text-transform: uppercase;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: .08em;
	color: #333;
	font-family: 'Josefin Sans', sans-serif;
}

.nowrap {
	white-space: nowrap;
}

.smalltext-type {
	max-width: none;
}

.normaltext-type {
	max-width: 90rem;
	margin: 0 auto;
	text-align: center;
}

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

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

.text-black{
	color: rgb(0, 0, 0);
}
@media only screen and (max-width: 1080px) {
	h2 {
		font-size: 4rem;
	}
}

.playfair-display {
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	font-style: italic;
	line-height: 1.6;
}

/* ==========================================================================
Färger
========================================================================== */

.bg-yellow {
	background-color: #ffbc00;
}

.bg-yellow:hover {
	background-color: #ff7f00;
}

.bg-blue {
	background-color: #2D3E50;
}

.bg-orange {
	background-color: #ff7f00;
}

.bg-orange:hover {
	background-color: #ffbc00;
}

.bg-green {
	background-color: #90be6d;
}

/*========================================================================== 
 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;
	background: rgba(0, 0, 0, .7);
}

body:not(.EditMode) .section-auto-modal .section-block {
	position: fixed;
	top: 50%;
	left: 50%;
	width: calc(100% - 4rem);
	max-width: 84rem;
	max-height: 75vh;
	padding: 0rem;
	border-radius: 1rem;
	overflow: auto;
	background: white;
	transform: translate(-50%, -50%);
}

.section-auto-modal .close-modal {
	position: absolute;
	top: 1rem;
	right: 2rem;
	font-size: 3rem;
	cursor: pointer;
}

.section-auto-modal .fal {
	color: #35aebc;
}

.section-auto-modal .modal-title {
	font-size: 3.5rem;
}
.section-auto-modal .split-text{
	padding: 3rem;
}
.section-auto-modal .small-title {
	font-size: 2.5rem;
	color:#ffbc00;
}
.section-auto-modal p {
	color: #333;
}

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

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

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

/* hide header on scroll */
header {
	background-color: #fff;
	position: fixed;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.04);
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

header.hidden {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}

header .container {
	max-width: 1400px;
	padding: 0 20px;
}

header .header-logo {
	width: 190px;
	position: absolute;
	line-height: 0;
	padding-top: 12px;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

header.scrolled .header-logo,
header.hidden .header-logo {
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

nav.mainmenu {
	text-align: center;
	display: block;
}

.EditMode nav.mainmenu {
	display: block;
}

nav.mainmenu ul {
	text-align: center;
}

nav.mainmenu ul.TemplateMenu>li {
	line-height: 72px;
	height: 72px;
}

nav.mainmenu a {
	font-family: 'Josefin Sans', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 1.2rem;
	color: #666666;
	text-transform: uppercase;
	padding: 0 15px;
	letter-spacing: .15em;
	vertical-align: middle;
}

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

nav.mainmenu li:hover a,
nav.mainmenu li.active a {
	color: #E37FB1;
}

nav.mainmenu .fab {
	color: #fff;
	font-size: 2.5rem;
	vertical-align: middle;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

nav.mainmenu .facebook-item a:before {
	display: none;
}

nav.mainmenu .fab:hover {
	color: #fff;
}

nav.mainmenu .facebook-item a {
	margin-left: 0;
	padding-left: 10px;
	padding-right: 1em;
}

/* Bokaknapp */

.boka-item a {
	color: #fff !important;
	border-radius: 4rem;
	padding: 1.7rem 3rem !important;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	font-weight: 800 !important;
}

nav.mainmenu .boka-item {
	position: absolute;
	right: 2rem;
}

nav.mainmenu .boka-item.active a:before,
nav.mainmenu .boka-item:hover a:before {
	display: none;
}

@media only screen and (max-width: 580px) {
	header .header-logo a {
		margin-left: 0;
	}
}

@media only screen and (max-width: 1180px) {
	/* ny nav */

	header {
		height: 72px;
	}

	header .header-logo {
		z-index: 101 !important;
	}

	.openmenu {
		display: none !important;
	}

	.mainmenu {
		position: fixed;
		top: 0;
		left: 0;
		display: block !important;
		height: 72px !important;
		width: 100% !important;
		background: transparent;
		-ms-overflow-style: none;
		overflow: -moz-scrollbars-none;
		scrollbar-width: none;
		box-shadow: none !important;
		transition: all .5s ease;
	}

	.mainmenu::-webkit-scrollbar {
		width: 0 !important
	}

	/* nav ej aktiv */
	#close {
		position: fixed;
		top: 25px;
		right: 5px;
		transform: translateY(-25px);
		width: 60px;
		height: 60px;
		display: flex;
		flex-direction: column;
		align-items: center;
		cursor: pointer;
	}

	#close .bar {
		position: absolute;
		width: 50%;
		height: 2px;
		background-color: #000;
		transition: all .5s ease;
	}

	#close .bar:first-of-type {
		top: 42%
	}

	#close .bar:last-of-type {
		top: 58%
	}

	.Padding {
		display: block !important;
		visibility: hidden;
		margin: 0 !important;
		padding: 120px 0 0 0 !important;
		transition: all .5s ease;
	}

	.Padding ul li {
		height: auto !important;
		line-height: unset !important;
		opacity: 0;
		text-align: center;
		-webkit-transition: opacity 0.75s ease;
		-moz-transition: opacity 0.75s ease;
		-o-transition: opacity 0.75s ease;
		transition: opacity 0.75s ease;
	}

	.Padding ul li a {
		color: #333 !important;
		padding: 15px 0 !important;
		margin: 5px 0 !important;
		transition: color .25s ease;
		width: 100%;
	}

	.expandable-li ul,
	nav.mainmenu ul>li>ul {
		background: #f4f4f4;
	}

	nav.mainmenu .expandable-li a {
		margin: 0 60px !important;
		width: calc(100% - 120px);
	}

	nav.mainmenu ul>li>ul>li {
		margin: 0;
	}

	nav.mainmenu ul>li>ul>li a {
		margin: 0 auto !important;
		padding: 20px 0 !important;
	}

	nav.mainmenu li,
	nav.mainmenu li a {
		padding-left: 0 !important;
	}

	.dropdown-arrow-open,
	.dropdown-arrow-close {
		background: none !important;
	}

	.dropdown-arrow-open:hover,
	.dropdown-arrow-close:hover {
		background: none !important;
	}

	.dropdown-arrow,
	.dropdown-arrow:hover {
		width: 60px;
		height: 100%;
		top: 0;
		right: 0;
	}

	.dropdown-arrow,
	.dropdown-arrow:hover {
		width: 60px;
		height: 53px;
		top: 0;
		right: 0;
	}

	.dropdown-arrow::after {
		content: '\25B7';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: transform .25s ease;
	}

	.level-open .dropdown-arrow::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.level-close .dropdown-arrow::after {
		transform: rotate(180deg);
	}

	/* nav aktiv */
	.mainmenu.active-menu {
		height: 100% !important;
	}

	.mainmenu.active-menu #close .bar {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.mainmenu.active-menu #close .bar:first-of-type {
		transform: rotate(225deg);
	}

	.mainmenu.active-menu #close .bar:last-of-type {
		transform: rotate(-225deg);
	}

	.mainmenu.active-menu .Padding {
		visibility: visible;
	}

	.mainmenu.active-menu .Padding ul li {
		opacity: 1;
	}

	.mainmenu.active-menu .Padding ul li:nth-child(1) {
		-webkit-transition: opacity 0.5s ease .1s;
		-moz-transition: opacity 0.5s ease .1s;
		-o-transition: opacity 0.5s ease .1s;
		transition: opacity 0.5s ease .15s;
	}

	.mainmenu.active-menu .Padding ul li:nth-child(2) {
		-webkit-transition: opacity 0.5s ease .2s;
		-moz-transition: opacity 0.5s ease .2s;
		-o-transition: opacity 0.5s ease .2s;
		transition: opacity 0.5s ease .25s;
	}

	.mainmenu.active-menu .Padding ul li:nth-child(3) {
		-webkit-transition: opacity 0.5s ease .3s;
		-moz-transition: opacity 0.5s ease .3s;
		-o-transition: opacity 0.5s ease .3s;
		transition: opacity 0.5s ease .35s;
	}

	.mainmenu.active-menu .Padding ul li:nth-child(4) {
		-webkit-transition: opacity 0.5s ease .3s;
		-moz-transition: opacity 0.5s ease .3s;
		-o-transition: opacity 0.5s ease .3s;
		transition: opacity 0.5s ease .35s;
	}

	.mainmenu.active-menu .Padding ul li:nth-child(5) {
		-webkit-transition: opacity 0.5s ease .3s;
		-moz-transition: opacity 0.5s ease .3s;
		-o-transition: opacity 0.5s ease .3s;
		transition: opacity 0.5s ease .35s;
	}

	.mainmenu.active-menu .Padding ul li:nth-child(6) {
		-webkit-transition: opacity 0.5s ease .3s;
		-moz-transition: opacity 0.5s ease .3s;
		-o-transition: opacity 0.5s ease .3s;
		transition: opacity 0.5s ease .35s;
	}

	.closemenu {
		display: none;
		background: url('/assets/images/closemenu-icon-black.png') no-repeat center center;
		width: 50px;
		height: 50px;
		cursor: pointer;
		position: absolute;
		right: 20px;
		top: 10px;
		background-size: 40px 40px;
	}

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

	nav.mainmenu .Padding {
		padding: 40px 0 0 0;
		margin-top: 72px;
	}

	nav.mainmenu ul.TemplateMenu>li {
		height: 60px;
		width: 100%;
	}

	nav.mainmenu a {
		padding: 10px 36px;
		font-size: 22px;
	}

	.SubPage nav.mainmenu .home {
		display: block;
	}

	nav.mainmenu li,
	nav.mainmenu li a {
		font-size: 2rem;
		border-bottom: none;
		margin: 20px 0px;
		color: #272727 !important;
		padding-left: 10px;
		font-weight: 400;
	}

	nav.mainmenu li.li-logo a {
		display: none;
	}
}

@media only screen and (max-width: 580px) {
	header .header-logo a {
		margin-left: 0;
	}
}

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

.top-section {
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.page-title-wrap {
	top: 49%;
	left: 27%;
	width: 100%;
	max-width: 600px;
}

.page-title-wrap h2,
.page-title-wrap h3,
.page-title-wrap h1 {
	text-align: left;
}

.page-title-wrap h1 {
	text-transform: none;
	font-size: 6rem;
	font-weight: 500;
	font-style: normal;
	line-height: 1.3;
	letter-spacing: normal;
	color: #fff;
	text-shadow: none;
	padding-bottom: 0;
}

.page-title-wrap h2 {
	line-height: 1.8;
	padding-bottom: 1.8rem;
	letter-spacing: normal;
	text-transform: uppercase;
	letter-spacing: .17em;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	color: #a3cccc;
}

.page-title-wrap h3 {
	color: #fff;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	font-size: 2.7rem;
	line-height: 1.7;
	letter-spacing: normal;
	text-transform: none;
	font-family: 'Lora', serif;
	font-style: italic;
}

.page-title-wrap .bold-text {
	font-weight: 800;
	color: #E37FB1;
}

.top-section .btn-wrapper {
	margin-top: 20px;
	text-align: left;
}

.page-title-wrap .btn {
	display: inline-block;
	margin: 0 1.5rem;
}

@media only screen and (max-width: 1140px) {
	.page-title-wrap {
		left: 33%;
	}
}

@media only screen and (max-width: 980px) {
	.page-title-wrap {
		left: 50%;
	}

	.page-title-wrap * {
		text-align: center !important;
	}
}

@media only screen and (max-width: 630px) {
	.page-title-wrap h1 {
		font-size: 4.5rem;
	}

	.page-title-wrap h3 {
		font-size: 3rem;
	}
}

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

#svg-wave {
	background-image: url(/assets/images/wave.svg);
	/* background-image: url(/assets/images/christmas.svg); */
	background-size: cover;
	height: 440px;
	width: 100%;
	background-position: center center;
	background-color: transparent;
	margin-top: -380px;
	position: absolute;
	background-repeat: no-repeat;
	overflow: hidden;
	clear: both;
}


/* Simple Parallax */
.parallax-background {
	overflow: hidden;
	height: 600px;
	/* set height on section for IE */
}

.parallax-image img {
	width: 100%;
}

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

	.parallax-background {
		height: unset;
	}

}

.quote {
	position: relative;
	font-family: 'Lora', serif;
	font-size: 4rem;
	font-style: italic;
	text-align: center;
	padding-bottom: 2rem;
}

.quote:before {
	display: block;
	content: '';
	background: url(/assets/images/tassarnas-trim-qoutesign-rosa-2.svg) no-repeat;
	width: 5em;
	height: 5em;
	position: absolute;
	left: -4em;
	top: -2em;
	z-index: -1;
}

/* full split wrapper */

.wrapper {
	display: flex;
	height: 100vh;
}

.bild,
.text {
	flex: 1;
	height: 100%;
}

.text {
	display: flex;
	height: 100%;
}

.text-wrapper {
	max-width: 70rem;
	display: block;
	margin: 0 auto;
	z-index: 0;
	position: relative;
	padding: 23rem 10rem 10rem 10rem;
	text-align: center;
}

@media only screen and (max-width: 980px) {
	.wrapper {
		height: auto;
	}

	.text {
		width: 100%;
		height: auto;
	}

	.bild {
		width: 100%;
		height: 50vh;
	}

	.wrapper {
		display: block;
	}
}

/* Split wrapper */

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

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

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

.split-text p {
	padding-bottom: 3rem;
}
/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}
.split-content.bg-rosalila {
	background-color: #E37FB1;
}

.split-content.bg-turkos {
	background-color: #35aebc;
}

.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 only screen and (max-width: 980px) {

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

@media only screen and (max-width: 630px) {
	.split-text {
		padding: 10rem 4rem;
	}
}


/* Om oss
========================================================================== */
#om-oss h3 {
	padding-bottom: 2rem;
}

#om-oss h2 {
	color: #35aebc;
}

#om-oss p {
	padding-bottom: 3.5rem;
}

#om-oss .btn {
	display: inline-block;
	margin: 1rem;
}

/* Våra tjänster
========================================================================== */

#tjanster {
	background-color: #fff;
}

#tjanster .section-block {
	padding-top: 6rem;
}

#tjanster .services-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 4rem;
}

#tjanster .service-box {
	width: 29%;
	margin: 2%;
	text-align: center;
}

#tjanster .service-text {
	padding: 3rem;
}

#tjanster .service-box img {
	width: auto;
	height: 160px;
	padding-bottom: 2rem;
}

#tjanster .services-wrap h4 {
	color: #E37FB1;
}

@media only screen and (max-width: 980px) {
	#tjanster .service-box {
		width: 100%;
		padding-bottom: 4rem;
	}
}


/* Quote
========================================================================== */

#quote {
	overflow: hidden;
}

#quote .wrapper {
	height: 700px;
}

#quote .text {
	background: #fff;
}

#quote .col-block {
	box-sizing: border-box;
}

#quote .bild {
	max-width: 700px;
	background-image: url(/assets/images/tassarnastrim-humd-rosett-800px.jpg);
	background-size: cover;
	background-position: center 45%;
	background-repeat: no-repeat;
}


@media only screen and (max-width: 1140px) {
	#quote .text-wrapper {
		padding: 23rem 5rem 10rem 10rem;
	}
}

@media only screen and (max-width: 980px) {
	#quote .wrapper {
		height: auto;
	}

	#quote .bild {
		max-width: unset;
	}

	#quote .text-wrapper {
		padding: 21rem 13rem 10rem 13rem;
	}
}

@media only screen and (max-width: 630px) {
	#quote .text-wrapper {
		padding: 10rem 5rem !important;
	}

	.quote {
		font-size: 3rem;
		padding-top: 7rem;
	}
}

/* Prislista
========================================================================== */
.prislista-intro {
	max-width: 800px;
	margin: 0 auto;
	padding: 100px 40px 0 40px;
	box-sizing: border-box;
}

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

#prislista .split-content {
	width: 50%;
	text-align: left;
}

#prislista .split-title {
	width: 100%;
	padding-top: 17rem;
	text-align: center;
}

#prislista .split-title p {
	max-width: 850px;
	margin: 0 auto;
	padding-bottom: 7rem;
}

#prislista .split-content-info {
	padding: 4rem 6rem 0 6rem;
}

#prislista .split-hair {
	padding: 9rem 6rem;
}

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

#prislista h2 {
	padding-bottom: 0;
}

#prislista .split-title h3 {
	padding-bottom: 0 !important;
}

#prislista h3 {
	padding-bottom: 3rem;
	font-weight: 800;
	font-size: 1.6rem;
	text-transform: none;
	letter-spacing: .05em;
}

#prislista .prislista h3 {
	font-size: 2.05rem;
	padding-bottom: 1rem;
	padding-top: 3rem;
}

#prislista .col-block {
	box-sizing: border-box;
}

#prislista h4 {
	border-bottom: 1px dotted #eee;
	margin-bottom: 5px;
	text-align: left;
	font-size: 1.85rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
}

#prislista .pris {
	float: right;
}

#prislista p {
	padding-bottom: 2.5rem;
	font-family: 'Crimson Text', serif;
	font-style: italic;
	font-size: 2rem;
}

.split-keratin p {
	padding-top: 2rem;
}

#prislista .btn:hover {
	background-color: #91C9BF;
}

@media only screen and (max-width: 1024px) {
	#prislista .split-content {
		width: 100%;
	}

	#prislista .split-title {
		padding-left: 7rem;
		padding-right: 7rem;
	}
}

@media only screen and (max-width: 630px) {
	#prislista .split-content-info {
		padding: 0 4rem;
	}

	#prislista .split-hair {
		padding: 4rem;
	}

	#prislista .pris {
		float: none;
	}

	#prislista h4 {
		border-bottom: none;
	}

	#prislista .split-title {
		padding-left: 4rem;
		padding-right: 3rem;
	}

	#prislista h2 {
		text-align: left;
	}
}


/* Våra salonger
========================================================================== */

#salonger .split-wrapper {
	margin: 5rem 0;
	box-shadow: 0 0 2rem rgba(0, 0, 0, .05);
}

#salonger * {
	color: #fff;
}

#salonger .btn {
	display: inline-block;
	margin: 1rem;
}

@media only screen and (max-width: 630px) {
	#salonger .section-block {
		padding: 0;
	}
}

/* Instagram
========================================================================== */

#instagram .section-block {
	padding-bottom: 16rem !important;
}

.instagram h2 {
	padding-bottom: 0;
}

.instagram h3 {
	padding: 2rem !important;
	text-transform: none;
	letter-spacing: 1px;
	font-size: 2rem;
	font-weight: 400;
	color: #35aebc;
}

.nowrap {
	white-space: normal;
}

/* Karta
========================================================================== */

#hitta-hit {
	font-size: 0;
}

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

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

.footer .footer-top {
	max-width: 1200px;
	min-height: 280px;
	padding: 81px 20px 30px 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.footer-col-top {
	width: calc(100% / 3);
	max-width: 38rem;
	box-sizing: border-box;
	padding: 2rem;
}

.footer img {
	width: 230px;
	max-width: 100%;
	height: auto;
}

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

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

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

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

.footer p,
.footer a,
.footer li {
	font-size: 1.7rem;
	padding: 0;
	font-weight: 300;
	line-height: 1.6em;
	padding-bottom: 4px;
	color: #666666;
	text-decoration: none !important;
	font-family: 'Josefin Sans', sans-serif;
}

.footer h4 {
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-bottom: 1.2rem;
	color: #35aebc;
	font-weight: 700;
	padding-top: 0;
	letter-spacing: 1px;
}

.footer h3 {
	color: #35aebc;
}

.footer p.avvikande {
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    color: #333;
	border: 2px dotted #35aebc;
}

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

.footer a {
	display: inline-block;
	letter-spacing: normal;
	transition: .35s ease;
}

.footer a:hover {
	color: #36aebc;
	text-decoration: none !important;
}

.footer h3:before {
	display: none;
}

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

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

.footer .footer-bottom {
	border-top: 1px solid #eee;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	padding: 15px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
	max-width: 1200px;
	min-height: 100px;
	padding: 20px 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: space-between;
	flex-direction: row;
	line-height: 1rem;
}

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

.footer-col-bottom:nth-child(2) {
display: flex;
justify-content: flex-end;
}

.footer-col-bottom:first-child p {
	display: inline-block;
	font-size: 1.6rem;
	padding: 0;
	font-weight: 400;
	line-height: 1.6em;
	padding-bottom: 4px;
	color: #666666;
	text-decoration: none !important;
	font-family: 'Josefin Sans', sans-serif;
}

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

.footer-col-bottom:nth-child(2) p {
	text-align: right !important;
	font-size: 1.3rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
	justify-content: flex-end;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

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

@media only screen and (max-width:1100px) {
	.footer-col-top {
		width: calc(100% / 2);
	}
}

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

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

	.footer-col-bottom:nth-child(2) {
		justify-content: center;
		}

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

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

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

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