/**
 * =================================================================== 
 *
 *  Kards v1.0 Main Stylesheet
 *  url: styleshout.com
 *  03-01-2016
 *  ------------------------------------------------------------------
 *  TOC:
 *  01. webfonts and iconfonts
 *  02. base style overrides
 *  03. typography & general theme styles
 *  04. preloader
 *  05. forms
 *  06. buttons 
 *  07. other components
 *  08. common styles
 *  09. header styles
 *  10. intro
 *  11. about
 *  12. resume
 *  13. portfolio
 *  14. call-to-action section
 *  15. services
 *  16. stats
 *  17. contact
 *  18. footer
 *
 * =================================================================== 
 */


/** 
 * ===================================================================
 * 01. webfonts and iconfonts - (_document-setup.scss)
 *
 * ------------------------------------------------------------------- 
 */
@import url("fonts.css");
@import url("font-awesome/css/font-awesome.min.css");
@import url("micons/micons.css");


/** 
 * ===================================================================
 * 02. base style overrides - (_document-setup.scss)
 *
 * ------------------------------------------------------------------- 
 */
html {
	font-size: 10px;
}

@media only screen and (max-width:1024px) {
	html {
		font-size: 9.411764705882353px;
	}
}
@media only screen and (max-width:768px) {
	html {
		font-size: 10px;
	}
}
@media only screen and (max-width:400px) {
	html {
		font-size: 9.411764705882353px;
	}
}

html, body {
	height: 100%;
}
body {
	background: #151515;
	font-family: "poppins-regular", sans-serif;
	font-size: 1.7rem;
	line-height: 3rem;
	color: #6e6e6e;
}

/**
 * links - (_document-setup.scss)
 * -------------------------------------------------------------------
 */
a, a:visited {
	color: #000000;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:hover, a:focus, a:active {
	color: #FF0000;
	outline: 0;
}

/** 
 * ===================================================================
 * 03. typography & general theme styles - (_document-setup.scss)
 *
 * ------------------------------------------------------------------- 
 */
h1, h3, h4, h5, h6, .h01, .h03, .h04, .h05, .h06 {
	font-family: "poppins-semibold", sans-serif;
	color: #313131;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin-bottom: 2.1rem;
}
h2, .h02 {
	font-family: "poppins-semibold", sans-serif;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin-bottom: 2.1rem;
	color: #FF0000;
	text-transform: uppercase;
}
h3, .h03, h4, .h04 {
	margin-bottom: 1.8rem;
}
h5, .h05, h6, .h06 {
	font-family: "poppins-bold";
	margin-bottom: 1.2rem;
}
h1, .h01 {
	font-size: 3.1rem;
	line-height: 1.355;
	letter-spacing: -.1rem;
}
@media only screen and (max-width:600px) {
	h1, .h01 {
		font-size: 2.6rem;
		letter-spacing: -.07rem;
	}
}
h2, .h02 {
	font-size: 2.4rem;
	line-height: 1.25;
}
h3, .h03 {
	font-size: 2rem;
	line-height: 1.5;
}
h4, .h04 {
	font-size: 1.7rem;
	line-height: 1.765;
}
h5, .h05 {
	font-size: 1.4rem;
	line-height: 1.714;
	text-transform: uppercase;
	letter-spacing: .15rem;
}
h6, .h06 {
	font-size: 1.3rem;
	line-height: 1.846;
	text-transform: uppercase;
	letter-spacing: .15rem;
}
p img {
	margin: 0;
}
p.lead {
	font-family: "lora-regular", serif;
	font-size: 2rem;
	line-height: 1.8;
	color: #888888;
}
@media only screen and (max-width:768px) {
	p.lead {
		font-size: 1.7rem;
	}
}
em, i, strong, b {
	font-size: 1.7rem;
	line-height: 3rem;
	font-style: normal;
	font-weight: normal;
}
em, i {
	font-family: "lora-italic", serif;
}
strong, b {
	font-family: "lora-bold", serif;
}
small {
	font-size: 1.2rem;
	line-height: inherit;
}
hr {
	border: solid #d2d2d2;
	border-width: 1px 0 0;
	clear: both;
	margin: 2.4rem 0 1.5rem;
	height: 0;
}

/**
 * Lists - (_document-setup.scss)  
 * -------------------------------------------------------------------
 */
ol {
	list-style: decimal;
}
ul {
	list-style: none;
}
li {
	display: list-item;
}
ol, ul {
	margin-left: 1.7rem;
}
ul li {
	padding-left: .4rem;
}
ul ul, ul ol, ol ol, ol ul {
	margin: .6rem 0 .6rem 1.7rem;
}
ul.disc li {
	display: list-item;
	list-style: none;
	padding: 0 0 0 .8rem;
	position: relative;
}
ul.disc li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #FF0000;
	position: absolute;
	left: -17px;
	top: 11px;
	vertical-align: middle;
}
dt {
	margin: 0;
	color: #FF0000;
}
dd {
	margin: 0 0 0 2rem;
}

/**
 * Spacing - (_document-setup.scss)  
 * -------------------------------------------------------------------
 */
button, .button {
	margin-bottom: 1.2;
}
fieldset {
	margin-bottom: 1.5rem;
}
input,
textarea,
select,
pre,
blockquote,
figure,
table,
/*p,*/
ul,
ol,
dl,
form,
.fluid-video-wrapper,
.ss-custom-select {
	margin-bottom: 3rem;
}

/**
 * floated image - (_document-setup.scss)  
 * -------------------------------------------------------------------
 */
img.pull-right {
	margin: .9rem 0 0 2.4rem;
}
img.pull-left {
	margin: .9rem 2.4rem 0 0;
}

/**
 * block grid paddings - (_document-setup.scss) 
 * -------------------------------------------------------------------
 */
.bgrid {
	padding: 0 20px;
}
@media only screen and (max-width:1024px) {
	.bgrid {
		padding: 0 18px;
	}
}
@media only screen and (max-width:768px) {
	.bgrid {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	.bgrid {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.bgrid {
		padding: 0;
	}
}

/**
 * pace.js styles - minimal  - (_document-setup.scss)
 * -------------------------------------------------------------------
 */
.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.pace-inactive {
	display: none;
}
.pace .pace-progress {
	background: #FF0000;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 100%;
	width: 100%;
	height: 6px;
}

/** 
 * ===================================================================
 * 05. forms - (_forms.scss)
 *
 * ------------------------------------------------------------------- 
 */
fieldset {
	border: none;
}
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	display: block;
	height: 6rem;
	padding: 1.5rem 0;
	border: 0;
	outline: none;
	vertical-align: middle;
	color: #313131;
	font-family: "poppins-regular", sans-serif;
	font-size: 1.5rem;
	line-height: 3rem;
	max-width: 100%;
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.ss-custom-select {
	position: relative;
	padding: 0;
}
.ss-custom-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	margin: 0;
	line-height: 3rem;
	vertical-align: middle;
}
.ss-custom-select select option {
	padding-left: 2rem;
	padding-right: 2rem;
}
.ss-custom-select select::-ms-expand {
	display: none;
}
.ss-custom-select::after {
	content: '\f0d7';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	right: 1.5rem;
	margin-top: -10px;
	bottom: auto;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 18px;
	text-align: center;
	pointer-events: none;
	color: #252525;
}

/* IE9 and below */
.oldie .ss-custom-select::after {
	display: none;
}
textarea {
	min-height: 25rem;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	color: #cc005f;
	border-bottom: 1px solid #FF0000;
}
label, legend {
	font-family: "poppins-bold", sans-serif;
	font-size: 1.4rem;
	margin-bottom: .6rem;
	color: #3b3b3b;
	display: block;
}
input[type="checkbox"], input[type="radio"] {
	display: inline;
}
label > .label-text {
	display: inline-block;
	margin-left: 1rem;
	font-family: "poppins-regular", sans-serif;
	line-height: inherit;
}
label > input[type="checkbox"], label > input[type="radio"] {
	margin: 0;
	position: relative;
	top: .15rem;
}

/**
 * Style Placeholder Text  
 * -
 */
::-webkit-input-placeholder {
	color: #a1a1a1;
}
:-moz-placeholder {
	color: #a1a1a1;  /* Firefox 18- */
}
::-moz-placeholder {
	color: #a1a1a1;  /* Firefox 19+ */
}
:-ms-input-placeholder {
	color: #a1a1a1;
}
.placeholder {
	color: #a1a1a1 !important;
}

/** 
 * ===================================================================
 * 06. buttons - (_button-essentials.scss)
 *
 * ------------------------------------------------------------------- 
 */
.button,
a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: "poppins-bold", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .3rem;
	height: 2.8rem;
	line-height: 2.8rem;
	padding: 0 3rem;
	margin: 0 .3rem 1.2rem 0;
	background: #d8d8d8;
	color: #313131;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: none;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.button:hover,
a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: #bebebe;
	color: #000000;
	outline: 0;
}
.button.button-primary,
a.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	background: #313131;
	color: #FFFFFF;
}
.button.button-primary:hover,
a.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	background: #1f1f1f;
}
button.full-width, .button.full-width {
	width: 100%;
	margin-right: 0;
}
button.medium, .button.medium {
	height: 5.7rem !important;
	line-height: 5.7rem !important;
	padding: 0 1.8rem !important;
}
button.large, .button.large {
	height: 6rem !important;
	line-height: 6rem !important;
	padding: 0rem 3rem !important;
}
button.stroke, .button.stroke {
	background: transparent !important;
	border: 3px solid #313131;
	line-height: 4.8rem;
}
button.stroke.medium, .button.stroke.medium {
	line-height: 5.1rem !important;
}
button.stroke.large, .button.stroke.large {
	line-height: 5.4rem !important;
}
button.stroke:hover, .button.stroke:hover {
	border: 3px solid #FF0000;
	color: #FF0000;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}


/** 
 * ===================================================================
 * 07. other components - (_others.scss)
 *
 * ------------------------------------------------------------------- 
 */

/**
 * alert box - (_alert-box.scss)
 * -------------------------------------------------------------------
 */
.alert-box {
	padding: 2.1rem 4rem 2.1rem 3rem;
	position: relative;
	margin-bottom: 3rem;
	border-radius: 3px;
	font-family: "poppins-regular", sans-serif;
	font-size: 1.5rem;
}
.alert-box .close {
	position: absolute;
	right: 1.8rem;
	top: 1.8rem;
	cursor: pointer;
}
.ss-error {
	background-color: #ffd1d2;
	color: #e65153;
}
.ss-success {
	background-color: #c8e675;
	color: #758c36;
}
.ss-info {
	background-color: #d7ecfb;
	color: #4a95cc;
}
.ss-notice {
	background-color: #fff099;
	color: #bba31b;
}

/**
 * additional typo styles - (_additional-typo.scss)
 * -------------------------------------------------------------------
 */

/**
 * drop cap 
 */
.drop-cap:first-letter {
	float: left;
	margin: 0;
	padding: 1.5rem .6rem 0 0;
	font-size: 8.4rem;
	font-family: "poppins-bold", sans-serif;
	line-height: 6rem;
	text-indent: 0;
	background: transparent;
	color: #313131;
}

/**
 * line definition style
 */
.lining dt, .lining dd {
	display: inline;
	margin: 0;
}
.lining dt + dt:before, .lining dd + dt:before {
	content: "\A";
	white-space: pre;
}
.lining dd + dd:before {
	content: ", ";
}
.lining dd + dd:before {
	content: ", ";
}
.lining dd:before {
	content: ": ";
	margin-left: -0.2em;
}

/**
 * dictionary definition style
 */
.dictionary-style dt {
	display: inline;
	counter-reset: definitions;
}
.dictionary-style dt + dt:before {
	content: ", ";
	margin-left: -0.2em;
}
.dictionary-style dd {
	display: block;
	counter-increment: definitions;
}
.dictionary-style dd:before {
	content: counter(definitions, decimal) ". ";
}

/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *		<li><a href="#">[value]<em>[name]</em></a></li>
 *	</ul>
 *
 * Extend this object into your markup.
 *
 * ---------------------------------------------------------------------
 */
.stats-tabs {
	padding: 0;
	margin: 3rem 0;
}
.stats-tabs li {
	display: inline-block;
	margin: 0 1.5rem 3rem 0;
	padding: 0 1.5rem 0 0;
	border-right: 1px solid #ccc;
}
.stats-tabs li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}
.stats-tabs li a {
	display: inline-block;
	font-size: 2.5rem;
	font-family: "poppins-bold", sans-serif;
	border: none;
	color: #252525;
}
.stats-tabs li a:hover {
	color: #FF0000;
}
.stats-tabs li a em {
	display: block;
	margin: .6rem 0 0 0;
	font-size: 1.4rem;
	font-family: "poppins-regular", sans-serif;
	color: #888888;
}

/** 
 * ===================================================================
 * 08. common styles (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
.grey-section {
	background: #ebebeb;
}
.grey-section p.lead {
	color: #7d7d7d;
}
.section-intro {
	max-width: 950px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 0;
	position: relative;
}

/**
 * responsive:
 * common styles
 * ------------------------------------------------------------------- 
 */
@media only screen and (max-width:768px) {
	.section-intro {
		max-width: 650px;
	}
	.section-intro h1 {
		font-size: 3rem;
	}
}
@media only screen and (max-width:600px) {
	.section-intro h1 {
		font-size: 2.6rem;
	}
	.section-intro h5 {
		font-size: 1.5rem;
		letter-spacing: .3rem;
	}
}
@media only screen and (max-width:400px) {
	.section-intro h1 {
		font-size: 2.4rem;
	}
}


/** 
 * ===================================================================
 * 09. header styles - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
header {
	position: fixed;
	width: 100%;
	min-height: 50px;
	z-index: 600;
}
header .row {
	position: relative;
	min-height: 50px;
}
header .top-bar {
	display: block;
	background: #ff0000;
	min-width: 100%;
	min-height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	border-bottom: 8px solid #c5c5c5fc;
}
header .logo {
	float: left;
	margin-left: 40px;
	margin-right: 50px;
	margin-top: 4px;
	position: relative;
	width: 250px;
}
header .logo a {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}

/* navigation panel */
#main-nav-wrap {
	/*display: block;*/
	width: 70%;
	font-family: "poppins-medium", sans-serif;
	font-size: 1.5rem;
	position: absolute;
	/*top: 100%;*/
	left: 30%;
}

/* dropdown nav */
.main-navigation {
	/*background: #000000;
	padding: 24px 30px 42px;*/
	margin: 0;
	width: 100%;
	height: auto;
	position: relative;
	top: 6px;
	/*clear: both;
	display: none;*/
}
header .idiomas {
	float: right;
	position: relative;
	top: -30px;
	right: 30px;
	/*display: -webkit-inline-box;*/
}
header .idiomas li{
	display: inline-block;

}

.main-navigation > li {
	display: inline-block;
	height: auto;
	text-align: left;
	padding: 0 3%;
	text-transform: uppercase;
}
.main-navigation li a {
	display: block;
	color: #000000;
	width: auto;
	padding: 15px 0;
	line-height: 16px;
	border: none;
}
.main-navigation li a:hover,
.idiomas li a:hover {
	color: #ffffff;
	padding-left: 1rem;
}
.main-navigation li.current > a, 
.idiomas li.current > a {
	background: none;
	color: #ffffff;
}

/**
 * responsive:
 * header styles
 * --------------------------------------------------------------- 
 */
@media only screen and (max-width:1024px) {
	header .top-bar {
		
	}
}
@media only screen and (max-width:768px) {
	#portfolio .row {
	    padding-left: 0;
	    padding-right: 0;
	}
	header .logo {
		width: 30%;
		margin-left: 10px;
    	margin-top: 6px;
	}
	#main-nav-wrap {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width:600px) {
	header .logo {
		width: 40%;
		margin-top: 8px;
	}
	#main-nav-wrap {
		left: 45%;
		/*font-size: 1.4rem;*/
		
	}
	header .idiomas {
		font-size: 1.2rem;
		right: 7.5rem;
		top: -3px;
		background: rgba(0, 0, 0, 0.4);
		padding: 0 2rem 0 1rem;
		max-height: 25px;
		/*width: 100%;*/
		
	}
	/*.main-navigation {
		height: 25px;
		top: 0;
		background: #c5c5c5fc;
		padding: 0;
	}*/
	.main-navigation > li {
		padding-left: 1rem;
		padding-right: 0;
		padding-top: 0;
	}
	.main-navigation li a:hover,
	.idiomas li a:hover {
		padding-left: 0;
	}
}
@media only screen and (max-width:420px) {
	header .top-bar {
		border-bottom: 8px solid #ff0000;
	}
	header .logo {
		margin-left: 0;
		margin-right: 0;
		margin-top: 6px;
		width: 100%;
		text-align: center;
	}
	#main-nav-wrap {
		width: 100%;
		/*font-size: 1.4rem;*/
		top: 100%;
		left: 0;
	}
	.main-navigation {
		background: #c5c5c5fc;
		padding: 0;
	}
	header .idiomas {
		width: 100%;
		/*right: 2%;*/
		font-size: 1.2rem;
		top: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.4);
		padding-right: 0;
		padding-left: 77%;
	}
	.main-navigation > li {
		padding: 0 2%;
	}
	#portfolio .row, #contact .row, #resume .row, #services .row, #about .row{
	    padding-top: 90px;
	}
}


/** 
 * ===================================================================
 * 11. about - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#about {
	background: #ebebeb;
	padding-top: 4rem;
	padding-bottom: 2rem;
}
#about .section-intro {
	margin-bottom: 1rem;
}
#about #folio-guri{
	margin: 0 3rem;
}

#about .folio-item {
	background: #ff0000;
	padding: 0;
	position: relative;
	overflow: hidden;
}

#about .folio-item img {
	vertical-align: middle;
	width: 100%;
}

#about .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#about .folio-item-table {
	display: table;
	width: 100%;
	height: 100%;
}
#about .folio-item-cell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: relative;
	top: 5rem;
	/*left: -100%;*/
}

#about .folio-title {
	color: rgba(210, 210, 210);
	font-size: 1.9rem;
	padding: 0 3rem;
	margin-bottom: 0;
}
#about .folio-types {
	margin:  .5rem;
	height: 40px;
	text-transform: uppercase;
	font-family: "poppins-regular", sans-serif;
	font-size: 1.2rem;
	letter-spacing: .1rem;
	line-height: 2rem;
	color: rgba(255, 255, 255);
	text-align: center;
}
#about .folio-item:hover .overlay {
	background: transparent;
}
#about .folio-item:hover .folio-item-cell {
	left: -100%;
}
/*#about .folio-item:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/**
 * responsive:
 * about
 * ------------------------------------------------------------------- 
 */
@media only screen and (max-width:1024px) {
	.intro-info {
		margin-right: 0;
		margin-left: 0;
	}
}
@media only screen and (max-width:768px) {
	#about .folio-title {
		font-size: 1rem; 
    	padding: 0; 
	}
	#about .section-intro h3 {
		font-size: 1rem;
	}
	#about .folio-item-cell{
		top: 0;
	}
	#about .folio-types{
		font-size: 1rem; 
	}
	#about #folio-guri {
    margin: 0;
}
}
@media only screen and (max-width:600px) {

}
@media only screen and (max-width:400px){
	#about #folio-guri{
	margin: 0 5rem;
	}
}

/** 
 * ===================================================================
 * 13. portfolio - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#portfolio {
	background: #FFFFFF;
	padding-top: 5rem;
	padding-bottom: 0;
	padding-left: 5rem;
	padding-right: 5rem;
	vertical-align: middle;
	text-align: center;
}
.block-1-3 .bgridizq {
	width: 35%;
}
.block-1-3 .bgridcen {
	width: 40%;
}
.block-1-3 .bgridright {
	width: 25%;
}
#portfolio .folio-item {
	padding: 0;
	position: relative;
	overflow: hidden;
}
#portfolio .folio-item img {
	vertical-align: middle;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#portfolio .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#portfolio .folio-item-table {
	display: table;
	width: 100%;
	height: 100%;
}
#portfolio .folio-item-cell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: relative;
	left: -100%;
}
#portfolio .item-especial-top {
	position: absolute;
    top: 5%;
    padding-left: 17%;
}
#portfolio .item-especial-down {
	position: absolute;
    bottom: 5%;
    padding-left: 11%;
}


#portfolio .folio-title {
	color: rgba(210, 210, 210);
	font-size: 1.9rem;
	padding: 0 3rem;
	margin-bottom: 0;
}
#portfolio .folio-types {
	margin: 0;
	padding: .5rem;
	text-transform: uppercase;
	font-family: "poppins-regular", sans-serif;
	font-size: 1.2rem;
	letter-spacing: .1rem;
	background-color: rgba(0, 0, 0, 0.4);
	color: rgba(255, 255, 255);
}
#portfolio .folio-item:hover .overlay {
	background: rgba(0, 0, 0, 0.4);
}
#portfolio .folio-item:hover .folio-item-cell {
	left: 0;
}
#portfolio .folio-item:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/**
 * responsive:
 * portfolio
 * ------------------------------------------------------------------- 
 */
@media only screen and (max-width:1024px) {
	#portfolio .folio-title {
		font-size: 1.9rem;
	}
}
@media only screen and (max-width:768px) {
	#portfolio {padding-left: 0;
				padding-right: 0;
				}
	#portfolio .folio-title {
		font-size: 1rem;
	}
	#portfolio .item-especial-top {
	    padding-left: 0;
	}
	#portfolio .item-especial-down {
	    padding-left: 0;
	}
}
@media only screen and (max-width:400px) {
	
	#portfolio .folio-types {
		display: none;
	}
}

/**
 * Popup Modal - (_layout.scss)
 * ------------------------------------------------------------------
 */

 /* modal apertura*/
.modal {
    width: 100%;
    height: 100vh;
    /*background: rgba(255,255,255,0.8);*/
    background-color: rgba(21, 21, 21, 0.80);

    
    position: absolute;
    top: 0;
    left: 0;
    
    display: flex;
    
    animation: modal 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
    z-index: 40;
}

.contenido {
    margin: auto;
    width: 70%;
    height: 70%;
    background: #c5c5c5fc;
    text-align: center;
}

.contenido h2 {
    font-size: 4rem;
    margin-top: 3%;
    color: #fff;
	}

#cerrar {
    display: none;
}

#cerrar + label {
	position: fixed;
	font-family: "poppins-bold", sans-serif;
    font-size: 1.2rem;
    line-height: 4rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    text-align: center;
    float: left;
    width: 50%;

    
   
    z-index: 50;
    background: #ff0000;
    height: 40px;
    /*width: 40px;*/
    
    right: 25%;
    top: 77%;
    animation: modal 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
    display: none;
}

@keyframes modal {
    100% {
        visibility: visible;
        opacity: 1;
    }
}
@media only screen and (max-width:768px) {
	.contenido h2 {
    font-size: 3rem;
	}
}
@media only screen and (max-width:600px) {
.contenido h2 {
    font-size: 2.5rem;
	}
	.contenido h3 {
    font-size: 2rem;
	}
	.contenido img {
    display: none;
	}
	
}
@media only screen and (max-width:400px){
	.contenido {
    margin-top: 40%;
     width: 80%;
    height: 50%;
	}
	.contenido h2 {
    font-size: 2rem;
	}
	.contenido h3 {
    font-size: 1.5rem;
	}
	#cerrar + label{
		top: 60%;
	}
}
/*fin modal apertura*/

.popup-modal {
	max-width: 750px;
	background: #FFFFFF;
	position: relative;
	margin: 0 auto;
}
.popup-modal .media {
	position: relative;
	max-width: 30%;
	float: left;
}
.popup-modal img {
	vertical-align: bottom;
}
.fotoextra{
	text-align: center;
    margin-top: 2%;
}
.popup-modal .description-box {
	padding: 1rem 1.6rem;
	margin-left: 22rem;
}
.popup-modal .media h4 {
	font-family: "poppins-bold", sans-serif;
	font-size: 1.5rem;
	line-height: 2.4rem;
	text-align: center;
	margin: 1rem;
}
.popup-modal .description-box p {
	font-family: "poppins-regular", sans-serif;
	font-size: 1.4rem;
	line-height: 2rem;
	margin-bottom: 0px;
	margin-top: 8px;
}
.popup-modal .categories {
	font-family: "poppins-bold", sans-serif;
	font-size: 1.4rem;
	line-height: 1.8rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	display: block;
	text-align: left;
	color: #ff0000;
}
.popup-modal .link-box {
	width: 100%;
	overflow: hidden;
	background: #ff0000;
}
.popup-modal .link-box a {
	font-family: "poppins-bold", sans-serif;
	font-size: 1.2rem;
	line-height: 4rem;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 3px;
	cursor: pointer;
	display: block;
	text-align: center;
	float: left;
	width: 100%;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.popup-modal .link-box a:first-child {
	border-right: 1px solid rgba(200, 200, 200, 0.1);
}
.popup-modal .link-box a:hover {
	background: #ff0000;
	border: none;
}
@media only screen and (max-width:600px) {
	.popup-modal {
		width: auto;
		margin: 0 20px;
	}
	.popup-modal .description-box {
	    padding: 1rem 1.6rem;
	    margin-left: 16rem;
	}
}
@media only screen and (max-width:400px) {
	.popup-modal .media {
		max-width: 100%;
		float: none;
		text-align: center;
	}
	.popup-modal img {
		width: 70%;
	}
	.popup-modal .description-box {
		padding: 0;
		margin-left: 1rem;
	}
	.popup-modal .description-box p {
		font-size: 1.3rem;
		/*line-height: 1.7rem;
		margin-top: 5px;*/
	}
	.popup-modal .categories {
		text-align: center;
	}
}


/** 
 * ===================================================================
 * 15. services - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#services {
	background: #dbdbdb;
	padding-top: 2rem;
	padding-bottom: 2rem;
	position: relative;
}

#services .section-intro {
	margin-bottom: 1.8rem;
}

#services h4 {
	color: rgba(0, 0, 0, 0.9);
	margin-bottom: 0;
}
#services .juridico{
	padding: 40px 0px 0px 0px;
}

.services-content {
	max-width: 800px;
	text-align: center;
}
.service {
	padding-top: 4.5rem;
	padding-bottom: 1rem;
}

/** 
 * ===================================================================
 * 17. contact - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#contact {
	background: #ffffff;
	padding-top: 12rem;
	padding-bottom: 0rem;
}
/*#contact .section-intro h1 {
	color: #c5c5c5fc;
}
#contact .section-intro h2 {
	color: #FF0000;
	text-transform: uppercase;
}
#contact .section-intro p {
	color: rgba(255, 255, 255, 0.7);
}*/

/* contact form */
.contact-form {
	max-width: 1024px;
}

.contact-form ::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.5);
}
.contact-form :-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);  /* Firefox 18- */
}
.contact-form ::-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);  /* Firefox 19+ */
}
.contact-form :-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.5);
}
.contact-form .placeholder {
	color: rgba(0, 0, 0, 0.5) !important;
}

#contact form {
	margin-top: 0;
	margin-bottom: 3rem;
}
#contact form .form-field {
	position: relative;
}
#contact form .form-field:before, #contact form .form-field:after {
	content: "";
	display: table;
}
#contact form .form-field:after {
	clear: both;
}
#contact form .form-field label {
	font-family: "poppins-bold", sans-serif;
	font-size: 1.1rem;
	line-height: 2.4rem;
	position: absolute;
	bottom: -1.2rem;
	right: .6rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	padding: 0 2rem;
	margin: 0;
	color: #999999;
	background: #ffffff;
}
#contact form .form-field label::after {
	position: absolute;
	left: -5px;
	top: 50%;
	margin-top: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #FF0000;
	content: "";
}
#contact input[type="text"],
#contact input[type="password"],
#contact input[type="email"],
#contact textarea {
	width: 100%;
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 0;
	border: none;
	border-bottom: 1px solid #ff0000;
}
#contact input[type="text"],
#contact input[type="password"],
#contact input[type="email"] {
	height: 5.5rem;
	padding: 1.8rem 2rem;
}
#contact input[type="text"]:focus,
#contact input[type="password"]:focus,
#contact input[type="email"]:focus {
	border-color: #FF0000;
	color: #313131;
}
#contact textarea {
	min-height: 15rem;
	padding: 1.8rem 2rem;
}
#contact textarea:focus {
	border-color: #FF0000;
	color: #313131;
}
#contact button.submitform {
	font-size: 1.5rem;
	display: block;
	letter-spacing: .2rem;
	height: 6.6rem;
	line-height: 6.6rem;
	padding: 0 3rem;
	margin-top: 4.8rem;
	width: 100%;
	background: #FF0000;
	color: #FFFFFF;
}
#contact button.submitform:hover, #contact button.submitform:focus {
	background: #b50505;
}
#message-warning, #message-success {
	display: none;
	background: #c5c5c5fc;
	border-radius: 3px;
	padding: 3rem;
	margin-bottom: 3.6rem;
	width: 100%;
}
#message-warning {
	color: #fa0003;
}
#message-success {
	color: #ffffff;
}
#message-warning i, #message-success i {
	margin-right: 10px;
}

/* form loader */
#submit-loader {
	display: none;
	position: relative;
	left: 0;
	top: 1.8rem;
	width: 100%;
	text-align: center;
}
#submit-loader .text-loader {
	display: none;
	font-family: "poppins-bold", sans-serif;
	color: #FF0000;
	letter-spacing: .3rem;
	text-transform: uppercase;
}
.oldie #submit-loader .s-loader {
	display: none;
}
.oldie #submit-loader .text-loader {
	display: block;
}
.contact-info {
	margin: 4.8rem auto 0;
	font-family: "poppins-regular", sans-serif;
	font-size: 1.5rem;
	text-align: center;
}
.contact-info .collapse {
	padding: 0;
}
/*.contact-info .icon {
	margin-bottom: 2.1rem;
}
.contact-info .icon i {
	font-size: 4.2rem;
	color: #FFFFFF;
}
.contact-info h5 {
	color: #FF0000;
}*/
#googleMap iframe {
    width: 100%;
    height: 430px;
}

/** 
 * ===================================================================
 * 18. footer - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
footer {
	padding-bottom: 3rem;
	font-size: 1.4rem;
	font-family: "poppins-regular", sans-serif;
	border-top: 10px solid #c5c5c5fc;
}
footer a, footer a:visited {
	color: #FFFFFF;
}
footer a:hover, footer a:focus {
	color: #FF0000;
}
footer .row {
	/*max-width: 900px;*/
}
footer .footer-social {
	display: inline-block;
	font-size: 2.1rem;
	margin: 0;
	padding: 0;
	position: relative;
	top: -.3rem;
}
footer .footer-social li {
	display: inline-block;
	margin: 0 12px;
	padding: 0;
}
footer .footer-social li a {
	color: #FFFFFF;
}
footer .copyright span {
	display: inline-block;
}
footer .copyright span::after {
	content: "|";
	display: inline-block;
	padding: 0 1rem 0 1.2rem;
	color: rgba(255, 255, 255, 0.1);
}
footer .copyright span:last-child::after {
	display: none;
}

/**
 * responsive:
 * footer
 * -------------------------------------------------------------------
 */
@media only screen and (max-width:768px) {
	footer {
		text-align: center;
	}
	
	footer .copyright span {
		display: block;
	}
	footer .copyright span::after {
		display: none;
	}
}
/*-----------------------cookies------------------*/

#cookie1 a{
  padding-left:5px;
  text-decoration:none;
  color:#c5c5c5fc;
}
#cookie1 button{
  line-height: .4rem;
  background-color:#c5c5c5fc;
  text-decoration:none;
}
.cookiesms{ 
  position:fixed;
  /*left:0px;*/
  right:0px;
  bottom:0px;
  padding:1.5rem;
  width:35%;
  text-align:center;
  font-family:verdana;
  font-size:12px;
  min-height:40px;
  background-color: rgba(255, 0, 0, 0.9);
  color:#fff;
  z-index:999999999;
 }
 
.cookiesms:hover{
bottom:0px;
}

@media only screen and (max-width:768px) {
	.cookiesms {
		width:100%;
	}
	
}
 
/* Fin del CSS para cookies */