﻿body{
	font-family: 'Forum', serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #0A0A0A;
}

header {
	background-color: #192841;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	position: relative;
}

.animation-text {
	position: absolute;
	top: 50%;
	left: 30%;
	font-family: 'Graphick';
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	z-index: 1;
}


.click-text {
	position: absolute;
	top: 50%;
	left: 30%;
	font-family: 'Graphick';
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	z-index: 2;
	opacity: 0;
	cursor: pointer;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	position: relative;
}

.logo {
	max-width: 100px;
	margin-left: 0px;
	animation: Slide 2s ease-out forwards;
}

nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-right: 30px;
}

nav a {
	color: #fff;
	text-decoration: none;
	margin-left: 20px;
	font-size: 16px;
	transition: font-size 0.2s, text-decoration 0.2s;
}

nav a:hover,
nav a:active {
	font-size: 120%;
	text-decoration: underline;
}

span.separator {
	position: relative;
	color: #fff;
	padding-left: 10px;
}

#slideshow-section {
	overflow: hidden;
	background-color: #fff;
}

.slideshow-container {
	width: 45%;
	margin: 50px;;
	display: flex;
	transition: transform 1s ease-in-out;
}

.slide {
	flex: 0 0 100%;
	box-sizing: border-box;
}

img {
	width: 100%;
	height: auto;
}

.gradient-rectangle {
	height: 90px;
	background: linear-gradient(to bottom, #404040, #808080);
}


section {
	color: #fff;
	position: relative;
	overflow: hidden;
}

h2 {
	margin-left: 20px;
	font-size: 35px;
	position: relative;
	display: inline-block;
	z-index: 0;
}

h2::after {
	content: "";
	display: block;
	width: 105%;
	height: 55px;
	background-color: #192841;
	position: absolute;
	top: 0;
	left: -3px;
	z-index: -1;
}

h3 {
	font-size: 25px;
	color: #192841;
}

p {
	margin-left: 20px;
	margin-top: 40px;
	font-size: 20px;
}

p.p1 {
	color: #192841;
	margin-top: 10px;
	font-size: 18px;
}

#motivation-section {
	background-color: #fff;
	position: relative;
	overflow: hidden;
}

.imagesbs {
	display: flex;
	justify-content: space-between;	
	margin-top: 50px;
	margin-bottom: 80px;
}

.imagesbs img {
  width: 200px;
  height: 200px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.imagesbs .image1 {
	margin-left: 100px;
}
.imagesbs .image2 {
	margin-right: 100px;
}
.imagesbs .image3 {
	margin-right: 100px;
}

.imagesbs img.show {
	opacity: 1;
	transform: translateY(0);
}

nav .contact-hyperlink {
	color: #192841;
	text-decoration: none;
	font-size: 20px;
	transition: text-decoration 0.2s;
	margin-right: 600px;
	margin-bottom: 20px;
}

nav .contact-hyperlink:hover,
nav .contact-hyperlink:active {
	font-weight: bold;
	text-decoration: underline;
}

#services-section {
	position: relative;
	overflow: hidden;
}

.servicesImg {
	display: flex;
	justify-content: space-between;	
	margin-top: 50px;
	margin-bottom: 80px;
}

.servicesImg img {
	 width: 300px;
	 height: 300px;
	 opacity: 0;
	 transition: opacity 0.8s ease-in-out;
}

.servicesImg img.show {
	opacity: 1;
}

.servicesImg .img1 {
	margin-left: 22px;
}
.servicesImg .img2 {
	margin-right: 11px;
	margin-left: 15px;
}
.servicesImg .img3 {
	margin-right: 12px;
}
.servicesImg .img4 {
	margin-right: 60px;
}

nav .services-hyperlink {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	transition: text-decoration 0.2s;
	margin-right: 450px;
	margin-bottom: 20px;
}

nav .services-hyperlink:hover,
nav .services-hyperlink:active {
	font-weight: bold;
	text-decoration: underline;
}

.container-about {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start; 
    padding: 20px;
    max-width: 1200px; 
    margin: 0 auto; 
}


.container-about p.about-section { 
    margin: 20px; 
    text-align: justify; 
    opacity: 0; 
    transition: opacity 1s ease-in-out;
}

.container-about p.about-section.show {
	opacity: 1;
}

.container-about .image-about {
	margin : 20px 0;
	width: 100%;
	max-width: 400px;
	height: auto;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 6;
}
.container-about .image-about.show {
	opacity: 1;
}

#contact-section {
	background-color: #fff;
	position: relative;
    box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}


#contact-form {
	display: flex;
    justify-content: center;
	padding-top: 10%;
	padding-left: 5%;
    box-sizing: border-box;
	width: 45%;
}
.form-container iframe {
	width: 100%; 
	display: block;
}

.form-container {
    width: 100%;
    padding: 0;
    overflow: hidden;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
	box-sizing: border-box;
	transform-origin: 0 0;
	transform: scale(0.9);
}


.contact-info-container {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    margin-bottom: 20px;
    width: 50%;
    padding-top: 10%;
    box-sizing: border-box;
	margin-left: -10%;
}
.contact-info-container p {
    margin: 5px 0;
}

.map {
	width: 100%;
	margin-top: 15px;
    border: 0;
}

h4 {
	font-size: 22px;
	margin-top: -34px;
}

label {
	display: block;
	margin-top: 0;
	font-size: 15px;
}

input,
select,
textarea {
	width: 100%;
	padding: 5px;
	margin-top: 2px;
	margin-bottom: 15px;
	font-family: 'Arial', serif;
	font-size: 15px;
}

button {
	background-color: #192841;
	color: #fff;
	padding: 10px 20px;
	font-size: 20px;
	cursor: pointer;
	border: none;
}

button:hover {
	background-color: #0F1722;
}

footer {
	background-color: #192841;
	color: #fff;
	padding: 30px 0;
	position: relative;
	text-align: center; 
}

.nav-container {
	display: flex;
    justify-content: flex-start;
    align-items: center; 
    gap: 20px; 
    margin: 0 auto;
	padding-left: 5%;
}

.link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: text-decoration 0.2s;
}
.link:hover,
.link:active {
    text-decoration: underline;
    font-size: 110%;
}

.separator {
    font-size: 16px;
    color: #fff;
}

@keyframes Slide {
	0% { 
		transform: translateX(60%);
	}
	100% {
		transform: translateX(-450%);
	}
}

#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 10px;
    width: 30%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
	z-index: 5;
	transition: bottom 1s ease-in-out;
}
#cookie-banner.show {
    bottom: 0; 
}

#cookie-banner p {
    margin: 0 10px 10px 10px;
    font-size: 14px;
	text-align: justify;
}

#accept-cookies,
#decline-cookies {
    background-color: #008080;
    color: #fff;
    border: none;
	font-size: 16px;
    padding: 8px 16px;
    cursor: pointer;
    margin: 0 40px;
}
#cookie-banner a {
	color: #1569C7;
	text-decoration: underline;
}



@media screen and (min-width: 768px) {
	.container-about {
        flex-direction: row; 
        align-items: flex-start;
	}
	.container-about .image-about {
        order: 2; 
        flex: 0 0 auto; 
        margin-left: 20px; 
    }
	.container-about p.about-section {
        order: 1; 
        flex: 1; 
        margin-right: 20px; 
        text-align: left; 
    }
}


@media screen and (max-width: 400px) {
	header {
		padding: 10px;
	}
	.animation-text {
		top: 40%;
		left: 32%;
		font-size: 16px;
	}
	.click-text {
		top: 40%;
		left: 32%;
		font-size: 16px;
	}
	.logo {
		margin-top: 20px;
		max-width: 70px;
		animation: Slide 1.1s ease-out forwards;
	}
	@keyframes Slide {
		0% { 
			transform: translateX(130%);
		}
		100% {
			transform: translateX(-180%);
		}
	}

	nav {
		margin-top: 10px;
		margin-right: -5px;
	}
	nav a {
		margin-left: 0;
		margin-right: 10px;
		font-size: 13px;
	}
	nav a:hover,
	nav a:active {
		font-size: 90%;
		text-decoration: underline;
	}
	span.separator {
		padding-right: 10px;
		padding-left: 0;
	}

	.slideshow-container {
		width: 85%;
		margin-bottom: 178px;
		margin-top: 30px;
		height: 80px;
	}

	.gradient-rectangle {
		height: 60px;
	}
	
	h2 {
		margin-left: 20px;
		font-size: 25px;
		margin-top: 30px;
	}

	h2::after {
		width: 105%;
		height: 55px;
		top: -10px;
		left: -3px;
	}
	.servicesImg {
		flex-direction: column;	
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.servicesImg img {
		width: 250px;
		height: 250px;
	}
	.servicesImg .img1, 
	.servicesImg .img2, 
	.servicesImg .img3,
	.servicesImg .img4{
		margin-left: 50px;
		margin-bottom: 30px;
	}
	nav .services-hyperlink {
		font-size: 14px;
		margin-right: 65px;
		margin-bottom: 20px;
		margin-top: -20px;
	}

	nav .services-hyperlink:hover,
	nav .services-hyperlink:active {
		font-size: 88%;
		font-weight: bold;
		text-decoration: underline;
	}
	.imagesbs {
		flex-direction: column;
		margin-top: 40px;
		margin-bottom: 30px;
	}
	.imagesbs .image1,
	.imagesbs .image2,
	.imagesbs .image3{
		margin-left: 78px;
		margin-bottom: 30px;
	}
	nav .contact-hyperlink {
		font-size: 19px;
		margin-right: 140px;
		margin-bottom: 30px;
	}
	nav .contact-hyperlink:hover,
	nav .contact-hyperlink:active {
		font-size: 120%;
	}

	p.about-section {
		font-size: 14px;
		margin: 260px 20px 30px 20px;
		text-align: justify;
	}
	

	p.p1 {
		font-size: 16px;
	}

	h4 {
		font-size: 22px;
		margin-top: 5px;
		margin-bottom: 17px;
	}
	label {
		display: block;
		margin-top: 0;
		font-size: 14px;
	}
	input,
	select,
	textarea {
		width: 90%;
		padding: 5px;
		margin-top: 2px;
		margin-bottom: 15px;
		font-family: 'Arial', serif;
		font-size: 15px;
	}
	button {
		padding: 10px 20px;
		margin-top: 5px;
		margin-left: 65px;
		font-size: 17px;
		cursor: pointer;
		border: none;
	}
	button:hover {
		background-color: #0F1722;
	}

	.link {
		font-size: 3.5vw;
	}
	.link:hover,
	.link:active {
    	text-decoration: underline;
    	font-size: 80%;
	}
	#cookie-banner {
		bottom: -100%;
		left: 10px;
		width: 50%;
		height: 130px;
		padding: 8%;
		z-index: 6;
	}
	#cookie-banner p {
		font-size: 2.5vw;
	}
	#accept-cookies,
	#decline-cookies {
		font-size: 11px;
		padding: 8px 8px;
		cursor: pointer;
		margin: 0 10px;
	}
	
	footer {
		padding: 30px 0;
	}

	.nav-container {
		justify-content: center;
		gap: 10px;
		padding-left: 0;
	}
}

@media screen and (min-width: 401px) and (max-width: 600px) {
	header {
		padding: 10px;
	}
	.animation-text {
		top: 40%;
		left: 38%;
		font-size: 16px;
	}
	.click-text {
		top: 40%;
		left: 32%;
		font-size: 16px;
	}
	.logo {
		margin-top: 20px;
		max-width: 70px;
		animation: Slide 1.1s ease-out forwards;
	}
	@keyframes Slide {
		0% { 
			transform: translateX(140%);
		}
		100% {
			transform: translateX(-170%);
		}
	}
	nav {
		margin-top: 10px;
		margin-right: -5px;
	}
	nav a {
		margin-left: 0;
		margin-right: 10px;
		font-size: 13px;
	}
	nav a:hover,
	nav a:active {
		font-size: 90%;
		text-decoration: underline;
	}
	span.separator {
		padding-right: 10px;
		padding-left: 0;
	}

	.slideshow-container {
		width: 85%;
		margin-bottom: 210px;
		margin-top: 30px;
		height: 80px;
	}

	.gradient-rectangle {
		height: 60px;
	}
	
	h2 {
		margin-left: 20px;
		font-size: 25px;
		margin-top: 30px;
	}

	h2::after {
		width: 105%;
		height: 55px;
		top: -10px;
		left: -3px;
	}
	.servicesImg {
		flex-direction: column;	
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.servicesImg img {
		width: 250px;
		height: 250px;
	}
	.servicesImg .img1, 
	.servicesImg .img2, 
	.servicesImg .img3,
	.servicesImg .img4{
		margin-left: 80px;
		margin-bottom: 30px;
	}
	nav .services-hyperlink {
		font-size: 14px;
		margin-right: 90px;
		margin-bottom: 20px;
		margin-top: -20px;
	}

	nav .services-hyperlink:hover,
	nav .services-hyperlink:active {
		font-size: 88%;
		font-weight: bold;
		text-decoration: underline;
	}
	.imagesbs {
		flex-direction: column;
		margin-top: 40px;
		margin-bottom: 30px;
	}
	.imagesbs .image1,
	.imagesbs .image2,
	.imagesbs .image3{
		margin-left: 98px;
		margin-bottom: 30px;
	}
	nav .contact-hyperlink {
		font-size: 19px;
		margin-right: 174px;
		margin-bottom: 30px;
	}
	nav .contact-hyperlink:hover,
	nav .contact-hyperlink:active {
		font-size: 120%;
	}

	p.about-section {
		font-size: 14px;
		margin: 260px 20px 30px 20px;
		text-align: justify;
	}
	

	p.p1 {
		font-size: 16px;
	}
	
	h4 {
		font-size: 22px;
		margin-top: 5px;
		margin-bottom: 17px;
	}
	label {
		display: block;
		margin-top: 0;
		font-size: 14px;
	}
	input,
	select,
	textarea {
		width: 90%;
		padding: 5px;
		margin-top: 2px;
		margin-bottom: 15px;
		font-family: 'Arial', serif;
		font-size: 15px;
	}
	button {
		padding: 10px 20px;
		margin-top: 5px;
		margin-left: 65px;
		font-size: 17px;
		cursor: pointer;
		border: none;
	}
	button:hover {
		background-color: #0F1722;
	}
	
	#cookie-banner {
		bottom: -100%;
		left: 10px;
		width: 220px;
		height: 120px;
		padding: 10px;
		z-index: 6;
	}
	#cookie-banner p {
		margin: 0 3px 8px 3px;
		font-size: 11px;
	}
	#accept-cookies,
	#decline-cookies {
		font-size: 11px;
		padding: 8px 8px;
		cursor: pointer;
		margin: 0 10px;
	}
	
	footer {
		padding: 30px 0;
	}

	.nav-container {
		justify-content: center;
		gap: 10px;
		padding-left: 0;
	}
}

@media screen and (min-width: 601px) and (max-width: 1025px) {
	header {
		padding: 10px;
	}
	.animation-text {
		top: 40%;
		left: 35%;
		font-size: 27px;
	}
	.click-text {
		top: 40%;
		left: 35%;
		font-size: 27px;
	}
	.logo {
		margin-top: 20px;
		max-width: 90px;
		animation: Slide 1.1s ease-out forwards;
	}
	@keyframes Slide {
		0% { 
			transform: translateX(140%);
		}
		100% {
			transform: translateX(-260%);
		}
	}
	
	.slideshow-container {
		width: 65%;
		margin-bottom: 25px;
		margin-top: 30px;
	}

	.gradient-rectangle {
		height: 60px;
		width: 1000px;
	}
	
	h2 {
		margin-left: 20px;
		font-size: 25px;
		margin-top: 30px;
	}

	h2::after {
		width: 105%;
		height: 55px;
		top: -10px;
		left: -3px;
	}

	#services-section {
		height: 850px;
	}
	.servicesImg {
		margin-top: 40px;
		margin-bottom: 40px;
		position: relative;
	}
	.servicesImg img {
		width: 250px;
		height: 250px;
	}
	.servicesImg .img1 {
		position: absolute;
		left: 50px;
	}
	.servicesImg .img2 {
		position: absolute;
		left: 460px;
	}
	.servicesImg .img3 {
		position: absolute;
		top: 300px;
		right: 475px;
	}
	.servicesImg .img4{
		position: absolute;
		top: 300px;
		right: 25px;
		
	}
	nav .services-hyperlink {
		font-size: 14px;
		margin-right: 290px;
		margin-bottom: 20px;
		margin-top: 585px;
	}

	nav .services-hyperlink:hover,
	nav .services-hyperlink:active {
		font-size: 88%;
		font-weight: bold;
		text-decoration: underline;
	}

	#motivation-section {
		height: 480px;
	}
	.imagesbs {
		position: relative;
		margin-top: 40px;
		margin-bottom: 30px;
	}
	.imagesbs .image1 {
		position: absolute;
		margin-left: 20px;
		margin-bottom: 130px;
	}
	.imagesbs .image2 {
		position: absolute;
		margin-left: 290px;
		margin-bottom: 30px;
	}
	.imagesbs .image3{
		position: absolute;
		margin-left: 570px;
		margin-bottom: 30px;
	}
	nav .contact-hyperlink {
		font-size: 19px;
		margin-top: 200px;
		margin-right: 370px;
		margin-bottom: 30px;
	}
	nav .contact-hyperlink:hover,
	nav .contact-hyperlink:active {
		font-size: 120%;
	}

	p.about-section {
		font-size: 14px;
		margin: 260px 20px 30px 20px;
		text-align: justify;
	}

	p.p1 {
		font-size: 16px;
	}
	

	h4 {
		font-size: 22px;
		margin-top: 5px;
		margin-bottom: 17px;
	}
	label {
		display: block;
		margin-top: 0;
		font-size: 14px;
	}
	input,
	select,
	textarea {
		width: 90%;
		padding: 5px;
		margin-top: 2px;
		margin-bottom: 15px;
		font-family: 'Arial', serif;
		font-size: 15px;
	}
	button {
		padding: 10px 20px;
		margin-top: 5px;
		margin-left: 65px;
		font-size: 17px;
		cursor: pointer;
		border: none;
	}
	button:hover {
		background-color: #0F1722;
	}
	#cookie-banner {
		position: fixed;
		bottom: -100%;
		left: 10px;
		width: 50%;
		height: 90px;
		padding: 10px;
		z-index: 6;
		transition: bottom 1s ease-in-out;
	}
	#cookie-banner.show {
		bottom: 0; 
	}
	#cookie-banner p {
		margin: 0 3px 8px 3px;
		font-size: 11px;
	}
	#accept-cookies,
	#decline-cookies {
		font-size: 11px;
		padding: 8px 8px;
		cursor: pointer;
		margin: 0 10px;
	}
	
	footer {
		padding: 30px 0;
	}

	.nav-container {
		justify-content: flex-start;
		gap: 20px;
		padding-left: 5%;
	}
}

@media screen and (max-width: 800px) {
	#contact-form {
        flex-direction: column;
        align-items: center;
		width: 90%;
		padding-bottom: 10%;
		padding-left: 10%;
    }
	.contact-info-container {
		align-items: center;
		text-align: center;
		margin-bottom: 20px;
		width: 100%;
		padding-top: 5%;
		padding-left: 20%;
		box-sizing: border-box;
	}
	.form-container {
		transform: scale(1);
	}
}