﻿body {
      -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  color: #666666;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;

}

 
        /************************image hover effect*******************/
        .item-img-wrap {
            position: relative;
            text-align: center;
            overflow: hidden;
        }

            .item-img-wrap img {
                -moz-transition: all 200ms linear;
                -o-transition: all 200ms linear;
                -webkit-transition: all 200ms linear;
                transition: all 200ms linear;
                width: 130%;
            }

        .item-img-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
        }

            .item-img-overlay span {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: url(../../img/plus.png) no-repeat center center rgba(0, 0, 0, 0.7);
                -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
                filter: alpha(opacity=0);
                opacity: 0;
                -moz-transition: opacity 250ms linear;
                -o-transition: opacity 250ms linear;
                -webkit-transition: opacity 250ms linear;
                transition: opacity 250ms linear;
            }

        .item-img-wrap:hover .item-img-overlay span {
            opacity: 1;
        }

        .item-img-wrap:hover img {
            -moz-transform: scale(1.1);
            -o-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

        .center-heading {
            text-align: center;
            margin-bottom: 40px;
        }

        .center-line {
            display: inline-block;
            width: 70px;
            height: 1px;
            border-top: 1px solid #bbb;
            /* border-bottom: 1px solid $skincolor; */
            margin: auto;
        }

        h2 {
            font-size: 2.6em;
            font-weight: 700;
            line-height: 42px;
            margin: 0 0 32px 0;
        }

/* Contenedor general */
#slider-wrapper {
position: relative;
width: 1050px;
max-width: 100%;
margin: 0 auto;
padding: 0 10px;
font-family: arial, sans-serif;
font-size: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* Contenedor slider */
#slider { 
position: relative;
width: 100%;
padding-bottom: 35%; /* Aspect ratio */
overflow: hidden;
border:10px solid #333;
border-radius: 5%/10%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#slider > a {
position:absolute;
top:0;
left:0;
width: 100%;
min-height: 100%;
}
/* Ajuste de las imágenes */
#slider img {
width: 100%;
min-height: 100%;
position: absolute;
margin:0;
padding:0; 
border:0;
}
/* Texto que acompaña a cada imagen */
#slider p {
position: absolute;
bottom: 5%;
left: 0;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 80%;
height: 18px;
margin:0;
padding: 5px 0;
border-radius: 0 20px 20px 0;
color: #eee;
background: #333;
font-size: 18px;
line-height: 18px;
text-align:center;
}
/* Flechas de navegación */
a.mas, a.menos {
position: absolute;
top: 50%;
left: 10px;
z-index: 10;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
font-size: 30px;
color: white;
background: #333;
text-decoration: none;
}
a.mas {
left: 100%;
margin-left: -40px;
}


