@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/*@font-face {
	font-family: 'DM Sans';
	font-style: normal;
	src: url('../fonts/Poppins-Regular.ttf');
}*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box; 
}
/* Works on Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: #cdcdcd #f0f0f0;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 10px;
}
*::-webkit-scrollbar-track {
	background: #f0f0f0;
}
*::-webkit-scrollbar-thumb {
	background-color: #cdcdcd;
	border-radius: 20px;
	border: 2px solid #f0f0f0;
}
html {
	scroll-behavior: smooth;
}
body {
	border: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 1em;
	overflow-x: hidden;
}
h1 {
	color: #2e3833;
	font-family: 'Playfair Display', serif;
	font-optical-sizing: auto;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 1.5rem;
}
h2 {
	color: #508662;
	font-family: 'DM Sans', sans-serif;
	font-optical-sizing: auto;
	font-size: .875rem;
	font-weight: 300;
	letter-spacing: .2em;
	line-height: 1.25rem;
	text-transform: uppercase;
}
h3 {
	color: #2e3833;
	font-family: 'Playfair Display', serif;
	font-optical-sizing: auto;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75rem;
	margin-bottom: .75rem;
}
h4 {
	color: #6a7c72;
	font-family: 'DM Sans', sans-serif;
	font-optical-sizing: auto;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1rem;
	margin-bottom: .25rem;
	text-transform: uppercase;
}
ul {
	list-style: none;
}
p {
	color: #6a7c73;
	font-family: 'DM Sans', sans-serif;
	font-optical-sizing: auto;
	font-size: 1rem;
	font-weight: 300;
	font-style: normal;
	line-height: 1.625;
	margin-bottom: 1.5rem;
	text-align: justify;
}
header {
	position: fixed;
	top: 0;
	background-color: #f8f6f188;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #d3dfd8;
	display: flex;
	height: 60px;
	width: 100%;
	padding: 0 !important;
	z-index: 110;
}
header #logo {
	background-image: url('../svg/logo.svg');
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 175px;
	flex: 15%;
	min-width: 260px;
	transition: all .3s ease;
}
header #menu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 100px;
}
header #menu ul {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 2rem;
}
header #menu ul li {
	display: inline-block;
}
header #menu ul li a {
	border-bottom: 3px solid transparent;
	color: #508661;
	font-family: 'DM Sans', sans-serif;
	font-size: .875rem;
	letter-spacing: .025em;
	line-height: 1.25rem;
	text-decoration: none;
	transition: all .3s linear;
}
header #menu ul li a:hover {
	text-shadow: 2px 2px #0002;
}
section {
	position: relative;
}
img {
	max-width: 100%;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn {
	background-color: #508662;
	border: 1px solid transparent;
	border-radius: .75rem;
	color: #fff;
	cursor: pointer;
	margin: 0 10px;
	padding: 1rem 1rem;
	transition: all .3s linear;
}
.btn:hover {
	text-decoration: none;
	opacity: .9;
}
.btn.white {
	background-color: transparent;
	border: 1px solid #508663;
	color: #508663;
}
.btn:hover {
	background-color: #508662;
	border: 1px solid #508662;
	color: #ffffff !important;
	opacity: .9;
}
.padding {
	padding: 100px 0;
}
.center {
	text-align: center;
}
.scroller {
    overflow-y: auto !important;
	scrollbar-color: #b3b3b3 transparent !important;
    scrollbar-width: thin !important;
}
.block {
	display: block;
	min-height: 100px;
	padding: 100px 0;
	width: 100%;
}
.block .content {
	margin: 0 auto;
	min-width: 280px;
	width: 80%;
}
.block .content > img, .block .content > p {
    display: inline-block;
}
.block .content > img {
	margin-right: 10px;
}
.block p {
	color: #333;
	margin: 10px 0;
	text-align: justify;
}
.main {
	background-color: #fbfaf8;
	display: flex;
	min-height: 200px;
}
.main.variant {
	background-color: #f8f6f1;
}
.main > article {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
article .column {
	margin-right: 5vw;
}
article .column:last-child {
	margin-right: 0;
}
article .column-single {
	width:  100%;
}
article .info-box-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
}
article .info-box-3 h4, article .info-box-3 p {
	text-align: center;
}
article .info-box-3 .info-icon {
	margin: 0 auto;
}
article .info-box-4 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1.5rem;
}
article .info-box-5 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 1.5rem;
}
article .info-block {
	background-color: #fbfaf9;
	border: 1px solid #d3ded7;
	border-radius: 1rem;
	margin-right: 1.5rem;
	padding: 2rem;
	transition: all .3s linear;
}
article .info-block.green {
	background-color: #f8f6f1;
}
article .info-block:last-child {
	margin-right: 0;
}
article .info-block:hover {
	box-shadow: 0 0 10px #0002;
}
article .info-block {
	color: #2e3833;
}
article .info-block:hover {
	text-decoration: none;
}
article .info-block .info-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d1e0d6;
	/*border: 1px solid #d3dfd787;*/
	border-radius: .75rem;
	color: #f8f6f187;
	margin-bottom: 1.25rem;
	width: 3rem;
	height: 3rem;
	transition: all .2s linear;
}
article .info-block:hover .info-icon {
	background-color: #508662;
}
article .info-block .info-icon img {
	filter: brightness(0) saturate(100%) invert(47%) sepia(30%) saturate(493%) hue-rotate(87deg) brightness(94%) contrast(90%);
	transition: all .2s linear;
}
article .info-block:hover .info-icon img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
}
.main > nav, .main > aside {
	flex: 0 0 5vw;
	background: transparent;
}
.main > nav, .main > aside:first-child {
	order: -1;
	text-align: center;
}
header, footer, article, nav, aside {
	padding: 1em;
}
.about-photo {
	background-color: #d1e0d6;
	border-radius: .75rem;
}
.about-photo img {
	border-radius: .75rem;
	width: 85vh;
}
.contact-btn {
	margin-top: 2rem;
}
.fade {
	opacity: 0;
	-webkit-transform: translateY(100px);
			transform: translateY(100px);
	visibility: hidden;
	transition: opacity 0.6s ease-out, transform 1s ease-out;
	will-change: opacity, visibility;
}
.fade.is-visible {
	opacity: 1;
	transform: none;
	visibility: visible;
}
.fade-left {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
	opacity: 0;
	transition: all 1s;
}
.fade-right {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
	opacity: 0;
	transition: all 1s;
}
.fade-left.is-visible, .fade-right.is-visible {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}
footer {
	background: #222;
	background-image: url('../svg/logo-gray.svg');
	background-position: 2vw center;
	background-repeat: no-repeat;
	background-size: 200px;
	border-top: 1px solid #202020;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-family: 'Poppins Light';
	font-size: .8rem;
	min-height: 70px;
}
footer p.title {
	font-family: 'Playfair Display', serif;
	font-optical-sizing: auto;
	font-size: 1.5rem;
	font-weight: 600;
}
footer p {
	color: #777;
	display: inline-block;
	font-size: .8rem;
	font-weight: 300;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}
footer a {
	color: #666;
	font-weight: bold;
	transition: all .3s ease;
}
footer a:hover {
	color: #08f;
}
.main-nav {
	display: none;
	background: #004480;
	color: white;
	padding: .25rem;
}
.main-nav > ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex: 3;
	align-items: center;
	justify-content: center;
}
.main-nav li a {
	border-radius: 2.5px;
	color: #fff;
	display: block;
	font-size: 1rem;
	padding: .25rem 2rem;
	text-decoration: none;
	transition: all .3s ease;
}
.main-nav li a:hover {
	background-color: rgba(255, 255, 255, .95);
	color: #004480;
}
#intro {
	background-color: #efefef;
	background-image: url('../svg/background-intro-site.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh);
	padding: 1%;
}
#intro h1 {
	color: #2e3833;
	font-size: 6rem;
	font-family: 'Playfair Display', serif;
	font-optical-sizing: auto;
	font-weight: 100;
	margin: 2.5rem 0 3.5rem 0;
	text-align: center;
}
#intro h2 {
	color: #2e3833;
	font-size: .875rem;
	font-family: 'DM Sans', sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	letter-spacing: .3em;
	line-height: 1.25rem;
	text-align: center;
	text-transform: uppercase;
}
#intro .text {
	color: #697c73;
	font-size: 1.25rem;
    line-height: 1.75rem;
}
#intro .btn-block {
	margin-top: 1.5rem;	
}
.color-yellow {
	background-color: #fbca59;
	color: #313131;
}
.color-yellow h1, .color-yellow h2, .color-yellow p {
	color: #313131;
}
.color-yellow ul {
	list-style: disc;
	list-style-position: inside;
}
.color-yellow a {
	font-size: 1.25rem;
}
.color-blue {
	background-color: #0088ff;
	color: #313131;
}
.color-blue h1, .color-blue h2, .color-blue p {
	color: #fff;
}
.color-light {
	background-color: #f4f8fc;
	color: #222;
}
.color-light h1, .color-light h2, .color-light p {
	color: #222;
}
.color-white {
	background-color: #fff;
	color: #222;
}
.color-white h1, .color-white h2, .color-white p {
	color: #222;
}
.color-dark {
	background-color: #313131;
	color: #fff;
}
.color-dark h1, .color-dark h2, .color-dark p {
	color: #fff;
}
.down-panel {
	position: absolute;
	top: 90vh;
	width: 40px;
	height: 85px;
}
.down-panel::before{
	position: absolute;
	left: 50%;
	bottom: 0;
	content: url('../svg/mouse-down.svg');
	opacity: 0.99;
	text-align: center;
	animation: bounce 1s ease infinite;
	margin-left: -20px;
	z-index: 99;
}
.down-panel a {
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 100;
}
.icon {
	display: none;
}
#my-photo-mobile {
	display: none;
}
.menu-links, .menu-action {
	cursor: pointer;
	display: inline-block;
    text-decoration: none;
}
.menu-links:hover {
	text-decoration: none;
}
.down-mouse {
	cursor: pointer;
}
.new-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
.new-row .new-column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}
.new-row .padding {
	padding: 5vw;
}
.art {
	align-items: flex-end;
	justify-content: center;
}
.sidebar {
	display: none;
}
#wrapper {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	transition: all .2s linear;
}
#wrapper.translate {
	transform: translateX(210px);
}
/*#loader {
    position: fixed;
    background-color: #f6f5ef;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    opacity: 1;
    transition: all .9s linear;
}
#loader div {
    position: fixed;
    background-image: url('../img/ripple.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 50%;
    width: 190px;
    height: 190px;
    margin-top: -95px;
    margin-left: -95px;
    top: 50%;
    left: 50%;
    z-index: 201;
    opacity: 1;
    transition: all .3s linear;
}
#loader.show, #loader.show div {
    opacity: 1;
}
#loader.hide, #loader.hide div {
    opacity: 0;
	transition: all .5s linear;
}*/
/* media queries */
@media screen and (max-width: 1024px){
	body {
		background-color: #333;
	}
	header {
		border: 0;
		height: 45px;
	}
	header #logo {
		background-size: 150px;
		min-width: 190px;
	}
	header #menu {
		min-width: 50px;
	}
	nav, aside {
		display: none;
	}
	h1 {
		text-align: center;
	}
	p {
		font-size: 1rem;
		margin-bottom: 1rem;
	}
	img {
		border-radius: 2.5px;
		margin: 1em;
	}
	.hide-mobile {
		display: none;
	}
	#logo {
		order: 2;
		-webkit-order: 2;
	}
	#menu {
		order: 1;
		-webkit-order: 1;
	}
	#language {
		order: 3;
		-webkit-order: 3;
	}
	.sidebar {
		background: #222;
		background-image: url('../svg/favicon-gold.svg');
		background-position: center 15px;
		background-repeat: no-repeat;
		background-size: 60px;
		border-right: 1px solid #151515;
		display: block;
		position: fixed;
		top: 0;
		bottom: 0;
		height: 100%;
		left: 0;
		width: 210px;
		overflow: hidden;
		-webkit-transition: width .3s linear;
		transition: width .2s linear;
		-webkit-transform: translateZ(0) scale(1,1);
		box-shadow: 1px 0 15px rgba(0,0,0,.20);
		opacity: 1;
		z-index: 1;
		padding: 0 !important;
		transition: all .2s linear;
	}
	.sidebar .menu-links, .sidebar .menu-action {
		color: #ddd !important;
		display: block;
		font-size: .9rem;
		padding: 10px 15px;
	}
	.sidebar .menu-links i, .sidebar .menu-action i {
		color: #999;
		margin-right: 10px;
		font-size: 1.2rem;
	}
	.sidebar .icon {
		width: 100%;
		background-color: #111;
		padding: 5px 15px;
		border-bottom: 1px solid #000;
	}
	.sidebar .icon i {
		color: #ddd;
		cursor: pointer;
	}
	.sidebar ul {
		margin-top: 75px;
	}
	.sidebar ul li {
		/*border-bottom: 1px solid #222;*/
	}
	.sidebar ul li:last-child {
		border-bottom: 0
	}
	.fade, .fade-left, .fade-right {
		margin: 0 auto;
		width: 90%;
	}
	.padding {
		padding: 2.5rem 0;
	}
	article .column:last-child {
		margin-right: 0;
		margin-left: 0;
	}
	article .info-box-4 {
		grid-template-columns: 1fr;
	}
	article .info-box-3 {
		grid-template-columns: 1fr;
	}
	article .info-block {
		margin-right: 0;
	}
	.new-row .new-column {
		display: flex;
		flex-direction: column;
		flex-basis: 100% !important;
		flex: 1;
	}
	.menu-content {
		right: -20px;
		margin-top: -5px;
	}
	.btn {
		white-space: normal;
	}
	.icon {
        border-radius: 0;
        display: block;
        margin: 0;
        min-width: 1px;
        min-height: 1px;
    }
    .icon a {
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom-width: 3px;
        font-size: .8rem;
        padding: 0;
    }
    .icon a:hover {
        border-bottom-width: 3px !important;
    }
    .icon i {
		color: #222;
        font-size: 2rem;
    }
    .topnav #myLinks {
		position: fixed;
		top: 45px;
		left: 0;
        display: none;
        margin-bottom: 0 !important;
		background-color: #fff;
		width: 100%;
    }
	header #menu ul li {
		background-color: #fff;
		display: block;
	}
    .topnav a {
        color: white;
        padding: 0;
        text-decoration: none;
        font-size: .9rem;
        display: block;
    }
    .topnav a.icon {
		cursor: pointer;
        display: block;
        position: absolute;
    }
    .topnav a:hover {
        color: #222;
    }
    .active {
        background-color: #000;
		background-position: center;
		background-repeat: no-repeat;
		background-size: 250px;
        color: white;
		cursor: default;
		height: 60px;
    }
	#intro h1 {
		font-size: 3rem;
		margin: 0.5rem 0 1.5rem 0;
	}
	#intro .text {
		font-size: 1rem;
	}
	#intro span {
		top: calc(100vh - 20px);
		right: 0;
		display: block;
		font-size: .6rem;
		width: 100%;
		text-align: center;
	}
	.down-panel, #back-to-top {
		display: none;
	}
	#my-photo-mobile {
		display: block;
		margin: 0 auto 25px;
	}
	.menu-btn {
		padding: 0 10px;
	}
	footer {
		background-image: none;
		font-size: .7rem;
		min-height: 30px;
		padding: 0;
	}
}
@keyframes bounce {
	50% {
		transform: translateY(-25%);
	}
	100% {
		transform: translateY(0);
	}
}