@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600');

body {
    -webkit-font-smoothing: antialiased;
    font-family: "Montserrat", sans-serif;
	font-family: 'Euclid Square', sans-serif;
	line-height: 1.45;
	color: #333333;
}
body.portfolio .login-logo {
	cursor: pointer;
}
h2 {
	font-size: 32px;
	font-weight: 600;
}
h3 {
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 5px;
}
h4 {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 5px;
}
h5 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
}
strong {
	font-weight: 500;
}
p {
	font-weight: 300;
}
ul {
	list-style: none;
}
li {
	color: #5D5D5D;
	position: relative;
	padding-left: 14px;
	margin: 5px 0;
}
li::before {
	content: '';
	position: absolute;
	width: 7px;
	height: 1px;
	background-color: #5D5D5D;
	top: 11px;
	left: 0;
}

header li::before,
.main-info li::before {
	content: none;
}
#portfolio_template main {
	padding-top: 46px;
	padding-bottom: 24px;
}
#portfolio_template.new h2 {
	text-indent: -9999999px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
#projects_top {
	align-items: flex-end;
	margin-bottom: 46px;
}
#projects_top > :first-child span {
	margin-right: 6px;
}
#projects_top > :last-child {
	text-align: right;
}
#projects_top p {
	margin-bottom: 0;
	font-style: italic;
	font-weight: 400;
	color: #929BA6;
}
#projects_top button.applied {
	background: #36aea8;
	background: -moz-linear-gradient(150deg, #009698 0%, #00D1C1 100%);
	background: -webkit-linear-gradient(150deg, #009698 0%, #00D1C1 100%);
	background: linear-gradient(150deg, #009698 0%, #00D1C1 100%);
	color: white;
	border: none;
}
#projects_top button.applied img {
	filter: invert(1);
}
#projects_top button,
#portfolio_filters button {
	all: unset;
	border: 2px solid #31363C;
	border-radius: 60px;
	display: inline-block;
	padding: 9px 20px 9px 20px;
	color: black; 
	text-shadow: none;
	cursor: pointer;
	font-weight: 500;
	font-size: 18px;
	transition: all .2s ease;
}
#portfolio_filters button#apply_filters {
	background: #36aea8;
	background: -moz-linear-gradient(150deg, #009698 0%, #00D1C1 100%);
	background: -webkit-linear-gradient(150deg, #009698 0%, #00D1C1 100%);
	background: linear-gradient(150deg, #009698 0%, #00D1C1 100%);
	color: white;
	border: none;
	font-weight: 600;
	font-size: 16px;
	padding: 12px 20px;
}
#portfolio_filters button:not(#apply_filters) {
	padding: 0;
	border: none;
	color: #36aea8;
}
#portfolio_filters button.disabled {
	color: #C9C9C9;
	text-decoration: underline;
}
#portfolio_filters .buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 50px;
	position: absolute;
	bottom: 0;
	width: calc(100% - 32px);
	/* padding-right: 32px; */
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
#projects_top button:hover {
	background-color: #31363C; 
	color: white;
}
#projects_top button:hover img {
	filter: invert(1);
	opacity: 1;
}
#projects_top button img {
	position: relative;
	top: -2px;
	margin-right: 6px;
	opacity: .75;
}
#projects_grid .project-card {
	margin-bottom: 60px;
	cursor: pointer;
}
#projects_grid .project-card > div {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	margin-bottom: 24px;
}
#projects_grid .project-card img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: all .6 linear;
}
/* #projects_grid .project-card > div:hover img {
	scale: 1.02;
} */
#projects_grid .project-card > div::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0;
	transition: opacity 0.3s ease; /* solo la propiedad opacity */
	display: block;
	top: 0;
	left: 0;
	z-index: 99;
}
#projects_grid .project-card > div:hover::after {
	opacity: 0.3;
}
#projects_grid .project-card h3 {
	font-size: 22px;
	font-weight: 700;
}
#projects_grid .project-card p {
	font-size: 16px;
	font-weight: 500;
	color: #929BA6;
}
#portfolio_filters {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
}
#portfolio_filters.open {
	display: block;
}
#portfolio_filters ul li::before {
	content: none;
}
#portfolio_filters ul,
#portfolio_filters ul li {
	padding-left: 0;
}
#portfolio_filters ul li:not(#categories) {
	margin-bottom: 16px;
}
#portfolio_filters ul li label {
	background-color: #F6F6F6;
	padding: 10px 24px;
	border-radius: 60px;
	cursor: pointer;
	transition: all .2s ease;
	font-weight: 500;
	font-size: 15px;
	/* box-shadow: 0 0px 12px 0 rgba(0, 0, 0, 0.16); */
}
#portfolio_filters ul li label.selected {
	background-color: #5D5A5A;
	color: white;
}
#portfolio_filters ul li label:not(.selected):hover {
	background-color: #EAEAEA;
}
#portfolio_filters .close {
	cursor: pointer;
}
#portfolio_filters #filters_wrapper {
	position: absolute;
	top: 0;
	/* right: 0; */
	z-index: 2;
	background-color: white;
	padding: 82px 5vw 50px;
	width: 40vw;
	height: 100vh;
	/* overflow-y: scroll;
	overflow-x: hidden; */
	height: 100dvh;
	right: -40vw;
	transition: right .4s ease; /* sin delay */
}
#portfolio_filters.open #filters_wrapper {
	/* right: 0; /* estado final */ */
}
#portfolio_filters #filters_wrapper > p {
	font-weight: 600;
	font-size: 22px;
	color: #01A5A8;
}
#portfolio_filters #filters_wrapper > div#categories {
	position: relative;
}
#portfolio_filters #filters_wrapper > div#categories,
#portfolio_filters #filters_wrapper > div#categories > div:not(:last-child) {
	width: 100%;
	height: calc(100% - 50px);
	background-color: white;
	overflow-y: scroll;
	overflow-x: hidden;
	/* margin-bottom: 70px; */
}
#portfolio_filters #filters_wrapper > div#categories > div:not(:last-child) {
	margin-bottom: 0;
	height: 100%;
	padding-bottom: 70px;
}
#portfolio_filters #filters_wrapper > div#categories ul {
	margin-bottom: 0;
	padding-right: 32px;
}
#portfolio_filters .overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: .6;
	transition: all .4s ease;
	opacity: 0;
}
#portfolio_filters .close {
	right: 4.6vw;
}
#portfolio_filters #filters_wrapper > div#categories > div::-webkit-scrollbar,
#project_sheet #project_content::-webkit-scrollbar {
	height: 8px;
	width: 8px;
	border-radius: 50px;
	/* background-color: #E8E8E8; */
}
#portfolio_filters #filters_wrapper > div#categories > div:-webkit-scrollbar-track,
#project_sheet #project_content:-webkit-scrollbar-track {
	border-radius: 50px;
	/* border-radius: 50px; */
}
#portfolio_filters #filters_wrapper > div#categories > div::-webkit-scrollbar-thumb,
#project_sheet #project_content::-webkit-scrollbar-thumb {
	background-color: #C2C2C2;
	border-radius: 50px;
	/* border-radius: 50px; */
	cursor: pointer;
}
/* LOGIN */
.login {
	display: flex;
	flex-direction: column;
	min-height: 80vh;
	width: 90%;
	justify-content: center;
	max-width: 420px;
	margin: auto;
	text-align: center;
	color: #5D5D5D;
}
#portfolio_login {
	padding-bottom: 16px;
}
#portfolio_login p {
	font-size: 17px;
	color: #31363C;
	font-weight: 400;
}
#portfolio_login a {
	color: #FF5A5F;
	font-weight: 500;
}
.login form {
	padding-bottom: 60px;
}
.login .login-logo {
    max-width: 291px;
    margin: 0 auto 36px;
	width: 55%;
	min-width: 200px;
}
.login p {
	font-size: 12px;
}
.post-password-form p:first-child {
	display: none;
}
.login form p:last-of-type {
	background-color: #EEEEEE;
	border-radius: 50px;
	position: relative;
	margin-top: 20px;
}
.login label {
	display: block;
	padding: 14px 0;
}
.login label input {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 128px);
	height: 100%;
	background-color: #EEEEEE;
	border-radius: 50px;
	padding: 0 20px;
	border: none;
	outline: none;
}
.login input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 128px;
	border-radius: 50px;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	text-transform: capitalize;
	background-color: #FF5A5F;
	color: #fff;
	outline: none;
	cursor: pointer;
}
.login input[type="submit"]:active {
	background-color: #f7474d;
}
main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100dvh;
}
#project_sheet {
	width: 100%;
	height: 100vh;
	height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: white;
	display: none;
}
#project_sheet.open {
	display: flex;
}
#project_sheet h2 {
	margin-bottom: 24px;
}
#project_sheet #project_content {
	/* margin: 0 0 0 40px; */
	background-color: white;
	width: 37%;
	/* height: calc(100% - 80px); */
	position: relative;
	overflow: scroll;
	padding: 40px 0 140px 40px;
}
#project_sheet #project_content {
	
}
#project_sheet #project_content > div {
	padding-right: 30px;
}
#project_sheet #project_content > div > div:last-child {
	/* padding-bottom: 80px; */
}
#project_sheet #project_media {
	width: 63%;
	height: 100%;
	background-color: #F6F6F6;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#project_sheet .top-options {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}
#project_sheet button {
	all: unset;
}
#project_sheet .mobile-slider {
	display: none;
}
#project_sheet .top-options .back {
	color: #929BA6;
	font-weight: 500;
	cursor: pointer;
}
#project_sheet .top-options .back span:last-child {
	position: relative;
	top: 2px;
	margin-left: 4px;
}
#project_sheet .top-options .back span:first-child {
	display: inline-block;
	transition: all .2s ease;
}
#project_sheet .top-options .back:hover span:first-child {
	transform: translate(-6px, 0);
}
#project_sheet .top-options a {
	padding: 8px 18px;
	background-color: #3060F4;
	color: white;
	border-radius: 50px;
	font-size: 16px;
}
#project_sheet .top-options a.hide {
	display: none;
}
#project_sheet .main-info ul {
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
#project_sheet .main-info ul li {
	width: fit-content;
	background-color: #F6F6F6;
	padding: 10px 16px 8px;
	font-size: 16px;
	border-radius: 30px;
	margin-right: 6px;
	font-weight: 500;
	line-height: 1;
}
#project_sheet .main-info ul li.view-more-tags {
	border: 1.5px solid #5D5A5A;
	color: #5D5A5A;
	background-color: transparent;
	cursor: pointer;
	padding: 9px 16px 9px;
}
#project_sheet .projects-navigation {
	position: fixed;
	/* width: 100%; */
	left: 0;
	/* bottom: 40px; */
	bottom: 0;
	display: flex;
	justify-content: center;
	width: calc(37% - 60px);
	background: linear-gradient(to top, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
	padding-top: 40px;
	padding-bottom: 50px !important;
	margin: 0 30px;
}
#project_sheet .projects-navigation > div {
	width: fit-content;
	padding: 12px 16px;
	background-color: #F6F6F6;
	border-radius: 50px;
	filter: drop-shadow(0 3px 7.2px rgba(0, 0, 0, 0.25));
}
#project_sheet .projects-navigation > div span {
	color: #929BA6;
	margin: 0 16px;
}
#project_sheet .projects-navigation button {
	all: unset;
	cursor: pointer;
}
#project_sheet .project-description h3 {
	margin-bottom: 24px;
	font-size: 20px;
}
#project_sheet .project-description h4 {
	margin-bottom: 8px;
	font-size: 18px;
}
#project_sheet .project-description ul {
	padding-left: 0;
}
#project_sheet .project-description ul li::before {
	content: none;
}
#project_sheet .project-description ul li {
	list-style: inside;
	font-size: 17px;
}
#project_sheet .project-description p {
	font-size: 17px;
	color: #5D5D5D;
}
#project_sheet .button-icon {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 8px;
	/* top: 1px; */
}
#project_sheet .button-icon span {
	position: absolute;
	width: 12px;
	height: 1.5px;
	top: 50%;
	background-color: #5D5A5A;
}
#project_sheet .button-icon span:first-child {
	transform: rotate(90deg);
}
#project_sheet li.view-more-tags.opened .button-icon span:first-child {
	opacity: 0;
}
#project_sheet .swiper-free-mode .swiper-wrapper {
	/* width: calc(100% - 100px);
	margin: 0 50px;
	overflow: hidden; */
}
/* SWIPER */
#project_sheet .swiper {
  width: 100%;
  height: 100%;
}
#project_sheet .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #444; */
  display: flex;
  justify-content: center;
  align-items: center;
}
#project_sheet .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 6px; */
}
#project_sheet .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
#project_sheet .swiper-slide {
  background-size: cover;
  background-position: center;
}
#project_sheet .project-swiper-2 {
  height: 80%;
  width: 100%;
  /* min-height: 370px;
  max-height: 520px; */
  /* min-height: 370px;
  min-width: 570px;
  height: calc(70vh);
  width: calc(100%);
  background: red;
  max-width: 600px;
  max-height: 400px; */
}
#project_sheet .project-swiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  min-height: 120px;
  max-height: 140px;
}
#project_sheet .project-swiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
#project_sheet .project-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
#project_sheet .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
#project_sheet .swiper-button-next, 
#project_sheet .swiper-button-prev {
	background-image: none !important;
}
#project_sheet #project_media .swiper-button-next::after, 
#project_sheet #project_media .swiper-button-prev::after,
#project_sheet .mobile-slider .swiper-button-next::after, 
#project_sheet .mobile-slider .swiper-button-prev::after {
	background-color: #F6F6F6;
	padding: 10px 8px 10px 12px;
	border-radius: 50px;
	font-size: .8rem;
	transition: all .3s ease;
}
#project_sheet #project_media .swiper-button-next:hover::after, 
#project_sheet #project_media .swiper-button-prev:hover::after,
#project_sheet .mobile-slider .swiper-button-next:hover::after, 
#project_sheet .mobile-slider .swiper-button-prev:hover::after {
	background-color: #dbdbdb;
}
#project_sheet #project_media .swiper-button-prev::after,
#project_sheet .mobile-slider .swiper-button-prev::after {
	padding: 10px 12px 10px 8px;
}
#project_sheet #project_media .swiper-button-next,
#project_sheet .mobile-slider .swiper-button-next {
	right: 24px;
}
#project_sheet #project_media .swiper-button-prev,
#project_sheet .mobile-slider .swiper-button-prev {
	left: 24px;
}
/* Big Slider */
#project_sheet .close {
	z-index: 999;
}
#project_sheet #big_slider_wrapper {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.6);
	background-color: #394454;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.25s ease-in-out; 
			-o-transition: all 0.25s ease-in-out; 
			transition: all 0.25s ease-in-out;
	-webkit-transition-delay: 0.1s;
			-o-transition-delay: 0.1s;
	   transition-delay: 0.1s;
}
#big_slider_wrapper .swiper-button-next::after, #big_slider_wrapper .swiper-button-prev::after {
	color: white;
}
#big_slider_wrapper .swiper-button-next {
	right: 32px;
}
#big_slider_wrapper .swiper-button-prev {
	left: 32px;
}
#project_sheet #big_slider_wrapper.open{
	z-index: 99999;
	opacity: 1;
	visibility: visible; 
}
#project_sheet #big_slider_wrapper #gallery_slider {
	width: 100%;
	overflow: hidden;
	height: 100%;
	z-index: 99;
}
#project_sheet #big_slider_wrapper #gallery_slider .slider_container {
	width: 100%;
	height: 100%;
}
#project_sheet #big_slider_wrapper #gallery_slider .swiper-slide {
	text-align: center;
	background: transparent;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
#project_sheet #big_slider_wrapper #gallery_slider .swiper-slide img {
	-webkit-transition: all 0.25s ease-in-out; 
	-o-transition: all 0.25s ease-in-out; 
	transition: all 0.25s ease-in-out;
	max-height: calc(100vh - 150px); 
	max-width: calc(100vw - 150px);
}
#project_sheet #big_slider_wrapper #gallery_slider .swiper-slide img,
#project_sheet #big_slider_wrapper #gallery_slider .swiper-slide .slide-description {
	opacity: 0;
}
#project_sheet #big_slider_wrapper #gallery_slider .swiper-slide.swiper-slide-active img,
#project_sheet #big_slider_wrapper #gallery_slider .swiper-slide.swiper-slide-active .slide-description {
	opacity: 1; 
}
#project_sheet div.horizontal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}

#project_sheet div.vertical {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}

@media (max-width: 1200px) {
	#portfolio_filters #filters_wrapper {
		width: 45vw;
	}
	#projects_top button {
		font-size: 16px;
	}
}
@media (max-width: 992px) {
	#portfolio_filters #filters_wrapper {
		width: 100%;
	}
	#project_sheet.open {
		flex-direction: column-reverse;
	}
	#project_sheet #project_content {
		width: 100%;
		height: 100%;
		overflow: scroll;
	}
	#project_sheet #project_media {
		display: none;
		width: 100%;
	}
	#project_sheet .projects-navigation {
		width: 100%;
		padding-bottom: 40px;
		bottom: 0;
		margin: 0;
		z-index: 9999;
	}
	#project_sheet {
		height: 100%;
	}
	#project_sheet #project_content > div > div:last-child {
		padding-bottom: 160px;
		padding-bottom: 0;
	}
	#project_sheet .mobile-slider {
		display: block;
		margin-bottom: 24px;
	}
	#project_sheet #project_content {
		padding-right: 40px;
		padding-left: 40px;
	}
	#project_sheet .top-options {
		margin-bottom: 46px;
	}
	#project_sheet #project_content .swiper {
		height: initial;
	}
	#project_sheet #project_content .swiper-slide {
		width: 100%;
		height: fit-content;
	}
	#big_slider_wrapper .swiper-button-next {
		right: 10px;
	}
	#big_slider_wrapper .swiper-button-prev {
		left: 10px;
	}
	#project_sheet .project-swiper-2 {
		min-height: initial;
	}
	#project_sheet #project_content > div {
		padding-right: 0;
	}
}
@media (max-width: 768px) {
	#projects_top {
		justify-content: space-between;
	}
	#projects_top p {
		font-size: 18px;
	}
	#projects_top .col-12 {
		width: fit-content;
	}
}
@media (max-width: 480px) {
	#projects_top {
		flex-direction: column-reverse;
	}
	#projects_top p {
		font-size: 18px;
		margin-top: 46px;
	}
	#projects_top button {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}
	#projects_top .col-12 {
		width: 100%;
	}
	#portfolio_filters .close {
		top: 24px;
	}
	#portfolio_filters #filters_wrapper {
		padding: 62px 5vw 50px;
	}
	#project_sheet #project_content {
		margin: 0 20px 40px 20px;
	}
	#project_sheet #project_content > div {
		padding-right: 30px;
	}
	#project_sheet #project_content {
		padding: 40px 0 70px;
	}
}

