:root {
	--main-color: #002469;
	--main-text-color: white;
	/* --slider-background: #262626; */
	--grey-color: #F4F4F4;
	--accent-color: #F2A900;

	--header-padding: 50px;
	--container-max-width: 1500px;

	scroll-behavior: smooth;
}

body {
	position: relative;
	width: 100%;
	height: 100%;

	/* font-family: 'Montserrat', sans-serif; */
	font-size: 21px;
	font-weight: 400;
	overflow-x: hidden;
}



/* General Styles */

.container {
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}


.flex__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


/* MAIN section */

/* First page */

.title__section--wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	max-width: 1000px;
	padding-top: 200px;
	padding-bottom: 200px;

	transition: 0.4s;
}

.title__section--logo {
	margin-bottom: 75px;
	width: 670px;
}

.title__section--title {
	font-size: 43px;
}

.title__section--text {
	margin-top: 35px;
	text-align: center;
	font-weight: 300;
	line-height: 140%;
	padding-left: 15px;
	padding-right: 15px;
}


/* Slider */


.slider__section {
	display: flex;
	justify-content: center;
	background: linear-gradient(45deg, var(--main-color), #1a418b);
	padding: 47px 45px 47px;
}

.slider__wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 1500px;
	padding: 40px;
}

.image__description {
	margin-top: 40px;
	color: white;
}

.slider__image {
	display: none;
    width: 1420px;
    height: 804px;
    object-fit: cover;
}

.slider__image--active {
	display: block;
	animation: imageAnimation 0.4s ease-in;
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#slider__thumbnails {
	display: flex;
	justify-content: space-between;
}

.slider__controller--button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F1F1F1;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: 0.3s ease-in;
}

.slider__controller--button:hover {
	transition: 0.3s ease-in;
	background: #d89700;
}

.left-button {
	position: absolute;
	top: 407px;
	left: 60px;
}

.right-button {
	position: absolute;
	top: 407px;
	right: 60px;
}

.slider__arrow {
	width: 22px;
}

.thumbnail__image {
	margin-top: 40px;
	width: 260px;
	height: 136px;
	border: 5px solid transparent;
	background: transparent;
    object-fit: cover;
	cursor: pointer;
}

.thumbnail__image--active {
	transition: 0.3s ease-in;
	border: 5px solid #d89700;
	box-shadow: 0px 4px 20px 0px #d89700;
}

.thumbnail__image--active:hover {
	transition: 0.3s ease-in;
	border: 5px solid var(--accent-color);
	box-shadow: 0px 4px 20px 0px var(--accent-color);
}


.slider__images--counter-wrapper {
	margin-top: 30px;
	text-align: center;
	color: white;
}


/* Video Section */
.video__section--wrapper {
	position: relative;
    /* width: var(--container-max-width); */
	max-width: var(--container-max-width);
    padding-top: 170px;
    padding-bottom: 70px;
    margin: 0 auto;
	z-index: 1;
	padding-right: 30px;
	padding-left: 30px;
}

#pageVideo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
	border-radius: 20px;
	box-shadow: 5px 5px 20px 15px rgba(0, 0, 0, 0.292);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
	border: none;
}

.play-button img {
	width: 40px;
	margin-left: 10px;
}

/* Bottom section with map and form */
.bottom__section--wrapper {
	position: relative;
	max-width: var(--container-max-width);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 40px;
    padding-bottom: 100px;
	padding-right: 30px;
	padding-left: 30px;
	/* flex-wrap: wrap; */
}

#map {
    height: 620px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
}

#bottom__feedback--form {
	width: 500px;
	margin-top: 50px;
	margin-left: 50px;
	margin-bottom: 50px;
	z-index: 1;
}

#bottom__feedback--form h2 {
	color: rgb(0, 0, 0);
	margin-bottom: 40px;
	text-transform: uppercase;
	font-weight: 500;
}

#feedbackForm input {
	width: 100%;
	padding: 20px;
	background: var(--grey-color);
	margin-bottom: 10px;
	font-size: 25px;
	font-weight: 400;
	border: 1px solid var(--main-color);
	border-radius: 20px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	outline: none;
}

#feedbackForm input::placeholder {
    font-size: 25px;
	font-weight: 400;
}


#feedback__form--submit-button {
	margin-top: 20px;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 20px;
	font-size: 25px;
	font-weight: 700;
	color: white;
	cursor: pointer;
	border: none;
	transition: 0.4s;
}

#feedback__form--submit-button:hover {
	background: var(--main-color);
	color: white;
	transition: 0.4s;
}



@media only screen and (max-width: 1930px) {
	.title__section--wrapper {
		padding-top: 140px;
		padding-bottom: 140px;
	}
	
	.title__section--logo {
		margin-bottom: 55px;
		width: 550px;
	}
	
	.title__section--title {
		font-size: 38px;
	}
	
	.title__section--text {
		margin-top: 25px;
		font-size: 18px;
	}



	.slider__wrapper {
		width: 1200px;
		padding: 30px;
	}

	.image__description {
		font-size: 18px;
	}

	.image__description {
		margin-top: 30px;
	}

	.slider__image {
		width: 1140px;
		height: 700px;
	}

	.slider__controller--button {
		height: 60px;
		width: 60px;
	}

	.left-button {
		position: absolute;
		top: 350px;
		left: 60px;
	}
	
	.right-button {
		position: absolute;
		top: 350px;
		right: 60px;
	}
	
	.slider__arrow {
		width: 20px;
	}
	
	.thumbnail__image {
		margin-top: 35px;
		width: 228px;
		height: 120px;
	}

	#map {
		height: 500px;
	}

	#feedbackForm input {
		width: 100%;
		padding: 15px;
		font-size: 20px;
	}

	#feedback__form--submit-button {
		padding: 15px;
		font-size: 20px;
	}
}


@media only screen and (max-width: 1250px) {
	.title__section--wrapper {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.title__section--logo {
		margin-bottom: 55px;
		width: 400px;
	}
	
	.title__section--title {
		font-size: 32px;
	}
	
	.title__section--text {
		margin-top: 20px;
		font-size: 17px;
	}

	.slider__section {
		padding: 0;
	}

	.slider__wrapper {
		width: 900px;
		padding: 20px;
	}

	.image__description {
		font-size: 18px;
	}

	.slider__image {
		width: 850px;
		height: 550px;
	}

	.slider__controller--button {
		height: 50px;
		width: 50px;
	}

	.left-button {
		position: absolute;
		top: 300px;
		left: 50px;
	}
	
	.right-button {
		position: absolute;
		top: 300px;
		right: 50px;
	}

	.slider__images--counter-wrapper {
		font-size: 16px;
	}


	.play-button {
		width: 100px;
		height: 100px;
		transform: translate(-50%, -10%);
	}
	
	.play-button img {
		width: 30px;
	}
	
	
	.thumbnail__image {
		margin-top: 35px;
		width: 190px;
		height: 100px;
	}

	#map {
		max-width: 100%;
		height: auto;
	}

	#bottom__feedback--form {
		margin-top: 100px;
		margin-left: 0px;
	}

	#bottom__feedback--form h2{
		text-align: center;
	}

	.bottom__section--wrapper {
		flex-direction: column;
	}
}


@media only screen and (max-width: 920px) {
	.title__section--wrapper {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	
	.title__section--logo {
		margin-bottom: 50px;
		width: 340px;
	}
	
	.title__section--title {
		font-size: 28px;
	}
	
	.title__section--text {
		margin-top: 20px;
		font-size: 15px;
	}

	.slider__wrapper {
		width: 700px;
		padding: 15px;
	}

	.image__description {
		font-size: 16px;
	}

	.slider__image {
		width: 670px;
		height: 450px;
	}

	.slider__controller--button {
		height: 40px;
		width: 40px;
	}

	.left-button {
		position: absolute;
		top: 230px;
		left: 25px;
	}
	
	.right-button {
		position: absolute;
		top: 230px;
		right: 25px;
	}

	.slider__images--counter-wrapper {
		font-size: 16px;
	}

	.slider__arrow {
		width: 15px;
	}

	#slider__thumbnails {
		flex-wrap: wrap;
	}

	
	.play-button {
		width: 80px;
		height: 80px;
		transform: translate(-50%, 0%);
	}
	
	.play-button img {
		width: 20px;
	}
	
	.thumbnail__image {
		margin-top: 35px;
		width: 110px;
		height: 100px;
	}

	#bottom__feedback--form h2{
		font-size: 24px;
	}

	#feedbackForm input {
		width: 100%;
		padding: 12px;
		font-size: 18px;
	}

	#feedbackForm input::placeholder {
		font-size: 18px;
	}

	#feedback__form--submit-button {
		padding: 15px;
		font-size: 18px;
	}
}

@media only screen and (max-width: 660px) {
	.title__section--wrapper {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	
	.title__section--logo {
		margin-bottom: 50px;
		width: 280px;
	}
	
	.title__section--title {
		font-size: 25px;
		padding-left: 15px;
		padding-right: 15px;
		text-align: center;
	}
	
	.title__section--text {
		margin-top: 20px;
		font-size: 13px;
	}
}

@media only screen and (max-width: 550px) {
	#feedbackForm input {
		max-width: 360px;
	}

	#feedback__form--submit-button {
		max-width: 360px;
	}

	#bottom__feedback--form {
		max-width: 360px;
	}
}