/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Avenir', sans-serif;
  color: #444444;
}

a {
  color: #009cea;
}

a:hover {
  color: #1eb4ff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Avenir', sans-serif;
}

@font-face {
font-family: Avenir;
src: url(../fuente/Avenir-Roman.otf);
}

.fade:not(.show) {
    opacity: 1;
	
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
   transition: opacity 0.3s;
}

.fade:hover{
    opacity: 0.4;
}

.container-fluid-full {
	width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
	}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #126395;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #14b1ff;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: #fff;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Avenir', sans-serif;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #576971;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
	display: flex;
	}
 
.header-social-links a {
  color: #7b909a;
  padding: 6px 0 6px 6px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

.header-social-links a:hover {
  color: #009cea;
}

@media (max-width: 768px) {
  .header-social-links {
    padding-right: 48px;
  }
}

.bt-intranet {
	padding-left: 18px;
	padding-top: 4px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #126395;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 12px;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

@media (min-width: 922px) and (max-width: 1440px) {
.nav-menu a {
    display: block;
    position: relative;
    color: #126395;
    padding: 10px 10px;
    transition: 0.3s;
    font-size: 11px;
    font-family: 'Avenir', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}	
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #009cea;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #003651;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #009cea;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 21px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #009cea;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #364146;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #009cea;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(32, 38, 41, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}



/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner {
	margin-top: 0px;
	text-align: center;
	}
	
@media (min-width: 768px) and (max-width: 1200px) {
.banner {
	margin-top: 72px;
	text-align: center;
}
}

@media (max-width: 575px) {
	
.banner {
    margin-top: 72px;
    text-align: center;
}

.header-social-links {
    padding-right: 10px;
	padding-left: 10px;
}

.header-social-links a {
    color: #7b909a;
    padding: 10px 3px 6px 3px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

.bt-intranet {
    padding-left: 0px;
    padding-top: 4px;
	padding-right: 55px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 5px;
    top: 21px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

}

@media (min-width: 576px) and (max-width: 911px) {

.banner {
    margin-top: 72px;
    text-align: center;
}

.header-social-links {
    padding-right: 50px;
}

.bt-intranet {
    padding-left: 0px;
    padding-top: 4px;
    margin-right: 55px;
}
}

/*.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}*/


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f8f9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #627680;
}

.section-title p {
  margin-bottom: 0;
}

.espacio-40 {
	height: 40px;
	}

.img-fluid-height {
    max-width: 100vh;
    height: 100vh;
}

.contenedor { /*fondo azul contenedor de textos*/
    position: relative;
    display: inline-block;
    text-align: left;
}



/*--------------------------------------------------------------
# Nosotros
--------------------------------------------------------------*/
.nosotros {
  background-image: url("../img/nosotros/bg-nosotros.jpg"); /* The image used */
  background-color: #ffffff; /* Used if the image is unavailable */
  height: 100%; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  display: flex;
  align-items: center;
  padding-bottom: 18%;
  padding-top: 18%;
}

.nosotros h2 {
  color: #009cea;
  font-size: 55px;
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 110px;
}

.nosotros p {
  color: #1d2649;
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
}

.color-azul {
	color: #1d2649;
}

@media screen and (max-width: 767px) {
.nosotros h2 {
  color: #009cea;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 60px;
}

.nosotros p {
  color: #1d2649;
  font-size: 18px;
  font-weight: 900;
  line-height: 30px;
}	
}



/*--------------------------------------------------------------
# Servicios
--------------------------------------------------------------*/
.servicios {
  background-image: url("../img/servicios/bg-servicios.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100vh; /*You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}

.servicios h2 {
  color: transparent;
  font-size: 100px;
  font-weight: 900;
  line-height: 90px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #ffffff;
  padding-bottom: 40px;
}

.servicios p {
	color: #ffffff;
	font-size: 16px;
}

.texto-encima-servicios {
    position: absolute;
    top: 10%;
    left: 7%;
	right: 35%;
    text-align: left;
}

.bg-lista-servicios {
	padding-top: 60px;
    padding-left: 15%;
    padding-right: 15%;
	text-align: center;
}

.espacio {
	padding-bottom: 60px;
}

@media screen and (max-width: 575px) {
.servicios {
  background-image: url("../img/servicios/bg-servicios.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100%; /*You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}	
}


@media screen and (max-width: 576px) {
.texto-encima-servicios {
    position: absolute;
    top: 10%;
    left: 7%;
    right: 55%;
    text-align: left;
	}
	
.servicios p {
    color: #ffffff;
    font-size: 14px;
}
		
}

@media screen and (max-width: 767px) {

.servicios h2 {
    color: transparent;
    font-size: 40px;
    font-weight: 900;
    line-height: 35px;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #ffffff;
    padding-bottom: 5px;
}

.servicios p {
	color: #ffffff;
    font-size: 10px;
}	
}



/*--------------------------------------------------------------
# Rapidez en nuestros servicos
--------------------------------------------------------------*/
.rapidez-nuestros-servicios {
  background-image: url("../img/servicios/bg-servicios-rapidez.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100vh; /*You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}

.rapidez-nuestros-servicios h2 {
  color: #ffffff;
  font-size: 45px;
  font-weight: 900;
  line-height: 40px;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.rapidez-nuestros-servicios p {
	color: #ffffff;
	font-size: 25px;
	line-height: 30px;
	margin-right: 25%;
}

.texto-encima-rapidez {
    position: absolute;
    top: 8%;
    left: 10%;
	right: 35%;
	text-align: left;
}

@media screen and (max-width: 575px) {
.rapidez-nuestros-servicios {
  background-image: url("../img/servicios/bg-servicios-rapidez-2.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100%; /*You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}
}

@media screen and (max-width: 767px) {

.rapidez-nuestros-servicios h2 {
    color: #ffffff;
    font-size: 23px;
    font-weight: 900;
    line-height: 22px;
    text-transform: uppercase;
    padding-bottom: 10px
}

.rapidez-nuestros-servicios p {
    color: #ffffff;
    font-size: 14px;
    line-height: 18px;
    margin-right: 10%;
}

}



/*--------------------------------------------------------------
# Nuestros Trabajos / Cobertura
--------------------------------------------------------------*/
.nuestros-trabajos {
  background-image: url("../img/nuestros-trabajos/bg-nuestros-trabajos.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100vh; /*You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}

.nuestros-trabajos h2 {
  color: transparent;
  font-size: 60px;
  font-weight: 900;
  line-height: 55px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #ffffff;
  padding-bottom: 20px;
}

.nuestros-trabajos p {
	color: #ffffff;
	font-size: 20px;
	line-height: 25px;
	margin-right: 0px;
}

.texto-encima-nuestros-trabajos {
    position: absolute;
    top: 8%;
    left: 10%;
	right: 35%;
	text-align: left;
}

@media screen and (max-width: 575px) {
.nuestros-trabajos {
  background-image: url("../img/nuestros-trabajos/bg-nuestros-trabajos-2.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100%; /*You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}
}

@media screen and (max-width: 767px) {

.nuestros-trabajos h2 {
    color: transparent;
    font-size: 35px;
    font-weight: 900;
    line-height: 32px;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #ffffff;
    padding-bottom: 10px;
}
	.nuestros-trabajos p {
		color: #ffffff;
		font-size: 11px;
		line-height: 14px;
		margin-right: 0px;
	}

}



/*--------------------------------------------------------------
# Galeria
--------------------------------------------------------------*/
.galeria {
	background-color: #ffffff;
}
	
.pointer {
  cursor: pointer;
}



/*--------------------------------------------------------------
# Sistema Web Adinco
--------------------------------------------------------------*/
.sistema-web-adinco {
  background-image: url("../img/sistema-web-adinco/bg-sistema-web-adinco.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100vh; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}

.sistema-web-adinco h2 {
  color: transparent;
  font-size: 45px;
  font-weight: 900;
  line-height: 40px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #ffffff;
  padding-bottom: 20px;
}

.sistema-web-adinco p {
	color: #ffffff;
	font-size: 30px;
	line-height: 35px;
	margin-right: 25%;
}

.texto-encima-sistema-web-adinco {
    position: absolute;
    top: 8%;
    left: 7%;
	right: 35%;
	text-align: left;
}

@media screen and (max-width: 575px) {
.sistema-web-adinco {
  background-image: url("../img/sistema-web-adinco/bg-sistema-web-adinco.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100%; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: left;
}
}

@media screen and (max-width: 767px) {

.sistema-web-adinco h2 {
    color: transparent;
    font-size: 33px;
    font-weight: 900;
    line-height: 30px;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #ffffff;
    padding-bottom: 20px;
}
	.sistema-web-adinco p {
		color: #ffffff;
		font-size: 15px;
		line-height: 20px;
		margin-right: 32%;
	}
		.texto-encima-sistema-web-adinco {
			position: absolute;
			top: 8%;
			left: 7%;
			right: 25%;
			text-align: left;
		}

}

	

/*--------------------------------------------------------------
# Trabaja con nosotros
--------------------------------------------------------------*/
.trabaja-con-nosotros {
  background-image: url("../img/trabaja-con-nosotros/bg-trabaja-con-nosotros.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100vh; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: center;
  padding-left: 15%;
  padding-top: 10%;
  padding-bottom: 20%;
}

.trabaja-con-nosotros h2 {
  color: transparent;
  font-size: 120px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #ffffff;
}

.trabaja-con-nosotros h3 {
	color: #ffffff;
	font-size: 66px;
	font-weight: 900;
	text-transform: uppercase;
	margin-left: 10px;
	margin-top: -38px;
}

.trabaja-con-nosotros h4 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
	padding-bottom: 30px;
}

.trabaja-con-nosotros p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 21px;
}

.bt-curriculum {
	background-color: #000000;
	width: 177px;
}
	
.badge-azul-mail {
	color: #fff;
	background-color: #155584;
    display: inline-block;
    padding: 4px 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	margin-bottom: 60px;
	margin-top: 0px;
}


@media screen and (max-width: 767px) {

.trabaja-con-nosotros {
  background-image: url("../img/trabaja-con-nosotros/bg-trabaja-con-nosotros-2.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 100%; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: scroll;
  text-align: center;
  padding-left: 0%;
  padding-top: 28%;
  padding-bottom: 28%;
}

.trabaja-con-nosotros h2 {
    color: transparent;
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #ffffff;
}
	.trabaja-con-nosotros h3 {
		color: #ffffff;
		font-size: 37px;
		font-weight: 900;
		text-transform: uppercase;
		margin-left: 10px;
		margin-top: -25px;
	}
		.trabaja-con-nosotros h4 {
			color: #ffffff;
			font-size: 12px;
			font-weight: 600;
			line-height: 18px;
			padding-bottom: 10px;
		}
		.trabaja-con-nosotros p {
			color: #ffffff;
			font-size: 9px;
			font-weight: 600;
			line-height: 15px;
		}
}



/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.contacto {
	color: #ffffff;
	background-image: url("../img/contacto/bg-contacto.jpg"); /* The image used */
	background-color: #cccccc; /* Used if the image is unavailable */
	height: 100%; /* You must set a specified height */
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
	background-attachment: scroll;
	padding-top: 8%;
	padding-bottom: 15%;
  	text-align: center;
}

.contacto h2 {
	color: transparent;
    font-size: 85px;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #ffffff;
    padding-bottom: 70px;
}

.contacto p {
	font-size: 16px;
	font-weight: 500;
	text-align: right;
}	
	
.mail p,img {
	display:inline-block;
}
	.mail p {
		font-size: 18px;
		margin-left: 20px;
	}
	
.telefono p,img {
	display:inline-block;
}
	.telefono p {
		font-size: 18px;
		margin-left: 2px;
		text-align: left;
		line-height: 1.4;
		}
	
.direccion p,img {
	display:inline-block;
	}
	.direccion p {
		font-size: 18px;
		margin-left: 2px;
	}


/*Contenedor formulario*/
.contenedor-formulario {
	padding: 60px 0;
}

/* Estilos del formulario Section */
.message-details input,
.subscribe-section input {
	padding: 15px 10px !important;
}
.message-details .form-control,
.subscribe-section .form-control {
	border: 1px solid #e9e9e9;
	border-radius: 0px;
	box-shadow: none;
	font-size: .875em;
	padding: 10px;
	margin-bottom: 8px;
}
.message-details .btn,
.subscribe-section .btn {
	background-color: #126395;
    border: 1px solid rgb(255, 255, 255);
	border-radius: 0px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	max-width: 150px;

	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
	margin-top: 20px;
}
.message-details .btn:hover,
.subscribe-section .btn:hover {
	background-color: #009cea;
	border-color: #FFF;
	color: #FFF;
}

@media screen and (max-width: 767px) {
	
.contacto {
    color: #ffffff;
	background-image: url("../img/contacto/bg-contacto.jpg");
    background-color: #cccccc;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding-top: 14%;
    padding-bottom: 12%;
    text-align: center;
}
	.contacto h2 {
		color: transparent;
		font-size: 35px;
		font-weight: 900;
		text-transform: uppercase;
		-webkit-text-stroke: 2px #ffffff;
		padding-bottom: 3%;
	}
	
}

@media screen and (max-width: 991px) {
.contacto p {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
	margin: 10px 0;
}
.message-details .btn, .subscribe-section .btn {
    background-color: #126395;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 0px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    max-width: 150px;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    margin-top: 20px;
}
}




/*--------------------------------------------------------------
# Pie de pagina
--------------------------------------------------------------*/
.pie-pagina {
	background-color: #126395;
	height: 65px;
	}
