@font-face {
	font-family: 'Poppins Thin';
	font-style: normal;
	src: url('../fonts/Poppins-Thin.ttf');
}
@font-face {
	font-family: 'Poppins Light';
	font-style: normal;
	src: url('../fonts/Poppins-Light.ttf');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	src: url('../fonts/Poppins-Regular.ttf');
}
@font-face {
	font-family: 'Poppins Medium';
	font-style: normal;
	src: url('../fonts/Poppins-Medium.ttf');
}
@font-face {
	font-family: 'Poppins SemiBold';
	font-style: normal;
	src: url('../fonts/Poppins-SemiBold.ttf');
}
@font-face {
	font-family: 'Poppins Bold';
	font-style: normal;
	src: url('../fonts/Poppins-Bold.ttf');
}
@font-face {
	font-family: 'Montserrat Thin';
	font-style: normal;
	src: url('../fonts/Montserrat-Thin.ttf');
}
@font-face {
	font-family: 'Montserrat Light';
	font-style: normal;
	src: url('../fonts/Montserrat-Light.ttf');
}
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	src: url('../fonts/Montserrat-Regular.ttf');
}
@font-face {
	font-family: 'Montserrat Medium';
	font-style: normal;
	src: url('../fonts/Montserrat-Medium.ttf');
}
@font-face {
	font-family: 'Montserrat SemiBold';
	font-style: normal;
	src: url('../fonts/Montserrat-SemiBold.ttf');
}
@font-face {
	font-family: 'Montserrat Bold';
	font-style: normal;
	src: url('../fonts/Montserrat-Bold.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: 'Poppins', sans-serif;
	font-size: 1em;
	overflow-x: hidden;
}
h1 {
	color: #333;
	font-family: 'Poppins Medium';
	font-size: 4rem;
	margin-bottom: 4rem;
}
h2 {
	color: #333;
	font-family: 'Poppins Light';
}
ul {
	list-style: none;
}
p {
	font-family: 'Montserrat Light';
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: justify;
}
header {
	position: fixed;
	/*background-color: rgba(255,255,255,1);*/
	/*border-bottom: 1px solid #ebebeb;*/
	/*box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);*/
	display: flex;
	height: 75px;
	width: 100%;
	padding: 0 !important;
	z-index: 100;
	transition: all .3s ease;
}
header.min {
	position: sticky;
	top: 0;
	background-color: rgba(255,255,255,.95);
	/*border-bottom: 0;
	height: 45px;*/
}
header #logo {
	background-image: url('../svg/logo-blue.svg');
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 230px;
	flex: 15%;
	min-width: 260px;
	transition: all .3s ease;
}
header.min #logo {
    /*background-size: 170px;*/
}
header #menu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/*flex: 75%;*/
	min-width: 100px;
}
header #menu ul {
	margin: 0;
}
header #menu ul li {
	display: inline-block;
}
header #menu ul li a {
	border-bottom: 3px solid transparent;
	color: #222;
	font-family: 'Poppins Light';
	padding: 10px 15px;
	text-decoration: none;
	transition: all .3s ease;
}
header.min #menu ul li a {
    /*font-size: .8rem;*/
}
section {
	/*padding-bottom: 100px;
	padding-top: 50px;*/
}
img {
	max-width: 100%;
}
.padding {
	padding: 100px 0;
}
.scroller {
    overflow-y: auto !important;
	scrollbar-color: #b3b3b3 transparent !important;
    scrollbar-width: thin !important;
}
/* dropdown language */
#language {
	display: flex;
	align-items: center;
	justify-content: end;
	flex: 10%;
	min-width: 165px;
	padding-right: 20px;
}
.menu-btn {
	background-color: transparent;
	border: 1px solid transparent;
	cursor: pointer;
	padding: 10px;
	transition: all .3s ease;
}
.dropdown-menu-lang {
	position: relative;
	display: inline-block;
}
.dropdown-menu-lang a {
	color: #222;
	font-family: 'Poppins Light';
	font-size: .8rem;
}
.dropdown-menu-lang img {
	display: none;
}
.menu-content {
	position: absolute;
	right: 0;
	background-color: rgba(255,255,255,.95);
	/*background-color: #fff;
	border: 1px solid #efefef;*/
	margin-top: 6px;
	width: 100%;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all .3s linear;
}
.menu-content.show {
	opacity: 1;
	visibility: visible;
}
.links {
	color: #222;
	padding: 10px;
	text-decoration: none;
	display: block;
	/*border-bottom: 3px solid transparent;*/
	transition: all .3s ease;
}
.links:hover {
	/*background-color: #efefef;
	border-color: #08f;*/
	text-decoration: none;
}
.dropdown-menu-lang:hover .menu-btn {
	/*border-color: #08f;*/
}
.flags {
	width: 25px;
	height: 25px;
	margin-right: 7px;
}
#language i {
	margin-left: 7px;
}
/* dropdown language */
.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 {
	display: flex;
	min-height: 200px;
}
.main > article {
	flex: 1;
}
.main > nav, .main > aside {
	flex: 0 0 20vw;
	background: transparent;
}
.main > nav, .main > aside:first-child {
	order: -1;
	text-align: center;
}
header, footer, article, nav, aside {
	padding: 1em;
}
#artes article {
	max-width: 60vw;
}
#my-photo {
	margin-top: 50px;
}
#saudacoes {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
	opacity: 0;
	transition: all 1s;
}
#saudacoes.is-visible {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}
.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;
}
#form-contact {
	background-color: #222;
	border: 0;
	border-radius: 5.5px;
	box-sizing: border-box;
	font-size: .9rem;
	margin: 50px auto 0;
	min-width: 280px;
	width: 50%;
	padding: 10px;
}
#form-contact input[type='text'], #form-contact textarea {
	border: 1px solid #ddd;
	border-radius: 2.5px;
	padding: 5px;
	width: 100%;
	transition: all .2s ease;
}
#form-contact input[type='text']:focus, #form-contact textarea:focus {
	border: 1px solid #08f;
}
#form-contact textarea {
	height: 150px;
}
#form-contact label {
	color: #fff;
	margin-top: 15px;
}
#form-contact button, #form-contact input[type='submit'], #form-contact input[type='reset'] {
	border: 0;
	border-radius: 2.5px;
	background-color: #ff6500;
	color: #fff;
	font-weight: bold;
	padding: 10px 30px;
	margin: 5px;
	outline: 0;
}
#form-contact input:disabled {
	background-color: #aaa !important;
	color: #555 !important;
	cursor: progress;
}
#form-contact .buttons {
	display: flex;
	align-items: center;
	justify-content: center;
}
#form-contact ul li {
	min-height: 10px;
}
#form-contact #result {
	min-height: 30px;
	margin-top: 15px;
	margin-bottom: 5px;
	text-align: center;
	transition: all .2s ease;
}
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 {
	display: inline-block;
	font-size: .8rem;
	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: flex;*/
	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;
}
#photo {
	background-color: #efefef;
	/*background-color: #325add;
	background-image: radial-gradient(circle 920px at center,#286dec 0,#286dec 24%,#2767e7 32%,#244dd2 66%,#244dd2 91%);*/
	background-image: url('../img/pexels-bongkarn-thanyakij-3759098.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh);
	padding: 1%;
}
#photo h1 {
	color: #222;
	font-size: 5rem;
	font-family: 'Poppins Medium';
	margin: 0 1vw 0 1vw;
	text-align: center;
}
#photo span {
	position: absolute;
	top: calc(100vh - 35px);
	right: 10px;
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	display: block;
	font-size: .8rem;
	padding: 3px 7px;
}
#photo a {
	color: #fbca59;
	transition: all .2s ease;
}
.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;
}
#back-to-top {
	position: fixed;
	background: rgba(255,255,255,.25);
	border: 2px solid transparent;
	border-radius: 100%;
	color: #222;
	bottom: 40px;
	right: 10px;
	font-size: 1.5rem;
    z-index: 9999;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-out;
    opacity: 0;
    width: 32px;
    height: 32px;
    line-height: 30px;
}
#back-to-top:hover {
    background: rgba(255,255,255,1);
    color: #000;
}
#back-to-top.show {
    opacity: 1;
}
.icon {
	display: none;
}
#my-photo-mobile {
	display: none;
}
.menu-links, .menu-action {
	cursor: pointer;
	display: inline-block;
    text-decoration: none;
}
.menu-links:after, .menu-action:after {
	display:block;
	content: '';
	border-bottom: solid 2px #08f;  
	transform: scaleX(0);  
	transition: transform .2s ease-in-out;
}
.menu-links:hover:after, .menu-action:hover:after { 
	transform: scaleX(1); 
}
.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;
	transform: translateX(0);
	transition: all .2s linear;
}
#wrapper.translate {
	transform: translateX(210px);
}
#loader {
    position: fixed;
    background-color: rgba(255, 255, 255, .85);
    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;
}
#nanoGallery2 {
	width: 100%;
	margin: 10px;
}
/* progress bar */
.progress-container {
	position: sticky;
	top: 75px; 
	left: 0;
	z-index: 1;
	width: 100%;
}
.progress--wpr {
	width: 100%;
	height: 3px;
}
.progress--bar {
	height: 3px;
	background-color: rgba(0,168,255,1);
	width: 0%;
}
/*.new-row .new-column:first-child {
	margin-left: 10vw;
	margin-right: 2.5vw;
}
.new-row .new-column:last-child {
	margin-left: 2.5vw;
	margin-right: 10vw;
}*/
/* 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;
	}
	a {
		display: contents;
	}
	img {
		border-radius: 2.5px;
		margin: 1em;
	}
	#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/logo-gray.svg');
		background-position: center 15px;
		background-repeat: no-repeat;
		background-size: 170px;
		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;
		/*background-image: url('../svg/logo-icon.svg');
		background-position: 175px center;
		background-repeat: no-repeat;
		background-size: 32px;*/
		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
	}
	.new-row .new-column {
		display: flex;
		flex-direction: column;
		flex-basis: 100% !important;
		flex: 1;
	}
	.menu-content {
		right: -20px;
		margin-top: -5px;
	}
	#default-lang {
		display: none;
	}
	.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 {
		display: block;
        overflow: hidden;
        background-color: transparent;
        position: relative;
    }
    .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: 14px 15px;
        text-decoration: none;
        font-size: .9rem;
        display: block;
    }
    .topnav a.icon {
		cursor: pointer;
        display: block;
        position: absolute;
        /*right: 0;
        top: 0;*/
    }
    .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;
    }
	#photo h1 {
		font-size: 2rem;
	}
	#photo 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;
	}
	#form-contact {
		width: 100%;
	}
	#contato article {
		/*padding: 1px;*/
	}
	.art {
		align-items: center;
		justify-content: flex-end;
	}
	.art img {
		width: 90%;
	}
	.links {
		padding: 0 5px;
	}
	.menu-btn {
		padding: 0 10px;
	}
	footer {
		background-image: none;
		font-size: .7rem;
		min-height: 30px;
		padding: 0;
	}
	/*.g-recaptcha {
		transform:scale(0.77);
		transform-origin:0 0;
	}*/
}
@keyframes bounce {
	50% {
		transform: translateY(-25%);
	}
	100% {
		transform: translateY(0);
	}
}