/*  
Theme Name: Ele Studio
Author: Paola Galicia
*/


			/*  CSS RESET  */
				  /**/
				  /**/
				  /**/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

a {
	text-decoration:none;
	color: #4c5f5d;
}

a:hover,
a:focus,
a:active, 
input:hover,
input:focus,
input:active{
	outline:none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	position: relative;
	display: block;
	height: 100%;
}

body { line-height: 1; }

ol, ul { list-style: none; }

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

::selection {
	background-color: #8c99af;
	color: #e4e0da;
}

::-moz-selection {
	background-color: #8c99af;
	color: #e4e0da;
}

										/* Tipografia */

@font-face {
	font-family: 'SweetSansProRegular';
	src: url('assets/fonts/Sweet-Sans/SweetSansProRegular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'SweetSansProBold';
	src: url('assets/fonts/Sweet-Sans/SweetSansProBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'SweetSansProMedium';
	src: url('assets/fonts/Sweet-Sans/SweetSansProMedium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'SweetSansProItalic';
	src: url('assets/fonts/Sweet-Sans/SweetSansProItalic.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}




										/* Estructura */
										
html, body {
	position: relative;
	width: 100%;
	-webkit-font-smoothing: antialiased;
}

html {
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color: #f3f5f6;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	height: 100%;
}

body {
	min-height: 100%;
	color: #4c5f5d;
	font-family: 'SweetSansProRegular', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 15px;
	background-color: #e4e0da;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

.margen {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	max-width: 100%;
	display: block;
	margin: 0 auto;
	padding: 0 15px;
}

b, strong{ font-family: 'SweetSansProRegular', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; }
i, em { font-family: 'SweetSansProItalic', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; }


											/* NAVEGACIÓN-TOGGLE */
									
#navbar-toggle {
    display: none;
    z-index: 300;
    width: 20px;
    height: 16px;
    padding: 0px;
    border: none;
    background: none;
    transition: all 0.035s linear;
    clear: both;
    cursor: pointer;
    float: right;
    position: absolute;
    right: 50px;
    top: 15px;
    outline: none;
}

#navbar-toggle .icon-bar,
#navbar-toggle-submenu .icon-bar {
	display: block;
    width: 20px;
    height: 2px;
    margin-right: auto;
    margin-left: auto;
    background-color: #4c5f5d;
    border-radius: 1px;
    transition: all 0.1s linear;
}

#navbar-toggle .icon-bar + .icon-bar,
#navbar-toggle-submenu .icon-bar + .icon-bar {
  	margin-top: 6px;
}

.hamburger-bun,
.hamburger-patty {
	position: relative;
}

.navbar-toggle-active .bun-top,
.navbar-toggle-active .hamburger-patty {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navbar-toggle-active .bun-top {
	top: 8px;
}

.navbar-toggle-active .hamburger-patty {
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
}

.navbar-toggle-active .bun-btm {
	bottom: 8px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.visuallyhidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	margin: -1px;
	clip: rect(0,0,0,0);
	overflow: hidden;
}

/* GENERALES */

.cont-flex {
	display: flex;
	width:  100%;
	position: relative;
}

.col-10 {
	display: inline-block;
	width:  10%;
	position: relative;
}

.col-20 {
	display: inline-block;
	width:  20%;
	position: relative;
}

.col-25 {
	display: inline-block;
	width:  25%;
	position: relative;
}

.col-30 {
	display: inline-block;
	width:  30%;
	position: relative;
}

.col-33 {
	display: inline-block;
	width:  34%;
	position: relative;
}

.col-40 {
	display: inline-block;
	width:  40%;
	position: relative;
}

.col-50 {
	display: inline-block;
	width:  50%;
	position: relative;
}

.col-60 {
	display: inline-block;
	width:  60%;
	position: relative;
}

.col-70 {
	display: inline-block;
	width:  70%;
	position: relative;
}

.col-80 {
	display: inline-block;
	width:  80%;
	position: relative;
}

.col-90 {
	display: inline-block;
	width:  90%;
	position: relative;
}

.col-100 {
	display: inline-block;
	width:  100%;
	position: relative;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width:  100%;
	height: 65px;
	padding: 10px 0px;
	z-index: 20;
	background-color: #e4e0da;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
}

a.logo-header {
    display: inline-block;
    width: 100px;
    position: absolute;
    left: 15px;
    top: 0;
	z-index: 1;
}

a.logo-header img {
    display: block;
    width: 100%;
    height: auto;
}

ul#menu-menu-principal {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    top: 14px;
    margin: 0 auto;
}

a.header-ig {
    position: absolute;
    top: 14px;
    right: 15px;
    width: 17px;
    height: 17px;
    background-image: url(assets/img/sprite-redes.png);
    background-size: 70px;
    background-position: 0px -115px;
}


ul#menu-menu-principal li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0px 22px;
	position: relative;
}

ul#menu-menu-principal li.current-menu-item:after {
    display: block;
    content: '';
    width: 32px;
    border-bottom: 2px solid #4c5f5d;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.contenedor-general {
    display: block;
    width: 100%;
    padding-top: 65px;
	min-height: 85vh;
}

footer {
    display: block;
    width: 100%;
    position: relative;
    background-color: #939d94;
    padding: 20px 0px;
	z-index: 10;
}

a.logo-footer {
    display: block;
    width: 35px;
}

a.logo-footer img {
    display: block;
    width: 100%;
}

.align-center { text-align: center; }
.align-right { text-align: right; }

a.footer-ig {
    position: absolute;
    top: 9px;
    right: 0px;
    width: 17px;
    height: 17px;
    background-image: url(assets/img/sprite-redes.png);
    background-size: 70px;
    background-position: 0px 0px;
}

a.footer-correo {
    color: #e4e0da;
    font-size: 12px;
    position: relative;
    top: 9px;
}