html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Elsie', cursive;
}

div#progress_bar {
	height: 10px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 15;
}

div#progress {
	height: 100%;
	width: 0%;
	border-radius: 0px 7px 7px 0px;
	background-color: #2196F3;
	box-shadow:
		inset 0 2px 9px rgba(255, 255, 255, 0.3),
		inset 0 -2px 6px rgba(0, 0, 0, 0.4);
	position: relative;
	overflow: hidden;
	/* background-image: linear-gradient(to bottom, #89c4f5, #2196F3); */
	background-image: linear-gradient(to bottom, #aeece9, #0be0d6);
}

@keyframes move {
	0% {
	  background-position: 0 0;
	}
	100% {
	  background-position: 50px 50px;
	}
  }

div#hero_div {
	position: sticky;
	top: 0;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: auto;
	z-index: -1;
}

img.hero_image {
	width: 100%;
}

div#content_div {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	background: url("images/backgrounds/bgblue.jpg");
	z-index: 5;
}

div#cv_div {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-direction: column;
	margin-bottom: 10%;
}

div.download_cv{
	margin-top: 2%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 0.7em;
	font-family: 'Comfortaa', cursive;
	color: #0a0c20;
	font-size: 1.5em;
	border: 2px solid black;
	border-radius: 10px;
	cursor: pointer;
	padding: 1%;
	background: rgba(222, 240, 252, 0.2);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div.download_cv:hover{
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3), 0 6px 25px 0 rgba(0, 0, 0, 0.39);
}

ion-icon.cv_icon{
	font-size: 2em;
}

img.cv_image {
	margin-top: 10%;
	margin-bottom: 2%;
	width: 100%;
}

div.display_div {
	padding-top: 5%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 5em;
}

div#contact_div {
	margin-top: 5%;
	background-image: linear-gradient(to bottom, #aeece9, #0be0d6);
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

a.contact_item{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 0.5em;
	font-family: 'Comfortaa', cursive;
	text-decoration: none;
	color: #0a0c20;
	margin: 1em;
}

ion-icon {
	font-size: 1.5vw;
}

div#menu_div {
	background-color: #def0fcb4;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 9%;
	height: 100%;
	font-family: 'Comfortaa', cursive;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
}

div.menu_item {
	cursor: pointer;
	flex: 1;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #4e4e4e;
	font-weight: 600;
	font-size: 0.8vw;
}

div.menu_item:hover{
	color: #000000;
	font-size: 1vw;
}

div.active {
	color: #000000;
	font-size: 1vw;
}

div#scrollTop {
	background-color: #DEF0FC;
	position: fixed;
	top: 85%;
	right: 7%;
	z-index: 10;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: none;
	outline: none;
	display: none;
	cursor: pointer;
}

img#top_icon {
	width: 60px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-top: 5px;
}

div.collection_cover {
	width: 40%;
	position: relative;
}

img.collection_cover_photo {
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	height: auto;
	border-radius: 2%;
}

div.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.5);
	color: #f1f1f1;
	transition: .5s ease;
	opacity: 0;
	color: white;
	font-size: 20px;
	text-align: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
	border-radius: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.collection_cover:hover .overlay {
	opacity: 1;
}

div.overlay_title {
	font-size: 4vw;
}

div.overlay_subtitle {
	font-size: 2vw;
}

div.collection_display {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 20;
	left: 0;
	top: 0;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.95);
	overflow-x: hidden;
	transition: 0.5s;
	display: none;
}

.collection_display .closebtn {
	position: absolute;
	top: 1%;
	right: 2%;
	font-size: 80px;
	color: #f1f1f1;
	text-decoration: none;
	z-index: 25;
}

div.carousel_container {
	width: 90%;
	height: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1%;
	position: relative;
	border-radius: 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div.carousel_content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 90%;
	height: 100%;
}

div.arrow_container {
	width: 5%;
	height: 100%;
	cursor: pointer;
	border-radius: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}

img.side_arrow {
	width: 100%;
}

div.carousel_image_container {
	height: auto;
	width: auto;
	max-width: 90%;
	max-height: 86%;
}

img.carousel_image {
	max-height: 100%;
	max-width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border-radius: 2%;
}

div.carousel_title_container {
	height: 5%;
	width: 90%;
	font-size: 25px;
	color: white;
}

div.carousel_title {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	font-size: 1.5vw;
}

div.carousel_counter_container {
	height: 5%;
	width: 90%;
	font-size: 25px;
	color: white;
}

div.carousel_counter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	font-size: 1.5vw;
	text-align: right;
}

.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	/* Safari */
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}