* {
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    margin: 0;
    overflow:hidden;
    font-family: helvetica, arial, sans-serif;
    font-weight: light;
    color: antiquewhite;
    background-color: #196c8b;
}

.container {
    position: relative;
    height: 100%;
    width: 100%;
    left: 0;
    
    -webkit-transition:  left 0.4s ease-in-out;
    -moz-transition:  left 0.4s ease-in-out;
    -ms-transition:  left 0.4s ease-in-out;
    -o-transition:  left 0.4s ease-in-out;
    transition:  left 0.4s ease-in-out;
    
    background-image: url('../images/fondo_wb.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.container.open-sidebar {
    left: 240px;
}

#accordian {
    /*Some cool shadow and glow effect*/
    /*
    box-shadow: 
        0 5px 15px 1px rgba(0, 0, 0, 0.6), 
        0 0 200px 1px rgba(255, 255, 255, 0.5);
    */
}

.swipe-area {
    position: absolute;
    width: 50px;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 0;
}

#sidebar {
    background: #005b78;
    position: absolute;
    width: 240px;
    height: 100%;
    left: -240px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-top: 35px;
    overflow-y: auto;
}

#sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#sidebar ul li {
  margin: 0;
}

#sidebar ul li a {
    padding: 15px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: light;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #196c8b;
    -webkit-transition:  background 0.3s ease-in-out;
    -moz-transition:  background 0.3s ease-in-out;
    -ms-transition:  background 0.3s ease-in-out;
    -o-transition:  background 0.3s ease-in-out;
    transition:  background 0.3s ease-in-out;
}

#sidebar ul li:hover a {
    background: #196c8b; 
/*	background: linear-gradient(#196c8b, #09465d);*/
}

.main-content {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative;
    overflow-y: scroll;
}

.main-content .content{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-left: 60px;
    padding-top: 40px;
    width: 100%;
}

.main-content .content h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.main-content .content h4 {
    font-size: 12px;
    margin-bottom: 20px;
    color: #9bcbdf;
    font-weight: bold;
}

.main-content .content h4 a {
    color: #fff;
}

.main-content .content p {
    width: 70%;
    line-height: 130%;
    font-size: 14px;
    max-width: 630px;
}

.main-content .content p a {
    color:#9bcbdf;
    text-decoration: none;
}

.main-content .content p a:hover {
    color:#fff;
    text-decoration: underline;
}

.main-content .content ul li {
    list-style-type: none;
    line-height: 26px;
}

.main-content .content ul li a {
    color: #9bcbdf;
    text-decoration: none;
}

.main-content .content ul li a:hover {
    color: #fff;
}

.main-content #sidebar-toggle {
    border-radius: 3px;
    display: block;
    position: relative;
    padding: 10px 7px;
    margin-top: 30px;
    float: left;
}
.main-content #sidebar-toggle .bar{
    display: block;
    width: 22px;
    margin-bottom: 4px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    overflow-y: auto;
}
.main-content #sidebar-toggle .bar:last-child{
    margin-bottom: 0;   
}

/*ACORDEÓN*/
/*links*/
#accordian ul ul li a {
	color: white;
	text-decoration: none;
	font-size: 11px;
	line-height: 27px;
	display: block;
	padding: 0 50px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
    border: none;
}

/*hover effect on links*/
#accordian ul ul li a:hover {
	background: #005b78;
	border-left: 5px solid #fff;
}

/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}

#accordian li.active ul {
	display: block;
}

#isologo {
    width: 100%;
    height: 100px;
    display: block;
    margin-bottom: 40px;
}

#iso {
    width:  78px;
    height: 100px;
    cursor: pointer;
    float: left;
    overflow: hidden;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -ms-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    background-image: url('../images/wb-logo.png');
    background-position: top left;
    background-repeat: no-repeat;
}

#iso:hover {
    width: 260px;
}

#logo {
    width: 300px;
    height: 50px;
    background-color: blueviolet;
    -webkit-transition: visibility 0.8s ease-in-out;
    -moz-transition: visibility 0.8s ease-in-out;
    -ms-transition: visibility 0.8s ease-in-out;
    -o-transition: visibility 0.8s ease-in-out;
    transition: visibility 0.8s ease-in-out;
    visibility: hidden;
}

/* SLIDER HOME */

@keyframes slidy {
    0% { left: 0%; }
    20% { left: 0%; }
    25% { left: -100%; }
    45% { left: -100%; }
    50% { left: -200%; }
    70% { left: -200%; }
    75% { left: -300%; }
    95% { left: -300%; }
    100% { left: -400%; }
}

div#slider { 
    overflow: hidden; 
}

div#slider figure img { 
    width: 20%; 
    float: left; 
}

div#slider figure { 
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 30s slidy infinite; 
}

/* prueba */
.box {
    width: 25%;
    padding-bottom: 25%;
    text-align: center;
    vertical-align: middle;
    float: left;
    position: relative;
}
.boxInner {
    position: absolute;
    top:5px;
    right:5px;
    bottom:5px; 
    left: 5px;
}
.boxInner img {
    width: 100%;
}

/* FORMULARIO DE CONTACTO */
.campo {
    border: 2px solid #196c8b;
    color: #fff;
    background: none;
    padding: 10px;
    font-size: 12px;
    display: block;
    width: 40%;
    margin-bottom: 20px;
    font-family: helvetica, arial, sans-serif;
    font-weight: light;
}

.textArea {
    min-height: 100px;
}

#map {
    height: 200px;
}

.btnFade {
	opacity: .3;
    transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -webkit-transition: opacity 1s ease-out;
    cursor: pointer;
}

.btnFade:hover {
	opacity: 1;
}

#marcapais {
    position: relative; 
    margin-top: 30px;
}

#marcapais img {
    width: 200px;
}

/* RESPONSIVO */

@media only screen and (max-width : 480px) {
   /* Smartphone view: 1 tile */
   .box {
      width: 100%;
      padding-bottom: 100%;
   }
    .campo {
        width: 80%;
    }
}
@media only screen and (max-width : 650px) and (min-width : 481px) {
   /* Tablet view: 2 tiles */
   .box {
      width: 50%;
      padding-bottom: 50%;
   }
    .campo {
        width: 80%;
    }
}
@media only screen and (max-width : 1050px) and (min-width : 651px) {
   /* Small desktop / ipad view: 3 tiles */
   .box {
      width: 33.3%;
      padding-bottom: 33.3%;
   }
    .campo {
        width: 80%;
    }
}
@media only screen and (max-width : 1290px) and (min-width : 1051px) {
   /* Medium desktop: 4 tiles */
    .box {
      width: 25%;
      padding-bottom: 25%;
    }
    .campo {
        width: 60%;
    }
}
