/* ===== Fonts */
@font-face {
	font-family: Lato;
	src: url('font/lato-regular.ttf');
}
@font-face {
	font-family: Lato;
	src: url('font/lato-bold.ttf');
	font-weight: bold;
}
@font-face {
	font-family: Lato;
	src: url('font/lato-italic.ttf');
	font-style: italic;
}
@font-face {
	font-family: Lato;
	src: url('font/lato-bolditalic.ttf');
	font-style: italic;
	font-weight: bold;
}


@font-face {
	font-family: 'Lato Light';
	src: url('font/lato-light.ttf');
}
@font-face {
	font-family: 'Lato Light';
	src: url('font/lato-lightitalic.ttf');
	font-style: italic;
}


@font-face {
	font-family: 'PT Serif';
	src: url('font/ptserif-regular.ttf');
}
@font-face {
	font-family: 'PT Serif';
	src: url('font/ptserif-bold.ttf');
	font-weight: bold;
}
@font-face {
	font-family: 'PT Serif';
	src: url('font/ptserif-italic.ttf');
	font-style: italic;
}
@font-face {
	font-family: 'PT Serif';
	src: url('font/ptserif-bolditalic.ttf');
	font-style: italic;
	font-weight: bold;
}
/* ===== */



/* ===== General */
html {
	font-size: 100%;
}

body {
	background: #fff;
	box-sizing: border-box;
	color: #000;
	font-size: 1rem;
	font-family: 'Lato Light', sans-serif;
	margin: 0;
	min-width: 320px;
}

a,
a:link,
a:visited {
	color: #000;
	text-decoration: none;
}

a:active {
	color: #000;
}

a:hover,
a:active {
	text-decoration: underline;
}

p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, figure {
	margin: 0 0 1.2rem 0;
}

h1 {
	font-family: 'PT Serif', serif;
	font-size: 1.5rem;
	font-weight: normal;
	letter-spacing: .1rem;
	margin-bottom: 40px;
	text-align: center;
}

h2 {
	font-family: 'PT Serif', serif;
	font-size: 1.4rem;
	font-weight: normal;
}

h3 {
	font-family: 'PT Serif', serif;
	font-size: 1.3rem;
	font-weight: normal;
}

h4 {
	font-family: 'PT Serif', serif;
	font-size: 1.2rem;
	font-weight: normal;
}

h5 {
	font-family: 'PT Serif', serif;
	font-size: 1.1rem;
	font-weight: normal;
}

h6 {
	font-family: 'PT Serif', serif;
	font-size: 1rem;
	font-weight: normal;
}

ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

li {
	margin-left: .6rem;
}

p, li {
	line-height: 2rem;
}

img {
	max-width: 100%;
}


@media only screen and (max-width: 640px) {
	body {
		font-size: 1rem;
	}
	h1 {
		margin-bottom: 20px;
	}
	li {
		margin-left: 0;
	}
}
/* ===== */



/* ===== General page structure */
.section-wrapper {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1920px;
}

.section-container {
	box-sizing: border-box;
	margin: 0 auto;
	margin: 80px 110px;
	padding: 0 80px;
}


@media only screen and (max-width: 1200px) {
	.section-container {
		margin: 80px 20px;
		padding: 0;
	}
}
/* ===== */


/* ===== Block with side lines */
.side-lines-container {
	display: flex;
	justify-content: space-around;
	position: relative;
}
.side-lines-left {
	background: #000;
	bottom: 0;
	left: 2px;
	position: absolute;
	top: 20%;
	width: 1px;
}
.side-lines-right {
	background: #000;
	bottom: 20%;
	position: absolute;
	right: 1px;
	top: 0;
	width: 1px;
}
.side-lines-content {
	align-self: center;
	flex-grow: 1;
}
/* ===== */


/* ===== Section top */
.section-top {
	background: url('h_bg.jpg?v=6') top center no-repeat;
	display: flex;
	flex-direction: column;
	max-height: 1077px;
	min-height: min(100vh, 1077px);
}


/* ===== Top container */
.section-top .top-container {
	align-items: center;
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 0;
}


.section-top .top-container .logo-container .logo a {
	display: block;
}


.section-top .top-container .menu-container nav {
	font-family: 'PT Serif';
	font-size: 1.13rem;
	letter-spacing: .2rem;
}
.section-top .top-container .menu-container nav ul {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 2rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.section-top .top-container .menu-container nav li {
	margin: 0;
	padding: 0;
}
.section-top .top-container .menu-container nav a {
	display: block;
	padding: .6rem;
	text-decoration: none;
	white-space: nowrap;
}
.section-top .top-container .menu-container nav a:hover {
	text-decoration: underline;
}

.navscroll-back-to-top {
	background: #333 url('up.png?v=6') center center / 55% no-repeat;
	border-radius: 100%;
	bottom: 10px;
	cursor: pointer;
	display: block;
	height: 50px;
	right: 10px;
	position: fixed;
	width: 50px;
	z-index: 99;
}
.navscroll-back-to-top:hover {
	background-color: #666;
}


@media only screen and (min-width: 1920px) {
	.navscroll-back-to-top {
		right: calc(50% - 950px);
	}
}
@media only screen and (max-width: 700px) {
	.section-top .top-container {
		display: block;
	}

	.section-top .top-container .logo-container {
		display: none;
	}

	.section-top .top-container .menu-container nav {
		letter-spacing: normal;
	}
	.section-top .top-container .menu-container nav ul {
		flex-wrap: nowrap;
		column-gap: 5%;
	}
}
/* ===== */


/* ===== Header container */
.section-top .header-container {
	flex-grow: 1;
	font-family: Lato;
	font-weight: bold;
	letter-spacing: .1rem;
	margin-bottom: 0;
	margin-top: 0;
	text-align: center;
}

.section-top .header-container .side-lines-content {
	margin-bottom: 80px;
}

.section-top .header-container .logo {
	margin: 20px 20px 80px;
}


.section-top .header-container .side-lines-content h3 {
	font-weight: bold;
}


.section-top .header-container .items {
	display: flex;
	justify-content: center;
	margin: .5rem auto;
}
.section-top .header-container .items .item {
	padding: 0 1rem;
	width: 50%;
}
.section-top .header-container .items .item:first-of-type {
	text-align: right;
}
.section-top .header-container .items .item:last-of-type {
	text-align: left;
}


@media only screen and (max-width: 700px) {
	.section-top .header-container .side-lines-left,
	.section-top .header-container .side-lines-right {
		display: none;
	}

	.section-top .header-container .logo {
		margin-top: 0;
	}

	.section-top .header-container .items {
		flex-direction: column;
	}
	.section-top .header-container .items .item:nth-of-type(n) {
		display: block;
		padding: .3rem 0;
		text-align: center;
		width: auto;
	}
	.section-top .header-container .items .divider {
		display: none;
	}
}
/* ===== */


/* ===== */



/* ===== Section activity-fields */
.section-activity-fields ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 5rem;
	justify-content: center;
	list-style: none;
	margin: 0 auto;
	max-width: 1250px;
	padding: 0;
	padding-top: 40px;
	text-align: center;
}
.section-activity-fields ul li {
	align-items: center;
	border: 1px solid #aaa;
	border-radius: 100%;
	box-sizing: content-box;
	display: flex;
	height: 12rem;
	justify-content: center;
	margin: 0;
	padding: 1rem;
	width: 12rem;
}

@media only screen and (max-width: 640px) {
	.section-activity-fields ul {
		flex-direction: column;
	}
	.section-activity-fields ul li {
		border-radius: 0;
		height: auto;
	}
}
/* ===== */



/* ===== Section activity-scope */
.section-activity-scope .section-container {
	margin: 0;
	padding: 0;
}

.section-activity-scope .side-lines-left {
	margin-left: 110px;
}
.section-activity-scope .side-lines-right {
	margin-right: 110px
}
.section-activity-scope .side-lines-content {
	display: flex;
	gap: 40px;
	padding-top: 60px;
}
.section-activity-scope .side-lines-content > div {
	width: 50%;
}


.section-activity-scope .image-container {
	align-self: center;
	padding: 60px 0;
}


.section-activity-scope .content-wrapper {
	align-items: center;
	background: #f5f5f5;
	display: flex;
	padding-right: 110px;
}
.section-activity-scope .content-container {
	padding: 10%;
}

.section-activity-scope .content-container h1 {
	margin-bottom: 10%;
	text-align: left;
}
.section-activity-scope .content-container ul {
	list-style: '-';
	margin: 0;
	padding: 0;
}
.section-activity-scope .content-container li {
	padding-left: 1rem;
}


@media only screen and (max-width: 1200px) {
	.section-activity-scope .side-lines-left {
		margin-left: 20px;
	}
	.section-activity-scope .side-lines-right {
		margin-right: 20px
	}
}
@media only screen and (max-width: 1000px) {
	.section-activity-scope .side-lines-left,
	.section-activity-scope .side-lines-right {
		display: none;
	}

	.section-activity-scope .side-lines-content {
		padding-top: 0;
	}
	.section-activity-scope .side-lines-content > div {
		width: auto;
	}

	.section-activity-scope .image-container {
		display: none;
	}

	.section-activity-scope .content-wrapper {
		padding: 0;
	}
}
/* ===== */



/* ===== Section about us */
.section-about-us p {
	text-align: justify;
}


.section-about-us .items-container .side-lines-left,
.section-about-us .items-container .side-lines-right {
	bottom: 0;
	top: 0;
}
.section-about-us .items-container .side-lines-content {
	align-items: center;
	display: flex;
	gap: 2%;
}


.section-about-us .items-container .side-lines-content .photo {
	flex-shrink: 0;
	padding-bottom: 10%;
	position: relative;

}
.section-about-us .items-container .side-lines-content:nth-of-type(odd) .photo {
	padding-right: 10%;
}
.section-about-us .items-container .side-lines-content:nth-of-type(even) .photo {
	padding-left: 10%;
}

.section-about-us .items-container .side-lines-content .photo img.title {
	bottom: 0;
	position: absolute;
}
.section-about-us .items-container .side-lines-content:nth-of-type(odd) .photo img.title {
	right: 0;
}
.section-about-us .items-container .side-lines-content:nth-of-type(even) .photo img.title {
	left: 0;
}


.section-about-us .items-container .side-lines-content .bio {
	padding: 1rem;
}
.section-about-us .items-container .side-lines-content .bio h3 {
	letter-spacing: .4rem;
	margin-bottom: 0;
}


@media only screen and (max-width: 1000px) {
	.section-about-us .items-container .side-lines-content:nth-of-type(n) .photo {
		padding: 0;
	}
	.section-about-us .items-container .side-lines-content .photo img.title {
		display: none;
	}
}
@media only screen and (max-width: 800px) {
	.section-about-us .items-container .side-lines-left,
	.section-about-us .items-container .side-lines-right {
		display: none;
	}

	.section-about-us .items-container .side-lines-content:nth-of-type(odd) {
		flex-direction: column;
	}
	.section-about-us .items-container .side-lines-content:nth-of-type(even) {
		flex-direction: column-reverse;
	}

	.section-about-us .items-container .side-lines-content .bio {
		padding-left: 0;
		padding-right: 0;
	}
}
/* ===== */



/* ===== Section map */
.section-map iframe {
	aspect-ratio: 2/1;
	border: 0;
	max-height: 600px;
	min-height: 300px;
	width: 100%;

	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
/* ===== */



/* ===== Section contact */
.section-contact .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.section-contact .items .item-wrapper {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-width: 320px;
	padding: 20px;
	width: 33%;
}
.section-contact .items .item {

}


@media only screen and (max-width: 700px) {
	.section-contact .items {
		flex-direction: column;
		flex-wrap: nowrap;
		margin: auto;
		width: fit-content;
	}
	.section-contact .items .item-wrapper {
		align-items: stretch;
		min-width: auto;
		width: fit-content;
	}
}
/* ===== */



/* ===== Section footer */
.section-footer .section-container {
	margin-bottom: 10px;
	margin-top: 0;
	padding: 0;
}

.section-footer .section-container .items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
}
/* ===== */
