/* bxb group */

/* fonts */
@import url('//fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('//fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

/* animation*/
@import url('/aos-2.3.1/dist/aos.css');

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

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

body, body.isMobile .body-background {
    -webkit-font-smoothing: antialiased;
    background-position: center center;
	background-size: cover;
	overflow-x: hidden;
	font-family: 'Open Sans', sans-serif;
}

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

html {
	font-size: 62.5%;
}

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

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

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

/* Speciella paddings */
.LayoutPage .pt-0 .section-block,
.SubPage .pt-0 .section-block {
	padding-top: 0 !important;
}

.LayoutPage .pl-0 .section-block,
.SubPage .pl-0 .section-block {
	padding-left: 0 !important;
}

.LayoutPage .pr-0 .section-block,
.SubPage .pr-0 .section-block {
	padding-right: 0 !important;
}

/* Speciella bredder */

.LayoutPage .mw-none .section-block-wrapper {
	max-width: none;
}

.container {
	max-width: 100%;
}

.w-25 {
	width: 25rem;
}


@media only screen and (max-width: 1024px) {
	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
		padding: 11rem 6rem;
	}	
}

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

	.LayoutPage .pl-0 .section-block,
	.SubPage .pl-0 .section-block {
		padding-left: 2rem !important;
	}
	
	.LayoutPage .pr-0 .section-block,
	.SubPage .pr-0 .section-block {
		padding-right: 2rem !important;
	}
}

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

.btn {
    max-width: 20rem;
    width: auto;
    box-sizing: border-box;
    padding: 2.1rem 2.5rem;
    border-radius: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: normal;
    line-height: 1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    display: inline-block;
    border: none;
    display: block;
	font-family: inherit;
}

.btn:hover {
    border: 2px solid #60a5ba;
    color: #60a5ba !important;
}

.btn-primary {
	background-color: #B8688E;
	border: 1px solid #B8688E;
	color: #fff;
}

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

.btn-secondary {
	background-color: transparent;
	color: #fff;
	border: 1px solid #d6df74;
}

.btn-secondary:hover {
	color: #fff;
	border: 1px solid #0375BE;
	color: #fff !important;
}

.btn-yellow {
	background-color: #d6df74;
	border: 1px solid #d6df74;
	color: #111 !important;
}

.btn-yellow:hover {
	border: 1px solid #d6df74;
	background-color: transparent;
}

.btn-design {
	background-color: #83963E;
	border: 1px solid #83963E;
	color: #fff !important;
}

.btn-design:hover {
	border: 1px solid #83963E;
	background-color: transparent;
}

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

.btn-border:hover {
	color: #fff;
	border: 2px solid #0375BE;
}
    
    @media only screen and (max-width: 480px) {
        .btn {
            display: block;
            width: 100%;
        }
	}
	
/* Länk med pil */

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

/* knapp med cirkel */

.btn-wrapper {
	margin-top: 2rem;
	text-align: center;
}

.btn-wrapper a {
	margin: 0;
}

/**bouncing-arrow**/
svg {
    vertical-align: middle;
  }
  
  .scroll-down {
    margin-left: 50%;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    bottom: 3rem;
    left: -40px;
    color: #fff;
    background-color: transparent;
    width: 80px;
    border-radius: 50%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .scroll-down a {
      padding: 15px;
  }
  
  .scroll-down.svg svg {
    opacity: 1;
    width: 2.5rem;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
  }
  
  .scroll-down.svg .stroke {
    stroke: #fff;
  }
  
  .scroll-down.svg .scroller {
    fill: #fff;
    -webkit-animation: updown 2s infinite;
    -moz-animation: updown 2s infinite;
    -o-animation: updown 2s infinite;
    animation: updown 2s infinite;
  }
  @-webkit-keyframes updown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }
  @-moz-keyframes updown {
    0% {
        -moz-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -moz-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -moz-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }
  @-o-keyframes updown {
    0% {
        -o-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -o-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -o-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }
  @keyframes updown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }

/* ==========================================================================
Text och typsnitt
========================================================================== */
p, ul, li {
    color: #51555b;
    font-family: inherit;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: normal;
    text-transform: none;
}

ul {
	margin-block-start: 0;
	margin-block-end: 0;
}

li {
	list-style-type: circle;
}

a {
    font-family: inherit;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.7;
    display: block;
    letter-spacing: normal;
    text-transform: none;
}

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

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

.ingress {
    font-family: inherit;
    font-weight: 500;
    font-size: 1,8rem;
}

.text-label {
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
    font-size: 1.5rem;
    text-align: left;
    padding-bottom: 1rem;
    text-shadow: none;
    font-weight: 500;
    font-style: normal;
	font-family: inherit;
}

.ingress-title {
    text-align: left;
    font-weight: 800;
    text-align: left;
    max-width: 100rem;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.1;
}

.small-title {
	text-transform: none;
    font-size: 2.7rem;
	font-weight: 400;
	letter-spacing: normal;
	padding-bottom: 1rem;
}

.ingress-title {
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.5;
}

h1,h2,h3, h4, h5, h6 {
    font-family: inherit;
}

h1 {
    font-style: normal;
    font-weight: 600;
    font-style: normal;
    font-size: 4.5rem;
    letter-spacing: normal;
    line-height: 1.2;
}

h2 {
    font-style: normal;
    padding-bottom: 3rem;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
    font-weight: 400;
    font-size: 6rem;
    line-height: 1.4;
}

h3, .section-title {
    font-style: normal;
    padding-bottom: 2rem;
    text-align: left;
    font-weight: 700;
    font-size: 5rem;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: -2px;
}

h4 {
    font-size: 2.8rem;
    text-transform: none;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 400;
    padding-bottom: 1rem;
}

.handwritten {
	font-family: 'Caveat', cursive;
}

.smalltext-type {
	max-width: none;
}
.normaltext-type {
	max-width: none;
    margin: 0;
    text-align: center;
}

@media only screen and (max-width: 1080px) {
	h3, .section-title  {
		font-size: 4rem;
	}
}

@media only screen and (max-width: 630px) {
	h3, .section-title {
		font-size: 3.2rem;
	}

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

@media only screen and (max-width: 330px) {
	h3, .section-title {
		font-size: 2.8rem;
	}
}

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

.bg-primary, .bg-primary .section-block {
	background-color: #0375BE;
}

.bg-secondary, .bg-secondary .section-block {
	background-color: #0b2448;
}

.bg-primary *, .bg-secondary * {
	color: #fff;
}

.bg-dark, .bg-dark .section-block {
	background-color: #292c35;
}

.pink-color {
	color: #B8688E;
}

.primary-color {
	color: #f29dc4;
}

.secondary-color {
	color: #d6df74;
}

.light-color {
	color: #ECECD9;
}

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

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: #fff;
    box-shadow: none;
    margin-top: 0;
	height: 8rem;
}

header .container {
	max-width: none;
	padding: 0 2rem;
}

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

header .header-logo {
    width: 18rem;
    position: absolute;
    line-height: 0;
    padding-top: .5rem;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
}

nav.mainmenu {
	text-align: left;	
}

nav.mainmenu ul {
    text-align: left;
    left: 22rem;
    position: absolute;
}

nav.mainmenu ul.TemplateMenu > li {
	line-height: normal;
	height: auto;
}

nav.mainmenu ul.TemplateMenu > li:first-child {
    display: none;
}
.EditMode nav.mainmenu ul.TemplateMenu > li:first-child {
    display: inline-block;
} 

nav.mainmenu a {
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    font-size: 1.3rem;
    color: #222;
    text-transform: none;
    padding: 0 1.2rem;
    letter-spacing: normal;
    display: block;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    height: 8rem;
    line-height: 8rem;
}

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

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

nav.mainmenu li:hover a, 
nav.mainmenu li.active a,
header.scrolled nav.mainmenu .fab  {
	color: #f29dc4;
}  

/* Dropdown */
nav.mainmenu ul > li > ul {
	background-color: #f7f7f7;
	left: 0;
}

nav.mainmenu ul > li.expandable-li:hover > a {
	color: #f29dc4;
}

nav.mainmenu ul > li > ul > li {
	height: 3rem;
}

nav.mainmenu ul > li > ul > li > a {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 3rem;
	height: 3rem;
	letter-spacing: 0;
	padding: 0 2rem;
	color: #333;
	hyphens: auto;
	white-space: normal;
	text-transform: none;
}

nav.mainmenu li:hover li a {
	color: #333;
}

nav.mainmenu li:hover li a:hover {
	color: #f29dc4;
}

/* CTA Button */

.cta-menu {
	float: right;
	display: flex;
	align-items: center;
	height: 7.2rem;
	line-height: 7.2rem;
	transition: all 300ms linear;
}

.cta-menu .btn {
	padding: 1.4rem 2rem;
}

.cta-menu .fal {
	padding-right: .5rem;
}

.btn-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	width: 4rem;
    height: 4rem;
    margin-right: 1.2rem;
    letter-spacing: unset;
    padding: 0;
	border: none;	
	background-color: transparent;
	color: #B8688E; 
}

.btn-cta:hover {
	background-color: transparent;
	border: none;
	color: #f29dc4 !important;
	text-decoration: none;
}

.btn-cta::before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	font-size: 1.7rem;
	display: inline-block;
	position: relative;
	top: 1px;
}

.btn-cta::after {
	display: none;
}

.btn-social::before {
	font-family: 'Font Awesome 5 Brands';
	font-weight: 400;
}

.btn-social::after {
	display: none;
}

.icon-facebook::before {
	content: '\f39e';
}

.icon-map::before {
	content: '\f276';
}

.icon-instagram::before {
	content: '\f16d';
}

.icon-phone::before {
	content: '\f879';
}

@media only screen and (max-width: 1180px) {
	
	.cta-menu {
		position: relative;
		right: 6rem;
		height: 7.2rem;
		line-height: 7.2rem;
	}
	
	.cta-menu .btn {
		font-size: 1.2rem;
		padding: 1.4rem 2rem;
	}
}

@media only screen and (min-width: 1181px) {
    
    .hamburger {
        display: none;
    }
    
    .expandable:after {
	    font-family: 'Font Awesome 5 Pro';
	    font-weight: 700;
	    content: '\f0d7';
	    margin-left: 7px;
	    text-decoration: none;
	    display: inline-block;
	    font-size: .8em;
	    vertical-align: middle;
	}
}

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

	.dropdown-arrow-open {
		display: none;
	}

	nav.mainmenu ul > li > ul::after {
		display: none;
	}

	nav.mainmenu ul {
		left: 0;
	}

	header .job-item {
		/* top: .8rem; */
    	right: 7rem;
	}

	nav.mainmenu ul > li > ul > li.active {
		background-color: transparent !important;
	}
    
    /* Navigation */
	nav.mainmenu {
		text-align: left;
		display: none;
		position: fixed;
		height: 100%;
		right: 0;
		width: 30rem;
		left: auto;
		background-color: #FFF;
		z-index: 15;
		top: 0;
		box-shadow: none;
		overflow-y: scroll;
	}
	
	nav.mainmenu .Padding {
		margin: 8rem 0 !important;
	}
	
	nav.mainmenu li {
		text-align: left;
		display: block;
	}
	
	nav.mainmenu li a {
		margin: unset;
		padding: unset;
		padding-left: 3rem;
		font-size: 1.6rem;
		line-height: 3.7;
		height: 5rem;
	}
	
	#overlay {
	    position: fixed;
	    top: 0;
	    right: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0 , 0, 0.75);
	    z-index: 7;
	}
	
	/* Hamburger */
	.hamburger {
	    position: absolute;
	    z-index: 99;
	    left: auto;
	    right: 1rem;
	    top: .7rem;
	}
	
	.hamburger-inner, 
	.hamburger-inner::after, 
	.hamburger-inner::before {
		color: #000;
		background-color: #000;
	}
	
	/* Dropdown */
	nav.mainmenu ul > li > ul {
	    background-color: #fff !important;
	    width: auto !important;
	    border: none;
	}
	
	nav.mainmenu ul > li > ul {
		display: contents !important;
	}
	
	nav.mainmenu ul > li > ul > li a {
		color: #333 !important;
	}
	
	nav.mainmenu ul > li > ul > li > a {
		width: auto;
		padding: 0 0 0 6rem;
		font-size: 1.3rem;
		font-weight: 500;
	}
	
	nav.mainmenu ul > li.expandable-li:hover > a {
		padding-bottom: 0;
	}

	nav.mainmenu ul > li > ul > li > a, header.scrolled nav.mainmenu ul > li > ul > li > a {
		padding-left: 4rem;
	}
	 
	nav.mainmenu ul.TemplateMenu > li,
	.scrolled nav.mainmenu ul.TemplateMenu > li {
	    line-height: unset;
	    height: unset;
	}
	
}

@media only screen and (max-width: 768px) {
	
	header .header-logo {
		width: 18rem;
		padding: 1rem;
	}
	
	header .container {
		padding-left: 1rem;
	}
}

@media only screen and (max-width: 550px) {
	
	nav.mainmenu {
		width: 85%;
	}

	header .header-logo {
		width: 17rem;
	}

	.cta-menu {
		right: 5rem;
	}

	.cta-menu .btn {
		width: 10rem;
	}

	.cta-menu .btn-social {
		display: none;
	}

}

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

/* ==========================================================================
Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
	justify-content: center;
    min-height: 92vh;
	height: auto;
	background-color: rgb(232 132 177 / 70%);
}

.page-title-wrap {
    z-index: 2;
    position: static;
    transform: unset;
    max-width: none;
    padding: 5rem 0 0 0;
}

.page-title-wrap * {
	color: #fff;
}

.page-title-wrap h1 {
    font-size: 7.4rem;
	margin: 0 auto;
    font-weight: 800;
    line-height: 1;
	letter-spacing: -2px;
	padding-bottom: 1.7rem;
    font-family: 'Caveat', cursive;
	max-width: 90rem;
}

.page-title-wrap p {
	font-size: 2.1rem;
	font-weight: 400;
	max-width: 70rem;
	margin: 0 auto;
	text-align: center;
}

.page-title-wrap .btn-wrapper {
    display: flex;
    justify-content: center;
	text-align: center;
	margin: 0 auto;
	padding-top: 2rem;
}

.page-title-wrap .btn {
	margin: 0 1.5rem;
	width: 25rem;
}

.page-title-wrap .btn:hover {
	color: #fff !important;
}

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

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

	.page-title-wrap p {
		font-size: 1.8rem;
	}
}

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

	.page-title-wrap p {
		font-size: 1.6rem;
	}

	.page-title-wrap .btn-wrapper {
		flex-wrap: wrap;
	}

	.page-title-wrap .btn {
		width: 100%;
		max-width: 100%;
		margin-bottom: 1.5rem;
	}
}

@media only screen and (max-width: 330px) {
	.top-section {
		min-height: 110vh;
	}

	.page-title-wrap {
		padding-top: 8rem 3rem 3rem 3rem;
	}

	.page-title-wrap h1 {
		font-size: 3.5rem;
	}

	.page-title-wrap p {
		font-size: 1.5rem;
	}
}

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

.parallax {
    max-width: 100% !important;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	height: 55rem;
	background-image: url(https://www.applikatormaleri.se/assets/images/applikator-maleri-fargglada-hus-2000px.jpg);
}

@media only screen and (max-width: 630px) {
	.parallax {
		height: 45rem;
	}
}

/* CTA-list
========================================================================== */
.cta-list {
	position: absolute;
    z-index: 2;
    bottom: 5vh;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cta-list {
	background-color: transparent;
}


.cta-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.cta-list li {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
	height: auto;
	line-height: auto;
    position: relative;
    padding:0;
    -moz-transition: .3s ease-out;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}

.cta-list li a {
    width: auto;
    max-width: 70rem;
    padding: 1rem 4rem;
    background: #00867B;
    border: 2px solid #00867B;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    line-height: 8rem;
    -moz-transition: .3s ease-out;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
	font-family: inherit;
    text-transform: uppercase;
    letter-spacing: normal;
    font-size: 1.8rem;
}

.cta-list li a:hover { 
	color: #fff; 
	text-decoration: none !important; 
	background: #111;
	border: 2px solid #111; 
}

.cta-list li:first-child a {
	color:#fff;
	background: #0375BE;
	border: 2px solid #0375BE;
}

.cta-list li:first-child a:hover {
	background:#111;
	border-color:#111;
}

@media only screen and (max-width:696px) {
	.cta-list {
		display: none;
	}
}

/* Funktion: Scroll down
========================================================================== */
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
	  -moz-transform: translateY(0);
	  transform: translateY(0);
	}
	40% {
	  -moz-transform: translateY(-30px);
	  transform: translateY(-30px);
	}
	60% {
	  -moz-transform: translateY(-15px);
	  transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
	40% {
	  -webkit-transform: translateY(-30px);
	  transform: translateY(-30px);
	}
	60% {
	  -webkit-transform: translateY(-15px);
	  transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-moz-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}  

.arrow {
position: absolute;
bottom: 4.5%;
margin-left: 50%;
left: -2rem;
width: 3rem;
height: 3rem;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
background-size: contain;
}

.SubPage .arrow {
	display: none;
}

.bounce {
	-moz-animation: bounce 3.5s infinite;
	-webkit-animation: bounce 3.5s infinite;
	animation: bounce 3.5s infinite;
}

@media only screen and (max-width: 630px) {
	.arrow {
		display: none;
	}
}


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

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

.split-image.mh-65 {
	max-height: 65rem;
}

@supports (object-fit: cover) {
    .split-image img {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 1100px) {
	.split-content {
	    width: 50%;
		text-align: left;
		padding: 5rem;
	}
}

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

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

/* Om oss
========================================================================== */
.about {
	overflow: hidden;
}

.about .section-block {
	padding-left: 0;
	padding-top: 0;
}

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

.about .split-content {
	padding: 10rem;
}

.about .split-image {
	max-height: 60rem;
}

.about .section-title {
	font-family: 'Caveat', cursive;
	font-size: 6.5rem;
}

.about p {
	font-size: 2.1rem;
}

@media only screen and (max-width: 1200px) {
	.about .split-content {
		padding: 6rem;
	}

	.about .section-title {
		font-size: 5rem;
	}

	.about p {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 1000px) {
	.about .section-block {
		padding-right: 0;
		padding-bottom: 0;
	}
}

@media only screen and (max-width: 980px) {
	.about .split-content {
		padding: 6rem 4rem;
	}
}

@media only screen and (max-width: 630px) {
	.about .split-content {
		padding: 5rem 2.5rem;
	}
}

/* Tjänster
========================================================================== */
.services {
	position: relative
}

.services .section-block {
	padding-top: 0;
}

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

.services-wrap .service-box {
    width: calc(100% / 2 - 4rem);
    margin: 2rem;
    text-align: left;
	padding: 0;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
	position: relative;
	text-decoration: none !important;
	margin-top: -8rem;	
}

.services-wrap .service-text {
    padding: 4rem 6rem;
	background-color: #B8688E;
    width: 80%;
    margin: 0 auto;
    margin-top: -7rem;
    z-index: 5;
    position: relative;
	min-height: 38rem;
	display: flex;
	align-self: center;
}

.services-wrap .text-label {
    color: #fff;
    font-family: 'Caveat', cursive;
    text-transform: none;
    font-size: 3.3rem;
}

.services-wrap .service-image {
	height: 42rem;
	overflow: hidden;
	width: 100%;
}

.services-wrap .service-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.services-wrap .service-text img {
    margin-bottom: 2rem;
    max-width: 12rem !important;
}

.services-wrap * {
	text-align: center;
}

.services-wrap p {
	color: #fff;
}

.services-wrap h4 {
	font-size: 2rem;
	text-transform: none;
	font-weight: 600;
}

.services-wrap p {
	padding: 0;
	font-size: 1.45rem;
}

.services .arrow-link {
    font-weight: 800;
    font-style: normal;
    text-decoration: none;
    font-size: 1.45rem;
    line-height: 1.7;
    display: block;
    letter-spacing: normal;
    text-transform: none;
	margin-top: 1.5rem;
}

@media only screen and (max-width: 1440px) {
	.services .service-text {
		min-height: 40rem;
		width: 88%;
	}
}

@media only screen and (max-width: 1330px) {
	.services .service-text {
		min-height: 45rem;
	}
}

@media only screen and (max-width: 1200px) {
	.services .service-text {
		min-height: 45rem;
		padding: 4rem;
	}
}

@media only screen and (max-width:1100px) {
	
	.services-wrap h4 {
		font-size: 2rem;
	}

	.services-wrap .service-box {
	    width: 100%;
	    margin-bottom: 4rem;
		margin-top: 0;
	}

	.services-wrap .service-box:nth-child(1) {
		margin-top: -8rem;
	}

	.services-wrap .service-text {
		min-height: fit-content;
		padding: 5rem;
	}
}

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

	.services .section-block {
		padding: 5rem 2rem;
	}

	.services-wrap .service-box {
		margin-right: 0;
		margin-left: 0;
	}

	.services-wrap .service-text {
		padding: 4rem 2rem;
		width: 92%;
    }	

	.services-wrap .service-box:nth-child(1) {
		margin-right: 0;
		margin-left: 0;
	}

}

/* Partners
========================================================================== */
.partners-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.partners-wrap {
	width: 25%;
	margin: 0;
	text-align: center;
}

.partners-wrap img {
    filter: grayscale() opacity(.5);
    transform: scale(.94);
    transition: 0.2s ease-in-out;
    width: auto;
    max-height: 12rem;
}

.partners-wrap img:hover {
	opacity: 1;
	filter: none;
	transform: scale(1);
} 

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

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

	.partners .section-block {
		padding: 6rem 3rem;
	}

	.partners-wrap img {
		max-height: 8rem;
	}
}

@media only screen and (max-width: 500px) {
	.partners-wrapper {
		flex-wrap: wrap;
	}

	.partners-wrapper .partners-wrap {
		width: 100%;
	}
}

/* Referenser
========================================================================== */
.references .section-block {
	padding-bottom: 23rem;
	padding-left: 0;
}

.references .section-block-wrapper {
	max-width: none;
}

.client-split-slider {
	display: flex;
	align-items: flex-end;
}

.client-split-image-wrapper {
	width: 65%;
}

.client-split-text-wrapper {
	position: relative;
	width: 45%;
	margin-left: -10%;
	bottom: -10rem;
	padding: 5rem;
	background-color: #FFF;
}

.client-text h2 {
	font-size: 1.6rem;
	padding: 0 0 .3em;
	color: #f29dc4;
}

.client-text-name {
	font-size: 4rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	font-family: 'Caveat', cursive;
}

.client-text p {
	max-width: 45rem;
	font-size: 1.6rem;
}

.client-split-slider .slick-next {
	right: auto;
	left: 8rem;
	top: auto;
	bottom: -8rem;
}

.client-split-slider .slick-prev {
	left: 3rem;
	top: auto;
	bottom: -8rem;
}

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

	.client-split-slider {
		flex-wrap: wrap;
	}

	.client-split-image-wrapper {
		width: 100%;
	}

	.client-split-text-wrapper {
		position: relative;
		width: 60%;
		margin-left: 30%;
		bottom: auto;
		top: 5rem;
	}
}

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

	.client-split-text-wrapper {
		width: 100%;
		top: 0;
		margin: 0;
		padding: 5rem 0;
	}

	.client-split-slider .slick-next {
		right: 0;
		left: auto;
		top: auto;
		bottom: -6rem;
	}

	.client-split-slider .slick-prev {
		left: auto;
		right: 5rem;
		top: auto;
		bottom: -6rem;
	}

	.client-split-slider .slick-dots {
		width: auto;
	}

	.client-split-slider .slick-dots li {
		width: 1rem;
	}
}

/* Client Slider
========================================================================== */

.full-width-textblock {
	max-width: calc(100% - 20rem);
	width: 100%;
	padding: 0 2.5rem;
	margin: 0 auto;
}

.client-section {
	overflow: hidden;
}

.client-section .section-block {
	padding: 15rem 0;
}

.client-section .section-block-wrapper {
	max-width: none;
}

.client-slider-container {
	position: relative;
	width: 100%;
	padding: 0 5rem;
}

.client-card {
	margin: 0 2rem;
}

.client-link {
	font-size: 0;
}

.client-image {
	position: relative;
}

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

	.client-slider-container {
		padding: 0 2rem;
	}

	.client-card {
		margin: 0 1rem;
	}

	.full-width-textblock {
		max-width: calc(100% - 4rem);
		padding: 0;
	}
}

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

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

/* Slick Settings */

.client-section .slick-list {
	overflow: visible;
}

.slick-prev,
.slick-next {
	z-index: 2;
	background-color: #ffffff;
}

.slick-prev,
.slick-next {
	width: 4rem;
	height: 4rem;
	border: 1px solid #FFF;
	background-color: #FFF;
	border-radius: 0;
}

.slick-prev:hover,
.slick-next:hover {
	border: 1px solid #f29dc4;
	background-color: #fff;
}

.slick-prev:focus,
.slick-next:focus {
	border: 1px solid #FFF;
	background-color: #FFF;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
	opacity: .5;
}

.slick-prev {
	left: 5rem;
}

.slick-next {
	right: 5rem;
}

.slick-prev:before,
.slick-next:before {
	color: #f29dc4;
	font-family: 'Font Awesome 5 Pro';

}

.slick-prev::before {
	content: '\f104';
}

.slick-next::before {
	content: '\f105';
}

.slick-dots li button:before {
	color: #005677 !important;
}


@media only screen and (max-width: 1024px) {
	.slick-prev {
		left: 2.5rem;
	}

	.slick-next {
		right: 2.5rem;
	}
}

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

.parallax-section {
	max-width: 100% !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	height: auto;
}

.SubPage  .parallax-section .section-block {
	background-color: rgb(232 132 177 / 85%);
}

/* Intro section
========================================================================== */
.SubPage .intro-section .section-block {
	padding-top: 16rem;
}

/* Header img + title
========================================================================== */
.header-img {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom 5%;
    background-attachment: fixed;
	background-image: url(https://www.applikatormaleri.se/assets/images/applikator-maleri-rosa-farg-pensel-2000px.jpg);
	position: relative;
	height: 50vh;
}

.SubPage .header-img .section-block {
	height: 50vh;
    background-color: rgb(232 132 177 / 70%);
    position: relative;
}

@media only screen and (min-width: 1580px) {
	.SubPage .header-img .section-block {
		min-height: 45vh;
	}
}

/* Intro section med bild + ÃƒÂ¶verlappande textruta
========================================================================== */
.SubPage .cta-section .section-block {
    padding-top: 0 ;
}

.EditMode .cta-section .section-block {
    padding-top: 30rem;
}

.intro-section-cta *,
.intro-section-cta li {
    color: #fff;
}

.intro-section-cta {
    max-width: 110rem;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.intro-cta-wrap {
	background-color: #B8688E;
    padding: 6rem;
	margin-top: -10rem;
}

.intro-section-cta p {
    max-width: 95rem;
    margin: 0;
	font-size: 1.6rem;
}

@media screen and (max-width: 910px) {
	
	.intro-section-cta {
		flex-direction: column;
	}
	
	.intro-section-cta .lead {
		padding: 0 0 2rem 0;
		text-align: center;
	}

	.intro-cta-wrap {
		padding: 4rem;
	}
}

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

    .SubPage .cta-section .section-block {
        padding: 0;
    }

    .intro-image-wrapper {
        padding-top: 6rem;
        height: auto;
    }

	.intro-section-cta {
        padding: 3rem 0;
        width: 90%;
    }
    
    .intro-image-wrapper img {
        object-fit: cover;
    }

	.intro-cta-wrap {
		padding: 3rem;
	}
}

@media screen and (max-width: 480px) {
	.intro-section-cta .btn {
		padding: 1.6rem;
		text-align: center;
	}

	.intro-cta-wrap {
		padding: 2rem;
	}
}

/* Hero section, split image and text
========================================================================== */
.LayoutPage .hero-split .section-block-wrapper {
	max-width: none;
}

.EditMode .LayoutPage .hero-split .section-block-wrapper {
	max-width: 120rem;
}

.LayoutPage .hero-split {
	background: transparent;
}

.LayoutPage .hero-split .section-block {
	padding: 15rem 3rem 8rem 3rem; 
	background: linear-gradient(to left, rgb(184 104 142 / 70%) 60%, #fff 40%);
	backdrop-filter: blur(6px);
}

.LayoutPage .hero-split .split-image img {
	min-height: 45rem;
	outline: 1px solid #fff;
    outline-offset: -11px;
}

.LayoutPage .hero-split .split-content {
	align-self: center;
}

.LayoutPage .hero-split .normaltext-type {
	max-width: none;
	text-align:left;
}

.LayoutPage .hero-split .section-title {
	font-family: 'Caveat', cursive;
	font-size: 6rem;
	color: #fff;
	line-height: 1.2;
}

.LayoutPage .hero-split .text-label {
	padding-bottom: 3rem;
	font-weight: 600;
}

.LayoutPage .hero-split h1, .LayoutPage .hero-split p {
	color: #fff;
	max-width: 70rem;
}

.LayoutPage .hero-split .text-label {
	padding-bottom: 1rem;
}

@media only screen and (max-width: 1000px) {
	.LayoutPage .hero-split .section-block {
		background: linear-gradient(to left, rgb(184 104 142 / 70%) 100%, #fff 0);
	}

	.LayoutPage .hero-split .split-content {
		padding-left: 0;
		padding-right: 0;
	}
}

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

	.LayoutPage .hero-split .section-block {
		padding-top: 12rem;
	}

	.LayoutPage .hero-split .section-title {
		font-size: 4.5rem;
	}
}

/* ==========================================================================
Undersida > Verksamhetssystem
========================================================================== */
.sub-verksamhet .split-section .section-block {
	padding-top: 0;
}

/* .sub-verksamhet .split-section .section-block-wrapper {
	max-width: 120rem;
} */

.sub-verksamhet .split-section .small-title {
	text-align: left;
}

.sub-verksamhet .split-wrapper .split-content {
	align-self: flex-start;
	padding-top: 0;
	padding-bottom: 0;
}

.sub-verksamhet .parallax-section {
	background-image: url(https://www.applikatormaleri.se/assets/images/applikator-maleri-vit-vagg-2000px.jpg);
}

.sub-verksamhet .kvalitet-logo {
	max-height: 11rem;
	margin-bottom: 4rem;
	margin-top: 1rem;
	width: auto;
}

.sub-verksamhet .split-section .arrow-link {
	color: #B8688E;
    font-size: 1.5rem;
	margin-bottom: 2rem;
    font-weight: 700;
}

.sub-verksamhet .split-section .fal {
	width: 2rem;
}

.parallax-section p {
	font-size: 2.2rem;
	max-width: 85rem;
	margin: 0 auto;
	color: #fff;
	padding-bottom: 0;
}

@media only screen and (max-width: 800px) {
	.parallax-section p {
		font-size: 1.7rem;
		max-width: none;
		padding: 2rem;
	}

	.sub-verksamhet .split-wrapper .split-content {
		padding-left: 0;
		padding-right: 0;
	}
}

/* ==========================================================================
Undersida > Vi söker
========================================================================== */
.sub-work .hero-split .split-image {
	max-height: 50rem;
}

.sub-work .hero-split a {
	color: #fff;
	display: inline-block;
	font-family: inherit;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: normal;
    text-transform: none;
}

/* ==========================================================================
Undersidor > Kontakt
========================================================================== */
/* Ikoner med kontaktuppgifter
========================================================================== */
.sub-contact .intro-section .section-block {
	padding-bottom: 0;
}

.sub-contact .contact-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 5rem;
    flex-wrap: wrap;
}

.sub-contact .contact-wrap {
    width: calc(100% / 3 - 4rem);
    margin: 2rem;
    text-align: center;
    transition: 0.2s ease-in-out;
}

.sub-contact .contact-wrap p {
	padding-top: 0;
}

.sub-contact .contact-wrap .smaller-text {
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	padding-bottom: 0;
}

.sub-contact .contact-icon {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
}

.sub-contact .contact-wrapper i {
	color: #f29dc4;
    font-size: 5rem;
    padding-bottom: 1rem;
}

.sub-contact .contact-wrapper a {
	font-size: 1.6rem;
}

.sub-contact .contact-wrapper a:hover {
	text-decoration: underline;
}

.sub-contact .contact-text * {
    text-align: center;
}

@media only screen and (max-width: 800px) {
	.sub-contact .contact-wrap {
		width: 100%;
		padding-bottom: 3rem;
	}
}


/* Team section
========================================================================== */
.sub-team .team-section .section-block {
	padding-top: 0;
}

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

.team-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-items: center;
}

.team-wrap .service-box {
    width: calc(100% / 3 - 4rem);
	margin: 0 2rem 2rem 2rem;
    text-align: left;
	padding: 0 3rem 3rem 3rem;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
	position: relative;
	text-decoration: none !important;	
}

.team-wrap .service-text {
    padding: 2.5rem 0;
    margin: 0 auto;
    border-top: 1px solid #B8688E;
    margin-top: 3rem;
}

.team-wrap .service-image {
	height: 30rem;
	overflow: hidden;
	width: 100%;
}

.team-wrap .service-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.team-wrap  * {
	text-align: left;
}

.team-wrap .small-title {
    padding-bottom: .3rem;
    line-height: 1;
    font-size: 2.2rem;
    font-weight: 400;
    color: #B8688E;
}

.team-wrap .team-title {
	font-size: 1.4rem;
	padding-bottom: .5rem;
}

.team-wrap p, .team-wrap a {
	padding: 0;
	font-size: 1.3rem;
}

.team-wrap .service-info h3:after {
	border-bottom: 1px solid #089AAF;
    content: "";
    display: inline-block;
    height: .1em;
    position: relative;
    vertical-align: middle;
    width: 70px;
    margin-bottom: .15em;
    left: 13px;
    margin-left: 13px;
}

.service-box:hover .service-link {
	background-color: #81bb81;
}

@media only screen and (max-width:1200px) {	
	.team-wrap h4 {
		font-size: 2rem;
	}

	.team-wrap .service-image {
		padding: 2rem;
	}

	.team-wrap .service-box {
		width: calc(100% / 2 - 4rem);
	}
}

@media only screen and (max-width:750px) {
	.team-wrap .service-text {
    	padding: 0;
    	padding-top: 2rem;
    }	
    
    .team-wrap .service-box {
	    width: 100%;
	    margin-bottom: 2rem;
	}
}



/* ==========================================================================
Undersida > Bildgalleri
========================================================================== */
.gallery-section h2 {
	text-align: left;
	margin-left: 5rem;
	font-family: 'Caveat', cursive;
	margin-bottom: 1.5rem;
	font-size: 4rem;
}

.gallery-section h2::before {
    border-bottom: 5px solid #F4B3D2;
    content: "";
    display: inline-block;
    height: 0.1em;
    position: relative;
    vertical-align: middle;
    width: 5rem;
    margin-bottom: 0.15em;
    right: 1.3rem;
    margin-left: 1.3rem;
}

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

.gallery-item {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

@media only screen and (min-width: 700px) {
    .gallery-item {
        width: calc(100% / 5);
    }
}

.gallery-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
    min-height: 40rem;
    height: 100%;
}

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

.gallery-image-wrapper {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
}

.gallery-image-wrapper::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
	background-color: rgb(78 44 61 / 50%);
    position: absolute;
    bottom: 0;
    transition: all 0.3s ease;
}

.gallery-link:hover .gallery-image-wrapper::after {
	background-color: rgb(78 44 61 / 80%);
    transition: all 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.gallery-text-wrapper {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-title::before {
    content: none;
}

.gallery-title {
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 3px;
    font-size: 1.7rem;
    text-align: left;
    padding-bottom: 1rem;
    text-shadow: none;
    font-weight: 700;
    font-style: normal;
    font-family: inherit;
	text-align: center;
	color: #fff;
}

.gallery-lead {
    color: #fff;
}

.gallery-item .btn-wrapper {
    margin-top: 10rem;
}

@media only screen and (max-width: 696px) {
    .gallery-wrapper {
        margin: 4rem 0 0;
    }

    .gallery-item {
        width: 50% !important;
    }

    .gallery-link { 
        min-height: 15rem;
    }
    .gallert-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .gallery-item {
        padding: 0;
        width: 100% !important;
    }
}

/* ==========================================================================
Undersida > fönsterrenovering 
========================================================================== */
.sub-windows .hero-split .split-image {
	max-height: 70rem;
}

.sub-windows .window-split .section-block {
	padding-right: 0;
}

.sub-windows .window-split .section-block-wrapper {
	max-width: none;
}

.sub-windows .window-split .split-image {
	max-height: 65rem;
}

.sub-windows .parallax-section {
	background-image: url(https://www.applikatormaleri.se/assets/images/applikator-maleri-rosa-farg-pensel-2000px.jpg);
}

@media only screen and (max-width: 1000px) {
	.sub-windows .window-split .section-block {
		padding-left: 0;
		padding-bottom: 0;
		padding-top: 0;
	}
}

/* ==========================================================================
Undersida > policys 
========================================================================== */

.sub-policy .policy-section .section-block {
    padding-top: 15rem;
}

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

.sub-policy .policy-section * {
    text-align: left;
}

.sub-policy .policy-section h1 {
	font-size: 3.5rem;
}

.sub-policy .policy-section .small-title {
    padding-top: 2rem;
    font-size: 1.9rem;
    font-weight: 600;
}

.sub-policy .policy-section p, .sub-policy .policy-section a, .sub-policy .policy-section li {
    color: #777;
    font-size: 1.6rem;
}

/* ==========================================================================
Startsida: Instagram
========================================================================== */
.instagram-wrapper {
	max-width: 100%;
    overflow: hidden;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background: #B8688E;
    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: none;
    min-height: 20rem;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-col-top {
    width: 27%;
    padding: 8rem 6rem;
}

.footer-col-top:nth-child(2) {
    width: 45%;
}

.footer .sigill {
    margin-top: 1rem;
	width: 25rem;
}

.footer-col-top:nth-child(1) {
    background: #fff;
    border-bottom-right-radius: 5rem;
	padding: 6rem 3rem;
}

.footer-col-top:nth-child(1) p,
.footer-col-top:nth-child(1) a {
	color: #111;
	font-size: 1.3rem;
}

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

.col-offices .footer-nav li a:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    content: '\f276';
    margin-right: 2rem;
    text-decoration: none;
    display: inline-block;
    color: #B8688E;
}


.footer .footer-heading {
    padding-bottom: 2rem;
    color: #fff;
    letter-spacing: 0.3rem;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
    font-size: 2.3rem;
	padding-bottom: 1rem;
}

.footer .snabbfakta-heading {
	margin-top: 2rem;
}

.footer .fal {
    color:#abcb59;
    width: 3rem;
    font-size: 1.7rem;
}

.footer p, 
.footer li,
.footer a {
    font-size: 1.4rem;
    padding: 0;
    font-weight: 400;
    line-height: 1.6;
    padding-bottom: 4px;
    color: #fff;
    text-decoration: none !important;
    max-width: 60rem;
}

.footer .col-first p {
    padding-bottom: .8rem;
}

.footer .footer-col-top:nth-child(3) a {
    font-size: 1.3rem;
    padding: 0;
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 4px;
    color: #fff;
}

.footer img {

	margin-top: 2rem;
} 

.footer .applikator-logo {
	width: 20rem;
    height: auto;
    padding-bottom: 3rem;
}

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

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

.footer .footer-bottom {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding: 15px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #B8688E;
    max-width: none;
    min-height: 0;
    padding: 2rem 5rem;
    box-sizing: border-box;	
    font-size: .55rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 1;
}

.footer-col-bottom {
    box-sizing: border-box;
    align-self: center;
    display: inline-flex;
}

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

.footer-col-bottom p {
    color:#fff;
    padding: 0;
}

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

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

.footer a {
    display: inline-block;
}

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

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

@media only screen and (max-width:1100px) {	
.footer-col-top {
    width: 25%;
    padding:8rem 2rem;
}
}

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

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

.footer-col-top,
.footer-col-top:nth-child(1),
.footer-col-top:nth-child(2) {
    width: 100%;
}

.footer-col-top:nth-child(2) {
    padding-bottom:0;
}

.footer-col-top:nth-child(3) {
	padding-top: 3rem;
	padding-bottom: 1rem;
}

.footer-col-bottom {
    width: 100%;
    margin: 1rem 0; 
}

.footer h4 {
    padding-bottom: 1rem;
}

}