/****************************************************************************************************/
/*  D O C S E T T I N G S  */
/****************************************************************************************************/

@charset "UTF-8";

*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	border-width: 0;
	border: 0;
	margin: 0;
	padding: 0;
}

*:focus {
    outline: none;
}

a {
	text-decoration: none;
	color: var(--darkgrey);
	transition: 0.5s;
}

a:hover {
	text-decoration: none;
    color: var(--darkgrey);
}

b, strong {
    font-family: 'Roboto-Bold', sans-serif;
}

/****************************************************************************************************/
/* FARBEN */
/****************************************************************************************************/
:root {
	--ocean_darkblue: #0096a1;
	--ocean_blue: #79c1c5;
	--ocean_blue_50: rgba(121, 193, 197, .5);
	--beige: #e2e0df;
	--darkgrey: #3c3c3c;
	--white_30: rgba(255, 255, 255, .3);
}

::-moz-selection { background: var(--ocean_darkblue); color: white; }
::selection { background: var(--ocean_darkblue); color: white; }

/****************************************************************************************************/


body {
	background: var(--ocean_blue);
	color: var(--darkgrey);
	font-family: 'Roboto-Regular', sans-serif;
	font-weight: lighter;
    /*font-size: clamp(1.3rem, 1.2824rem + 0.1176vw, 1.4rem);*/
	font-size: 1.4rem;
    line-height: 1.5em;
	font-style: normal;
	padding: 0;
	margin: 0;
}

section {
	position: relative;
	width: 100vw;
	height: auto;
	overflow: hidden;
}

header {
	width: 100vw;
	height: 90px;
	padding: 30px 3vw;
}

.logo {
	width: clamp(6.25rem, 5.8088rem + 2.9412vw, 8.75rem);
	height: auto;
}

.circleBG {
	background-color: var(--ocean_blue);
	background-image: url(../_images_all/BG-Circle-blue10.svg);
	background-size: 5.0vw;
	background-attachment: fixed;
	background-repeat: repeat;
}

.beigeBG {
	background: var(--beige);
	background-image: url(../_images/BG-Zirkel-die-Potenzial-Entfalter.jpg);
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
	header { padding: 30px 4.5vw; }
	.circleBG { background-size: 3.333vw; }
}

@media only screen and (max-width: 960px) {
	header { padding: 30px 6vw; }
	.circleBG { background-size: 6.666vw; }
}

/****************************************************************************************************/
/* LINKS */
/****************************************************************************************************/

a.content {
	font-family: 'Roboto-Bold', sans-serif;
	font-size: 0.75em;
	padding: 5px 10px 5px 10px;
	border: 2.5px solid var(--darkgrey);
	border-radius: 0 0 15px 0;
}

a.content:hover {
	border-radius: 15px;
	padding: 5px 15px;
	letter-spacing: 0.1em;
}

h2 a.content {
	border: 4px solid var(--darkgrey); border-radius: 0 0 30px 0;
}

h2 a.content:hover {
	border-radius: 30px;
}

footer .smalltext a { display: inline-block; border-bottom: 1px solid var(--darkgrey); margin: 3px 0; }
footer .smalltext a:hover { font-family: 'Roboto-Bold'; }

/****************************************************************************************************/
/* FONTS AND TEXTS */
/****************************************************************************************************/

/* fontsize clamp min 240px max 1600px */

h1 {
	font-family: 'Roboto-Bold', sans-serif;
	font-style: normal;
	font-size: clamp(2.2rem, 1.8824rem + 2.1176vw, 4rem);
	line-height: 1.2em;
	text-align: center;
	color: white;
	letter-spacing: 0.02em;
}



h2, h3 {
	font-family: 'Roboto-Regular', sans-serif;
	font-style: normal;
	font-size: clamp(1.8rem, 1.5176rem + 1.8824vw, 3.4rem);
	line-height: 1.2em;
	text-align: left;
	color: var(--darkgrey);
	letter-spacing: 0.02em;
}

h3 {
	font-family: 'Roboto-Regular', sans-serif;
	font-size: clamp(1.6rem, 1.5471rem + 0.3529vw, 1.9rem);
	margin-bottom: 40px;
}

h4 {  /* Text für Typoanimationen */
	font-family: 'Roboto-Regular', sans-serif;
	font-style: normal;
	font-size: clamp(3rem, 2.1176rem + 5.8824vw, 8rem);
	line-height: 1.0em;
	text-align: left;
	color: white;
	letter-spacing: 0.02em;
}

p {
	margin: 0;
}

.smalltext {
	font-size: 0.75em;
	line-height: 1.4em;
}

.minitext {
	font-size: 11px;
	line-height: 1.4em;
}

/****************************************************************************************************/
/* Tabelle */

.ZirkelBoxx ul, .uk-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.zirkel-short {
	font-size: 0.75em;
	line-height: 1.4em;
}

ul.zirkel-short li, ul.zirkel-short li.slide {
	list-style: none;
	position: relative;
    padding-left: 20px; /* Abstand für List-Icon */
	/*border-bottom: 12px solid var(--ocean_blue_50);*/
}

ul.zirkel-short li::before, ul.zirkel-short li.slide::before {
	content: "";
    position: absolute;
    left: 2px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-image: url(../_images_all/Kreis.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/*
ul.zirkel-short li.slide:first-child {
	border-top: 12px solid var(--ocean_blue_50);
}

ul.zirkel-short li {
	border-bottom: 12px solid var(--white_30);
}

ul.zirkel-short li:first-child {
	border-top: 12px solid var(--white_30);
}
*/

/****************************************************************************************************/
/* ABSTAENDE UND BREITEN */
/****************************************************************************************************/

/* Bild mit Animierten Keywords */
.Bildbox { padding: 4vh 8vw; }

/* Rahmen für Kartenslider */
.Sliderbox { padding: 2vh 0 8vh 7vw; }

/* Kernaussagen Headline ggf. mit Copy --> Arbeitet mit uk-parallax zusammen */ 
.Typobox { padding: 10vh 8vw; max-width: 2000px; }
.Typobox h2 { width: 70%; }
.Typobox p { width: 50%; }
.Typobox p.normal { width: 100% !important; max-width: 960px; margin-bottom: 50px; }

/* Double-Card Text + Bild */
.Doublecard { padding: 20vh 4vw 20vh 8vw; }


@media only screen and (min-width: 961px) and (max-width: 1200px) {
	.Typobox h2 { width: 80%; }
	.Typobox p { width: 60%; }
}

@media only screen and (max-width: 960px) {
	.Bildbox { padding: 4vh 6vw; }
	.Sliderbox { padding: 2vh 0 8vh 0; }
	.Typobox { padding: 10vh 6vw; }
	.Typobox h2 { width: 100%; }
	.Typobox p { width: 100%; }
	.Doublecard { padding: 5vh 8vw 10vh 8vw; }
}


/* Slider Menü und Detail Beratervorstellung mit Bild */

/* Menü */
.Info a.menue h2 {
	font-size: clamp(1.3rem, 1.1059rem + 1.2941vw, 2.4rem);
	margin: 0;
	padding: 0 20px 0 0;
	line-height: 1.0em;
	border-bottom: 30px solid var(--ocean_blue_50);
	transition: 0.5s;
}

.Info a.menue h2:hover {
	padding: 0 0 0 20px;
	background: var(--ocean_blue_50);
	border-bottom: 30px solid rgba(255,255,255,0);
}

.Info a.menue .first {
	border-top: 30px solid var(--ocean_blue_50);
}

.Info a.menue .first:hover {
	border-top: 30px solid rgba(255,255,255,0);
}

.menuebotton_wrap {
	width: 30px;
	height: 38px;
	padding-top: 12px;
	transition: 0.5s;
}

.menuebotton_wrap:hover {
	width: 46px;
}

.menuebotton {
	width: 100%;
	height: 3px;
	margin-bottom: 5px;
	background: var(--darkgrey);
}


/* Beratervorstellung */

.IMG-Berater {
	border-radius: 0 0 30px 0;
	width: 100%;
	max-width: 750px;
	height: auto;
	margin-bottom: 20px;
	cursor: pointer;
}

.Info {
	position: fixed;
	opacity: 0.5;
    width: 100vw;
	height: 10px;
	top: -100vh;
	left: 0;
	padding: 50px 10vw;
    background: var(--beige);
    z-index: 100;
	overflow: hidden;
	transition: 0.5s ease-out;
}

.Info-active {
	opacity: 1.0;
	height: 100vh !important;
	top: 0px;
	overflow: scroll;
	z-index: 200;
	display: flex;
	flex-flow: row;
	align-items: left; 
	justify-content: center;
}

.Info-active .InnerBox {
	max-width: 1600px;
	margin: auto;
}

.TXT-Berater {
	padding: 0 0 0 5vw;
}




@media only screen and (max-width: 960px) {
	.Info-active .InnerBox { flex-flow: column wrap; }
	.Info-active .InnerBox .IMG-Berater { width: 100%; height: auto; max-width: 500px; }
	.TXT-Berater { padding: 40px 0 0 0; }
}


/****************************************************************************************************/
/*  ANIMATION  */
/****************************************************************************************************/

.circle_wrapper, .c_w_small {
	position: relative;
	margin: auto;
}

/* Achtung: die Werte müssen durch 2 teilbar sein, da sonst Abbildungsfehler auf manchen Browsern*/

@media only screen and (min-width: 2001px) {
	.circle_wrapper { width: 450px; height: 450px; }
	.c_w_small { width: 270px; height: 270px; }
}

@media only screen and (min-width: 1201px) and (max-width: 2000px) {
	.circle_wrapper { width: 400px; height: 400px; }
	.c_w_small { width: 270px; height: 270px; }
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
	.circle_wrapper { width: 350px; height: 350px; }
	.c_w_small { width: 250px; height: 250px; }
}

@media only screen and (min-width: 641px) and (max-width: 960px) {
	.circle_wrapper { width: 300px; height: 300px; }
	.c_w_small { width: 220px; height: 220px; }
}

@media only screen and (max-width: 640px) {
	.circle_wrapper { width: 200px; height: 200px; }
	.c_w_small { width: 200px; height: 200px; }
}

/* Animations CSS ausgelagert in _css */

/****************************************************************************************************/
/*  E N D E  */
/****************************************************************************************************/