/* GLOBAL
------------------------------------------------------------------*/
html {
	height: 100%;
	font-size: 100%;
}

body {
	height: 100%;
	color: #555;
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.938rem;
	font-weight: 300;
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* Preloader
-----------------------------------------*/
.preloader  { 
	position: fixed; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	z-index: 9999;
	height: 100%;
	background: #52B3D9; 
	text-align: center;
} 

.spinner {
    width: 70px;
    margin: 0 auto;
}

.spinner > div {
	display: inline-block;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 100%;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { 
    	-webkit-transform: scale(0.0) 
    }
    40% { 
    	-webkit-transform: scale(1.0) 
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 
    40% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
}

/* TYPOGRAPHY
------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 1.25rem 0 0.313rem;
	color: #52B3D9;
	font-weight: normal;
	line-height: 1.3;
}

h1 {
	font-size: 2rem;
	font-weight: 300;
}

h2 {
	font-size: 1.4rem;
	font-weight: 600;
}

h3 {
	font-size: 1.2rem;
}

h4 {
	font-size: 1.1rem;
}

h5 {
	font-size: 1rem;
}

h6 {
	font-size: 0.938rem;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
h6 + p {
	margin-top: 0.625rem;
}

p {
	margin: 1.25rem 0;
}

p:last-child {
	margin-bottom: 0;
}

.intro {
	color: #999;
	font-size: 1rem;
	font-weight: 300;
}

nav ul,
footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

a {
	color: #52B3D9;
}

a:hover {
	color: #81CFE0;
	text-decoration: none;
}

/* LAYOUT
------------------------------------------------------------------*/
[class*="col-"] {
	margin-top: 2.5rem;
}

[class*="col-"]:first-child {
	margin-top: 0;
}

/* Header
--------------------------------*/
.main-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 2.5%;
	z-index: 100;
}

/* Navigation
--------------------------------*/
.nav-button {
	position: fixed;
	top: 10px;
	right: 2.5%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 150;
	border-radius: 2px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.nav-button:hover .first-line {
	top: 8px;
}

.nav-button:hover .third-line {
	top: 28px;
}

.line {
	position: absolute;
	display: block;
	left: 7px;
	width: 25px;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.first-line {
	top: 10px;
}
.second-line {
	top: 18px;
}
.third-line {
	top: 26px;
}

.open-nav .line.first-line {
	top: 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.open-nav .line.second-line {
	top: 29px;
	-webkit-transform: scale(0);
  	-ms-transform: scale(0);
  	transform: scale(0);
}

.open-nav .line.third-line {
	top: 50%;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.main-nav {
	position: fixed;
	top: 0;
	right: -250px;
	width: 250px;
	height: 100%;
	z-index: 120;
	padding: 3.75rem 0;
	background: #81CFE0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.main-nav.open-nav {
	right: 0;
}

.main-nav a {
	display: block;
	padding: 0.625rem 1.25rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
}

.main-nav a:hover {
	color: #fff;
	background: #52B3D9;
}

/* Footer
--------------------------------*/
.main-footer {
	color: #fff;
	background: #81CFE0;
	text-align: center;
}

.social-links {
	margin-bottom: 1.25rem;
}

.social-links a {
	min-width: 50px;
	margin: 0 0.625rem;
	font-size: 1.3rem;
}

/* SECTIONS
------------------------------------------------------------------*/

/* Section specific
--------------------------------*/

/* Vertical spacing on sections */
.spacing {
	padding: 5rem 0;
}

/* Grey background on sections */
.section-bg {
	background: #f9f9f9;
}

/* Section Title */
.title {
	margin: 0 0 5rem;
	color: #333;
	text-align: center;
	text-transform: uppercase;
}

/* Section Title with description */
.title-description {
	text-align: center;
}

.title-description .title {
	margin: 0;
}

.title-description p {
	margin-bottom: 3rem;
}

.bg-overlay .title-description,
.bg-overlay .title {
	color: #fff;
}

/* Shared */
.top-section,
.screenshots,
.subscribe {
	background: #52B3D9;
}

.top-section,
.screenshots,
.subscribe,
.features,
.about,
.testimonials,
.download,
.main-footer {
	overflow: hidden;
}

/* Top Section
--------------------------------*/
.top-section {
	height: 100%;
	color: #fff;
}

.top-section h1 {
	margin: 0 0 0.625rem;
	color: #fff;
	text-transform: uppercase;
}

/* Features
--------------------------------*/
.features-list .media {
	margin-top: 2.5rem;
}

.features-list .media:first-child {
	margin-top: 0;
}

.features i {
	color: #52B3D9;
}

/* Testimonials
--------------------------------*/
.testimonials img {
	width: 100px;
	height: 100px;
	margin-bottom: 1.25rem;
	border: solid 4px #81CFE0;
	border-radius: 100%;
}

.testimonials blockquote {
	padding: 0;
	margin: 0;
	border-left: 0;
}

.testimonials blockquote p {
	margin: 0 0 0.625rem;
	color: #999;
	font-size: 1rem;
	font-weight: 400;
	font-style: italic;
}

.testimonials blockquote cite {
	text-transform: uppercase;
	font-size: 0.813rem;
	font-weight: 600;
}

/* SHARED OR RECURRING STYLES
------------------------------------------------------------------*/

/* Buttons
--------------------------------*/

/* Primary button */
.btn {
	padding: 0.5rem 0.875rem;
	color: #fff;
	background: #81CFE0;
	text-decoration: none;
	border-radius: 2px;
	line-height: 1.6;
	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
}

.btn:hover {
	color: #fff;
	text-decoration: none;
	background: #95d7e5;
}

.btn i {
	line-height: 1.6;
}

/* Alternative button */
.btn-border {
	border: solid 2px #81CFE0;
	color: #81CFE0;
	background: transparent;
}

.btn-border:hover {
	color: #fff;
	background: #81CFE0;
}

/* Alternative button white */
.btn-border-white {
	border: solid 2px #fff;
	color: #fff;
	background: transparent;
}

.btn-border-white:hover {
	color: #81CFE0;
	background: #fff;
}

/* Download buttons */
.btn-download {
	margin: 0 0.625rem 0.625rem;
	text-align: left;
	line-height: 1.2;
}

.btn-download i {
	line-height: 1;
	font-size: 1.9rem;
}

.btn-download span {
	display: block;
	font-size: 0.813rem;
	font-weight: 300;
}

/* Larger button */
.btn-lg {
	padding: 0.750rem 1.125rem;
	font-size: 1rem;
}

/* Center Content vertically
--------------------------------*/
.center-content-container {
	display: table;
   	width: 100%;
   	height: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.center-content {
	display: table-cell;
    text-align: center;
    vertical-align: middle;
}

/* Alignment
--------------------------------*/
.center-align {
	text-align: center;
}

/* Background overlay
--------------------------------*/
.bg-overlay {
	height: 100%;
	background: rgba(82, 179, 217, 0.9);
}

/* FORMS
------------------------------------------------------------------*/
.subscribe .input-group {
	padding: 4px;
	background: #fff;
	border-radius: 2px;
}

.subscribe .form-control {
	/* height: 40px; */ /* No renderea bien textarea de contacto */
	padding: 0.4rem 0.875rem;
	border: solid 1px #fff;
	box-shadow: none;
	background: #fff;
	font-size: 1rem;
	line-height: 1.6;
	border-radius: 2px;
	-webkit-appearance: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.subscribe .form-control:focus {
	border: solid 1px #81CFE0;
	border-right: solid 1px #fff;
	color: #fff;
	background: #81CFE0;
}

.subscribe .form-control:focus::-webkit-input-placeholder {
   color: #fff;
}

.subscribe .form-control:focus:-moz-placeholder { 
   color: #fff;
}

.subscribe .form-control:focus::-moz-placeholder { 
   color: #fff;  
}

.subscribe .form-control:focus:-ms-input-placeholder {  
   color: #fff;  
}

.subscribe .input-group-btn:last-child > .btn,
.subscribe .input-group-btn:last-child > .btn-group {
	margin-left: 0;
}

/* VENDOR
------------------------------------------------------------------*/

/* Owl Carousel
--------------------------------*/
.owl-theme .item{
    background: #f1f1f1;
    margin: 5px;
    height: auto;
    border-radius: 2px;
    text-align: center;
}

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	border-radius: 30px;
	background: #869791;
	opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
}

.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	opacity: 0.5;
	border-radius: 20px;
	background: #fff;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

/* Screenshot */
.owl-theme-screenshot .item {
    background: #f1f1f1;
    border: solid 4px #fff;
    border-radius: 2px;
}

.owl-theme-screenshot .owl-controls .owl-page span{
	background: #fff;
}

/* Testimonial */
.owl-theme-testimonial .item {
	margin: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.owl-theme-testimonial .owl-controls .owl-page span{
	background: #52B3D9;
}

/* Magnific-popup
--------------------------------*/
.mfp-bg {
	background: #52B3D9;
	opacity: 0.9;
}

/* MEDIA QUERIES
------------------------------------------------------------------*/
@media (min-width: 768px) {
	body {
		font-size: 1rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 1.625rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	h4 {
		font-size: 1.125rem;
	}

	h5 {
		font-size: 1.05rem;
	}

	h6 {
		font-size: 1rem;
	}

	.intro {
		font-size: 1.1rem;
	}

	.testimonials blockquote p {
		font-size: 1.2rem;
	}

	.testimonials blockquote cite {
		font-size: 0.938rem;
	}

	.features-list [class*="col-"] {
		margin-top: 0;
	}

}

.top-section {
		background: url('../img/ix/background.jpg') no-repeat center center;
		background-size: cover;
	}

	.screenshots {
		background: url('../img/placeholder-image.jpg') no-repeat center center;
		background-size: cover;
	}

	.subscribe {
		background: url('../img/placeholder-image.jpg') no-repeat center center;
		background-size: cover;
	}

@media (min-width: 992px) {
	[class*="col-"] {
		margin-top: 0;
	}  
}

@media (min-width: 1200px) {
    .container-fluid {
    	max-width: 1170px;
    }
    .top-section,
	.screenshots,
	.subscribe {
		background-attachment: fixed;
	}
}

@media (min-width: 1600px) {
	.top-section {
		background: url('../img/top-image-large.jpg') no-repeat center center;
		background-attachment: fixed;
	}

	.screenshots {
		background: url('../img/screenshot-image-large.jpg') no-repeat center center;
		background-attachment: fixed;
	}

	.subscribe {
		background: url('../img/subscribe-image-large.jpg') no-repeat center center;
		background-attachment: fixed;
	}
}

/* IMATRONIX */

/* Clase para contenido sobre fondos oscuros */
.white-font a {
	color: #EEE;
	text-decoration: underline;
}

.form-control::-webkit-input-placeholder {
	color: #BBB;
}