/* FONTS
================================================== */
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700&subset=latin-ext);


/* HTML RESET
================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
input, button, select,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video { margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline; }

body { line-height: 1; }

ol, ul { list-style: none; }

blockquote, q { quotes: none; }

blockquote:before, blockquote:after, q:before, q:after { content: '';	content: none; }

table { border-collapse: collapse; border-spacing: 0; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }



/* DEFAULTS
================================================== */
body {
	font-family: 'Roboto Slab', Arial, sans-serif;
	font-size: 16px;
	line-height: 26px;
	-webkit-font-smoothing: antialiased;
	word-spacing: 0;
	letter-spacing: 0;
	background: #fff;
	color: #777;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1em;
}

p {
	margin: 0 0 20px;
}

a, input[type="submit"], input[type="button"], button {
	-webkit-transition:	all 0.3s;
	-moz-transition:	all 0.3s;
	transition:			all 0.3s;
}

input[type="submit"], input[type="button"], button {
	cursor: pointer;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #555;
}

strong, b {
	font-weight: bold;
}

em, i {
	font-style: italic;
}



/* BASE
================================================== */
.clear {
	clear: both;
}

.container {
	max-width: 940px;
	width: 100%;
	margin: auto;
}

@media screen and (max-width: 940px){
	.container{
		width: 100%;
		padding-left: 20px !important;
		padding-right: 20px !important;
		box-sizing: border-box;
	}
}

.container:after { clear: both; content: ''; display: block; height: 0; line-height: 0; visibility: hidden; }


/* Go to top button */
.to-top {
	position: absolute;
	bottom: 75px;
	left: 50%;
	margin-left: -15px;
	font-size: 13px;
	font-weight: bold;
}

	.to-top:before, .to-top:after {
		position: absolute;
		content: '';
		width: 20px;
		height: 3px;
		top: -6px;
		left: 50%;
	}

	.to-top:before {
		-webkit-transform:	rotate(-45deg);
		-moz-transform:		rotate(-45deg);
		transform:			rotate(-45deg);
		margin-left: -16px;
	}

	.to-top:after {
		-webkit-transform:	rotate(45deg);
		-moz-transform:		rotate(45deg);
		transform:			rotate(45deg);
		margin-left: -4px;
	}

.to-top.green			{ color: #6a9fa1; }
.to-top.green:before,
.to-top.green:after		{ background: #6a9fa1; }

.to-top.white			{ color: #fff; }
.to-top.white:before,
.to-top.white:after		{ background: #fff; }


/* Section title */
.section-title {
	display: block;
	font-size: 27px;
	font-weight: bold;
	text-align: center;
}

.section-title.green	{ color: #6a9fa1; }
.section-title.white	{ color: #fff; }

	.section-title h3 {
		position: relative;
		display: inline-block;
	}

	.section-title h3:before, .section-title h3:after {
		position: absolute;
		content: '//';
	}

	.section-title h3:before	{ right: -35px; }
	.section-title h3:after	{ left: -35px; }


/* LAYOUT
================================================== */
/* Header
--------------------*/
.header {
	overflow: hidden;
	padding: 50px 0;
}

	.header .logo, .header .logo a {
		width: 155px;
		height: 125px;
	}

	.header .logo {
		margin: 0 auto;
	}

	.header .logo a {
		display: block;
		text-indent: -9999px;
		background: url('../images/logo.png');
	}

/* Menu
--------------------*/
.nav {
	margin: 49px 0 0;
	text-align: center;
}

	.nav li {
		display: inline-block;
		padding: 0 10px;
	}

	.nav li + li {
		margin: 0 0 0 18px;
	}

		.nav li a {
			position: relative;
			display: block;
			font: normal 16px/1em 'Roboto Slab';
			text-align: center;
			color: #777;
		}

		.nav li a:hover {
			color: #6a9fa1;
		}

		.nav li a:after, .nav li:first-child a:before {
			position: absolute;
			content: '//';
			color: #777;
		}

		.nav li a:after				{ right: -25px; }
		.nav li:first-child a:before	{ left: -25px; }

 .sticky {

 	  min-height: 200px;
 	  position: fixed;
 	  margin-left: auto;
      margin-right: auto;
      left: 0;
      right: 0; 
 }

 .dump {

 	min-height: 200px;
 }

 .sticky {

 	max-width: 100%;
 }

 .container.affix {

 	margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 10;
    top: 0;
		box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
		padding-bottom: 15px;
 }
  @media (min-width: 992px) {
		.container.affix {
			padding-bottom: 0;
		}
	}

 .menu-size {

 	max-width: 940px;
 	margin: 0 auto;
 }

 .container.affix .logo {

 	width: 215px;
    height: 40px;
    margin: 10px;
    display: inline-block;
    position: relative;
 }

 @media (min-width: 992px) {
	 .container.affix .logo {
		top: -10px;
 }
	
 }

 .container.affix .logo a {

 	background: url(../images/kolozsvari&wald_horiz-logo.svg);
 	background-position: left center;
 	background-repeat: no-repeat;
 	width: 215px;
    height: 40px;
 }

 .container.affix .nav {
		margin-top: 25px;
    display: inline-block;
    transition: all 1s ease;
    -o-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
 }
 @media (min-width: 768px){
	.container.affix .nav {
		margin: 25px 0 0 80px;
	}
 }

 .container.affix {

 	min-height: 0;
 	transition: all 1s ease;
    -o-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
 }

/* Content
--------------------*/
.section {
	position: relative;
}

.section.intro #intro-bg {
	position: relative;
	background: url('../images/bg-pic.jpg') center top 0 / cover fixed ;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.section.intro #intro-bg h2 {
		font-size: 30px;
		text-align: center;
		line-height: 1.2;
		color: #fff;
		text-shadow: 0 0 10px #000;
	}
	@media (min-width: 768px) {
		.section.intro #intro-bg h2 {
			font-size: 40px;
		}
	}

	.section.intro #intro-bg .scroll {
		position: absolute;
		display: inline-block;
		bottom: 35px;
		left: 50%;
		width: 50px;
		height: 30px;
		margin-left: -30px;
		text-indent: -9999px;
	}

	.section.intro #intro-bg .scroll:before, .section.intro #intro-bg .scroll:after {
		position: absolute;
		content: '';
		width: 32px;
		height: 5px;
		top: 10px;
		left: 50%;
		background: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	}

	.section.intro #intro-bg .scroll:before {
		-webkit-transform:	rotate(45deg);
		-moz-transform:		rotate(45deg);
		transform:			rotate(45deg);
		margin-left: -26px;
	}

	.section.intro #intro-bg .scroll:after {
		-webkit-transform:	rotate(-45deg);
		-moz-transform:		rotate(-45deg);
		transform:			rotate(-45deg);
		margin-left: -6px;
	}



	.section.intro .quote {
		padding: 90px 0 165px;
	}

		.section.intro .quote blockquote {
			position: relative;
			margin: 0 0 35px;
			padding: 0 0 0 50px;
			font-size: 27px;
			line-height: 37px;
			font-weight: bold;
		}

		.section.intro .quote p {
			position: relative;
			margin: 0;
			padding: 0 50px 0 0;
		}

		.section.intro .quote blockquote:after, .section.intro .quote p:after {
			position: absolute;
			content: '//';
			font-size: 34px;
			font-weight: bold;
			color: #5da19f;
		}

		.section.intro .quote blockquote:after {
			top: -2px;
			left: 0;
		}

		.section.intro .quote p:after {
			bottom: 5px;
			right: 0;
		}

	@media only screen and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2){
		.section.intro #intro-bg {
			background: url('../images/bg-pic.jpg') center 50% !important;
		}
	}


.section.warumwir {
	padding: 90px 0 140px;
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
	background: #f7f7f7;
}

@media screen and (max-width: 956px){
	.section.warumwir .left, .section.warumwir .right{
		float: initial !important;
		max-width: 445px !important;
		width: 100% !important;
		padding: 0 !important;
		display: block !important;
		margin: 0 auto !important;
	}
}

	.section.warumwir .section-title {
		margin: 0 0 50px;
	}

		.section.warumwir h4 {
			margin: 0 0 30px;
			font-size: 19px;
			font-weight: bold;
			color: #6a9fa1;

		}

		.section.warumwir h4.icon-title {
			background-position: center top;
			background-repeat: no-repeat;
		}

		.section.warumwir ul {
			margin: 0 0 30px;
		}

			.section.warumwir ul li {
				list-style-type: none;
				position: relative;
				padding: 0 0 0 0;
				margin-bottom: 5px;
			}
			
			@media (min-width: 992px) {
				.section.warumwir ul li{
					padding: 0 0 0 20px;
				}
			}
			.section.warumwir ul li div{
				display: flex;
				align-items: center;
				justify-content: flex-start;
				gap: 10px;
			}
			.section.warumwir ul li div svg{
				object-fit: contain;
				min-height: 20px;
				min-width: 20px;
			}

			.section.warumwir .why-choose-us blockquote {
			position: relative;
			margin: 0 0 35px;
			padding: 0 0 0 50px;
			font-size: 27px;
			line-height: 37px;
			font-weight: bold;
		}
		.section.warumwir .why-choose-us{
			margin-bottom: 40px;
		}


		.section.warumwir .why-choose-us p {
			position: relative;
			margin: 0;
			padding: 0 50px 0 0;
		}

		.section.warumwir .why-choose-us blockquote:after {
			position: absolute;
			content: '//';
			font-size: 34px;
			font-weight: bold;
			color: #5da19f;
		}

		.section.warumwir .why-choose-us blockquote:after {
			top: -2px;
			left: 0;
		}

	.section.unsere-kollegen{
		padding: 95px 0 150px 0;
		background: #f7f7f7;
	}

	.section.unsere-kollegen .maze *{
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.section.unsere-kollegen .maze{
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		margin: 95px 0 0 0;
		padding: 0;
		list-style: none;
	}

	.section.unsere-kollegen .maze:after{
		content: '';
		display: block;
		height: 0;
		clear: both;
	}

		.section.unsere-kollegen .maze li{
			padding: 0 15px;
			width: 33.3333%;
			float: left;
			margin-bottom: 45px;
		}

		@media screen and (max-width: 767px){
			.section.unsere-kollegen .maze li{
				width: 50%;
			}
		}

		@media screen and (max-width: 500px){
			.section.unsere-kollegen .maze li{
				width: 100%;
			}
		}

			.section.unsere-kollegen .maze li figure{
				height: 162px;
				width: 162px;
				margin: 0 auto 15px auto;
				background-repeat: no-repeat;
				background-position: bottom center;
				background-size: 90%;
				filter: grayscale(1);
				transition: all 0.3s ease;
				clip-path: polygon(
					25% 6.7%,
					75% 6.7%,
					100% 50%,
					75% 93.3%,
					25% 93.3%,
					0% 50%
				);
			}

			.section.unsere-kollegen .maze li:hover figure{
				filter: grayscale(0);
			}

			.section.unsere-kollegen .maze li.profile-krenato figure{
				background-image: url(../images/dr_kolozsvari_renato_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li.profile-wgabor figure{
				background-image: url(../images/dr_waldmann_gabor_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li.profile-kbetti figure{
				background-image: url(../images/dr_karas_bettina_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li.profile-hniki figure{
				background-image: url(../images/dr_hodi_nikolett_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li.profile-kadam figure{
				background-image: url(../images/kolozsvari_adam_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li.profile-szpatrik figure{
				background-image: url(../images/szabo_patrik_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li.profile-vpetra figure{
				background-image: url(../images/dr_vizsnyiczai_petra_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li.profile-tkadam figure{
				background-image: url(../images/dr_toth_kasa_adam_1x1.jpg);
				
			}
			.section.unsere-kollegen .maze li h4{
				font-family: 'Roboto Slab';
				font-weight: 700;
				font-size: 19px;
				color: #6a9fa1;
				padding: 0;
				margin: 0 0 5px 0;
				text-align: center;
			}

			.section.unsere-kollegen .maze li p{
				font-family: 'Roboto Slab';
				font-size: 16px;
				font-weight: 400;
				color: #777777;
				margin: 0;
				text-align: center;
			}

.section.kanzleiprofil {
	padding: 100px 0 150px;
}

	.section.kanzleiprofil .section-title {
		margin: 0 0 50px;
		padding: 145px 0 0;
		background: url('../images/icon_building.png') center top no-repeat;
	}

	.section.kanzleiprofil figure {
		margin: 0 0 45px;
	}

		.section.kanzleiprofil figure img {
			display: block;
			max-width: 100%;
			height: auto;
		}

 #faq {

 	padding: 95px 0;
 }

  #faq h3 {

  	margin-bottom: 95px;
  }

  .faq-quest {

 	padding: 7px 15px;
    text-align: center;
    background-color: #fff;
    border: solid 2px #6a9fa1;
    color: #6a9fa1;
    font-weight: 600;
    outline: 0;
    margin-top: 10px;
 }

 .faq-quest:hover {

 	background-color: #6a9fa1;
 	color: #fff;
 }

 .faq-answ {
    background-color: #fff;
    border: solid 1px #6a9fa1;
    color: #6a9fa1;
    display: none;
    outline: 0;
	overflow:hidden;
    padding-top: 9px;
    text-align: justify;
    padding: 10px 10px 0 10px;
}

.ui-accordion-header:after {

	float: right;
    content: '';
    display: block;
    border-bottom: 2px solid;
    border-right: 2px solid;
    position: relative;
    margin: 0.3em 0 0 0;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
}

 .ui-accordion-header-active:after {

	  margin: 0.05em 0 0 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.panel {

	margin-bottom: 0;
}

/* Footer
--------------------*/
.footer {
	position: relative;
	padding: 95px 0 45px;
	text-align: center;
	color: #fff;
	background: #777;
}

.footer a {
	color: #fff;
}

	.footer .section-title, .footer .contact {
		margin: 0 0 80px;
	}

	/* Contact form 
	-------------------*/

	fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact-form {

	width: 80%;
	margin: 0 auto;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form input[type="subject"],
#contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  color: #000;;
}

#contact-form input[type="text"]:hover,
#contact-form input[type="email"]:hover,
#contact-form input[type="tel"]:hover,
#contact-form input[type="subject"]:hover,
#contact-form textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact-form textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact-form button[type="submit"] {
  cursor: pointer;
  width: 50%;
  border: none;
  background: #6a9fa1;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
  text-transform: uppercase;
}

#contact-form button[type="submit"]:hover {
  background: #7BB3B5;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact-form button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #777;
}

:-moz-placeholder {
  color: #777;
}

::-moz-placeholder {
  color: #777;
}

:-ms-input-placeholder {
  color: #777;
}

#err {

	margin: 20px 0;
	text-align: center;
	width: 100%;
	border: 2px solid #DB2121;
	padding: 15px;
	background-color: rgba(219,121,121,0.5);
	color: #fff;
}

.success{
	 margin: 20px 0;
    text-align: center;
    width: 100%;
    border: 2px solid #22b420;
    padding: 15px;
    background-color: rgba(159, 219, 121, 0.5);
    color: #fff;
}

    .footer .contact {

    	margin-top: 50px;
    }

	.footer .contact li {
		position: relative;
		display: inline-block;
		margin: 0 14px;
		line-height: 55px;
		font-weight: bold;
	}

	.footer .contact li + li:before {
		position: absolute;
		content: '/';
		left: -17px;
	}

	.footer .contact li:nth-child(4):before {
		display: none;
	}

		.footer .contact li span {
			font-weight: normal;
		}

	.footer .to-top {
		position: relative;
		bottom: 0;
		margin: 0;
		left: 0;
	}

	.footer .to-top:before, .footer .to-top:after {
		top: -10px;
	}

	.footer .evista {
		display: block;
		width: 254px;
		height: 28px;
		margin: 50px auto 0;
		text-indent: -9999px;
		background: url('../images/evista.png');
	}

.lngselect{
	position: absolute;
    right: 25px;
    top: 10px;
}
.footerLogo {
	margin-top: 40px;
}
.winteam {
	margin-top: 10px;
	height: 44px;
	width: auto;
}