@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	padding: 0px;
	margin: 0px;
	overflow-x: hidden;
	width: 100vw;
	height: -webkit-fill-available;
	background-color: #0e0f12;
}

#main1 {
	background-image: url("../images/background.jpg");
    background-position: top center;
    background-attachment:scroll;
    background-size: cover;
    width: 100%;
}

h1 {
	color:white;
	font-family: 'eb garamond', serif;
	font-size: 3.5vw;
	font-weight: 400;
	display: flex;
	justify-content: center;
	padding: 120px 0 20px;
}

h3 {
	color: white;
	font-family: 'eb garamond', serif;
	font-size: 30px;
	font-weight: 400;
}


/* -------------------------------------------CSS for navigation bar---------------------------------------------*/

a, a:hover, a:focus, a:active {
	text-decoration: none;
	color: white;
}

.webnav {
	display: none;
}

.webnav ul {
	list-style: none;
	margin: 0;
	display: flex;
	padding: 0;
}

.webnav ul li {
	display: flex;
	align-items: center;
	align-content: space-between;
}

.webnav ul li a {
	display: inline-block;
	padding: 0px 5vw;
	vertical-align: middle;
	transition: 0.2s;
	font-family: 'eb garamond', serif;
}

.webnav ul li a:hover {
	color: #9E9673;
	transition: 0.2s;
}

.toplogo {
	background-color: rgba(100, 100, 100, 0.8);
	backdrop-filter: blur(10px);
	padding: 20px;
	position:absolute;
	transition: 0.5s;
	width:20%;
}

.moblogo {
	width:100vw;
	height:20vw;
	background-color: rgba(100, 100, 100, 0.8);
	backdrop-filter: blur(10px);
	padding: 5px;
	position:fixed;
	display: flex;
	justify-content: center;
	z-index: 4;
}

.mobilenav {
	display: flex;
	width: 100vw;
	background-color: rgba(100, 100, 100, 0.5);
	color: white;
	font-family: 'EB Garamond', serif;
	font-size: 1.7vw;
	text-align: center;
	padding: 0;
	margin: 0;
	filter: drop-shadow(0 5px 5px #000000);
	backdrop-filter: blur(10px);
	position: fixed; 
	z-index: 4;
	justify-content: center;
	height:60px;
	bottom:0px;
}

.mobilenav ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	padding: 0px 20px;
}

.mobilenav ul li {
	padding: 0 20px;
}

section {
	width: 100vw;
	height: 100vh;
}

/* -------------------------------------------CSS for Home Section---------------------------------------------*/

#home {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mainhome {
	width: 70%;
	height:50%;
	flex-direction: column;
	display: flex;
	align-items: center;
}

.tagline1 {
	font-family: 'montserrat', sans-serif;
	font-size: 4.5vw;
	font-weight: 700;
	color: white;
	margin:170px 0 0;
}

.tagline2 {
	font-family: 'EB Garamond', serif;
	font-size: 4.5vw;
	font-weight: 400;
	color:white;
	margin:0 0 50px;
}

.calltoaction {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.calltoaction .line1 {
	display: flex;
	justify-content: space-between;	
	margin-bottom: 10px;
}

.calltoaction a {
	padding: 10px 60px;
	text-align: center;
  	text-decoration: none;
  	display: inline-block;
  	font-size: 1rem;
	font-family: 'montserrat', sans-serif;
	border: none;
	margin: auto 20px;
	cursor: pointer;
}

.calltoaction a:active {
	transform: translateY(1px);
}

.primarybutton {
	color:white;
	background-color: #9E9673;
	 	
}

.primarybutton:hover {
	background-color: #5B532F;
}

.calltoaction .secondarybutton {
	border: solid;
	border-width: 2px;
	border-color: #9E9673;
	color: #9E9673;
	background-color: rgba(80, 80, 80, 0.2);
}

.secondarybutton:hover {
	background-color: rgba(80, 80, 80, 0.8);
}

/* -------------------------------------------CSS for Practice Section---------------------------------------------*/


.main-gallery {
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	height: 390px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.carousel-container {
	width: 1000px;
	margin: auto;
	overflow: hidden;
	position: relative;
}

.carousel-slide {
	width: 100%;
	display: flex;
	height:250px;
	transform: translateX(-1015px);
	-webkit-transform: translateX(-1015px);
}

.slide {
	display:flex;
	color: white;
}

 .slide img {
	width: 375px;
	height: 250px;
} 

.slideinfo {
	padding: 0 70px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 640px;
}

.slide h2 {
	font-family: 'eb garamond', serif;
	font-size: 40px;
	font-weight: 400;
	margin:0;
	color:white;
}

.slide p {
	font-family: 'montserrat', sans-serif;
	font-size:  16px;
	font-weight: 400;	
}

.slideinfo a {
	margin: 0;
  	width: 50%;
	padding: 10px 10px;
	font-size:1vw;
	font-family: 'montserrat', sans-serif;
	text-align: center;
}

#prevBtn {
	position: absolute;
	top: 45%;
	z-index: 2;
	left:1%;
	cursor:pointer;
}

#nextBtn {
	position: absolute;
	top: 45%;
	z-index: 2;
	right:-5%;
	cursor:pointer;
}

.carousel-container input {
	display: none;
}

.navigation-manual {
	position:relative;
	width: 1000px;
	display: flex;
	justify-content: center;
	bottom:30px;
}

.manual-btn {
	border: 2px solid rgba(255, 255, 255, 0.3);
	width:50px;
	height:10px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.4s;
}

.manual-btn:not(:last-child) {
	margin-right:5px;
}

.manual-btn:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.mobpractice {
	display: none;
}

.mobslide {
	display: none;
}

/* -------------------------------------------CSS for Team Section---------------------------------------------*/

#team input, .mobteam {
	display: none;
} 

.team-gallery {
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	height: 315px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.team-carousel-container {
	width: 800px;
	margin: auto;
	overflow: hidden;
	position: relative;
}

#teamprevBtn {
	position: absolute;
	top: 45%;
	z-index: 2;
	left:1%;
	cursor:pointer;
}

#teamnextBtn {
	position: absolute;
	top: 45%;
	z-index: 2;
	right:-5%;
	cursor:pointer;
}

.teamcarousel-slide {
	width: 100%;
	display: flex;
	height:250px;
	position: relative;
	left:100px;
	transform:translateX(-700px);
	-webkit-transform:translateX(-700px);
}

.teamslide1 {
	display:flex;
	color: white;
	width: 1000px;
	margin: auto;
}

.teamslide-info {
	width:500px;
	display: flex;
	flex-direction: column;
	margin: auto 10%;
}

.teamslide1 img {
	border-radius: 50%;
	margin: 0 auto;
	width: 200px;
	height: 200px;
}

.teamslide1 h2 {
	font-family: 'eb garamond', serif;
	font-size: 40px;
	font-weight: 400;
	color:white;
}

.memberpictures {
	position:relative;
	width: 80%;
	display: flex;
	justify-content: space-between;
	margin:auto;
	margin-bottom: 40px;
}
	
.profilepic img, .overlay {
	width:150px;
	height:150px;
	border-radius: 50%;
	cursor: pointer;
}

.overlay {
	background-color: rgba(255, 255, 255, 0.3);
	position:absolute;
	backdrop-filter: blur(2px);
}

.membertext {
	width: 58%;
	margin: auto;
	color:white;
}

.membertext h3 {
	color:white;
}

#team p {
	color: white;
	font-family: 'montserrat', sans serif;
	font-size: 20px;
	font-weight: 400;
}


/*----------------------------------------- CSS for Contact Us Section ------------------------------*/

#contact {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#contact h1 {
	padding-top: 70px;
}

.contactblock {
	display: flex;
	justify-content: space-between;
	margin: auto;
	width:70%;
	height:50%;
	min-height: 410px;
}

.contactdetails {
	width:40%;
	height:100%;
	margin: 70px;
	font-family: 'montserrat', sans-serif;
	font-size: 18px;
}

.adres, .epos, .telefoon {
	display: flex;
	margin-bottom:30px;
}

#contact p, .telefoona {
	margin:auto;
	margin-left: 10px;
}

#contact p:not(:first-child) {
	margin-top:5px;
}

.contactform {
	height:100%;
	width:60%;
	background-color: rgba(22, 20, 20, 0.95);
	color: white;
	font-family: 'montserrat', sans-serif;
	display:flex;
	align-items: center;
	flex-direction: column;
}

.contactform h3 {
	font-size: 25px;
	margin: 15px 0;
	color: white;
}

.fields {
	width:80%;
}

.fields input, textarea {
	font-family: 'montserrat', sans-serif;
	color: white;
	margin-top: 5px;
	margin-bottom: 10px;
	background-color: rgb(35, 35, 35);
	border-style: none;
	width:100%;
}

.fields input {
	height: 25px;
}

.captchabutton {
	display: flex;
	justify-content: space-between;
	height: 20%;
	width: 100%;
	margin-top:2%;
}

.captcha {
	transform:scaleX(0.9) scaleY(0.85);
	-webkit-transform:scalex(0.9) scaleY(0.85);
	transform-origin:0 0;
	-webkit-transform-origin:0 0;
}

.fields button {
	width: 70%;
	height: 100%;
	margin: auto 0;
	color:white;
	background-color: #9E9673;
	font-family: 'montserrat', sans-serif;
	font-size: 15px;
	border-style: none;
	
}

.fields button:hover {
	background-color: #5B532F;
}

/* --------------------------- Footer ----------------------------------*/

footer {	
	width: 100%;
	height:50px;
	background-color: rgba(100, 100, 100, 0.1);
	backdrop-filter: blur(5px);
	display: flex; 
	align-items: center;
	justify-content: space-between;
}

.foothide {
	display: flex;
}

.links {
	font-family: 'montserrat', sans-serif;
	color:white;
	font-size: 16px;
	margin: auto 40px;
}

.links button {
	background-color: transparent;
	border-style: none;
	color:white;
	font-family: 'montserrat', sans-serif;
	font-size: 16px;
	cursor: pointer;
}

.links button:hover, .linkhover:hover {
	text-decoration: underline;
}

.copyright {
	color: white;
	font-family: 'eb garamond', serif;
}

.sociallinks {
	margin: 0 100px;
}

.sociallinks a {
	margin: 0 10px;
}

/* --------------------------- Modals ------------------------------------*/

.modal {
	display: none;
	position: fixed; 
	z-index: 5; 
	left: 0;
	top: 0;
	width: 100%;
	height: 100%; 
	overflow: auto; 
	background-color: rgb(0,0,0); 
	background-color: rgba(0,0,0,0.8);	
}

.modal-content {
	background-color: rgba(255,255,255);
	margin: 10% auto; 
	padding: 20px 80px;
	border: 1px solid #888;
	border-radius: 10px;
	width: 80%;
	color: #4d4d4f;
}

.modal-content h1, h2, h3, h4 {
	font-family: 'eb garamond', serif;
	color: #4d4d4f;
}

.modal-content p, ul {
	font-family: 'montserrat', sans-serif;
}

.modal-content h1 {
	font-size: 3vw;
	padding: 20px;
}

.modal-content h2 {
	font-size: 2.5vw;
	font-weight:400;
}

.modal-content h3 {
	font-size: 2vw;
}

.modal-content h4 {
	font-size: 1.5vw;
	font-weight: 400;
}

.close {
  color: #aaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.cookiecontainer {
	width:1600px;
	margin:auto;
}

.subcookiecontainer {
	width:85%;
	margin:auto;
}

#cookies {
	width:100%;
	position: fixed;
	bottom:0;
	background-color: rgba(0,0,0, 0.7);
	z-index:3;
	display:none;
}

.cookies {
	min-height: 70px;
	display:flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-family: 'montserrat', sans-serif;
	color:white;
}

.cookies a {
	font-weight: 500;
	text-decoration: underline; 
}

#cookies-btn, #seecookiespolicy {
	color:white;
	background-color: #9E9673;
	padding:8px 12px;
	cursor:pointer;
}

/* --------------------------- Message Success / Fail ----------------------- */

.replypage {
	height: 100vh;
	width: 100vw;
	display: flex;
}

#alertblock {
	margin: auto;
	width: auto;
	height: auto;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

#alertblock h1 {
	margin: auto;
	padding: 20px;
	font-size: 2.5em;
}

#alertblock h2 {
	padding: 20px;
	margin: auto;
	font-weight: 500;
}

#alertblock p {
	padding: 20px;
}

#alertblock a:link {
	text-decoration: underline;
}

#alertblock h1, #alertblock h2, #alertblock p {
	color: white;
	text-align: center;
}

/* --------------------------- Media Queries -------------------------------- */

@media (max-width:1600px) {
	.cookiecontainer {
		width:100%;
	}
}

@media (max-width:1024px) {
	.cookies {
		padding: 10px 0;
	}
	
}

@media screen and (min-width:766px) {
	.moblogo {
		display: none;
	}
}

@media screen and (min-width:768px) {
	section {
		width: 100vw;
		height: 100vh;
	}

	header .webnav {
		width: 100vw;
		background-color: rgba(100, 100, 100, 0.5);
		color: white;
		font-family: 'EB Garamond', serif;
		font-size: 1.7vw;
		text-align: center;
		padding: 0;
		margin: 0;
		filter: drop-shadow(0 5px 5px #000000);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		position: fixed; 
		z-index: 4;
		display: flex;
		justify-content: center;
		height:80px;
	}

	header .mobilenav {
		display: none;
	}
	
	.cookies {
		padding-bottom: 60px;
	}
}

@media screen and (max-width:768px) {
	body {
		padding-bottom:60px;
	}
	
	header .webnav {
		font-size: 2.5vw;
	}
	
	.calltoaction {
		flex-direction: column;
	}
	
	.calltoaction .line1 {
		flex-direction: column-reverse;
		margin-bottom:0px;
	}
	
	.calltoaction a {
		margin: 5px;
	}
	
	h1 {
		font-size: 5vw;
	}
	
	.main-gallery {
		display: none;
	}

	.mobpractice {
		-webkit-overflow-scrolling: touch;
		display: block;
		padding: 10px 0;
		overflow-x: scroll;
		width: 100vw;
		scroll-snap-type: x mandatory;
  		scroll-behavior: smooth;
	}
	
	#nextSlide {
		position: absolute;
		top: 170%;
		z-index: 2;
		right:-5%;
	}
	
	.mobcarouselwrapper, .mobteamwrapper {
		width: 1000%;
		display: flex;
	}
	
	.mobslide {
		height: 300px;
		display: flex;
		position: relative;
		scroll-snap-align: start;
		width: 10%;
	}
	
	.mobslide img {
		object-fit: cover;
	}
	
	.mobimgoverlay {
		position: absolute;
		padding: 30px;
	}
	
	.mobimgoverlay h2 {
		margin-top: 10px;
		font-size: 3vw;
	}
	
	.mobimgoverlay p {
		font-family: 'montserrat', sans-serif;
		font-weight: 600;
		font-size: 2vw;
	}
	
	.memberpictures {
		width:90%;
	}
	
	.profilepic img, .overlay { 
		width: 120px;
		height:120px;
	} 
	
	.profilepic .overlay:hover {
		width:126px;
		height: 126px;
	}
	
	.membertext {
		width:80%;
	}
	
	.contactblock {
		width:90%;
	}
	
	.contactdetails {
		margin: 80px 10px 0px;
		height: 100%;
	}
	
	footer {
		height:90px;
	}
	
	.hideme {
		display: flex;
	}
	
	footer span {
		display: none;
	}
	
	.links {
		width:150px;
	}
	
	.links button {
		padding:1px 0;
	}
	
	.captchabutton {
		flex-direction: column;
	}
	
	.captcha {
		transform:scaleX(1.2) scaleY(0.85);
		-webkit-transform:scalex(1.06) scaleY(0.85);
	}
	
	.fields button {
		width:100%;
		height: 20px;
	}	
	
	.cookiecontainer {
		position: sticky;
		bottom:60px;
	}
	
	#cookies {
		position: sticky;
		bottom: 60px;
	}
	
}

@media only screen and (min-width:1441px){
	.mainhome {
		width: 60%;
		height:30%;
	} 
	
	.mainhome .tagline1, .mainhome .tagline2 {
		font-size: 3.5vw;
	}
	
	.mainhome .tagline1 {
		margin:70px 0 0;
	}
}

@media only screen and (min-width:1024px) and (max-width:1249px) {
	.memberpictures {
		width: 85%;
	}
}

@media only screen and (min-width:1250px) and (max-width:1344px) {
	.memberpictures {
		width: 75%;
	}
}

/* -------------------------------Mobile Phone Specific (<426px) ----------------------------- */
@media only screen and (max-width:425px) {	
	#practice {
		height: 60vh;
	}
	
	#contact {
		height: 140vh;
	}
	
	.tagline1 {
		margin: 50px 0 0;
	}

	.calltoaction {
		flex-direction: column;
	}
	
	.calltoaction .line1{
		flex-direction: column-reverse;
		margin-bottom:0px;
	}
	
	.mainhome {
		width: auto;
	}
	
	
	
	h1 {
		font-size: 1.8em;
	}

	
	
	/* -----------------------  Areas of Practice (and Our Team) on Mobile -------------------- */
	
	.main-gallery, .team-gallery {
		display: none;
	}

	.mobpractice, .mobteam {
		-webkit-overflow-scrolling: touch;
		display: block;
		padding: 10px 0;
		overflow-x: scroll;
		width: 100vw;
		scroll-snap-type: x mandatory;
  		scroll-behavior: smooth;
	}
	
	#nextSlide {
		position: absolute;
		top: 155%;
		z-index: 2;
		right:-13%;
	}
	
	.mobcarouselwrapper, .mobteamwrapper {
		width: 1000%;
		display: flex;
	}
	
	.mobslide {
		height: 300px;
		display: flex;
		position: relative;
		scroll-snap-align: start;
	}
	
	.mobslide img {
		object-fit: cover;
	}
	
	.mobimgoverlay {
		position: absolute;
		padding: 30px;
	}
	
	.mobimgoverlay h2 {
		margin-top: 10px;
		font-size: 7vw;
	}
	
	.mobimgoverlay p {
		font-family: 'montserrat', sans-serif;
		font-weight: 600;
		font-size: 4vw;
	}
	
	/* ---------------------- Our Team on Mobile ---------------------------- */
	
	.mainteam {
		display: none;
	}
	
	.mobteam {
		display: block;
		background-color: rgba(255, 255, 255, 0.2);
		backdrop-filter: blur(10px);
	}
	
	#team {
		height: 90vh;
	}
	
	#team p {
		font-size: 4vw;
		margin: 5px auto 10px;
	}
	
	#teamnextSlide {
		position: absolute;
		top: 45%;
		z-index: 2;
		right:-13%;
	}
	
	.teamslide {
		height: 310px;
		display: flex;
		flex-direction: column;
		position: relative;
		scroll-snap-align: start;
		padding: 0 20px;
		width: 100vw;
	}
	
	.teamslide h3 {
		color: white;
		margin: 5px auto;
	}
	
	.teamslide img {
		position:relative;
		width: 50%;
		display: flex;
		margin: 20px auto;
		border-radius: 50%;
		box-shadow: 1px 1px 8px #333;
	}
	
	/* ----------------------------- Contact us on Mobile -------------------------- */
	
	#contact {
		position: relative;
		display: flex;
	}
	
	.contactblock {
		flex-direction: column;
		margin: 0 auto;
		position: relative;
		top: -100px;
	}
	
	.contactdetails {
		width: 100%;
		margin: 0 10px;
		font-size: 4vw;
	}
	
	.contactform {
		width: 100%;
		padding-bottom: 55px;
	}
	
	footer {
		align-self:flex-end;
		position: relative;
		bottom:60px;
	}
	
	.hide-footer {
		display:none;
	}
	
	.links button, .links a {
		font-size: 4vw;
	}
	
	.links {
		margin: 0 5px;
	}
	
	.copyright {
		font-size: 4vw;
	}
	
	.sociallinks {
		margin: auto;
		display: flex;
	}
	
	
}

