@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    overflow-x: hidden;
    background-color: #ddd;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
    color: #000;
}
p{
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
    font-style: normal;
}
h1{
    
}
h2{
    
}
h3{
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    position: relative;
}
h3:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -4px;
    width: 150px;
    height: 3px;
    background-color: #314e86;
}
h4{
    
}
h5{
    
}
h6{
    
}
.container{
    max-width: 1200px;
    min-width: 320px;
    position: relative;
    margin: auto;
}
.mini-container{
    width: 90%;
    position: relative;
    margin: auto;
}
.menu-fixed{
    width: 100%;
    /*max-width: 1200px;*/
    position: fixed;
    top: 0;
    z-index: 1000;
}
/********    Header    ********/
#main-header{
    width: 100%;
    height: 50px;
    background-color: #314e86;
    display: table;
}
#main-header p{
    font-size: 16px;
    color: #FFF;
    line-height: 50px;
    text-align: center;
}
#main-header i{
    color: #FFF;
    width: 40px;
    text-align: center;
    display: inline-block;
}
#header-arriba{
    width: 100%;
    height: 90px;
    background-color: #FFF;
    display: table;
}
.c_logo{
    width: 30%;
    height: 90px;
    float: left;
}
.c_logo img{
    width: 250px;
}
.c_datos{
    width: 70%;
    height: 90px;
    float: right;
}
.grid-3{
    width: 33%;
    height: 90px;
    display: inline-block;
}
.grid{
    width: 97%;
    height: 80px;
    background-color: #FFF;
    position: relative;
    margin: auto;
    margin-top: 5px;
}
.grid h4{
    width: 75%;
    float: right;
    font-size: 20px;
    margin-top: -34px;
    display: table;
}
.grid a{
    font-size: 16px;
    width: 75%;
    float: right;
    margin-top: -6px;
    display: table;
}
.grid i{
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    border: solid 1px #222222;
    position: relative;
    top: 15px;
    display: table;
}
#cont-contact{
    width: 100%;
    height: 90px;
    position: relative;
    margin: auto;
}
#cont-contact a{
    width: 80%;
    height: 50px;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    line-height: 50px;
    position: relative;
    margin: auto;
    border-radius: 10px;
    margin-top: 20px;
    background-color: #314e86;
    display: table;
}
/********    Menu    ********/
#menu-header{
    width: 100%;
    height: 50px;
    background-color: #314e86;
    display: table;
}
#btn-menu{
    display: none;
}
header label{
    color: #FFF;
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: none;
}
.menu ul{
    display: inline-flex;
    list-style: none;
}
.menu ul ul{
    display: none;
}
.menu a{
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    transition: all .3s linear;
}
.menu a:hover{
    background-color: #4b70b8;
}
/********    Slider    ********/
div#slider{
    width: 100%;
    height: 480px;
    background-color: #FFF;
    overflow: hidden;
    margin: auto;
}
div#slider>div#mover{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-left: -100%;
}
div#slider>div#mover>article{
    width: 100%;
    height: 100%;
    position: relative;
}
div#slider>div#mover>article>img{
    width: 100%;
    height: auto;
    position: absolute;
}
div#slider>div#mover>article>div.grid-oscuro{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    position: absolute;
}
div#slider>div#mover>article>div.grid-oscuro>div.mini-container{
    width: 80%;
    position: relative;
    margin: auto;
}
div#slider>div#mover>article>div.grid-oscuro>div.mini-container h2{
    font-size: 60px;
    line-height: 65px;
    margin-top: 180px;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    display: block;
}
div#slider>div#mover>article>div.grid-oscuro>div.mini-container p{
    color: #FFF;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    display: block;
}
#anterior, #siguiente{
    width: 50px;
    height: 70px;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 60%;
    transform: translateY(-50%;);
    line-height: 70px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    font-family: monospace;
    cursor: pointer;
    color: #FFF;
}
#anterior:hover, #siguiente:hover{
    color: #314e86;
}
#anterior{
    left: 0px;
}
#siguiente{
    right: 0px;
}
/********    Quienes Somos    ********/
#con-somos{
    width: 100%;
    height: 500px;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #F1F1F1;
    display: table;
}
.grid-left{
    width: 50%;
    height: 590px;
    padding-top: 40px;
    float: left;
    display: table;
}
.sec-img{
    width: 65%;
    height: 350px;
    top: 10em;
    background-color: #314e86;
    position: relative;
    margin: auto;
}
.sec-img img{
    width: 100%;
    position: absolute;
    left: 50px;
    top: 30px;
}
.grid-right{
    width: 50%;
    height: 500px;
    padding-top: 40px;
    float: right;
    display: table;
}
.grid-right p{
    margin-top: 15px;
}
div.contenido{
    text-align: left;
    display: none;
    margin-top: -14px;
    background-color: #e6e7e9;
    padding: 20px;
}
div.contenido p{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
div.contenido i{
    width: 25px;
    text-align: center;
}
h1.btn{
    background-color: #314e86;
    text-align: left;
    padding: 10px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 2px;
    cursor: pointer;
}
h1.btn i{
   
}
h1.btn i:hover{
    transform: rotate(180deg);
}
div#acordeon div.acordeon:nth-child(1) div.contenido{
    display: block;
}
/********    Contador    ********/
#con-contador{
    width: 100%;
    height: 350px;
    background-attachment: fixed;
    background-image: url(../img/contador.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    display: table;
}
.con-fondoazul{
    width: 100%;
    height: 100%;
    background-color: rgba(49, 78, 134, 0.6);
    position: relative;
    display: table;
}
.grid-contador{
    width: 33%;
    height: 320px;
    margin-top: 15px;
    display: inline-block;
}
.grid-contador p{
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    line-height: 50px;
    margin-top: 33%;
    color: #FFF;
    text-align: center;
}
.grid-contador h5{
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #FFF;
    text-align: center;
}
/********    Equipo De Venta    ********/
#con-equipo{
    width: 100%;
    height: 200px;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #FFF;
    text-align: center;
    display: table;
}
div.gr-4{
    width: 100%;
    height: 120px;
    margin-top: 25px;
    position: relative;
    display: inline-block;
}
div.gr-4 img{
    width: 90%;
    position: relative;
    margin: auto;
    display: block;
}
div.gr-4>div.con-tapa{
    position: absolute;
    width: 90%;
    height: 0%;
    background-color: rgba(49, 78, 134, 0.6);
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    transition: all .3s linear;
}
div.gr-4:hover>div.con-tapa{
    height: 100%;
    opacity: 1;
}
div.gr-4>div#con-detalles{
    width: 100%;
    height: 125px;
    background-color: #FFF;
    position: relative;
    margin-top: 0px;
    display: table;
}
div.gr-4>div#con-detalles h4{
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-top: 5px;
    line-height: 30px;
    font-weight: 500;
}
div.gr-4:hover>div#con-detalles h4{
    color: #314e86;
}
/********    Testimonial   ********/
#con-testimonial{
    width: 100%;
    height: 550px;
    background-attachment: fixed;
    background-image: url(../img/testimonial.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: table;
}
#con-testimonial h2{
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: #FFF;
    text-align: center;
    display: block;
    margin-top: 50px;
}
ul,ol{
    list-style: none;
}
.slideshow{
    width: 100%;
    position: relative;
}
.slider li, ul{
}
.slider li{
    overflow: hidden;
}
.caption{
    width: 100%;
    height: 100%;
}
.slider img{
    height: 100%;
    height: 100%;
    display: table;
}
.slider .caption{
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 15px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    color: #000;
    z-index: 1;
}
.slider .caption h4{
    position: relative;
    display: block;
    left: 0px;
    color: #FFF;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 50px;
    font-weight: 400;
}
.slider .caption img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: block;
    margin-top: 30px;
}
.slider .caption p{
    position: relative;
    margin: auto;
    color: #FFF;
    width: 80%;
    margin-top: 0px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
.pagination{
    position: absolute;
    top: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}
.pagination li{
    font-size: 20px;
    color: #314e86;
    margin: 2px 5px;
    cursor: pointer;
    transition: all .3s ease;
}
.left, .right{
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    top: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 25px;
    cursor: pointer;
    transition: all .4s linear;
    z-index: 1000;
}
.left:hover, .right:hover{
    color: #74cbca;
}
.left{
    left: 20px;
}
.right{
    right: 20px;
}
/********    Marcas    ********/
#con-marcas{
    width: 100%;
    height: 250px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #FFF;
    display: table;
}
.grid_7{
    width: 14%;
    height: 200px;
    display: inline-block;
    text-align: center;
}
.grid_7 img{
    width: 100%;
    margin-top: 30px;
    display: table;
}

/********    Productos    ********/
#con-productos{
    width: 100%;
    height: 600px;
    height: 600px;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    text-align: center;
    background-color: #FFF;
    display: table;
}
#con-productos p{
    text-align: center;
    font-size: 16px;
}
.simplefilter li{
    color: #314e86;
    cursor: pointer;
    background-color: #FFF;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    margin: 8px;
    margin-top: 18px;
    margin-bottom: 20px;
    border: solid 1px #5b5b5b;
    position: relative;
    transition: all .3s ease;
}
.simplefilter li.active{
    border: solid 1px transparent;
    background-color: #314e86;
    color: #FFF;
}
.simplefilter li:hover{
    background-color: #314e86;
    box-shadow: 0px 2px rgba(0,0,0,0.5);
    color: #FFF;
}
.grid-33{
    width: 33%;
    height: 270px;
    margin: 5px;
    position: relative;
    display: block;
}
.grid-33:hover{
    background-color: #F1F1F1;
    
}
.grid-33 p{
    position: relative;
    margin: auto;
    font-size: 14px;
    line-height: 30px;
    margin-top: 10px;
    display: table;
}
.grid-33 img{
    width: 75%;
    max-width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
    display: table;
}
.grid-33 a{
    position: relative;
    margin: auto;
    font-size: 20px;
    text-decoration: none;
    color: #000;
    margin-top: 10px;
    line-height: 40px;
    display: table;
}
.grid-33 a:before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 3px;
    background-color: #74cbca;
}
/********    Anuncio    ********/
#con-anuncio{
    width: 100%;
    height: 450px;
    background-attachment: fixed;
    background-image: url(../img/banner2.jpg);
    background-position: center;
    background-size: cover;
    display: table;
}
#con-anuncio h5{
    font-size: 45px;
    line-height: 50px;
    margin-top: 130px;
    color: #FFF;
}
#con-anuncio h2{
    font-size: 45px;
    line-height: 50px;
    margin-top: 30px;
    color: #FFF;
}
#con-anuncio span{
    color: #2cdb52;
}
/********    Catalogo    ********/
#contenedor-catalogos{
    width: 100%;
    min-height: 350px;
    background-color: #FFF;
    display: table;
}
.grid-33_1{
    width: 32%;
    height: 350px;
    float: left;
    background-color: #314e86;
}
.grid-33_2
{
	width: 33%;
    height: 350px;
	float: left;
    background-color: #005ba9;
}
.grid-33_2 img
{
	width: 70%;
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-top: 25px;
    display: table;
}
.grid-33_2 p
{
	display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #FFF;
    line-height: 30px;
}
.grid-33_2 a
{
	width: 150px;
    height: 35px;
    background-color: #FFF;
    text-align: center;
    font-size: 16px;
    margin-top: 80px;
    line-height: 35px;
    color: #005ba9;
    display: table;
    position: relative;
    margin: auto;
}
.grid-33_3{
    width: 33%;
    height: 350px;
    float: right;
    background-color: #FFF;
}
.grid-33_1 img{
    width: 70%;
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-top: 25px;
    display: table;
}
.grid-33_2 img{
    width: 130px;
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-top: 25px;
    display: table;
}
.grid-33_3 img{
    width: 130px;
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-top: 25px;
    display: table;
}
.grid-33_1 p{
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #FFF;
    line-height: 30px;
}
.grid-33_3 p{
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #000;
    line-height: 30px;
}
.grid-33_1 a{
    width: 150px;
    height: 35px;
    background-color: #FFF;
    text-align: center;
    font-size: 16px;
    margin-top: 80px;
    line-height: 35px;
    color: #314e86;
    display: table;
    position: relative;
    margin: auto;
}
.grid-33_3 a{
    width: 150px;
    height: 35px;
    background-color: #fff200;
    text-align: center;
    font-size: 16px;
    margin-top: 80px;
    line-height: 35px;
    color: #fff;
    display: table;
    position: relative;
    margin: auto;
}
iframe
{
	width: 100%;
	height: 800px;
}
/********    Contactenos    ********/
#con-contactenos{
    width: 100%;
    height: 600px;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #FFF;
    display: table;
}
.left-contac{
    width: 50%;
    height: 550px;
    float: left;
    display: table;
}
.left-contac h4{
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
}
.left-contac p{
    font-size: 16px;
    line-height: 22px;
}
.left-contac i{
    position: absolute;
    left: 10px;
    top: 28px;
    z-index: 1000;
}
.right-contac h4{
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    margin-top: 10px;
}
.c_input{
    width: 100%;
    height: 40px;
    padding: 8px 10px;
    border: none;
    position: relative;
    outline: none;
    margin-top: 15px;
    color: #000;
    background-color: #d2d3d5;
    border-bottom: solid 2px #314e86;
}
.c_textarea{
    width: 100%;
    height: 150px;
    padding: 8px 10px;
    border: none;
    outline: none;
    position: relative;
    margin-top: 15px;
    color: #000;
    background-color: #d2d3d5;
    border-bottom: solid 2px #314e86;
}
.c_submit{
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    position: relative;
    margin-top: 15px;
    cursor: pointer;
    color: #FFF;
    background-color: #314e86;
}
.c-input-check {
    width: 100%;
    margin-bottom: 10px;
}
.c-input-check input {
    float: left;
    position: relative;
    top: 1px;
}
.cont_form_check {
    padding: 5px;
    background: #FFF;
    margin-top: 10px;
}
.data-text-info label {
    color: #000;
    line-height: 24px;
    text-align: left;
}
.c-input-check label {
    position: relative;
    left: 5px;
}
.right-contac{
    width: 50%;
    height: 550px;
    float: right;
    display: table;
}
.grid_100{
    width: 100%;
    height: 150px;
    margin-top: 10px;
    display: table;
}
.grid_100 h4{
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
    color: #314e86;
}
.grid_100 i{
    width: 30px;
    text-align: center;
}
.grid_100 p{
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin-top: 15px;
}
#con-mapas{
    width: 100%;
    height: 550px;
    background-color: #F1F1F1;
    display: table;
}
.mapa{
    width: 100%;
    height: 550px;
    background-position: center;
    display: table;
}
/********    Footer    ********/
#main-footer{
    width: 100%;
    height: 330px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    background-color: #213047;
    display: table;
}
.footer_gr{
    width: 23%;
    height: 576px;
    text-align: left;
    display: inline-block;
    left: left;
}
.footer_gr img{
    width: 100%;
    position: relative;
    margin: auto;
    margin-top: 10px;
    display: table;
}
.footer_gr h5{
    width: 100%;
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    display: table;
    text-align: center;
    position: relative;
    margin: auto;
}
.footer_gr h5:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -4px;
    width: 150px;
    height: 3px;
    background-color: #314e86;
}
.c_1{
    width: 100%;
    height: 30px;
    margin-top: 8px;
    border: none;
    color: #fff;
    padding: 8px 10px;
    background-color: #1a283d;
    display: table;
}
.c_2{
    width: 100%;
    height: 80px;
    margin-top: 8px;
    padding: 8px 10px;
    color: #fff;
    border: none;
    background-color: #1a283d;
    display: table;
}
.c_3{
    width: 50%;
    height: 35px;
    margin-top: 8px;
    color: #FFF;
    cursor: pointer;
    background-color: #314e86;
    border: none;
    display: table;
    transition: all .3s linear;
}
.c_3:hover{
    background-color: #5077c3;
}
.footer_gr p{
    font-size: 14px;
    color: #FFF;
    text-align: left;
    display: table;
}
.footer_gr a{
    text-align: right;
    font-size: 14px;
    margin-left: 8px;
    color: #FFF;
}
.footer_gr i{
    width: 30px;
    height: 15px;
    text-align: center;
    color: #FFF;
    line-height: 22px;
    margin-top: 16px;
    font-size: 20px;
}
#contenedor-redes{
    width: 100%;
    height: 220px;
    margin-top: 10px;
    display: table;
}
#contenedor-redes i{
    font-size: 30px;
}
#contenedor-redes a{
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border: solid 2px #FFF;
    margin-top: 15px;
    display: inline-block;
}
#con-copy{
    width: 100%;
    height: 40px;
    background-color: #1a283d;
    display: table;
}
#con-copy p{
    font-size: 16px;
    color: #FFF;
    line-height: 40px;
    text-align: center;
}
#con-copy a {
    color: #FFF;
}
.ir-arriba{
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    right: 30px;
    bottom: 20px;
    cursor: pointer;
    background-color: #314e86;
    color: #FFF;
    text-align: center;
    position: fixed;
    display: none;
}
/********    Gracias    ********/
#contenedor-gracias{
    width: 100%;
    height: 600px;
    background-color: #FFF;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
#contenedor-gracias i{
    font-size: 100px;
    line-height: 120px;
    color: #5b5b5b;
}
#contenedor-gracias p{
    font-size: 16px;
    line-height: 22px;
}
.contenedor-header {
    width: 90%;
    padding: 20px;
    min-height: 500px;
    display: table;
    margin: auto;
}
.contenedor-header h3 {
    margin-bottom: 20px;
}
.contenedor-header h5 {
    font-weight: 600;
    line-height: 24px;
    margin-top: 10px;
}
.contenedor-header h4 {
    font-weight: 900;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 1px;
}
.contenedor-header p {
    font-size: 14px;
    line-height: 26px;
}
@media screen and (max-width: 1100px){
    .grid h4{
        width: 70%;
    }
    .grid a{
        width: 70%;
    }
    #cont-contact a{
        width: 70%;
    }
    div.gr-4{
        height: 320px;
        
    }
    div#slider{
        height: 450px;
    }
}
@media screen and (max-width: 1000px){
    div#slider{
        height: 400px;
    }
    div#slider>div#mover>article>div.grid-oscuro>div.mini-container h2{
        margin-top: 140px;
    }
    #anterior, #siguiente{
        top: 55%;
    }
}
@media screen and (max-width: 950px){
    .c_logo{
        width: 100%;
        display: table;
    }
    .c_datos{
        width: 100%;
        display: table;
    }
    header label{
        display: block;
    }
    .menu{
        position: absolute;
        width: 100%;
        left: 0;
        top: 50px;
        transition: all .3s linear;
        transform: translateX(-100%);
        z-index: 1000;
    }
    .menu ul{
        display: block;
        background-color: #314e86;
    }
    .menu a{
        box-shadow: 0px 2px #FFF;
    }
    #btn-menu:checked ~ .menu{
        transform: translateX(0%);
    }
    .grid-left{
        width: 100%;
    }
    .sec-img{
        height: 500px;
        top: 5px;
    }
    .grid-right{
        width: 100%;
    }
    div.gr-4{
        width: 50%;
        float: left;
        height: 150px;
        display: table;
    }
    .grid_7{
        width: 50%;
        float: left;
        display: table;
    }
    .grid-contador{
        width: 100%;
        height: 130px;
        display: table;
    }
    .grid-contador p{
        margin-top: 5%;
    }
    .footer_gr{
        width: 50%;
        height: 350px;
        float: left;
        display: table;
    }
    .left-contac{
        width: 100%;
    }
    .right-contac{
        width: 100%;
    }
    #con-anuncio h5{
        font-size: 20px;
        text-align: center;
        line-height: 30px;
        margin-top: 170px;
    }
    #con-anuncio h2{
        font-size: 20px;
        text-align: center;
    }
    div#slider{
        height: 350px;
    }
    div#slider>div#mover>article>div.grid-oscuro>div.mini-container h2{
        margin-top: 140px;
    }
    #anterior, #siguiente{
        top: 65%;
    }
    .grid-33_1,
    .grid-33_2,
    .grid-33_3{
        width: 100%;
        display: table;
    }
}
@media screen and (max-width: 800px){
    .grid-left{
        height: 450px;
        display: table;
    }
    .sec-img{
        height: 400px;
    }
    #con-testimonial{
        height: 600px;
        display: table;
    }
    .slider .caption p{
        width: 90%;
    }
    .c_logo img{
        width: 250px;
        position: relative;
        margin: auto;
        display: block;
    }
    .grid-33{
        width: 100%;
        height: 250px;
        display: table;
    }
    div#slider{
        height: 300px;
    }
    div#slider>div#mover>article>div.grid-oscuro>div.mini-container h2{
        margin-top: 100px;
        font-size: 28px;
        margin-top: 90px;
    }
    div#slider>div#mover>article>div.grid-oscuro>div.mini-container p{
        font-size: 14px;
        margin-top: -15px;
        line-height: 22px;
    }
    #anterior, #siguiente{
        top: 60%;
    }
}
@media screen and (max-width: 650px){
    div#slider{
        height: 250px;
    }
}
@media screen and (max-width: 600px){
    .grid-3{
        width: 100%;
    }
    .grid h4{
        width: 80%;
    }
    .grid a{
        width: 80%;
    }
    .grid-left{
        height: 300px;
    }
    .sec-img{
        height: 300px;
    }
    div.gr-4{
        width: 100%;
        float: left;
        height: 150px;
        display: table;
    }
    .grid_7{
        width: 100%;
        height: 200px;
        float: left;
        display: table;
    }
    .grid_7 img{
        width: 100%;
        margin-top: 0;
        position: relative;
        margin: auto;
    }
    .footer_gr{
        width: 100%;
        height: 250px;
        float: left;
        display: table;
    }
    div#slider{
        height: 250px;
    }
    div#slider>div#mover>article>img{
        width: 100%;
        height: 100%;
    }
    #anterior, #siguiente{
        top: 90%;
    }
}
@media screen and (max-width: 450px){
     .sec-img{
        height: 230px;
    }   
}
    
