/****************************
Diseño y programación: Lenin Pulgar
Correo electrónico: lenindpulgar@gmail.com
***************************/
* {
  margin: 0;
  padding: 0; }

html, body {
  font-size: 12px;
  font-family: "Open Sans" !important; }

img.center-img{
  display:block;
  margin:0 auto;
}

/*******
HOMEPAGE
********/
h1.titulo-home{
  font-weight: 800;
  text-transform: uppercase;
}
.home2{
    background-color:#ffb55c;
}
.home-left{
  border:1px solid #ffb55c;
  padding:1em;
  font-size:1.2em;
  text-align: justify;
}

@media screen and (min-width: 40em){
  .site-wrap h1.titulo-header{
  padding-left: 0;
  }
}
.site-wrap{
 padding:0 !important;
}
.container{
  padding:60px 0px;
}

/**********
H E A D E R
***********/
.blcs-header{
  
  
  /* The image used */
    background: 
    /* top, transparent red */ 
    linear-gradient(
      rgba(0, 74, 95, 0.45), 
      rgba(0, 74, 95, 0.45)
    ),
    /* Image */
    url("../img/header.jpg");

    /* Set a specific height */
    height: 500px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.titulo-header{
  padding-top:4em;
  padding-left:60px;
  color:#fff;
}


/******************
N A V I G A T I O N
*******************/

/* Navigation Menu - Background */
.navigation {
  /* critical sizing and position styles */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  
  /* non-critical appearance styles */
  list-style: none;
  background: #111;
  margin-left:0;
}

/* Navigation Menu - List items */
.nav-item {
  /* non-critical appearance styles */
  width: 200px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #000;
}

.nav-item a{
  /* non-critical appearance styles */
  text-transform: uppercase;
  display: block;
  padding: 1em;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
  color: white;
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.2s, background 0.5s;
}

.nav-item a:hover {
  color: #ffb55c;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0, 74, 95,0.65) 100%);
}

/* Site Wrapper - Everything that isn't navigation */
.site-wrap {
  /* Critical position and size styles */
  min-height: 100%;
  min-width: 100%;
  background-color: white; /* Needs a background or else the nav will show through */
  position: relative;
  top: 0;
  bottom: 100%;
  left: 0;
  z-index: 1;
  
  /* non-critical apperance styles */
  padding: 0em;
  /*background-image: linear-gradient(135deg, rgb(254,255,255) 0%,rgb(221,241,249) 35%,rgb(160,216,239) 100%);
  background-size: 200%;*/
}

/* Nav Trigger */
.nav-trigger {
  /* critical styles - hide the checkbox input */
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

label[for="nav-trigger"] {
  /* critical positioning styles */
  position: fixed;
  left: 0px; top: 1em;
  z-index: 2;
  
  /* non-critical apperance styles */
  /*height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6'/><rect y='24' width='30' height='6'/><rect y='12' width='30' height='6'/></svg>");
  background-size: contain;*/
}

/* Make the Magic Happen */
.nav-trigger + label, .site-wrap {
  transition: left 0.2s;
}

.nav-trigger:checked + label {
  left: 215px;
}

.nav-trigger:checked ~ .site-wrap {
  left: 200px;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
}

body {
    /* Without this, the body has excess horizontal scroll when the menu is open */
  overflow-x: hidden;
}

/* Additional non-critical styles */

h1, h3, p {
  max-width: 600px;
  margin: 0 auto 1em;
}

code {
    padding: 2px;
    background: #ddd;
}

/* Micro reset */
*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;}
html, body { height: 100%; width: 100%; font-family: Helvetica, Arial, sans-serif; }

/*************************
*****BURGER ICON**********
**************************/
/* Icon 1 */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 50px;
  height: 35px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  opacity: 1;
  top: -3em;
  left: 1em;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 15px;
}

#nav-icon1 span:nth-child(3) {
  top: 31px;
}

#nav-icon1.open span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*
L O G O
*/
.blcs-logo{
  z-index:999;
  float:right;
  display:block;
  width:180px;
  height:180px;
  background-image: url(../apple-touch-icon.png);
}

/* * * * * * * *
S E R V I C E S
* * * * * * * * */

.acordeon > li{
  border:2px solid #004960;
  font-size:1.5em;
  margin:1em;
}
.acordeon > li > p{
  color:#000;
  margin-top: 2em;
  margin-bottom:2em;

}
.acordeon > li > a{
  background-color:#004960;
  color: #FFF;
  padding-top:2em;
  padding-bottom: 2em;
}

.is-accordion-submenu-parent > a::after{
  border-color:#ffb651 transparent transparent;
}

.services1{
    padding-top:20px;
    margin-bottom:-60px;
    background: url(../img/services1.jpg);
    width:100%;
    float:left;
}

@media screen and (min-width: 40em) {
  .acordeon > li{
    margin-left:-1em !important;
  }
}

/* * * * * * *
F O O T E R *
* * * * * * * */

.footer-blcs{
  background-color:#004960;
  font-size:1.2em;
  height:100px;
  width:100%;
  color:#FFF;
}

/* * * * * * *
G E N E R A L
* * * * * * * */
.topo{
  background: url(../img/topography.png);
}
.lang{
  float:right;
  margin-right:2em;
  margin-top:1.5em;
  color:#fff;
}
.lang li{
    list-style-type: none;
}
.lang>ul>li>a{
  color:#fff;
}
.lang>ul>li>a:hover{
  color:#ffb55c;
}