/* CSS Document */

header {
	position: static;
    padding: 5vw 5vw 0 5vw;
	min-height: 5vh;
	z-index: 1;
}

nav#nav-landscape {
	display: none;
}

nav#nav-portrait {
	position: sticky;
	top: 0;
	padding: 5vw;
	display: flex;
	justify-content: space-between;
	width: 100vw;
	box-sizing: border-box;
	font-size: 2vh;
	z-index: 2;
	background-color: var(--light-color);
	background: linear-gradient(
		to bottom,
		var(--light-color) 0%,
		var(--light-color) 90%,
		rgba(0, 0, 0, 0) 100%
		);
}

nav > a:link, nav > a:visited {
    margin: 0;
	font-size: 2vh;
}

div.div-logo {
    min-width: 5vh;
    min-height: 5vh;
}

img.img-icon {
    width: 3vh;
    height: 3vh;
    margin-left: 1.5vh;
}

div.div-homepage {
	margin-top: -5vh;
	padding: 0 5vw 0 5vw;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

div.div-homepage > div:first-child {
	margin-top: 5vh;
    font-size: 3vh;
    width: 100%;
}

div.div-homepage > div:last-child {
	margin-top: 5vh;
    width: 100%;
}

div#div-right-text {
    text-align: start;
	font-size: 2vh;
}

.carousel {
    position: fixed;
    bottom: 5vh;
    height: 30vh;
}

section.sec-title {
    position: fixed;
	background-color: var(--light-color);
    top: 0;
    padding: 16vh 5vw 0 5vw;
	z-index: 0;
}

h1 {
    font-size: 4vh;
}

h2 {
    font-size: 2.5vh;
}

footer {
    font-size: 1.2vh;
}

div.div-photo-container {
    padding: 0 5vw;
}

div.div-photo, div.div-photo-multiple {
    margin-top: 2vh;
}

div.div-photo-multiple {
	width: 100%;
}

figure {
    flex-direction: column-reverse;
}

figure.fig-no-reverse {
	flex-direction: row;
}

figure > figcaption {
    width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
    padding-left: 2vh;
    margin-bottom: 2vh;
    border-left: 1px solid var(--medium-color);
	font-size: 2vh;
	box-sizing: border-box;
}

figure > div {
    width: 100%;
}

#img-prev, #img-next, #img-close { 
	width: 2vh; 
	height: 2vh; 
}

#btn-prev, #btn-next, #btn-close { 
	width: 4vh; 
	height: 4vh; 
}

#btn-prev, #btn-next {
	top: auto;
	bottom: 1vh;
	transform: none;
}

#img-fullscreen { 
	max-height: calc(100vh - 110px); 
}

#img-dots {
	display: none;
	/*bottom: 36px;
	gap: 30px;
	padding: 0 32px;*/
}

.img-dot {
	width: 2vh;
	height: 2vh;
}

#img-number{
	top: auto;
	bottom: 2vh;
	font-size: 1.5vh;
}