@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*** GENERIC CSS ***/
html,body {
    overflow-x: hidden;
    font-family: "Barlow Condensed", sans-serif;
}

body {
    font-size: 18px;
    font-family: "Barlow Condensed", sans-serif;
    color: #444;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #444;
}

a:hover {
    text-decoration: none;
    color: rgba(221, 133, 85, 1);
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:#444;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    font-size:110px;
    line-height: 1;
}

h2 {
    font-size: 56px;
    line-height: 1;
}

h3 {
    font-size:44px;
    line-height: 1;
}

h4 {
    font-size:24px;
    line-height: 1;
}

h5 {
    font-size:22px;
    line-height: 1;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

.section-title h2 {
    margin-bottom: 30px;
}

.section-title.white h2,
.section-title.white p {
    color: #fff;
}

.section-title.white .line {
    background: #fff;
}

.section-title p {
    margin-bottom: 25px;
}

.section-title h2 span {
    color: rgba(221, 133, 85, 1);
}

p {
	font-family: "Barlow", sans-serif;
	color: #444;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 179%; /* 32.22px */
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.visible-xs {
    display: none;
}

.btn-default {
    color: #fff;
    border: 4px solid #fff;
    font-size: 24px;
    display: inline-block;
    padding: 0px 20px;
    min-width: 228px;
    text-align: center;
    line-height: 56px;
    font-weight: 700;
}

.btn-default:hover {
    border-color: rgba(109, 109, 109, 1);
    background: rgba(109, 109, 109, 1);
    color: #fff;
}

.btn-black {
	border-color:#000;
	color:#000;
}

.btn-black:hover {
	color:#fff;
	border-color:#DD8555;
	background:#DD8555;
}

ul.list {
    border-left: 9px solid rgba(221, 133, 85, 1);
    list-style: none;
    padding: 0;
    padding-left: 15px;
}

ul.list li {
    margin:0px 0px 10px 0px;
	font-size:16px;
	font-family: "Barlow", sans-serif;
}

/*** PRELOADER ***/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
}

.preloader .lds-ripple {
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
    position: absolute;
    border: 2px solid #DD8555;
    opacity: 1;
    border-radius: 0;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
            animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
}
100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
}
}

@keyframes lds-ripple {
0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
}
100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
}
}

.img-rounded {
    border-radius: 15px;
}

.hover-animate {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hover-animate:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*** HEADER ***/
.header {
    padding:49px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar-nav .nav-item {
    margin-right:51px;
}

.header.fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 21.5px -8px rgba(0, 0, 0, 0.25);
	padding:30px 0px;
}

.header.fixed .navbar-brand img {
    filter: brightness(0) invert(0);
}

.header.fixed .nav-link {
    color:#444;
}

.header.fixed .nav-link:hover {
    color: rgba(221, 133, 85, 1);
}

.navbar-nav {
    margin-left:135px;
	width:100%;
}

.nav-link {
    color: #fff;
    font-size: 18px;
    line-height:46px;
	font-weight:500;
	padding:0px !important;
	padding-right:17px !important;
}

.last-btn {
	margin-left:auto;
	background:#fff;
	border-color:#fff;
	color:#DD8555 !important;
}

.last-btn .nav-link {
	color: #DD8555;
	font-size: 19px;
	font-style: normal;
	font-weight: 700;
	border: 3px solid #FFF;
	width:182px;
	text-align:center;
	padding-right:0px !important;
	line-height:46px;
}

.header.fixed .last-btn .nav-link {
	border-color:#444;
}
.last-btn .nav-link:hover{
	border-color: rgba(109, 109, 109, 1);
    background: rgba(109, 109, 109, 1);
    color: #fff;
}

.header.fixed .last-btn .nav-link:hover {
	border: 3px solid #DD8555;
	background: #DD8555;
	color:#fff !important;
}

.navbar-brand {
    color: #FFF !important;
    font-size: 32px;
    font-weight: 700;
    text-decoration-line: underline;
    position: relative;
    top: -5px;
}
 
.header.fixed .navbar-brand {
    color: #444 !important;
}
 
.navbar-nav {
    margin-left: 40px;
    width: auto;
}
 
.navbar-nav>.nav-item>a {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
}
 
.navbar-nav>.nav-item {
    position: relative;
}
 
.navbar-nav>.nav-item.menu-item-has-children>a {
    padding-right: 25px !important;
}
 
.navbar-nav>.nav-item.menu-item-has-children>a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0px;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f107";
    font-size: 21px;
    margin-top: -7px;
}
 
.navbar-nav>.nav-item:hover>.sub-menu {
    opacity: 1;
    pointer-events: all;
    margin-top: 0px;
}
 
.navbar-nav>.nav-item>.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    min-width: 160px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    margin-top: 10px;
    box-shadow: 0px 3px 6px 4px rgba(0, 0, 0, 0.1);
}
 
.navbar-nav>.nav-item>.sub-menu>li {
    display: inline-block;
    width: 100%;
    padding: 0px px;
    margin: 0;
}
 
.navbar-nav>.nav-item>.sub-menu>li>a {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 40px;
    font-weight: 400;
    padding: 0px 20px !important;
}
 
.navbar-nav>.nav-item>.sub-menu>li:hover>a {
    background: #000;
    color: #fff;
}

.navbar-nav>.nav-item.last-btn {
    margin-right: 0px !important;
    margin-left: 30px;
}
 
.navbar-nav>.nav-item.last-btn>a {
    color: #DD8555 !important;
    font-size: 19px;
    width: auto;
    padding: 0px 28px !important;
}
 
.navbar-nav>.nav-item.last-btn:hover>a {
    color: #fff !important;
}


/*** BANNER ***/
.banner {
    background: linear-gradient(246deg, #B6E6E6 3.24%, #7EA4A4 100%);
    height: 100vh;
    overflow: hidden;
}

.banner .kicker {
	border-radius: 110px 110px 0 110px;
	background: #84ABAB;
	display:inline-block;	
	padding: 15px 30px;
	color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 20px */
	text-transform: uppercase;
}

.banner .h1 {
    color: #fff;
    font-size: 110px;
    line-height: 1;
    margin-bottom: 50px;
    font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.banner p.big {
	color: #FFF;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 43.2px */
	text-transform: uppercase;
}

.banner img {
    height: 100vh;
	width:auto;
	position:absolute;
	top:0;
	right:0;
	padding:0px;
}

.banner .btn-default {
	margin-top:90px;
}

/** ABOUT ***/
.about {
	padding-top:100px;
	background: linear-gradient(245deg, #FFF 47.27%, rgba(126, 164, 164, 0.25) 86.3%);
}

.about .section-title h1 {
    margin-bottom: 30px;
	color: #444;
    font-family: "Barlow Condensed", sans-serif;
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 60px */
	text-transform: uppercase;
}

.about .section-title h1 span {
    color:#7EA4A4;
}

.about .kicker {
	color: #DD8555;
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 179%; /* 32.22px */
}

blockquote {
	color: #444;
	font-family: "Barlow", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	padding-left:20px;
	border-left:9px solid #DD8555;
}

/*** Facts-figures ***/
.facts-figures {
    background: radial-gradient(50% 50% at 50% 50%, #FFAF83 0%, #DD8555 100%);
    padding: 120px 0px;
    position: relative;
    overflow: hidden;
}
 
.facts-figures .container {
    position: relative;
    z-index: 2;
}
 
.facts-figures h2 {
    color: #FFF;
	text-align: center;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
}

.facts-figures .section-title hr {
	width:70px;
	height:8px;
	background:#fff;
	margin:35px auto 60px auto;
	opacity:1;
	border:0px;
}

.facts-figures .section-title p {
	color: #FFF;
}
 
.facts-figures .agency-info {
    margin-top: 60px;
    margin-bottom: 160px;
}
 
.facts-figures .agency-info .box {
    display:flex;
	flex-direction:column;
	justify-content:space-between;
    width: 100%;
    padding: 25px 25px 20px 32px;
    aspect-ratio: 1 / .95;	
	background: #FFF;
	box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.10);
	z-index:9;
	top:-10px;
	left:-10px;
	position:relative;
}

.facts-figures .agency-info .box-1::before, .facts-figures .agency-info .box-3::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 166px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.00) 80.77%);
}

.facts-figures .agency-info .box-2::before, .facts-figures .agency-info .box-4::before { 
	top:-166px;
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 166px;
	transform:rotatex(180deg);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.00) 80.77%);
}
 
.facts-figures .agency-info .box-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / .95;	
	background: #659494;
	box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.10);
}
 
.facts-figures .agency-info .box .h1 {
	color: #000;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; 
	text-transform:none;
}

.facts-figures .agency-info .box .tagline {
	color: #444;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 122.222% */
}
 
.facts-figures .agency-info .box.box-1 * {
    color: #000;
}
 
.facts-figures .agency-info .box.box-2 {
    background: #000;
    margin-top: 110px;
}
 
.facts-figures .agency-info .box.box-2 * {
    color: #fff;
}

.facts-figures .agency-info .box.box-3 {
    background: #4A4743;
    margin-top: 0px;
}
 
.facts-figures .agency-info .box.box-3 * {
    color: #fff;
}
 
.facts-figures .agency-info .box.box-4 {
    background: #82A9A9;
    margin-top: 110px;
}
 
.facts-figures .agency-info .box.box-4 * {
    color: #fff;
}

/*** CTA ***/
.cta {
    position: relative;
    overflow: hidden;
}

.square {
    width: 100%; /* or any other width you prefer */
    aspect-ratio: 1 / 1;
    background: radial-gradient(63.33% 77.83% at 80.75% 47.51%, #FFC480 0%, #DD8555 100%);
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
	overflow:hidden;
}

.square.lgreen {
    background: radial-gradient(63.33% 77.83% at 80.75% 47.51%, #A1C9C9 0%, #7EA4A4 100%);
}

.square h2 {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.square img {
	transition: transform 0.3s ease-in-out;
}

.square:hover img {
	transform:scale(1.1);
}

/*** leisteng ***/
.leisteng {
    padding:110px 0px 0px 0px;
}

.section-title .line.green {
    background: rgba(126, 164, 164, 1);
    display: block;
    margin: 0 auto;
}

.section-title .line {    
    display: block;
    margin: 0 auto;
    background: rgba(221, 133, 85, 1);
    margin: 8px auto 60px auto;
    width: 70px;
    height: 8px;
}

.borderl {
    border-left: 12px solid rgba(221, 133, 85, 1);
    padding: 60px 0px 80px 0px;
}

.borderr {
    border-right: 12px solid rgba(126, 164, 164, 1);
    padding:80px 0px;
    background: #f8f8f8;;
    position: relative;
    z-index: 2;
}

.leisteng h3 {
    margin-bottom: 30px;
}

.imgstyle {
    display: inline-block;
    position: relative;
    background: radial-gradient(54.57% 67.06% at 54.1% 38.84%, #FFC480 0%, #DD8555 100%);
    width: 360px;
    height: 360px;
    display: flex;
    align-items: end;
	justify-content:center;
}

.imgstyle.img-1, .imgstyle.img-3 {
	justify-content:end;
}

.imgstyle .ftimg {
    position: relative;
    height: 100%;
    object-fit: cover;
}

.imgstyle.jend {
    justify-content: end; 
}

.imgstyle img.normal {
    height: 100%;
    max-width: inherit;
}

.imgstyle img.horsimg {
    height: 120%;
    max-width: inherit;
}

.imgstyle img.img-schwindel {
    height: 109%;
    max-width: inherit;
    margin-right: -32px;
}

.imgstyle:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(63.33% 77.83% at 80.75% 47.51%, #A1C9C9 0%, #7EA4A4 100%);
}

.imgstyle.green {
    background: radial-gradient(63.33% 77.83% at 80.75% 47.51%, #A1C9C9 0%, #7EA4A4 100%);
}

.imgstyle.green:after {
    right: auto;
    left: -15px;
    width: 100%;
    height: 100%;
    background: radial-gradient(54.57% 67.06% at 54.1% 38.84%, #FFC480 0%, #DD8555 100%);
}

.imgstyle.green img {
	height:100%;
	object-fit:cover;
}

.imgstyle img.asthek {
    height: 105%;
    max-width: inherit;
}

/*** TARIFF ***/
.tariff {
	background: #F8F8F8;
	padding:120px 0px 0px 0px;
}

.tariff ul {
	margin:0px;
	padding:0px;
}

.tariff ul li {
	list-style:none;
	display:inline-block;
	margin:5px 10px 5px 0px;
	padding: 0 15px;
	border-radius: 55px;
	border: 1px solid #7EA4A4;
	background: #FFF;
	color: #7EA4A4;
	font-family: "Barlow", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%; /* 32px */
}

/*** VIDEO BOX ***/
.video-box {
	height: 100vh;
	position:relative;
	overflow:hidden;
	background:linear-gradient(246deg, #B6E6E6 3.24%, #7EA4A4 100%);
}

.video-box img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	object-fit:cover;
	object-position:center;
	height:100%;
}

.video-box .container {
	position:relative;
	z-index:9;
}

.video-box .kicker {
	color:#fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.video-box h2 {
	color:#fff;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 72px; /* 112.5% */
	text-transform: uppercase;
}

/*** team ***/
.team {
    padding:120px 0px;
	background: linear-gradient(245deg, #FFF 47.27%, rgba(126, 164, 164, 0.25) 86.3%);
}

.teambox figure {
	width:450px;
	height:450px;
	border-radius: 450px;
	background:#85ADAD;
	position:relative;
	overflow:hidden;
	margin:0px auto 30px auto;
}

.teambox figure img {
	width:100%;
	height:100%;
    object-fit: cover;
    object-position: 50% -15%;
}

.teambox h2 {
	margin-bottom:30px;
}

.teambox .kicker {
    color: #DD8555;
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 179%; /* 32.22px */
}

.normalacord {
    margin-top: 60px;
	background: rgba(255, 255, 255, 0.36);
	padding:15px 25px;
}

.team .normalacord {
	padding:15px 18px;
} 

.normalacord h4 {
    display: flex;
    align-items: center;
    padding:0px;
    color: rgba(221, 133, 85, 1);
    cursor: pointer;
	margin-bottom:0px;
}

.normalacord .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100px;
    height: 100px;
    border-radius: 50%;
    background:#DF8757;
    margin-right: 12px;
}

.normalacord .arrow {
    margin-left: 25px;
    color: rgba(221, 133, 85, 1);
    font-size: 37px;
}

.normalacord .text {
    display: none;
    padding: 25px 0px 20px 0px;
}

.normalcord .text p {
	color: #444;
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 179%;
}

.normalacord.active .text {
    display: block;
}

.normalacord.active .arrow.fa-angle-down:before {
    content: "\f106";
}

.teambox.green {
    border-color: rgba(126, 164, 164, 1);
}

.teambox.green h4.color a {
    color: rgba(126, 164, 164, 1);
}

.teambox h4.color a:hover, .teambox h4 a:hover {
	color: rgba(126, 164, 164, 1) !important;
}

.teambox.green h4.color a:hover, .teambox.green h4 a:hover {
	color: rgba(221, 133, 85, 1) !important;
}

.teambox.green h5,
.teambox.green h5 .arrow {
    color: rgba(126, 164, 164, 1);
}

.teambox.green h5 .icon {
    background: rgba(126, 164, 164, 1);
}


/*** team ***/
.herzlich {
    padding: 100px 0px 70px 0px;
    background: #f8f8f8;
}

.imgstyle2 {
    display: inline-block;
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.imgstyle2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(54.57% 67.06% at 54.1% 38.84%, #FFC480 0%, #DD8555 100%);
}

.herzlich .imgstyle2 img {
	height:320px;
	object-fit:cover;
	object-position:center;
}

.herzlich h3 {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
    color: #444;
    font-weight: 700;
    text-transform: uppercase;
	margin-left:15px;
}

.herzlich .social {
    display: flex;
    align-items: center;
    margin:0px 0px 0px 15px;
}

.herzlich .social img{
    margin-right: 10px;
}


/*** testimonials ***/
.testimonials {
    padding: 100px 0px 80px 0px;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.owl-carousel .owl-item {
    padding: 15px;
}

.testibox {
    border-bottom:7px solid rgba(221, 133, 85, 1);
    padding: 70px 40px;
    padding-bottom: 70px;
    position: relative;
    box-shadow: 0px -0.87px 26.79px -8.7px rgba(0, 0, 0, 0.13);
}

.testibox .al {
    position: absolute;
    bottom: 40px;
    right: 35px;
}

.testibox .userbox {
    display: flex;
    align-items: center;
}

.testibox .userbox {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-top: 40px;
}

.testibox .userbox .img img {
    border-radius: 50%;
    border:2px solid rgba(221, 133, 85, 1);
    margin-right: 30px;
}

.testibox .userbox h3 {
    text-transform: inherit;
    font-weight: 400;
    font-size: 20px;
}

.testibox .userbox .stars {
    color: rgba(255, 207, 38, 1);
    font-size: 20px;
}

.testibox .userbox .stars i {
    margin-right: 7px;
}

.owl-theme .owl-dots {
    padding-top: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
    top: 1px;
    opacity: 1;
    background: rgba(234, 234, 234, 1);
    margin: 0px 10px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: rgba(221, 133, 85, 1);
    position: relative;
}

/*** PRECISION ***/
.precision {
	background: linear-gradient(246deg, #B6E6E6 3.24%, #7EA4A4 100%);
	padding:120px 0px;
}

.precision * {
	color: #FFF;
}

.precision .line {
	background:#fff;
}

.precision .section-title {
	margin-bottom:100px;
}

.precision h3 {
	color: #FFF;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 44px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 52.8px */
	text-transform: uppercase;
	margin-bottom:30px;
}

.precision .imgstyle {
	background: radial-gradient(54.57% 67.06% at 54.1% 38.84%, #A1C9C9 0%, #7EA4A4 100%);
	justify-content:end;
	position:relative;
	z-index:2;
}

.precision .imgstyle:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    z-index: -1;
	background: radial-gradient(63.33% 77.83% at 80.75% 47.51%, #A1C9C9 0%, #7EA4A4 100%);
}

.precision .imgstyle img {
}


/*** PROCESS ***/
.process {
	padding:120px 0px;
}

.process .mt-130 {
	margin-top:130px;	
    --bs-gutter-x:35px;
}

.process-card figure {
	position:relative;
	aspect-ratio:1 / 0.75;
	margin-bottom:40px;
}

.process-card figure::before {
	content:'';
	position:absolute;
	top:10px;
	left:10px;
	width:100%;
	height:100%;
	background: radial-gradient(54.57% 67.06% at 54.1% 38.84%, #FFC480 0%, #DD8555 100%);
}

.process-card figure img {
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	position:relative;
	z-index:2;
}

.process-card h3 {
	color: #444;
	font-family: "Barlow", sans-serif;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 22px */
	text-transform: uppercase;
	margin-bottom:10px;
}

.process-card p {
	color: #444;
	font-family: "Barlow", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 119%; /* 19.04px */
}


/*** faq ***/
.faq {
    padding: 100px 0px 90px 0px;
	background:radial-gradient(50% 50% at 50% 50%, #FFAF83 0%, #DD8555 100%);
}

.accordion {
    background: none;
    border: 4px solid rgba(255, 255, 255, 1);
    border-bottom: none;
}

.accordion-item {
    background: none;
}

.accordion-button {
    background: none;
    border-bottom: 4px solid rgba(255, 255, 255, 1);
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    border-color: transparent;
	padding-top:24px;
	padding-bottom:24px;
	color: #FFF;
	font-family: "Barlow Condensed", sans-serif;
}

.faq p {
    color: #fff;
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    background: none;
    color: #fff;
    box-shadow: none;
}

.accordion-flush .accordion-item .accordion-button.collapsed  {
    border-color: #fff;
}

.accordion-item {
    border: none;
}

.accordion-body {
    padding-top: 0;
    border-bottom: 4px solid rgba(255, 255, 255, 1);
}

.accordion-body ul li {
	color:#fff;	
	font-family: "Barlow", sans-serif;
	font-weight:400;
}

.accordion-button::after {
    background: none;
    transform: none;
    content: '+';
    font-size: 48px;
    font-weight: 500;
    margin-top: -35px;
}

.accordion-button:not(.collapsed)::after {
    background: none;
    transform: none;
    content: '-';
    text-align: center;
}


/*** PHILOSOPHY ***/
.philosophy {
	padding:120px 0px;
}

.philosophy .bigtext {
	color: #444;
	text-align: center;
	font-family: "Barlow", sans-serif;
	font-size: 58px;
	font-style: normal;
	font-weight: 400;
	line-height: 149%; /* 86.42px */
}

/*** contactform ***/
.contactform {
    background: radial-gradient(63.33% 77.83% at 80.75% 47.51%, #A1C9C9 0%, #7EA4A4 100%);
    padding: 90px 0px;
}

label {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 14.4px;
	font-family:"Barlow", sans-serif;
}

.check {
	padding:0px;
}

label span {
    color: rgba(255, 0, 0, 1);
}

.form-control {
    background: #fff;
    border-radius: 0;
    margin-bottom: 10px;
    height: 37px;
}

textarea.form-control {
    height: 172px;
}

.check label {
    display: flex;
    align-items: center;
}

.check label input {
    margin: 0;
    margin-right: 10px;
}

.btn-default.submit {
	background:none;
    border: 4px solid #FFF;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 52px;
    width: 100%;
	color: #FFF;
	font-family: "Barlow", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
}

.btn-default.submit:hover {
    border-color: rgba(109, 109, 109, 1);
    background: rgba(109, 109, 109, 1);
    color: #fff;
}


/*** footer ***/
.footer {
    padding: 60px 0px;
}

.footer h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    margin: 0;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.footer ul li {
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
}

.footer p {
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
}

.footer .social {
    display: flex;
    align-items: center;
    margin:0;
}

.footer .social img {
    margin-right: 10px;
}

/*** copyright ***/
.copyright {
    background: rgba(248, 248, 248, 1);
    padding: 19px 0px;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
}

/*** page-banner ***/
.page-banner {
    background: radial-gradient(42.55% 107.8% at 50% 63.96%, #E9B272 0%, #DD8555 100%);
    height: 55vh;
    padding-top: 60px;
}

.page-banner.green {
    background: radial-gradient(37.46% 119.2% at 50% 61.5%, #A1C9C9 0%, #7EA4A4 100%);
}

.page-banner h2, .page-banner .h2 {
    color: #fff;
    margin: 0;
}

.page-banner .h2 {
	font-size:56px;
	line-height:1;
}

.page-banner p {
    color: #fff;
    margin: 0;
}

.page-banner p a {
    text-decoration: underline;
    color: #fff;
}


/*** info ***/
.info {
    background: rgba(248, 248, 248, 1);
    padding: 40px 0px;
    border: 15px solid #fff;
    border-top: none;
}

.info h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 90px;
    text-transform: inherit;
}

.info h3 {
    font-size: 40px;
    font-weight: 700;
    color: rgba(68, 68, 68, 1);
    margin-bottom: 30px;
}

.info p.lg {
    color: rgba(68, 68, 68, 1);
}

.info.impressum p {
    font-size: 18px;
    line-height: 32px;
}

.info.impressum p.lg {
    font-size: 22px;
    line-height: 39.38px;
}

.info p {
    font-size: 22px;
    line-height: 39.38px;
    margin-bottom: 50px;
    font-weight: 400;
}

.info .olink {
    font-weight: 500;
    color: rgba(221, 133, 85, 1);
    text-decoration: underline;
}

.dotlist {
    font-size: 22px;
    color: rgba(68, 68, 68, 1);
    line-height: 39.38px;
}


.info .glink {
    font-weight: 500;
    color: rgba(126, 164, 164, 1);
    text-decoration: underline;
}

.info .glink:hover {
    color: rgba(221, 133, 85, 1);
}

.info p:last-child {
    margin-bottom: 0;
}

.accordion-body a:hover {
	color:#444;
	text-decoration:underline;
}
