@charset "utf-8";
/* CSS Document */
#parallax1::before {
	background-image: url(../images/portret-ja2.jpg);
}
.parallax-last::before {
	background-image: url("../images/mapa.png");
}
.parallaxContent {
	z-index: 3;
}
/*   portfolio  */
.portfolio {
	margin: 0;
	padding: 0 0 3em 0;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: none;
	background-color: #292323;
	z-index: 10;
}
.portfolio h2 {
	position: absolute;
	top: 20px;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}
.captionPortfolio {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
}
.feed-grid {
	display: flex;
	width: 100%;
	margin: 0 auto;
	flex-flow: row wrap;
	justify-content: center;
	align-content: flex-start;
}
.contact-soc-site {
	position: relative;
	width: 250px;
	max-width: 400px;
	height: 250px;
	margin: 0 auto 3em;
	padding: 3em;
	/*    background-color: #dce6f0;
    box-shadow: 0px 0px 10px 0px rgba(110, 123, 140, 0.3);
*/ flex: auto;
	overflow: hidden;
}
.contact-soc-site a:hover .info-center {
	text-decoration: none;
	color: #ea2e49;
	opacity: 1;
}
.contact-soc-site img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	-o-object-fit: cover;
	object-fit: cover;
	image-rendering: optimizeQuality;
	transition: all 1.0s ease-in-out;
}
.contact-soc-site:last-of-type {
	height: 1px;
	background: transparent;
	width: 450px;
	max-width: 90%;
	position: relative;
	margin: 10px;
	flex: auto;
}
.contact-soc-site:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	z-index: 5;
}
.contain img {
	-o-object-fit: fill;
	object-fit: fill;
}
.info-center {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	padding: 0 10px;
	text-align: center;
	color: #f4f4f4;
	opacity: 0;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
	letter-spacing: 0.1em;
	font-size: 1.2em;
	font-weight: bold;
	justify-content: center;
	align-items: center;
	transition: all 0.6s ease-in-out;
}
@media (min-width:0px) and (max-width:1299px) {
	.proposal {
		display: block;
	}
	.proposal .flexBoxBig {
		display: inherit;
		width: 100%
	}
	.proposal .flexBoxSmall {
		display: flex;
		width: 75%;
		margin: 0 auto 3em;
	}
}
/* Buttons */
.btn-parallax {
	display: inline-block;
	width: auto;
	min-width: 90%;
	padding: 1.2em;
	color: var(--title2);
	text-decoration: none;
	position: relative;
	background: transparent;
	border: 1px solid;
	letter-spacing: 0.3em;
	text-align: center;
	text-indent: 2px;
	transition: color 0.1s linear 0.05s;
	margin: 1em auto;
	border-color: var(--title2);
}
.btn-parallax::before {
	content: "";
	display: block;
	position: absolute;
	top: 80%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--title2);
	z-index: 1;
	opacity: 0;
	transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn-parallax::after {
	transition: border 0.1s linear 0.05s;
}
.btn-parallax .btn-inner {
	position: relative;
	z-index: 2;
}
.btn-parallax .btn-inner img {
	height: 1em;
	width: auto;
	margin: auto 0 auto auto;
}
.btn-parallax:hover {
	color: #292323;
	transition: color 0.1s linear 0s;
}
.btn-parallax:hover img {
	filter: invert(1);
}
.btn-parallax:hover::before {
	top: 0;
	height: 100%;
	opacity: 1;
	transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn-parallax:hover::after {
	border-color: #292323;
	transition: border 0.1s linear 0s;
}
