:root {
	--color-primary-accent: #FF7800;
	--color-secondary-accent:#FFA04C;
	--color-gradient-start:#FF902D;
	--color-gradient-end:#FF7700;
	--color-base-text:#414042;
	--color-base-invert:#fff;
	--color-secondary-text:#999999;
	--shadow-box: 0 4px 16px 0 rgba(0,0,0,0.12);
}

/* latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 200 700;
	font-display: swap;
	src: url('../fonts/TK3iWkUHHAIjg752GT8G.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



/* ---- reset ---- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
    font-weight: 400;
}

/*  General-Start   */

html {
    width: 100%;    
    overflow-x: hidden;
    font-display:swap;
	font-family:'Montserrat', sans-serif;
	font-size: 16px;
	color:var(--color-base-text);
	scroll-behavior: smooth;
}

body{
	padding-top:55px
}

h1, h2{
	font-weight:900;
	font-size:2.2rem;
	margin-bottom:1em;
	text-wrap: balance;
}

h1 .color-badge{
	display: inline-block;
	font-weight:900;
	background: linear-gradient(0deg,var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
	padding:3px 12px;
	border-radius:12px;
	transform: rotate(-3deg);
	transform-origin: left bottom;
	margin:8px 0;
	
	span{
		font-weight:900;
		color: #db3aad;
		background-image: linear-gradient(90deg, #C75520, #772600 100%);
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}

h3, .static-page h2{
	font-weight:700;
	font-size:1.3rem;
}

strong{
	font-weight: bold;
}

a{
	text-decoration:none;
	color:var(--color-primary-accent);
	
	&.text-link{
		text-decoration: underline;
	}
}

p{
	line-height:1.667rem;
	margin-bottom:calc((1.4em - 1em) * 2 + 1em);
	
	&:last-child{
		margin-bottom:0;
	}
	
	&.paragraph-short{
		max-width:1100px;
	}
}

img{
	max-width:100%;
}

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

.button{
	display: inline-flex;	
	text-align: center;
	align-items: center;
	height: 72px;
	padding:0 40px;
	font-size:1.1rem;
	font-weight:700;
	color:var(--color-base-invert);
	background-color: var(--color-primary-accent);
	border-radius:64px;
	text-wrap: balance;
}

.static-page ul{
	padding-left:20px;
}

.card-list{
	list-style:none;
	
	li{
		background: var(--color-secondary-accent);
		padding:10px;
		box-shadow: 0 8px 16px 0 rgba(0,0,0,0.08);
		border-radius:16px;		
		margin-bottom:24px;
		
		
		i{
			display:block;
		}
	}
}

.colored-background{
	background: var(--color-gradient-start);
	background: linear-gradient(0deg,var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
	color:var(--color-base-invert);
	
	&.colored-background-invert{
		background: var(--color-gradient-end);
		background: linear-gradient(0deg,var(--color-gradient-end) 0%, var(--color-gradient-start) 100%);
	}

	.button{
		background-color: var(--color-base-invert);
		color: var(--color-primary-accent);
	}
	
	header .subhead, a{
		color: var(--color-base-invert);
	}
}

section{
	padding:60px 0;
	position: relative;
}

section header{
	display:flex;;
	flex-direction: column-reverse;
	
	.subhead{
		font-family: 'Oswald', sans-serif!important;
		font-size:12px;
		text-transform: uppercase;
		font-weight:500;
		color:var(--color-primary-accent);
		margin-bottom:8px;
	}
}

.form{	
	textarea{
		width:100%;
	}
	
	button[type="submit"]{
		cursor:pointer;
	}
}

.container{
	width:100%;
	max-width:1520px;
	padding: 0 10px;
	margin:0 auto;
	
	&.container-short{
		max-width:950px;
	}
}

#page-header{
	position:relative;
	z-index:2;
}
#header-nav{
	display:flex;
	flex-direction: column;
	align-items: flex-end;
	position:fixed;	
}

#hamburger {
	background: 0 0;
	border: none;
	height: 74px;
	width: 65px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	right:0px;
	top:64px;
	z-index: 2;
	background-color:rgba(255,255,255,0.7);
	border-top-left-radius:8px;
	border-bottom-left-radius:8px;
}

#hamburger span {
	width: 22px;
	height: 0;
	display: block;
	position: relative;
	left: 0;
	border-bottom: 1.5px solid #323238;
	transition: .3s ease transform;
}

#hamburger span:nth-child(1) {
	border-top: 1.5px solid #323238;
	border-bottom: none;
	top: -5px;
	transform-origin: left center;
}

#hamburger span:nth-child(2) {
	transition: .3s ease transform;
	transform-origin: center;
}

#hamburger span:nth-child(3) {
	top: 5px;
	transform-origin: left center;
}

.nav-active #hamburger span:nth-child(1) {
	transform: rotate(45deg) translateX(1px) translateY(-2px);
	transform-origin: left center;
	transition: .3s ease transform;
}

.nav-active #hamburger span:nth-child(2) {
	transform: scaleX(0);
	transition: .3s ease transform;
}

.nav-active #hamburger span:nth-child(3) {
	transform: rotate(-45deg) translateX(0) translateY(3px);
	transform-origin: left center;
	transition: .3s ease transform;
}

#navigation{
	position: fixed;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	list-style: none;
	margin-top:-100vh;
	padding-top:140px;
	background-color:var(--color-primary-accent);
	transition: margin-top .4s ease-out;

	a {
		display:block;
		text-align:center;
		padding:20px;
		font-size: 16px;
		color: var(--color-base-invert);
		font-weight:700;
	}
}

.nav-active #navigation{
	margin-top:0px;
	
	div span{
		height:100%;
	}
}

.grid-container{
	display: grid;
	gap:20px;
}

main{
	position:relative;
	z-index:1;
}

#hero{
	position:relative;
	padding-bottom:0;
	padding-top:60px;
	overflow:hidden;
	
	&:after{
		content:'';
		position:absolute;
		top:100%;
		left:-10%;
		right:-10%;
		height:200px;
		transform:rotate(-8deg);
		transform-origin: left top;
		background-color:var(--color-gradient-end);
		z-index:3;
	}
}

#hero-logo{
	margin-bottom:50px;
	max-width:360px;
}

.hero-left{
	z-index: 2;
}

.hero-right{
	position:relative;
	margin-top:40px;
	text-align: center;
	background-image:url(../images/farbklecks.svg);
	background-repeat: no-repeat;
	background-size: 530px auto;
	background-position: center center;
	margin-left: -10px;
	margin-right: -10px;
	z-index: 1;
}

#hero-portrait{
	max-width:220px;
	margin-bottom:-50px
}

#hero-badge{
	position:absolute;
	left:60%;
	top:-30px;
	width:150px;
	height:auto;
}

#services ul{
	list-style:none;
	padding:0;
}

.info-box{
	border-radius:16px;
	background-color:var(--color-base-invert);	
	color:var(--color-base-text);
	text-align: center;
	padding-bottom:24px;
	position:relative;
	overflow:hidden;
	box-shadow:var(--shadow-box);
	
	h3{
		font-weight:700;
		padding:24px 20px 16px;
	}
	
	img{
		display:block;
		border-top-left-radius:16px;
		border-top-right-radius: 16px;
		margin-bottom:-35px;
		max-height: 305px;
		object-fit: cover;
		width: 100%;
	}

	img + p{
		background: #FFFFFF;
		background: linear-gradient(90deg,rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
		padding-top:25px;
		margin-bottom:16px;
		backdrop-filter: blur(8px);
	}
	
	p{
		padding-left:30px;
		padding-right:30px;
	}
	
	button{
		border:none;
		background-color:transparent;
		color:var(--color-primary-accent);
		font-family: 'Montserrat', sans-serif;
		font-size:1rem;
		text-decoration:underline;
		cursor:pointer;
		
		span{
			font-weight:700;
		}
		
		.opened{
			display:none;
			opacity: 0;
		}
		
		&[aria-expanded='true'] {
			.opened {
				display: block;
				opacity: 1;
			}
			
			.closed{
				display:none;
				opacity: 0;
			}
		}
	}
	
	.disclosure-panel{
		position:absolute;
		top:65px;
		bottom: 65px;
		padding-top:16px;
		overflow:hidden;

		.disclosure-content{
			height:100%;
			overflow-x:auto;
		}
		
		.background{
			background:#fff;
			background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
			position:absolute;
			left:0;
			right:0;
			height:calc(100% + 100px);
			bottom:0;
			transition:height .6s ease
		}
		
		p{
			opacity:1;
			text-align:left;
			position:relative;
			transition:opacity .3s .2s ease-in;
			cursor:default;
		}
		
		&.is-collapsed .disclosure-content{
			overflow: hidden;
		}
		
		&.is-collapsed .background{
			height:0;
			background: #FFF;
			transition:height .3s ease
		}
		
		&.is-collapsed p{
			opacity:0;
			transition:opacity .3s ease-out
		}
	}
}

#services .grid-md-double{
	position:relative;
	background-color:var(--color-primary-accent);
	border:1px solid var(--color-base-invert);
	border-radius:16px;
	padding:50px 20px 35px;
	margin:20px 0;
	text-align:center;
	
	h3{
		margin-bottom: calc((1.4em - 1em) * 2 + 1em);
		line-height:1.667em;
	}

	p{
		font-size:1.3rem;
		line-height:1.667em;
	}
	
	&:before{
		content:'';
		position:absolute;
		top: -35px;
		left: calc(50% - 35px);
		width:70px;
		height:70px;
		background-image:url(../images/icon-info.svg);
	}
}

.promises-container {
	list-style:none;
	margin-top:60px;	
	gap:60px;
	
	li{
		max-width:380px;
		text-align: center;
		margin:0 auto;
		
		img {
			width: 100px;
			height: auto;
			display: block;
			margin: 0 auto 20px;
		}
		
		h3{
			color:var(--color-primary-accent);
			margin-bottom:15px;
			font-size:1rem;
			
			&:after{
				content:url('../images/icon-check-small.svg');
				display:inline-block;
				width:15px;
				vertical-align:super;
				margin-left:5px;
			}
		}
		
		p{
			text-wrap: balance;
		}
	}
}

#quote{
	text-align: center;
	img{
		display:block;
		margin:0 auto 40px;
		width:157px;
		height:auto;
	}
	
	blockquote{		
		margin-bottom:40px;
		
		p{
			font-size:1.3rem;
			font-weight:700;
			line-height:1.71em;
			margin-bottom:24px;
		}

		footer{
			font-family: 'Oswald', sans-serif;
			font-size:.778rem;
			line-height:2em;
			letter-spacing:2px;
			
			strong{
				font-family:'Montserrat', sans-serif;
				font-size:1rem;
				letter-spacing: normal;
			}
		}
	}
	
	&.brush{
		margin-top:40px;
	}
}

.brush .container:before{
	content:'';
	position:absolute;
	display:block;
	background-image:url('../images/brush.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom left;
	bottom:100%;
	right:10px;
	width:300px;
	margin-bottom:-1%;
	aspect-ratio:1 / .297 ;
}

.opinions-container {
	display:flex;
	overflow-x: auto;
	gap:20px;
	margin-right:-10px;
	padding-right:10px;
	margin-top:40px;

	.opinions-item {
		border: 2px solid #E8E8E8;
		border-radius: 16px;
		padding: 20px;
		flex: 0 0 70vw;
		max-width: 430px;
		
		h3{
			font-size:1rem;
			font-weight:500;
			display:inline-block;

			&:before{
				content:'S';
				display: inline-block;
				text-align: center;
				width:40px;
				height:40px;
				margin-right:6px;
				margin-bottom:24px;
				font-size:24px;
				line-height:40px;
				font-weight:700;
				color:var(--color-base-invert);
				background-color:var(--color-primary-accent);
				border-radius:50%;
			}
			
		}

		&:nth-child(1) h3:before{
			content:'S';
		}
		&:nth-child(2) h3:before{
			content:'R';
		}
		&:nth-child(3) h3:before{
			content:'W';
		}
		
		p:last-child{
			margin-bottom:24px;
		}
		
		.stars{
			display:block;
			width:144px;
			height:22px;
			background-image:url(../images/icon-star.svg);
			background-size:29px 22px;
			
		}
	}
}

#contact{
	h3{
		margin-bottom:8px;
	}
	
	.white-container{
		padding:20px;
		background-color:var(--color-base-invert);
		border-radius:16px;
		color:var(--color-base-text);
		box-shadow:var(--shadow-box);
		
		p{
			max-width:550px;
		}
	}
	
	.form{
		
		.text-field{
			margin-bottom:20px;
		}
		label{
			display:block;
			font-family:'Oswald', sans-serif;
			font-size:14px;
			letter-spacing: 2px;
			color:var(--color-secondary-text);
			margin-bottom:8px;
		}
		
		input[type="text"],input[type="email"], textarea{			
			display:block;
			width:100%;
			height:64px;
			font-family:'Montserrat', sans-serif;
			font-size:1rem;
			line-height:64px;
			border-radius:8px;
			border:1px solid #E8E8E8;
			box-shadow:0 8px 16px rgba(0,0,0,0.08);
			padding:20px;
			box-sizing: border-box;
		}
		
		input[type="checkbox"]{
			position: absolute;
			opacity: 0;
			cursor: pointer;
			height: 0;
			width: 0;
			
			& + label {
				margin-top:16px;
				position:relative;
				padding-left:40px;
				cursor: pointer;
				line-height: 1.5em;
				
				a{
					color:inherit;
					text-decoration:underline;
				}
				
				&:before {
					content:'';
					display:block;
					width:26px;
					height:26px;
					position:absolute;
					left:0;
					top:0;
					border:1px solid var(--color-secondary-text);
					border-radius:4px;
				}
			}
			
			&:checked + label:before {
				width:24px;
				height:24px;
				background-image:url('../images/icon-check-small.svg');
				background-size:20px auto;
				background-position:center;
				background-repeat:no-repeat;
				border-color:var(--color-primary-accent);
				border-width:2px;
			}
		}
		
		.button{
			background-color:var(--color-primary-accent);
			color:var(--color-base-invert);
			border:none;
			margin-top:20px;
		}
		
		.error{
			color:darkred;
			font-size:14px;
			margin:8px 0;
			text-align:right;
			opacity:0;
			transition:opacity .3s ease;
			
			&.active{
				opacity:1;
			}
		}
		
		textarea{
			height:200px;
			line-height: 1.4em;
		}
		
		.datenschutz-submit label{
			letter-spacing: normal;
		}
	}
	
	.bordered-container{
		padding:20px;
		background-color:var(--color-gradient-start);
		border:2px solid var(--color-base-invert);
		border-radius:16px;
		box-shadow:var(--shadow-box);
	}
	
	.card-list{
		display:flex;
		flex-wrap: wrap;
		gap:0 20px;
		
		li {
			flex: 1 1 auto;			
			display: grid;
			grid-template-columns:60px auto;
			align-items: center;
		}
		
		img{
			object-fit: contain;
			object-position: left;
			transform: scale(.7);
		}
		
		strong{
			display:flex;
			flex-direction: column;
			justify-content: center;
			align-items: flex-start;
			line-height:1.6em;
			
			a{
				font-weight:400;
				text-decoration:underline;
			}
		}
	}
}

#fixed-cta{
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:3;
	background-color:#fff;
	box-shadow: var(--shadow-box);
	padding:10px 10px;
	text-align:center;
	font-size:14px;
	font-weight:500;
	line-height:1.4em;
	
	a{
		font-weight:700;
		text-decoration: underline;
	}
}

.section-anchor{
	display:flex;
	justify-content: center;
	padding:40px 20px;
	
	a{
		color:var(--color-primary-accent);
		font-weight:700;
		font-size:16px;
		display:flex;
		flex-direction: column;
		align-items: center;
		gap:12px;
		
		img{
			width:16px;
			height:auto;
		}
	}
}

#page-footer{
	background-color:var(--color-base-text);
	color:var(--color-base-invert);
	color:#fafafa;
	line-heihgt:1.5em;
	
	a{
		color:#fafafa;
	}

	.flex-container{
		display:flex;
		flex-direction: column;
		align-items: flex-start;
		gap:10px;
		padding-bottom:65px;
	}
	
	ul.flex-container{
		list-style:none;
		
		a{
			font-weight:700;
		}
		
		img{
			width:247px;
		}
		
		li:first-child{
			margin-bottom:20px;
		}
	}
	
	img{
		vertical-align: middle;
	}

	.footer-contact.flex-container{
		font-size:16px;
		line-height:1.4em;

		a{
			text-decoration:underline;
			
			&.sm-link{
				text-decoration: none;
				
				img{
					margin-right:8px;
				}
			}
		}
		
	}
	
	.footer-copyright.flex-container{
		font-size:14px;
		line-height:1.4em;
		
		div{
			gap:20px;
		}
		
		a{
			margin:0 20px 0 0;
		}
	}
}
	
	


@media (min-width: 768px) {
	.grid-container{
		gap:40px;
	}
	
	.grid-md-2-col{
		grid-template-columns:1fr 1fr;
	}

	.grid-md-3-col{
		grid-template-columns:1fr 1fr 1fr;
	}
	
	.grid-md-double{
		grid-column: span 2;
	}
}

@media (min-width: 1024px) {
	.grid-lg-3-col{
		grid-template-columns:1fr 1fr 1fr;
	}
	
	.grid-lg-3-2-col{
		grid-template-columns: 3fr 2fr;
	}
}

@media (min-width: 768px) {


	body{
		padding-top:75px;
	}

	h1, h2{
		font-size:2.8rem;
		margin-bottom:.625em;
	}

	h1 .color-badge{
		border-radius:16px;
	}
	
	.container{
		padding: 0 40px;
	}

	#header-nav{
		position:relative;
		
		#navigation{
			position:relative;
			top:auto;
			left:auto;
			height:auto;
			margin-top:0;
			display: flex;
			justify-content: space-between;
			list-style: none;
			padding: 0;
			background-color:transparent;
			
			a {
				font-weight:normal;
				color:var(--color-base-text);
				padding:10px 20px;
				
				&:hover{
					font-weight:700;
				}
			}
		}

	} 
	
	#hamburger{
		display:none!important;
	}

	
	section{
		header{
			.subhead{
				font-size:14px;
				margin-bottom:16px;
			}
		}
	}

	#hero{
		padding-bottom:150px;
	}
	
	#hero-logo{
		margin-bottom:80px;
		max-width:536px;
	}

	.hero-right{
		display: flex;
		justify-content: center;
		align-items: flex-end;
		height: 100%;
		margin-left:-85px;
		margin-right:-85px;
		background-size:100% auto;
		background-position:center 85%;
	}

	#hero-portrait {
		max-width: 315px;
		margin-bottom:-135px;
	}

	#hero-badge{
		width:185px;
		top:20px;
	}
	
	#services .grid-md-double{
		padding: 40px;
		text-align: left;
		margin:0;
		
		&:before{
			left:-22px;
			top:-22px;
			
		}
	}

	.promises-container {
		list-style:none;
		gap:20px;

		li{
			text-align: center;
			display:grid;
			grid-template-rows:subgrid;
			grid-row: span 3;
			gap:0;

			img {
				width: 120px;
				margin-bottom:30px;
			}
			
			h3{
				margin-bottom:25px;
			}
		}
	}

	#quote {
		text-align: left;
		padding-top:58px;
		padding-bottom:48px;
		
		.container{
			position:relative;
			display:grid;
			gap:40px;
			grid-template-columns:207px auto;
			padding-bottom:72px;
		}
		
		img {
			width: 207px;
			margin-bottom:0;
		}
		
		blockquote{
			display: flex;
			flex-direction: column;
			justify-content: center;
			margin-bottom:0;
		}
		
		.button{
			position:absolute;
			right:40px;
			bottom:0;
		}
	}

	.brush .container:before{
		width:500px;
		margin-bottom:calc(-.7% + 58px);
		aspect-ratio:1 / .297 ;
	}
	
	#quote.brush{
		margin-top:80px;
	}
	
	.opinions-container {
		margin-right:-40px;
		padding-right:40px;
		gap:40px;
		
		.opinions-item {
			max-width: 453px;
			padding:40px;
			
			h3:before{
				width:62px;
				height:62px;
				font-size:28px;
				line-height:62px;
				vertical-align:sub;
				margin-right:12px;
			}
		}
	}
	
	#contact{
		.grid-container{
			margin-top: 40px;
		}
		
		.white-container, .bordered-container{
			padding:40px 48px;
		}
	}
	
	#fixed-cta{
		font-size:18px;
	}

}

@media (min-width: 1024px) {
	html {
		font-size: 18px;
	}
	
	body{
		padding-top:80px;
	}

	section{
		padding:100px 0;
	}

	#hero-portrait {
		max-width: 350px;
	}

	#services .grid-md-double{
		margin:0;
	}
	
	#fixed-cta{
		font-size:20px;
	}

	.promises-container{
		margin-top:80px;
		
		li{
			img {
				width: 160px;
				height: auto;
				display: block;
				margin: 0 auto 45px;
			}
	
			h3{
				color:var(--color-primary-accent);
				font-size: 1.3rem;
				margin-bottom:40px;
	
				&:after{
					width:25px;
				}
			}
		}
	}

	#quote {
		blockquote p{
			font-size:1.5rem;
		}
		
		.container {
			padding-bottom:0;
		}
		
		.button{
			bottom:0;
		}
	}

	.brush .container:before{
		width:720px;
		margin-bottom:calc(-.5% + 58px);
		aspect-ratio:1 / .297 ;
	}

	#quote.brush{
		margin-top:160px;
	}
	
	#contact .grid-container{
		gap:0 48px;
	}
	
	#contact .card-list{
		li{
			padding:18px 20px;
		}
	}
}
@media (min-width: 1280px) {
	#hero:after{
		height:1000px;
		transform: rotate(-6deg);
	}
	
	#hero-portrait {
		max-width: 410px;
	}

	#hero-badge{
		width:210px;
		left:auto;
		right:80px;
		top:70px;
	}

	#services .grid-md-double {
		padding: 50px 64px;
		
		&:before{
			width:92px;
			height:92px;
		}
	}
	
	#contact .grid-container{
		gap:0 85px;
	}

	#contact .card-list{
		li{
			grid-template-columns: 85px auto;
			padding:18px 30px;
			
			img{
				transform:scale(1);	
			}
		}
	}
	
	#page-footer{
		.flex-container{
			flex-direction: row;
			justify-content: space-between;
			align-items: center;
		}
		
		.footer-copyright.flex-container{
			margin-top:100px;
			
			div{
				a{
					margin:0 0 0 100px;
				}
			}
		}
	}
}
	
@media (min-width: 1480px) {
	section{
		padding:140px 0;
	}

	#hero:after{
		height:1000px;
		transform: rotate(-5deg);
	}

	#services .grid-md-double{
		p{
			font-size:1.55rem;
		}
	}
}

@media (min-width: 1940px) {
	h1, h2{
		font-size:3.5rem;
		margin-bottom:.625em;
	}
	
	h3{
		font-size:1.55rem;
	}
	
	section{
		padding:200px 0;
	}

	.promises-container{
		margin-top:100px;
		
		li h3 {
			font-size: 1.55rem;
		}
	}
}

.will-fadeIn {
	opacity: 0;
}

.fadeInLeft {
	animation: fadeInLeft 1.3s ease;
	opacity: 1;
}

.fadeInRight {
	animation: fadeInRight 1.3s ease;
	opacity: 1;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100px, 0, 0);
	}

	10% {
		opacity: 0;
		transform: translate3d(-100px, 0, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100px, 0, 0);
	}

	10% {
		opacity: 0;
		transform: translate3d(100px, 0, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInBehind {
	0% {
		opacity: 0;
		transform: scale(0.9);
		transform-origin: center;
	}

	10% {
		opacity: 0;
		transform: scale(0.9);
		transform-origin: center;
	}

	100% {
		opacity: 1;
		transform: scale(1);
		transform-origin: center;
	}
}


.fadeInBehind {
	animation: fadeInBehind 1.3s ease;
	opacity: 1;
}

@keyframes fadeInBottom {
	0% {
		opacity: 0;
		transform: translate3d(0, 100px, 0) scale(0.8);
		transform-origin: center;
	}

	10% {
		opacity: 0;
		transform: translate3d(0, 100px, 0) scale(0.8);
		transform-origin: center;
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		transform-origin: center;
	}
}


.fadeInBottom {
	animation: fadeInBottom 1.3s ease;
	opacity: 1;
}


@media (prefers-reduced-motion: reduce) {
	.special, .fadeInFromRight, .fadeInFromLeft, .fadeInFromBottom, .fadeInFromBehind {
		animation: none !important;
	}
}
