:root {
  --contact: #ddd;
  --bs-breakpoint-xxl: 1200px;
}

body {
	position: relative;
	font-family: "Nunito","Arial",sans-serif;
	margin-top: 65px;
}


.navbar-brand {
	font-size: 26px;
}

.container {
	padding: 0px;
}

.logo {
	color: #009fdc;
}

p {
	padding: 0;
	margin: 0;
}

.nav-link {
	font-size: 19px;
}

.nav-link:hover {
	color: #009fdc;
}

.autohide{
		position: fixed;
		top: 0px;
		left: 50%;
		transform: translate(-50%, 0);
	    z-index: 1030;	
}

.scrolled-down{
		transform: translate(-50%, -100%); transition: all 0.3s ease-in-out;
	}
.scrolled-up{
		transform: translate(-50%, 0); transition: all 0.3s ease-in-out;
	}

.image-container {
	position: relative;
}

.background_img {
 	width: 100%;
  	height: 100%;
	z-index: -1;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;	
}

.image-text {
	width: 98%;
	text-align: center;
	position: absolute;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: calc(1.325rem + .9vw);
	z-index: 100;
	font-size: calc(1.325rem + .9vw);
	color: #009fdc;
	color: white;
	backdrop-filter: brightness(70%);
}

.image-text.left {
	top: 7px;
	margin: auto;
	animation: slideFromLeft 0.75s ease-in;
	animation-fill-mode: forwards ;
	width: 100%;
}

@keyframes slideFromLeft{
	0% {
		transform: translateX(-200px)
	}
	100% {
		transform: translateX(0px);
	}
}


.image-text.right {
	bottom: 7px;
	margin: auto;
	animation: slideFromRight 0.75s ease-in;
	animation-fill-mode: forwards ;
	width: 100%;
}

@keyframes slideFromRight{
	0% {
		transform: translateX(200px)
	}
	100% {
		transform: translateX(0px);
	}
}

.titel {
	margin-bottom: 0;
	font-family: "Nunito","Arial",sans-serif;
	z-index: 10;
}

.sectie_1, .sectie_2 {
	margin: 0;
	border-radius: 15px;
}

.sectie_1 {
	padding: 10px 5px 10px 5px;
	background-color: rgb(230, 230, 230);
}

.sectie_2 {
	padding: 10px 5px 10px 5px;
	background-color: #00678f;
	color: white; 
}


.sectie_titel_1, .sectie_titel_2{
	font-family: "Poppins","Arial",sans-serif;
	padding-bottom: 0.6rem;
	padding-left: 1.25rem;
}

.sectie_titel_1 {
	background-image: linear-gradient(to right, black 33%, rgba(255,255,255,0) 0%);
	background-position: bottom;
	background-size: 7px 1px;
	background-repeat: repeat-x;
}

.sectie_titel_2 {
	background-image: linear-gradient(to right, white 33%,  rgba(255,255,255,0) 0%);
	background-position: bottom;
	background-size: 7px 1px;
	background-repeat: repeat-x;
}

.donker {
	background-color: #2e2e2e;
} 

.tekst {
	text-align: justify;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
}

.row, .col {
	margin: 0;
	margin-bottom: 1em;
}

.col-md-4, col-md-8 {
	margin-bottom: 1em;
}

.foto_links {
	border-radius: 0 15px 15px 0;
	margin-left: 10px;
}
.foto_rechts {
	border-radius: 15px 0 0 15px;
	margin-right: 10px;
}

.quote {
	font-size: 32px;
}

.formContainer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 8%;
}

.formContainer .row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
}
.row section.col {
	display: flex;
	flex-direction: column;
}
.row section.left {
	flex-basis: 35%;
	min-width: 320px;
}
.row section.right {
	flex-basis: 50%;
}

section.left .contactTitle p{
	font-size: 17px;
	color: #ccc;
	letter-spacing: 1px;
	line-height: 1.2;
}

section.left .contactInfo {
	margin-bottom: 16px;
}

.contactInfo .iconGroup {
	display: flex;
	align-items: center;
	margin: 25px 0px;
}


.icon {
	width: 45px !important;
	height: 45px !important;
	min-width: 45px;
	border: 2px solid var(--contact);
	border-radius: 50%;
	position: relative;
}

.icon i{
	font-size: 20px;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;	
	translate: -50% -50%;
}

.iconGroup .details span{
	display: block;
	color: var(--contact);
	font-size: 18px;
}

.iconGroup .details span:nth-child(1){
	text-transform: uppercase;
	color: #ccc;
}

.iconGroup .details span:nth-child(2), .iconGroup .details span:nth-child(3) {
	font-size: 16px;
	line-height: 22px;
	color: #eee;
}

.details span {
	margin-left: 15px;
}

section.left .socials {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.socials a {
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-right: 14px;
	border-radius: 5px;
	background-color: #00678f;
}

.socials i {
	color: #ddd;
	font-size: 18px;
	line-height: 35px;
	border: 1px solid transparant;
}

.socials a:hover {
	translate: 0px -5px;	
	background-color: #2e2e2e;
	color: white;
	border: 1px solid #00678f;	
	transition: all .4s;
}

.socials a:hover i{
	color: #00678f;
}


.card {
	min-height: 452px;
	border-radius: 15px;
	position: relative;
}

.card-logo-div {
	position: absolute;
	left: 50%;
	transform: translateX(-50%); 
	width: 288px;
	backdrop-filter: blur(15px);
	text-align: center;
}

.hama {
	top: 138px;
}

.spector {
	top: 123px;
}

.card-logo {
	width: 200px;
}

.card-title {
	font-weight: 700;
}

H5.card-title .wit {
	color: white;
}

.card-img-top {
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
}

.card-body {
	min-height: 210px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.card-body .backblue {
	background-color: #00678f;
}


p.prijs {
	margin-top: 10px;
	font-weight: bold;
}

#rij1, .col {
	margin-bottom: 0px;	
}

/* right section of message form */

.row section.right .messageForm {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.row section.right .inputGroup {
	margin: 18px 0px;
	position: relative;
}

.messageForm .halfWidth {
	flex-basis: 48%;
}

.messageForm .fullWidth {
	flex-basis: 100%;
}

.messageForm input, .messageForm textarea {
	width: 100%;
	font-size: 18px;
	padding: 2px 0px;
	background-color: #2e2e2e;
	color: #ddd;
	border: none;
	border-bottom: 2px solid #666;
	outline: none;	
}

.messageForm textarea {
	resize: none;
	height: 220px;
	display: block;
}

textarea::-webkit-scrollbar {
	width: 5px;
}

textarea::-webkit-scrollbar-track {
	background-color: #1e1e1e;
	border-radius: 15px;
}

textarea::-webkit-scrollbar-thumb {
	background-color: #00678f;
	border-radius: 15px;
}

.inputGroup label {
	position: absolute;
	left: 0;
	bottom: 4px;
	color: #888;
	font-size: 18px;
	transition: 0.4s;
	pointer-events: none;
}

.inputGroup:nth-child(4) label {
	top: 2px;
}

.inputGroup input:focus ~ label, .inputGroup textarea:focus ~ label,
.inputGroup input:valid ~ label, .inputGroup textarea:valid ~ label{
	transform: translateY(-30px);
	font-size: 16px; 
}

.inputGroup button {
	padding: 8px 16px;
	font-size: 18px;
	background-color: #00678f;
	color: #ddd;
	border: none;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0,0,0,0.3);
	transition: 0.4s;
}

.inputGroup button:hover {
	background-color: #2e2e2e;
	color: #00678f;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
	border: 1px solid #00678f;
}

.copyright  {
	text-align: center;
	color: #888;
}

.ontdek-btn {
	background-color: rgb(230, 230, 230);
	border-radius: 100px;
	border: none;
	outline: none;
	margin-top: 15px;
	padding: 0.4rem 1rem;
	transition: 0.75s;
}

.ontdek-btn:hover {
	background-color: rgb(245, 245, 245);
	transition: 0.75s;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal {
	animation-name: modalAppear;
	animation-duration: 0.75s;
}

@keyframes modalAppear {
  from {opacity: 0;}
  to {opacity: 1;}
}

@media screen and (max-width: 768px) {
 .foto_links {
	 border-radius: 0;
	 margin-bottom: 10px;
	 margin-left: 0px;
}
.foto_rechts {
	border-radius: 0;
	margin-right: 0px:
}
section.left .socials {
	justify-content: center;
	margin-bottom: 30px;
}
}

.move-right {
	animation-name: move-right;
	animation-duration: 500ms;
	animation-timing-function: ease-out;
	animation-timeline: view();
	animation-range: entry 40% cover 40%;
}

@keyframes move-right {
	0%   { transform: Scale(0);
		   opacity: 0;}
    100% { transform: Scale(1);
		   opacity: 1;}
}

@media screen and (min-width: 992px) {
	
.row section.right .messageForm {
	margin-left: 30px;
}
}

@media screen and (min-width: 1200px) {
	
.container {
	max-width: 960px;
}
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 960px !important;
    }
}


