*
{
	outline: 0 !important;
}

body
{
	background-color: #333333;
	font-family: 'Sansation';
	color: #58595B;
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6
{
	font-family: 'Renogare Soft';
}
.text-blue
{
	color: #357AAD;
}
.text-green
{
	color: #67B46D;
}
.__no_padding
{
	padding: 0;
}
.icon-avila
{
	width: 125px;
	display: block;
	margin: 0 auto 25px;
}
.heading h1
{
	font-size: 4em;
	color: white;
	text-transform: uppercase;
	padding: 0 0 0;
	margin: 0 auto;
	text-align: center;
}
.heading p.intro
{
	font-size: 1.2em;
	color: white;
	padding: 0 0 0;
	margin: 0 auto;
	text-align: center;
}
section,
.section,
footer
{
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 50px 0;
}


#overlay
{
	background-color: rgba(0,0,0,.8);
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8000;
}

.lockScreen
{
	background-image: url(/images/loading.gif);
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(255,255,255,.85);
	background-size: 45px;
	width:100%;
	height:100%;
	position:fixed;
	z-index:9999999999;
	top:0;
	left:0;
	display: none;
}


.auth-views
{
	padding: 150px 0 180px;
}



/* hamburgers */
#btn-menu
{
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 10000;
	padding: 0px 7.5px;
	height: 50px;
	width: 50px;
	border: 0;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	/*background-color: #414042;*/
	background-color: white;
	margin: 0;
	overflow: visible;
	border-radius: 50%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#btn-menu.alt
{
	/*background-color: #414042;*/
	/*border: 1px solid #414042;*/
}
#btn-menu.is-active,

{
	background-color: #67B46D;
}
.hamburger-box {
	width: 35px;
	height: 24px;
	display: inline-block;
	position: relative;
	top: 2px;
	left: -1px;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 35px;
	height: 3px;
	background-color: #6D6E71;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger-inner::after {
	bottom: -10px;
}

#btn-menu .hamburger-inner {
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#btn-menu .hamburger-inner::before {
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
#btn-menu .hamburger-inner::after {
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#btn-menu.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
#btn-menu.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
#btn-menu.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}




/* side bar */
#sidebar
{
	width: 300px;
	min-height: 100%;
	background-color: rgba(255,255,255,.9);
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 9000;
	overflow: hidden;
	padding-top: 15vh;

	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.5);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.5);

	-moz-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);

	opacity: 0;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
#sidebar.active
{
	opacity: 1;
	-moz-transform: translateX(0%);
	-webkit-transform: translateX(0%);
	-o-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}
#sidebar .sidebar-logo
{
	width: 100%;
	max-width: 150px;
	display: block;
	margin: 0 auto 50px;
}
#sidebar .sidebar-logo img
{
	width: 100%;
}
#sidebar nav a
{
	width: 100%;
	background-color: transparent;
	text-decoration: none;
	display: block;
	margin: 0 auto;
	padding: 8px 5px;
	text-align: center;
	font-size: 1.3em;
	color: #6D6E71;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}


#sidebar nav a:hover,
#sidebar nav a:focus,
#sidebar nav a.active
{
	background: #67B46D;
	color: white;
	font-size: 1.5em;
	padding: 25px 5px;
	outline: 0;
	border: 0;
}









/* social-header */
#social-header
{
	position: absolute;
	top: 10px;
	right: 10px;
	display: table;
	padding: 0;
	margin: 0 0 0;
	z-index: 10000;
}
#social-header a
{

	color: white;
	text-decoration: none;
	margin-left: 5px;
	display: inline-table;
}

#social-header a img
{
	height: 50px;
}




/* slides */
#slides
{

	background: #357aad;
	background: -moz-linear-gradient(-45deg, #357aad 0%, #67b56d 100%);
	background: -webkit-linear-gradient(-45deg, #357aad 0%,#67b56d 100%);
	background: linear-gradient(135deg, #357aad 0%,#67b56d 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#357aad', endColorstr='#67b56d',GradientType=1 );
	min-height: 120vh;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: block;
	position: relative;
}
#slides #bs-slides
{
	height: 100vh;
	width: 100%;
	display: block;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
	clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);

	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
#slides #bs-slides.visible
{
	-webkit-clip-path: polygon(0 5%, 100% 20%, 100% 80%, 0 95%);
	clip-path: polygon(0 5%, 100% 20%, 100% 80%, 0 95%);
}
#slides #bs-slides #bss-overlay
{
	display: block;
	width: 100%;
	height: 100%;
	z-index: 100;
	position: relative;
	background-color: rgba(255,255,255,.3);
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}
#slides #bs-slides #bss-overlay.visible
{
	background-color: rgba(255,255,255,.35);
}
#slides-logo
{
	position: absolute;
	display: table;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto;
	top: calc(50vh - 25vh);
	text-align: center;
	z-index: 1000;
	opacity: 0;

	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);

	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
}
#intro-logo
{
	height: 50vh;
}
#slides-logo.visible
{
	opacity: 1;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}




/* scroll down */
a#scroll-down-motion {
	padding-top: 60px;
	text-align: center;
	display: block;
	position: relative;
	top: -60px;
	color: white;
	text-decoration: none !important;
}
a#scroll-down-motion span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 2px solid #fff;
	border-radius: 50px;
	box-sizing: border-box;
}
a#scroll-down-motion span::before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: scroll_down_motion 2s infinite;
	animation: scroll_down_motion 2s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes scroll_down_motion {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		-webkit-transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes scroll_down_motion {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}











/* products */
#products-intro
{
	background-color: white;
	padding: 150px 0 180px;
	-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
	clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
	position: relative;
	margin-top: -7%;
	margin-bottom: -8%;
	z-index: 100;
}
#products-intro .heading
{
	text-align: center;
}
#products-intro .heading h1
{
	line-height: .78em;
	margin-bottom: 25px;
	color: #67B46D;
}
#products-intro .heading h1 strong
{
	font-size: .66em;
	color: #58595B;
}
#products-intro .heading p
{
	color: #58595B;
}




/* salider intro */
#salider-intro
{
	background-color: #6D6E71;
	padding: 170px 0 100px;
}
#salider-intro .heading
{
	text-align: center;
}
#salider-intro .heading img
{
	max-width: 280px;
	width: 100%;
	margin: 0 auto 20px;
	display: block;
}
#salider-intro .heading p
{
	color: white;
	padding-top: 12px;
}









section.product
{
	min-height: 100vh;
	overflow: hidden;
	position: relative;
	padding-top: 30vh;
	padding-bottom: 30vh;
}
section.product .container
{
	position: relative;
}
section.product .product-img img
{
	width: 100%;
}

.product-img-fade:hover
{
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-o-filter: blur(8px);
	-ms-filter: blur(8px);
	filter: blur(8px);
}


section#salider-1
{
	background: #39b44a;
	background: -moz-linear-gradient(45deg, #39b44a 16%, #004938 92%);
	background: -webkit-linear-gradient(45deg, #39b44a 16%,#004938 92%);
	background: linear-gradient(45deg, #39b44a 16%,#004938 92%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#39b44a', endColorstr='#004938',GradientType=1 );
}
section#salider-2
{
	background: #004938;
	background: -moz-linear-gradient(45deg, #004938 16%, #006838 92%);
	background: -webkit-linear-gradient(45deg, #004938 16%,#006838 92%);
	background: linear-gradient(45deg, #004938 16%,#006838 92%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004938', endColorstr='#006838',GradientType=1 );

	-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
	clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
	position: relative;
	margin-top: -8%;
	margin-bottom: -8%;
	z-index: 100;
}
section#salider-3
{
	background: #004938;
	background: -moz-linear-gradient(45deg, #004938 27%, #00281d 86%);
	background: -webkit-linear-gradient(45deg, #004938 27%,#00281d 86%);
	background: linear-gradient(45deg, #004938 27%,#00281d 86%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004938', endColorstr='#00281d',GradientType=1 );
}
section#flebitop
{
	background: #19416A;
	background: -moz-linear-gradient(45deg, #19416A 16%, #00392C 92%);
	background: -webkit-linear-gradient(45deg, #19416A 16%,#00392C 92%);
	background: linear-gradient(45deg, #19416A 16%,#00392C 92%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#19416A', endColorstr='#00392C',GradientType=1 );
	-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
	clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
	position: relative;
	margin-top: -8%;
	margin-bottom: -8%;
	z-index: 100;
}
section#dermabella
{
	background: #0068e5;
	background: -moz-linear-gradient(-45deg, #0068e5 16%, #2d4798 92%);
	background: -webkit-linear-gradient(-45deg, #0068e5 16%,#2d4798 92%);
	background: linear-gradient(135deg, #0068e5 16%,#2d4798 92%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0068e5', endColorstr='#2d4798',GradientType=1 );
}


.product-pattern
{
	position: absolute;
	width: 110%;
	top: -20%;
	left: -5%;
	opacity: .15;
}
section#flebitop .product-pattern
{
	width: 180%;
	top: -20%;
	left: -40%;
}
section#dermabella .product-pattern
{
	width: 200%;
	top: -20%;
	left: -50%;
	opacity: .2;
}



.badge-cero-acne
{
	position: absolute;
	top: 0;
	right: 0;
	width: 135px;
}
.product-info
{
	display: table;
	margin: 0 auto;
}
.product-name
{
	font-size: 3.5em;
	color: white;
	margin: 20px auto 0;
	padding: 0;
	text-transform: uppercase;
}
.product-step
{
	display: inline-block;
	background-color: white;
	color: #004938;
	font-size: .28em;
	padding: 5px 18px 2px;
	margin: 0 0 0 10px;
	position: relative;
	top: -6px;
	display: none;
}
.product-step-bg
{
	color: rgba(255,255,255,.27);
	font-size: 10em;
	font-family: 'Renogare Soft';
	position: relative;
	left: -10px;
	line-height: 50px;
}
.product-step-bg small
{
	font-size: .4em;
	position: relative;
	left: -50px;
}
.product-intro
{
	font-style: italic;
	color: white;
	font-size: 1.5em;
	margin: 0 auto;
	padding: 0;
	text-transform: uppercase;
}
.product-description
{
	color: white;
	font-size: 1.2em;
	margin: 30px 0 0;
}
.product-description p.with-bullet
{
	position: relative;
	padding-left: 25px;
}
.product-description p.with-bullet img
{
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;

}



/* social */
#social-ctas
{
	background-color: white;
	padding: 200px 0;
	-webkit-clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
	clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
	position: relative;
	margin-top: -12%;
	margin-bottom: -12%;
	z-index: 100;
}
#social-ctas p
{
	font-size: 2.8em;
	text-align: center;
	font-family: 'Renogare Soft';
	color: #6D6D70;
}
#social-ctas p a.sm-link
{
	margin-left: 20px;
}
#social-ctas p a.sm-link img
{
	height: 45px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#social-ctas p a.sm-link:hover img
{
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	-o-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}

/* about */
#home-about
{
	padding-top: 275px;
	padding-bottom: 125px;
	background-color: white;
	background-image: url(/images/about/bg-home.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
}
#home-about.internal
{
	min-height: 500px;
}
#home-about .heading h1
{
	text-transform: none;
}
#home-about .link
{
	background-color: #67B46D;
	border: 2px solid #67B46D;
	color: white;
	display: table;
	margin: 30px auto;
	padding: 5px 20px;
	font-size: 1.2em;
	text-decoration: none !important;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#home-about .link:hover
{
	background-color: #fff;
	color: #67B46D;
}




/* blog */
#blog
{
	background-color: white;
	padding: 120px 0;
}
#blog.full-section
{
	padding-top: 50px;
}
#blog .heading
{
	margin-bottom: 50px;
}
#blog .heading h1
{
	color: #3474A3;
}
#blog .heading h1 strong
{
	color: #67B46D;
}
#blog .heading .intro
{
	color: #58595B;
}
#blog .link
{
	background-color: #357AAD;
	border: 2px solid #357AAD;
	color: white;
	display: table;
	margin: 50px auto;
	padding: 5px 20px;
	font-size: 1.2em;

	text-decoration: none !important;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#blog .link:hover
{
	background-color: #fff;
	color: #357AAD;
}


.blog-search
{
	margin: 20px auto 50px;
	display: table;
	width: 100%;
}

.form-search
{
	min-width: calc(100% - 40px);
	width: calc(100% - 70px);
	background-color: #E6E6E6;
	border: 0;
	border-radius: 0;
	margin: 0 0 0;
	padding: 0 10px;
	height: 35px;
	line-height: 35px;
	font-size: 1.1em;
	float: left;
}
.btn-search
{
	width: 40px;
	height: 35px;
	float: left;
	background-color: #E6E6E6;
	border: 0;
	background-image: url(/images/i/search-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 20px;
}

.blog-subtitle
{
	padding: 100px 15px 50px;
}
.blog-subtitle h2
{
	font-size: 2.5em;
	margin: 0 auto;
	padding: 0 0 0;
	text-align: center;
	font-family: 'Renogare Soft';
}
.blog-subtitle p.intro
{
	text-align: center;
	max-width: 400px;
	display: block;
	margin: 0 auto;
}




.blog-category-wrapper
{
	padding: 5px;
}
.blog-category
{
	display: block;
	padding: 10px 5px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.1em;
	color: white !important;
	text-decoration: none !important;
	background-color: #357AAD;
}
.blog-category:hover,
.blog-category.active
{
	background-color: #67B46D;
}



#blog-post
{
	padding: 0 0 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1600px;
	display: block;
	background-color: white;
}
#blog-post .heading
{
	padding: 150px 0 150px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 50;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
#blog-post .heading h1
{
	max-width: 1000px;
	margin: 0 auto;
	display: block;
}
#blog-post .heading .overlay
{
	height: 100%;
	width: 100%;
	display: block;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000',GradientType=0 );
}
#blog-post .heading .container
{
	z-index: 20;
	position: relative;
}
#blog-post .content
{
	background-color: white;
	padding: 50px 0 75px;
	margin: 0 auto;
	position: relative;
	display: table;
	width: 100%;
	z-index: 40;
}
.blog-post-sidebar
{
	background-color: #F5F5F5;
	display: table;
	padding: 10px;
	text-align: center;
}
.blog-post-sidebar h4
{
	text-align: center;
	font-size: 1.1em;
	margin: 25px auto 10px;
}
.blog-post-content
{
	padding: 50px 15px;
}
#disqus_thread
{
	margin-top: 50px;
}






.sp-wrapper
{
	padding: 5px;
}
.single-post,
.single-post-sm
{
	width: 100%;
	display: block;
	overflow: hidden;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.single-post .sp-img,
.single-post-sm .sp-img
{
	width: 100%;
	position: relative;
	z-index: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.single-post:hover .sp-img,
.single-post-sm:hover .sp-img
{
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.single-post .sp-overlay,
.single-post-sm .sp-overlay
{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;

	opacity: .8;

	-moz-transform: translateY(20px);
	-webkit-transform: translateY(20px);
	-o-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);

	background: -moz-linear-gradient(top, rgba(36,131,197,0) 0%, rgba(56,138,158,0) 30%, rgba(101,154,67,1) 100%);
	background: -webkit-linear-gradient(top, rgba(36,131,197,0) 0%,rgba(56,138,158,0) 30%,rgba(101,154,67,1) 100%);
	background: linear-gradient(to bottom, rgba(36,131,197,0) 0%,rgba(56,138,158,0) 30%,rgba(101,154,67,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002483c5', endColorstr='#659a43',GradientType=0 );

	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.single-post-sm .sp-overlay
{
	-moz-transform: translateY(5px);
	-webkit-transform: translateY(5px);
	-o-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);

	background: -moz-linear-gradient(top, rgba(101,154,67,0) 1%, rgba(82,147,105,0) 30%, rgba(36,131,197,0.99) 99%, rgba(36,131,197,1) 100%);
	background: -webkit-linear-gradient(top, rgba(101,154,67,0) 1%,rgba(82,147,105,0) 30%,rgba(36,131,197,0.99) 99%,rgba(36,131,197,1) 100%);
	background: linear-gradient(to bottom, rgba(101,154,67,0) 1%,rgba(82,147,105,0) 30%,rgba(36,131,197,0.99) 99%,rgba(36,131,197,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00659a43', endColorstr='#2483c5',GradientType=0 );
}
.single-post:hover .sp-overlay,
.single-post-sm:hover .sp-overlay
{
	opacity: 1;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
.single-post .sp-info,
.single-post-sm .sp-info
{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 0 20px 30px;
	z-index: 20;
}
.single-post-sm .sp-info
{
	padding: 0 15px 10px;
}
.single-post .sp-title,
.single-post-sm .sp-title
{
	color: white;
	width: 100%;
	display: block;
	font-size: 1.6em;
	font-family: 'Renogare Soft';
	margin: 0 auto 20px;
}
.single-post-sm .sp-title
{
	font-size: 1.3em;
	line-height: 22px !important;
	margin-bottom: 15px;
}
.single-post .sp-resume,
.single-post-sm .sp-resume
{
	max-width: 60%;
	margin: 0 auto;
	display: block;
	font-size: .9em;
	color: white;
}
.single-post .sp-btn,
.single-post-sm .sp-btn
{
	color: white;
	width: 100%;
	display: block;
	font-size: 1.3em;
	font-family: 'Renogare Soft';
	margin: 15px auto 0;
}
.single-post-sm .sp-btn
{
	font-size: .9em;
	margin: 0 auto 0;
}



/* contact */
section#contact
{
	color: white;
	padding: 100px 0 0;
}
.contact-link
{
	display: block;
	margin: 10px auto 20px;
	padding: 0 0 0;
	color: white;
	text-align: center;
	text-decoration: none !important;
}
.contact-link a
{
	color: white;
}
.contact-link img
{
	width: 50px;
	margin-bottom: 10px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.contact-link:hover img
{
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.contact-link span,
.contact-link span:hover
{
	width: 100%;
	display: block;
	font-size: .9em;
	color: white;
}
#contact-form
{
	display: table;
	padding: 0;
	margin: 50px auto;
}
#contact-form .form-group
{
	margin-bottom: 5px;
}
#contact-form input[type=text],
#contact-form input[type=email],
#contact-form textarea
{
	background-color: transparent;
	border-radius: 0;
	color: white;
	box-shadow: none !important;
	outline: 0 none !important;
	text-align: center;

	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0 auto;
	width: calc(100%);
	vertical-align: top;
}
#contact-form .btn-submit
{
	background-color: #67B46D;
	border: 2px solid #67B46D;
	color: white;
	display: table;
	margin: 30px auto;
	padding: 5px 20px;
	font-size: 1.2em;
	min-width: 200px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#contact-form .btn-submit:hover
{
	background-color: white;
	color: #67B56D;
}
#map-wrapper
{
	height: 400px;
	width: 100%;
	display: block;
	margin: 50px auto 0;
}


/* footer */
footer
{
	color: white;
}
footer p
{
	text-align: right;
}
footer nav
{
	width: 100%;
}
footer nav a
{
	color: white !important;
	padding: 0 10px;
}





#about-us
{
	padding: 100px 0 200px;
	color: white;
	background: #357aad;
	background: -moz-linear-gradient(-45deg, #357aad 0%, #67b56d 100%);
	background: -webkit-linear-gradient(-45deg, #357aad 0%,#67b56d 100%);
	background: linear-gradient(135deg, #357aad 0%,#67b56d 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#357aad', endColorstr='#67b56d',GradientType=1 );
}
#about-us .heading
{
	margin-bottom: 75px;
}
.about-features
{
	position: relative;
	min-height: 120px;
	margin-bottom: 25px;
	padding: 0 10px;
	padding-right: 150px;
}
.about-features.af-right
{
	text-align: right;
	padding: 10px;
	padding-left: 150px;
}
.about-features img
{
	position: absolute;
	top: 0;
	right: 0;
	width: 130px;
}
.about-features.af-right img
{
	left: 0;
	right: auto;
}
.about-features .af-title
{
	font-size: 3em;
	text-transform: uppercase;
	position: relative;
	width: 100%;
}
.about-features .af-title span
{
	display: inline-table;
}
.about-features .af-dashes
{
	content: " ";
	position: absolute;
	top: 8px;
	right: 0;
	display: block;
	background-image: url(/images/about/dashes.svg);
	background-repeat: repeat-x;
	background-size: 50px auto;
	background-position: left center;

	height: 20px;
	width: 100px;
}
.about-features.af-right .af-dashes
{
	left: 0;
	right: auto;
	background-position: right center;
}
.about-features .af-content
{
	font-size: 1.1em;
}
.about-features .af-content-exp
{
	font-size: 1.8em;
	line-height: 23px;
}
.about-features .af-content-exp small
{
	font-size: .8em;
}


#about-fortalezas
{
	background-color: white;
	padding: 135px 0;
}
#about-fortalezas .heading
{
	margin-bottom: 50px;
}
#about-fortalezas h1
{
	color: #1DBCB8;
}
.fortalezas-item
{
	position: relative;
	width: 100%;
	display: block;
	margin: 0 auto 25px;
	padding: 0 5px;
	padding-left: 35px;
	font-size: 1.2em;
	line-height: 20px;
}
.fortalezas-item img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
}


#about-produccion
{
	background-color: #1DBCB8;
	padding: 200px 0;
	color: white;
}
#about-produccion .heading h1
{
	line-height: 48px;
}
#about-produccion .heading h1 small
{
	color: white;
	font-size: .54em;
}
#about-produccion .ap-content
{
	position: relative;
	font-size: 2.3em;
	line-height: 35px;
	display: table;
	margin: 40px auto;
	padding: 15px 0 0;
	padding-left: 110px;
}
#about-produccion .ap-content img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
}



#about-fortalezas,
#about-ventas
{
	position: relative;
	margin-top: -12%;
	margin-bottom: -12%;
	z-index: 100;
	-webkit-clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
	clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
}


#about-ventas
{
	background-color: white;
	overflow: hidden;
	position: relative;
	padding: 200px 0;
}
#about-ventas h1
{
	color: #00AFCF;
	font-family: 'Renogare Soft';
	text-transform: uppercase;
	font-size: 3.5em;
}
#about-ventas .av-content
{
	text-align: right;
}
#about-ventas .av-content p
{
	font-size: 1.2em;
}
#about-ventas .intro
{
	font-size: 1.35em;
	font-weight: bold;
}
#about-ventas img
{
	max-width: 130px;
	position: relative;
	top: 5px;
}
.av-bg-title
{
	position: absolute;
	top: 170px;
	right: 100px;
	text-align: right;
	color: #00AFCF;
	opacity: .1 !important;
	font-size: 15em;
	width: 1000000px;
	text-transform: uppercase;
	font-family: 'Renogare Soft';
}




#about-valores
{
	background-color: #67B56D;
	color: white;
	padding: 150px 0;
	overflow: hidden;
	position: relative;
}
#about-valores .heading h1,
#about-valores .heading .intro
{
	text-align: left !important;
}
#about-valores h1
{
	color: #fff;
}
.aval-valores
{
	text-align: center;
	padding-top: 20px;
}
.valor-item
{
	display: inline-block;
	text-align: center;
	margin: 0 10px 10px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.valor-item:hover
{
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	-o-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}
.valor-item img
{
	width: 60px;
	margin: 0 auto;
}
.valor-item .vi-name
{
	display: block;
	width: 100%;
	margin: 10px auto;
	padding: 0 0 0;
}
.aval-bg-title
{
	position: absolute;
	top: 100px;
	left: 30px;
	text-align: center;
	color: #fff;
	opacity: .1 !important;
	font-size: 15em;
	width: 100%;
	text-transform: uppercase;
	font-family: 'Renogare Soft';
}







/* inputs assets */
.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	font-size: 1.25em;
	border: none;
	border-radius: 0;
	color: #67B56D !important;
	font-weight: bold;
	-webkit-appearance: none;
}
.input__field:focus {
	outline: none;
}
.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}
.input__field--yoko {
	z-index: 10;
	width: 100%;
	background: transparent;
	color: #f5f5f5;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.input__label--yoko {
	position: relative;
	width: 100%;
	padding: 0;

	display: inline-block;
	float: right;
	padding: 0px 0px 0;
	width: 100%;
	text-align: center;
	color: #67B56D !important;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.input__label--yoko::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 4em;
	background: #fff;
	-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
	transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.input__label--yoko::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.25em;
	background: #67B56D;
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.input__label-content--yoko {
	padding: 0.75em 0;
}
.input__field--yoko:focus,
.input--filled .input__field--yoko {
	opacity: 1;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	color: white;
}
.input__field--yoko:focus + .input__label--yoko::before,
.input--filled .input__label--yoko::before {
	-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
	transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
}
.input__field--yoko:focus + .input__label--yoko,
.input--filled .input__label--yoko {
	pointer-events: none;
}
.input__field--yoko:focus + .input__label--yoko::after,
.input--filled .input__label--yoko::after {
	-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
	transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
}












/* 404 */
#server-404
{
	min-height: 100vh;
	width: 100%;
	margin: 0 auto;
	padding: 40vh 0 0;
	display: table;
	background-color: white;
	background-image: url(/images/404.jpg);
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
	text-align: left;
}
#server-404 h1
{
	font-size: 150px;
	color: #357AAD;
	font-family: 'Renogare Soft';
	margin: 0 auto;
	padding: 0 0 0;
	line-height: 100px;
}
#server-404 p.intro
{
	color: #6D6E71;
	font-size: 1.3em;
}
#server-404 .link
{
	background-color: #67B46D;
	border: 2px solid #67B46D;
	color: white;
	display: table;
	margin: 15px 0;
	padding: 5px 35px;
	font-size: 1.2em;
	text-decoration: none !important;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#server-404 .link:hover
{
	background-color: #fff;
	color: #67B46D;
}









/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	/* products */
	.product-step-bg
	{
		font-size: 8em;
		left: -10px;
	}
	.product-step-bg small
	{
		left: -25px;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	/* general */
	.container
	{
		width: 100%;
		padding: 0;
	}
	.icon-avila
	{
		width: 90px;
	}


	/* titles */
	.heading h1,
	.product-name,
	#about-ventas h1
	{
		font-size: 2.5em;
	}
	.product-intro
	{
		font-size: 1.1em;
	}
	.heading p.intro,
	.product-description
	{
		font-size: .9em;
	}


	/* products */
	.product-pattern
	{
		width: 130%;
		left: -15%;
	}
	.badge-cero-acne
	{
		width: 90px;
	}
	.product-step-bg
	{
		font-size: 6.5em;
	}

	/* about valores */
	#about-valores
	{
		padding: 100px 0;
	}
	.aval-bg-title
	{
		top: 25px;
		left: 30px;
		font-size: 15em;
	}
	.valor-item img
	{
		width: 40px;
	}
	.valor-item .vi-name
	{
		font-size: .9em;
	}


	/* about produccion */
	#about-produccion
	{
		padding: 180px 0;
	}
	#about-produccion .heading h1
	{
		line-height: 35px;
	}
	#about-produccion .ap-content
	{
		font-size: 1.8em;
		line-height: 35px;
		margin: 50px auto;
		padding: 0 0 0;
		padding-left: 80px;
	}
	#about-produccion .ap-content img
	{
		width: 70px;
	}


	/* about fuerza de ventas */
	#about-ventas
	{
		padding: 200px 0;
	}
	#about-ventas .intro
	{
		font-size: 1.2em;
	}
	#about-ventas img
	{
		max-width: 130px;
		position: relative;
		top: 5px;
	}


	/* about */
	.about-features img
	{
		width: 100px;
	}
	.about-features .af-title
	{
		font-size: 2em;
	}
	.about-features .af-dashes
	{
		top: 0px;
		background-image: url(/images/about/dashes.svg);
		background-size: 30px auto;
	}
	.about-features .af-content-exp
	{
		font-size: 1.5em;
	}



	/* 404 */
	#server-404
	{
		background-size: auto 100% !important;
	}
	#server-404 h1
	{
		font-size: 80px;
		line-height: 80px;
	}
}






/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/* general */
	.icon-avila
	{
		width: 75px;
	}



	/* titles */
	.heading h1,
	.product-name,
	#about-ventas h1
	{
		font-size: 2em;
	}


	/* slides */
	#slides #bs-slides.visible
	{
		-webkit-clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%);
		clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%);
	}
	#slides-logo
	{
		top: calc(50vh - 20vh);
	}
	#intro-logo
	{
		height: 40vh;
	}

	#slides
	{
		min-height: 80vh;
		padding: 70px 0 130px;
	}
	#slides #bs-slides
	{
		height: 70vh;
	}
	a#scroll-down-motion {
		top: 0px;
	}

	/* clips */
	#products-intro,
	section#salider-2,
	section#flebitop,
	#social-ctas,
	#about-fortalezas,
	#about-ventas
	{
		-webkit-clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%);
		clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%);
		margin-top: -16%;
		margin-bottom: -16%;
	}



	/* contact */
	#contact-form .form-group
	{
		margin-bottom: 0;
	}
	.contact-link img
	{
		width: 35px;
		margin-bottom: 10px;
	}



	/* footer */
	footer
	{
		padding: 50px 0;
		margin-bottom: 200px;
	}
	footer p
	{
		text-align: center;
		font-size: .9em;
	}



	/* products */
	#products-intro
	{
		padding: 100px 0 120px;
		position: relative;
		margin-top: -11%;
		margin-bottom: -11%;
		z-index: 100;
	}
	.product-pattern
	{
		width: auto !important;
		height: 120%;
		left: 0;
		top: -10%;
	}
	.product-step-bg
	{
		font-size: 4em;
		left: 0;
		text-align: center;
		width: 100%;
		display: block;
		margin-top: 20px;
	}
	.product-step-bg small
	{
		left: -17px;
	}
	.product-name
	{
		margin-top: 0;
	}
	section#flebitop .product-pattern,
	section#dermabella .product-pattern
	{
		height: 190%;
		top: -45%;
	}


	section.product .product-img img
	{
		width: auto;
		height: 300px;
	}
	section.product
	{
		min-height: 100vh;
		padding-top: 100px;
		padding-bottom: 100px;
		text-align: center;
	}
	.badge-cero-acne
	{
		width: 75px;
		right: 15px;
		top: -15px;
	}



	/* social */
	#social-ctas
	{
		padding: 75px 0;
	}
	#social-ctas p
	{
		font-size: 1.5em;
	}
	#social-ctas p a.sm-link img
	{
		height: 30px;
		margin-left: 10px;
		margin-right: 10px;
	}


	/* about */
	#home-about
	{
		padding-top: 150px;
		padding-bottom: 80px;
		background-size: auto 100% !important;
		background-attachment: fixed;
	}
	#home-about .heading h1
	{
		text-transform: uppercase;
	}


	/* blog */
	#blog
	{
		padding: 50px 0 50px;
	}
	#blog .heading
	{
		margin-bottom: 25px;
	}
	.sp-wrapper
	{
		padding: 0 5px 5px;
	}
	.single-post .sp-info,
	.single-post-sm .sp-info
	{
		padding: 0 10px 10px;
	}
	.single-post .sp-title,
	.single-post-sm .sp-title
	{
		font-size: 1em;
		margin: 0 auto 10px;
	}
	.single-post .sp-resume,
	.single-post-sm .sp-resume
	{
		display: none;
	}
	.single-post .sp-btn,
	.single-post-sm .sp-btn
	{
		font-size: .8em;
		margin: 0px auto 0;
		opacity: .7;
	}

	/* contact */
	section#contact
	{
		padding: 50px 0 0;
	}


	/* about */
	#about-us
	{
		padding: 50px 0 70px;
	}
	.about-features
	{
		margin-bottom: 50px;
		min-height: 70px;
	}
	.about-features img
	{
		width: 60px;
		top: -20px;
		right: 10px;
	}
	.about-features.af-right img
	{
		left: 10px;
		right: auto;
	}
	.about-features
	{
		padding-right: 60px;
	}
	.about-features.af-right
	{
		padding: 0 10px;
		padding-left: 60px;
	}
	.about-features .af-title
	{
		font-size: 1.5em;
	}
	.about-features .af-dashes
	{
		top: 0px;
		background-image: url(/images/about/dashes.svg);
		background-size: 20px auto;
	}
	.about-features .af-content-exp
	{
		font-size: 1.2em;
	}
	.about-features .af-content
	{
		font-size: 1em;
	}






	/* about valores */
	#about-valores
	{
		padding: 100px 0 100px;
	}
	#about-valores .heading h1,
	#about-valores .heading p.intro
	{
		text-align: center !important;
	}
	.aval-bg-title
	{
		top: 120px;
		left: 30px;
		font-size: 15em;
	}
	.valor-item img
	{
		width: 40px;
	}


	/* about fortalezas */
	#about-fortalezas
	{
		padding: 70px 0;
	}
	.fortalezas-item
	{
		margin: 0 auto 20px;
		padding-left: 35px;
		font-size: 1em;
	}
	.fortalezas-item img
	{
		width: 25px;
	}


	/* about produccion */
	#about-produccion
	{
		padding: 150px 0;
	}
	#about-produccion .heading h1
	{
		line-height: 30px;
	}
	#about-produccion .ap-content
	{
		font-size: 1.5em;
		line-height: 24px;
		margin: 50px auto 0;
		padding: 0 0 0;
		padding-left: 60px;
	}
	#about-produccion .ap-content img
	{
		width: 50px;
	}


	/* about fuerza de ventas */
	#about-ventas
	{
		padding: 100px 0;
	}
	#about-ventas .intro
	{
		font-size: 1.2em;
	}
	#about-ventas img
	{
		max-width: 50px;
		margin: 0 auto;
		display: block;
	}
	.av-content
	{
		text-align: center !important;
		font-size: .9em;
	}
	.av-bg-title
	{
		top: 135px;
	}



	/* blog post */
	#blog-post .heading
	{
		padding: 120px 0 60px;
		background-size: auto 100% !important;
	}
	#blog-post .content
	{
		padding: 0 15px 50px;
	}
}




/* IPAD Landscape */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {

	section.product
	{
		min-height: 100vh;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.product-pattern
	{
		width: 130%;
		height: auto;
		left: -15%;
		top: -10%;
	}

	#home-about
	{
		padding-top: 200px;
		padding-bottom: 50px;
		background-attachment: scroll;
		background-size: cover;
	}

}



/* IPAD Portrait */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {

	section.product
	{
		min-height: 70vh;
		padding-top: 200px;
		padding-bottom: 200px;
	}

	#home-about
	{
		padding-top: 200px;
		padding-bottom: 50px;
		background-attachment: scroll;
		background-size: cover;
	}


	#slides
	{
		min-height: 80vh;
		padding: 100px 0 200px;
	}
	#slides #bs-slides
	{
		height: 60vh;
	}
	#slides-logo
	{
		width: 100%;
		top: 25vh;
	}
	#intro-logo
	{
		width: 300px;
		height: auto;
	}

	a#scroll-down-motion {
		top: 0px;
	}
}








