@charset "utf-8";

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


html, body {
	height: 100%;
	padding: 0px;
	margin: 0px;	
}

body {
	color: #333;
	font-size: 16px;
	overflow-y: auto;
	overflow-x: hidden;
	font-weight: normal;
	line-height: normal;
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
background: rgb(227,227,227);
background: -moz-linear-gradient(0deg, rgba(227,227,227,1) 0%, rgba(255,255,255,1) 47%, rgba(244,244,244,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(227,227,227,1) 0%, rgba(255,255,255,1) 47%, rgba(244,244,244,1) 100%);
background: linear-gradient(0deg, rgba(227,227,227,1) 0%, rgba(255,255,255,1) 47%, rgba(244,244,244,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e3e3e3",endColorstr="#f4f4f4",GradientType=1);
	background-attachment: fixed;
}

img {
	border: none;	
}

.clickable {
	cursor: pointer;
	cursor: hand;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

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

strong {
	font-weight: 700;
}

img[usemap], map area{
    outline: none;
}


/* Colors & Fonts */

a {
	color: #000;
}

.hlc, a:hover {
	color: rgb(239,72,57);
}




/* General Layout */

.bg_overlay {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 100vh;
	background-image: url(/img/ctc_bg1b.jpg);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	opacity: 0.5;
}

.header_ct {
	position: fixed;
	width: 100%;
	height: 70px;
	background-color: #fff;
	text-align: center;
	z-index: 10;
}

.header_inner {
	position: relative;
	width: 100%;
	max-width: 1100px;
	padding-left: 300px;
	margin-left: calc((100vw - 1100px) * 0.25);
}

.logo_ct {
	position: absolute;
	left: 70px;
	top: 6px;
}

.logo_ct img {
	height: 60px; 
	width: auto;
}

.menu_ct {
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-family: 'Playfair Display', serif;
	font-size: 19px;
	font-weight: 400;
	padding-top: 21px;
}

.menu_item span {
	border-bottom: 2px solid rgba(91, 83, 68, 0);
	color: #5B5344;
	transition: all 0.5s;
	cursor: pointer;
	padding-bottom: 2px;
}

.menu_item span:hover {
	border-bottom: 2px solid rgba(91, 83, 68, 0.5);
}


.menu_icon {
	position: relative;
	width: 40px;
	display: flex;
	flex-direction: column;
	height: 40px;
	display: none;
}

.menu_icon_line {
	width: 100%;
	height: 3px;
	left: 0;
	background-color: #5B5344;
	opacity: 1;
	position: absolute;
	display: inline-block;
	transition: all 0.5s;
}

.menu_icon:hover .menu_icon_line {
	background-color: #5B5344;
}

.menu_icon .line1 {
	top: 3px;
}

.menu_icon .line2 {
	top: 13px;
}

.menu_icon .line3 {
	top: 23px;
}

.menuopen .menu_icon .line1 {
	-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
	top: 10px;
}

.menuopen .menu_icon .line2 {
	opacity: 0;
}

.menuopen .menu_icon .line3 {
	-moz-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
	top: 10px;
}

.footer_ct {
	position: fixed;
	width: 100%;
	background-color: #fff;
	text-align: center;
	bottom: 0;
	left: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 5;
}

.footer_inner {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin-left: calc((100vw - 1100px) * 0.25);
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	letter-spacing: 0.05em;
	flex-direction: row-reverse;
	color: rgba(91, 83, 68, 0.6);
	font-weight: 500;
}

.footer_links {
	display: flex;
	text-align: center;
}

.footer_item {
	margin-left: 30px;
	cursor: pointer;
	color: inherit;
}

.footer_item:hover {
	color: rgba(91, 83, 68, 1);
}

.content_wrapper {
	padding-top: 150px;
	position: relative;
	z-index: 5;
	min-height: 100vh;
	text-align: left;
	padding-left: calc((100vw - 1100px) * 0.25);
}

.page-home .content_wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

.content_inner {
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 1100px;
}

.submenu_wrapper {
	padding-left: 300px;
}

.submenu_inner {
	display: flex;
	width: 100%;
	text-align: left;
	flex-direction: column;
	/*justify-content: space-between;*/
	font-family: 'Playfair Display', serif;
	height: 150px;
}

.submenu_inner .menu_item {
	display: inline-block;
	padding-bottom: 10px;
}

.submenu_inner .menu_item.active span {
	font-weight: 700;
}

.content_cols {
	width: 100%;
	display: flex;
}

.col_symbol {
	width: 300px;
	flex-grow: 0;
	flex-shrink: 0;
	text-align: left;
	font-size: 180px;
	text-shadow: 0 0 20px #5B5344;
	color: #ffffff;
	
}
.fa-gradient {
	opacity: 0.7;
}

.col_text {
	flex-grow: 1;
	text-align: left;
	line-height: 160%;
	font-weight: 500;
	color: #5B5344;
	padding-bottom: 200px;
}

.col_text a {
	color: #5B5344;
	border-bottom: 2px solid rgba(91, 83, 68, 0);
	transition: all 0.5s;
	padding-bottom: 2px;
}

.col_text a:hover {
	color: #5B5344;
	border-bottom: 2px solid rgba(91, 83, 68, 0.5);
}

/* Home */

.page-home .content_wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

.intro_wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
}

.intro_col {
	width: 28%;
	text-align: left;
}

.intro_col h3 {
	padding-bottom: 0;
	height: 100px;
}

.intro_teaser {
	font-weight: 700;
	font-size: 21px;
	height: 100px;
}

.intro_text {
	height: 190px;
}


.ref_wrapper {
	display: flex;
	flex-wrap: wrap;
	padding-top: 40px;
}



.ref_logo {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 20px;
}

.ref_logo_ct {
	
}

.ref_logo_ct img {
	padding: 15px;
	height: 80px;
	background-color: #fff;
	width: auto;
	-webkit-border-radius: 7px;
border-radius: 7px;
	-webkit-box-shadow: 0 0 15px 0 rgba(91, 83, 68,0);
box-shadow: 0 0 15px 0 rgba(91, 83, 68,0);
	transition: all 0.5s;
}

.ref_logo_ct img:hover {
	-webkit-box-shadow: 0 0 15px 0 rgba(91, 83, 68,0.5);
box-shadow: 0 0 15px 0 rgba(91, 83, 68,0.5);
}

.case_box {
	background-color: rgba(255,255,255,0.9);
	padding: 20px;
	-webkit-border-radius: 7px;
border-radius: 7px;
	width: 90%;
	margin-left: 10%;
}




/* General Style */

h2 {
	font-family: 'Playfair Display', serif;
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 42px;
	padding-bottom: 1em;
	line-height: normal;
	display: block;
}

h3 {
	font-family: 'Playfair Display', serif;
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 28px;
	padding-bottom: 1em;
	display: block;
}

/* Menue */



/* Content */

.lang_switch_ct {
	position: absolute;
	right: 0;
	top: 70px;
	display: flex;
}
.lsi_wrp {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	background-color: rgba(255,255,255,0.5);
	color: #000;
	cursor: pointer;
}

.lsi_wrp.active {
	background-color: rgba(255,255,255,1);
	font-weight: bold;
}

.lsi_wrp:hover, .lsi_wrp:hover a {
	background-color: #5B5344;
	color: #fff !important;
}

.lsi_wrp a:hover {
	color: #000;
}


/* Kontakt Formular */



.page-contact .col_text {
	padding-right: 150px;
}

input[type="checkbox"], input[type="radio"] {
	display: none;
}

input[type="checkbox"] + label, input[type="radio"] + label {
	cursor: pointer;
	cursor: hand;
	font-size: 15px;
	margin-right: 20px;
	line-height: 175%;
}



input[type="checkbox"] + label span, input[type="radio"] + label span {
	width: 15px;
	height: 15px; 
	background-color: #fff; 
	border: 1px solid rgb(88,89,91);
	border-radius: 0px;
	display: inline-block; 
	margin-left: 0px;
	margin-right: 4px; 
	margin-bottom: 8px;
	margin-top: 5px;
	vertical-align: middle;
}

input[type="checkbox"] + label span {
	border-radius: 0px;
}

input[type="checkbox"]:checked + label span, input[type="radio"]:checked + label span {
	/*background-image: url(ico_check.jpg);*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: rgba(152,19,72,1);
}



input[type="text"], textarea, select {
	padding: 10px 10px 10px 10px;
	width: 75%;
	background-color: rgba(255,255,255,0.4); 
	border: none;
	border-bottom: 2px solid rgba(255,255,255,0);
	font-family: 'Source Sans Pro', sans-serif;
	transition: all 0.5s;
	font-size: 15px;
	letter-spacing: 1px;
	color: #000;
	margin-top: 10px;
}

.nightvision input[type="text"], .nightvision textarea, .nightvision select {
	background-color: rgba(255,255,255,0.2); 
	color: #fff;
}

#Strasse {
	width: 53%;
	float: left;
	margin-right: 2%;
}

#Strasse_Nr {
	width: 20%;
	float: left;
}

#PLZ {
	width: 20%;
	float: left;
	margin-right: 2%;
}

#Ort {
	width: 53%;
	float: left;
}

select {
	padding-left: 5px;
}

textarea {
	width: 100%;
	height: 120px;
}

.cs_form label {
	display: inline-block;
	width: 25%;
	padding-top: 5px;
	float: left;
	margin-top: 10px;
	color: rgba(138,138,123,1); 
	text-transform: uppercase;
	font-size: 15px;
}

.cs_form label.lb_auto {
	width: auto;
	padding-top: 0px;
	margin-top: 10px;
	text-transform: none;
}

input[type="text"]:focus, textarea:focus {
	background-color: rgba(255,255,255,0);outline: none;border-bottom: 2px solid rgba(255,255,255,1);
}

input[type="submit"], input[type="reset"] {
	background-color: #5B5344;
	color: #fff;
	border: none;
	padding: 5px 15px;
	float: right;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	font-weight: 400px;
	letter-spacing:2px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
}

input[type="submit"]:hover, input[type="reset"]:hover {
	color: #5B5344;
	background-color: #fff;
}

.cat-m input[type="submit"]:hover, .cat-m input[type="reset"]:hover {
	background-color: #009640;
}

form input.hlt, form select.hlt {
	background-color: rgba(255,0,0,0.2);
}

.hpt {
	display: none;
}


.form_subtitle {
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 23px;
	padding-bottom: 20px;
	display: inline-block;
}

::-webkit-input-placeholder {
   color: #fff;
	font-weight: 400;
}

:-moz-placeholder { /* Firefox 18- */
   color: #fff; 
	font-weight: 400;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #fff; 
	font-weight: 400;
}

:-ms-input-placeholder {  
   color: #fff;  
	font-weight: 400;
}






/* Lightbox */

#lightbox_layer {
	display: none; 
	z-index: 999; 
	position: fixed; 
	width: 100%; 
	height: 100%;
}

#lightbox_bg {
	width: 100%; 
	height: 100%; 
	background-color: rgba(255,255,255,0.8); 
	position: fixed;
}

#lightbox_dots span {
	display: inline-block; 
	width: 8px; 
	height: 8px; 
	border-radius: 4px;
	background-color: rgb(180,180,180);
	background-color: rgba(255,255,255,0.4);
	margin: 8px 4px;
}

#lightbox_dots span.active {
	background-color: rgba(255,255,255,1);	
}


#lightbox_center {
	position: relative;	
}

#lightbox_center img {
	width: 100%;
}

.lba {
	position: relative;
	display: inline-block;
}

#lba_prev, #lba_next, #lba_close {
	position: absolute;
	z-index:500;
	transition: all 0.5s;
	color: rgba(58,58,57,0.5);
	cursor: pointer;
	cursor: hand;
}

#lba_prev:hover, #lba_next:hover, #lba_close:hover {
	color: rgba(58,58,57,1);
}


#lba_prev {
	font-size: 40px;
	top: 50%;
	margin-top: -20px;
	left: -45px;
}

#lba_next {
	font-size: 40px;
	top: 50%;
	margin-top: -20px;
	right: -43px;
}

#lba_close {
	font-size: 40px;
	top: 10px;
	right: -45px;
	margin-top: -20px;
}


#thumbbox {
	position: absolute;
	width: 100%;
	height: 100px;
	bottom: 0px;
	background-color: rgba(255,255,255,0.9);
	text-align: center;
	opacity: 0;
	transition: all 0.5s;
	z-index: 10;
}

#lightbox_image_ct:hover #thumbbox {
	opacity: 1;
}

#thumbbox div {
	position: relative;
	display: inline-block;
	width: 90px; 
	height: 60px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 20px 1px;
	opacity: 0.6;
	cursor: pointer; 
	cursor: hand;
	transition: all 0.5s;
}

#thumbbox div.active {
	opacity: 1;
	width: 120px;
	height: 80px;
	margin: 10px 5px;
}

.ico_popup {
	position: absolute;
	height: 25px;
	top: 30px;
	right: 10px;
	opacity: 0;
}


/* tmp */




.tmp_ct {
	width: 100%;
	column-count: 2;
	column-gap: 0;
}

.tmp_itm {
	width: 100%;
	height: 50px;
	border: 1px solid #f00;
	background-color: rgba(0,255,0,0.2);
	break-inside: avoid;
}



.tmp_itm.t2 {
	height: 80px;
}





.bg_side_ct {
	position: fixed;
	height: 120vh;
	width:  calc(((100vw - 1100px) * 0.6) + 20vw);
	left: calc(((100vw - 1100px) * 0.3) + 1200px);
	top: -10vh;
	-moz-transform: rotate(-10deg);
-webkit-transform: rotate(-10deg);
-o-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
	overflow: hidden;
}

.bg_side_shadow {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-box-shadow:inset 0 0 20px 0 rgba(0,0,0,0.5);
box-shadow:inset 0 0 20px 0 rgba(0,0,0,0.5);
}


.bg_side_inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -10vh;
	left: -10vw;
	background-image: url(/img/ctc_home2.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	-moz-transform: rotate(10deg);
-webkit-transform: rotate(10deg);
-o-transform: rotate(10deg);
-ms-transform: rotate(10deg);
transform: rotate(10deg);
}

.page-management_consulting_services .bg_side_inner {
	background-image: url(/img/ctc_office1.jpg);
}

.page-business_development .bg_side_inner {
	background-image: url(/img/ctc_bus2.jpg);
}

.page-eecs .bg_side_inner {
	background-image: url(/img/ctc_ch2.jpg);
}

.page-trading .bg_side_inner {
	background-image: url(/img/ctc_trade1.jpg);
}

.page-os .bg_side_inner {
	background-image: url(/img/ctc_bus4.jpg);
}

.page-company_profile .bg_side_inner {
	background-image: url(/img/ctc_ch1.jpg);
}

.page-contact .bg_side_inner {
	background-image: url(/img/ctc_zh2.jpg);
}

.page-disclaimer .bg_side_inner {
	background-image: url(/img/ctc_zh1.jpg);
}

.page-privacy .bg_side_inner {
	background-image: url(/img/ctc_bus1.jpg);
}



/* Media Queries */


@media only screen and (max-width : 1200px)  {
	
	.header_ct, .content_wrapper, .footer_ct {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.footer_ct {
		position: relative;
	}
	
	.menu_ct {
		font-size: 17px;
	}
	
	.col_text {
		padding-bottom: 100px;
	}
	
	.intro_col h3 {
		font-size: 24px;
	}
	
	.intro_teaser {
		font-size: 18px;
	}
	
	.bg_side_ct {
		position: absolute;
		height: 40vw;
		width: 120vw;
		top: 0;
		left: -10vw;
		-moz-transform: rotate(5deg);
-webkit-transform: rotate(5deg);
-o-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg);
	}
	
	.bg_side_inner {
		top: 5vw;
		height: 110%;
		-moz-transform: rotate(-5deg);
-webkit-transform: rotate(-5deg);
-o-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);
	}
	
	.content_wrapper, .page-home .content_wrapper {
		padding-top: 45vw;
	}
	
	.footer_inner {
		margin-left: 0;
	}
	
}

@media only screen and (max-width : 1000px)  {
	.menu_ct {
		position: absolute;
		background-color: #fff;
		width: 100vw;
		left: -105vw;
		top: 70px;
		padding-bottom: 3em;
		transition: all 0.5s;
		flex-wrap: wrap;
	}
	
	.menuopen .menu_ct {
		left: -20px;
	}
	
	.menu_icon {
		display: inherit;
		position: absolute;
		top: 20px;
		right: 0px;
		cursor: pointer;
	}
	
	.menu_ct .menu_item {
		display: block;
		width: 100%;
		text-align: center;
		padding-top: 1em;
	}
	
	.lang_switch_ct {
		z-index: 20;
	}
	
	.page-home .intro_wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.page-home .intro_col {
		width: 80%;
	}
	
	.page-home .intro_teaser, .page-home .intro_col h3, .page-home .intro_text, .page-home .submenu_inner {
		height: auto;
		padding-bottom: 0.8em;
	}
	
	.page-home .intro_col h3 {
		padding-top: 2em;
	}
	
	.page-contact .col_text {
		padding-right: 0px;
	}
	
	
}

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

	.content_cols {
		flex-direction: column;
	}
	
	.logo_ct {
		left: 0px;
	}
	
	.header_inner {
		margin-left: 0;
	}
	
	.submenu_wrapper {
		padding-left: 0;
	}

	.col_symbol {
		width: 100%;
		text-align: center;
		font-size: 120px;
	}
	
	.footer_inner {
		flex-direction: column;
		justify-content: center;
	}

	.footer_links {
		justify-content: center;
		padding-bottom: 2em;
	}
	
	.footer_copy {
		padding-bottom: 2em;
	}
	
}


@media only screen and (max-width : 640px)  {
	
	body {
		font-size: 14px;
	}
	
	h2 {
		font-size: 32px;
	}
	
	.ref_logo_ct img {
		height: 50px;
		padding: 10px;
	}
	
	.page-home .intro_col {
		width: 94%;
	}
	
	.footer_inner {
		font-size: 11px;
	}
	
	.cs_form label {
		font-size: 11px;
	}
	
	.bg_side_ct {
		height: 70vw;
	}
	
	.content_wrapper, .page-home .content_wrapper {
		padding-top: 80vw;
	}
	
	
}


@media print {

}