@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500;600;700&family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap');

/*VARIABLES*/
:root {
    /*colores*/
    --negro: #000;
    --blanco: #fff;
    --gris: #333;
    --grisbajo: #ccc;
    --cafeheader: #895428;
    --cafebajo: #a06c3f;
    --cafeclaro: #b88b5c;
    --amarillo: #d69a38;
    --beige: #e8cb9a;
    --rosa: #ffedba;

    /*tipografia*/
    --fontprim: 'Roboto Mono', monospace;
    --fontsec: 'Roboto Slab', serif;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.ancho {
    max-width: 1200px;
    margin: auto;
    /*border: 1px red solid;*/
}
body {
    font-size: 16px;
    line-height: 25px;
    font-family: var(--fontsec);
    color: var(--gris);
}

/*FLECHA*/
.flecha {
    position: fixed;
    background-color: var(--cafeheader);
    border-radius: 50%;
    padding: 20px 25px;
    color: white;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    font-size: 22px;
    box-shadow: #ccc 0px 0px 10px;
    cursor: pointer;
}

/*CONTENIDO*/
header {
    z-index: 99;
    position: fixed;
    margin: auto;
    left: 0;
    transition: all 0.8s;
    padding: 0px 30px;
}

header.abajo {
    background: var(--cafeheader);
    opacity: 90%;
}
.cabecera{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head {
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.conheader {
    width: 20%;
    /*border: #000 1px solid;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width: 95%;
}
.logo img {
    width: 100%;
    padding-left: 25px;
}
.contmenu {
    /*  border: #28557a 1px solid;*/
    padding: 20px;
    display: none;
}
.conheader i {
    width: 20%;
    text-decoration: none;
    background-color: transparent;
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    font-size: 40px;
}
/*MENU*/
nav{
    width: 70%;
    /*border: var(--negro) 1px solid;*/
    font-family: var(--fontprim);
    font-size: 18px;
}
nav ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
nav ul li a{
    color: var(--blanco);
    text-decoration: none;
    background-color: transparent;
    padding: 30px 25px;
    display: inline-block;
    transition: all 0.5s;
}
nav ul li a:hover{
    color: var(--blanco);
    background-color: rgba(255, 255, 255, 0.3);
}

/* SLIDE */
/*------ parte del slide de fotos------*/

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}
.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}
.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}
.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}
/*  fin */

.callbacks_container {
    position: relative;
    margin: auto;
}
.callbacks_container img {
    height: 700px;
    object-fit: cover;
}
.callbacks_container ul {
    margin: 0px;
}
.caption {
    position: absolute;
    z-index: 5;
    color: var(--blanco);
    left: 5%;
    top: 20%;
    width: 50%;
    padding: 15px 20px 15px 20px;
}
.caption h3{
    font-size: 45px;
    line-height: 50px;
    font-family: var(--fontprim);
    font-weight: bolder;
}
.caption p {
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
    text-shadow: 0px 0px 10px var(--gris);
}
.callbacks_nav {
    position: absolute;
    top: 52%;
    left: 20px;
    opacity: 1;
    z-index: 10;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    height: 50px;
    width: 40px;
    color: #333;
    background: transparent url("imagenes/flechas.png") no-repeat left top;
    margin-top: -45px;
}
.callbacks_nav.next {
    left: auto;
    background-position: right top;
    right: 20px;
}
.btnslide {
    text-decoration: none;
    display: inline-block;
    margin: auto;
    border: var(--blanco) 1px solid;
    background-color: transparent;
    color: var(--blanco);
    text-shadow: 0px 0px 10px #ccc;
    font-size: 20px;
    font-family: var(--fontprim);
    font-weight: bold;
    padding: 20px 30px;
    transition: all 0.5s;
}
.btnslide:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--gris);
}

/*SECCION SOMOS*/
.contsomos{
    margin: 20px;
}
.titulos h1{
    text-align: center;
    font-size: 38px;
    margin-top: -80px;
    padding: 100px 0px 15px 0px;
    font-family: var(--fontprim);
}
.titulos hr{
    background-color: var(--cafebajo);
    width: 200px;
    border: var(--cafebajo) 3px solid;
    margin: auto;
}
.garra{
    text-align: center;
    color: var(--cafeheader);
    font-size: 28px;
}
.quienesomos{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    /*border: #000 1px solid;*/
}
.quienesomos figure{
    width: 50%;
    height: 50%;
    position: relative;
    overflow: hidden;
}
.quienesomos img{
    width: 100%;
}
.whats{
    position: absolute;
    background-color: var(--cafebajo);
    opacity: 70%;
    width: 100%;
    height: 99%;
    z-index: 3;
    transition: all 0.5s;
    top: 0;
    left: -100%;
    text-align: center;
}
.icn{
    color: var(--blanco);
    font-size: 45px;
    padding-top: calc(50% - 22px);
}
.quienesomos figure:hover .whats{
    left: 0;
}
.quienesomos article{
    width: 50%;
    padding: 20px 30px;
    text-align: justify;
    line-height: 32px;
    font-size: 20px;
    position: relative;
}
.quienesomos h3{
    font-size: 32px;
    padding-bottom: 12px;
    color: var(--amarillo);
    text-shadow: 0px 0px 5px #ccc;
    text-transform: uppercase;
}
.btninfo{
    text-decoration: none;
    display: inline-block;
    margin: auto;
    border-radius: 40px;
    font-family: var(--fontprim);
    border: var(--amarillo) 2px solid;
    background-color: transparent;
    color: var(--cafeheader);
    font-weight: 700;
    padding: 10px 30px;
    transition: all 1s;
}
.btninfo:hover{
    border: var(--cafeheader) 2px solid;
    background-color: var(--cafeheader);
    color: var(--blanco);
    transition: all 0.5s;
}
/*MODAL VIDEO2*/
/*MODAL*/
/*fondo negro*/
.fondomodal {
    display: none;
    padding: 100px 10px;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; */
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.8);
}
  /*tamano del modal*/
.contenidomodal {
    background-color: var(--blanco);
    border-radius: 15px;
    margin: auto;
    padding: 20px;
    width: 50%;
    position: relative;
}
.cerrarmodal {
    cursor: pointer;
    color: var(--amarillo);
    font-size: 26px;
    transition: all 0.5s;
    position: absolute;
    top: -1%;
    left: 96%;
}
.cerrarmodal:hover {
    color: var(--cafeheader);
}
.contenidomodal h3{
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    padding: 15px;
    font-family: var(--fontprim);
    padding-bottom: 15px;
    color: var(--cafeheader);
}

.video{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--amarillo);
    border: 2px solid transparent;
    box-shadow: 0px 0px 1px var(--grisbajo);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 2%;
    left: 60%;
    transition: all .5s;
    text-decoration: none;
}
.video i{
    font-size: 35px;
    color: var(--blanco);
}
.video:hover{
    background-color: transparent;
    border: 2px solid var(--cafeheader);
    box-shadow: 0px 0px 10px var(--grisbajo);
}
.video:hover i{
    color: var(--amarillo);
}
/*VIDEO 100% RESPONSIVE*/
.contenidomodal article{
    max-width: 95%;
    margin: 0 auto;
}
#videomodal{
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;/*nos da proporcion de 16:9*/
    position: relative;
}
#videomodal iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*CONT SERVICIOS*/
.contservicios{
    clip-path: polygon(0 0, 100% 0, 98% 25%, 100% 50%, 98% 77%, 100% 100%, 0 100%, 2% 78%, 0 52%, 2% 24%);
    background-color: var(--cafeheader);
}
.serv{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 20px;
    gap: 10px;
}
.serv article{
    width: 280px;
    background-color: var(--blanco);
    padding: 20px;
    box-shadow: 0px 0px 5px #333;
    border: 3px var(--cafeheader) solid;
    color: var(--negro);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
}
.serv article h1{
    color: var(--rosa);
    font-size: 45px;
    padding: 20px 0px 30px 0px;
    z-index: 25px;
}
.iconos{
    padding-top: 20px;
    font-size: 45px;
    color: var(--amarillo);
}
.serv aside{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.serv aside h2{
    color: var(--amarillo);
    font-family: var(--fontprim);
}
.serv aside h4{
    color: var(--cafeheader);
    font-family: var(--fontprim);
    font-size: 15px;
}
.clipart{
    width: 80px;
    height: 100px;
    clip-path: polygon(50% 0, 100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    background-color: var(--amarillo);
    position: absolute;
    z-index: 25;
    top: 0%;
    right:0%;
    transition: all 0.8s;
}
.clipart p{
    font-size: 50px;
    font-weight: 900;
    color: var(--blanco);
    display: flex;
    justify-content: center;
    padding-top: 40%;
}
.serv article:hover{
    box-shadow: 0px 0px 10px #333;
    border: 3px var(--blanco) solid;
}
.serv article:hover h1{
    color: var(--amarillo);
}
.serv article:hover .clipart{
    background-color: var(--cafeheader);
    color: var(--amarillo);
}

/*PARALLAX*/
.parrallaxas {
    background-image: url(imagenes/parallax3.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding: 20px;
    position: relative;
 
  }
  .parrallaxas::before {
    content: "";
    width: 100%;
    height: 250px;
    background: rgb(137,84,40);
background: linear-gradient(151deg, rgba(137,84,40,0.87718837535014) 16%, rgba(214,154,56,0.20211834733893552) 100%);
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
  }
  @keyframes ani_1 {
    from {
      transform: scale(1.3);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  .info2 {
    width: 80%;
    position: absolute;
    z-index: 5;
    color: white;
    text-shadow: 0px 0px 5px #333;
    transform: translate(0%, 0%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .info2 article{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .info2 i{
    color: var(--blanco);
    font-size: 45px;
  }
  .info2 i:hover{
    color: var(--amarillo);
    font-size: 45px;
  }
  /*ENTRENADORES*/
  .contTeam{
    background-color: var(--amarillo);
    padding: 15px;
  }
  /* Tiny Carousel */
  #slider1 {
    width: 80%;
    margin: auto;
    height: 450px;
    overflow: hidden;
    position: relative;
    padding: 20px 10px 10px;
    border: 3px transparent solid;
    border-radius: 15px;
    background-color: var(--blanco);
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
}
.contenedor_flechas{
    margin-top: 10px;
}
#slider1 .viewport {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    /*border: 1px green solid;*/
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

#slider1 .contenedor_flechas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 90%;
    /*border: 1px red solid;*/
}
.contenedor_flechas a{
    border: 2px var(--cafeheader) solid;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: all .5s;
}
.contenedor_flechas a:hover{
    border: 2px var(--amarillo) solid;
    background-color: var(--amarillo);
}
.contenedor_flechas a:hover i{
    color: white;
}
.prev{
    display: block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
.prev i,.next i,.correo i{
    font-size:32px;
    color: var(--amarillo);
    transition: all .5s;
}
.next {
    display: block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.contenedorbtn a:hover{
    background-color: transparent;
}

#slider1 .disable {
    visibility: hidden;
}

#slider1 .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 150px;
    left: 0;
    top: 0;
    text-align: center;
}

#slider1 .overview li {
    float: left;
    margin: 0 26px 0 0;
    padding: 1px;
    height: 320px;
    border: 2px transparent solid;
    border-radius: 10px;
    width: 250px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s;
 }
 #slider1 .overview li:hover {
    border: 2px var(--cafeheader) solid;
    box-shadow: 0px 0px 10px #333;
 }
 #slider1 .overview li:hover img {
    filter: brightness(90%);
 }
 #slider1 .overview li img{
    border-radius: 10px;
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: brightness(60%);
 }
 .gris{
    color: gray;
 }
 .redes{
    max-width: 240px;
    /*border: 1px red solid;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
 }
 .redes i{
    border: 2px transparent solid;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: all .5s;
    font-size:18px;
    color: black;
    border-radius: 5px;
    transition: all 0.5s;
 }
 .redes i:hover{
    border: 2px var(--amarillo) solid;
    background-color: var(--amarillo);
    color: white;
 }
 .redes a{
    display: block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
/*GALERIA*/
.galeria{
    display: flex;
    flex-wrap: wrap;
}
.galeria a {
    width: 33.33%;
    position: relative;
    overflow: hidden;
}
.galeria a img{
    width: 100%;
    height: 100%;
    filter: brightness(50%);
}

.galeria a img:hover{
    filter: brightness(100%);
}
.icongaleria{
    position: absolute;
    font-size: 40px;
    color: var(--blanco);
    z-index: 2;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    opacity: 50%;
}
.galeria a:hover .icongaleria{
    top: -100%;
}
/*BLOG*/
.contblog {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 30px 0px;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    font-family:var(--fontsec);
   /* border: 1px red solid;*/
  }
.contblog  article {
    /*position: relative;*/
    text-align: center;
    max-width: 350px;
    box-shadow: 0px 0px 10px #ccc;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
  }
.contblog  figure{
    width: 300px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
.fotosEscala  img{
    width: 100%;
    border-radius: 10px;
    transform: scale(1);
    transition: all 0.5s;
  }
  .fotosEscala:hover  img{
    transform: scale(1.5);

  }

.contblog  h3 {
    padding: 25px 20px 10px 20px;
    text-align: justify;
  }
.contblog  article p {
    text-align: left;
    padding: 10px 15px 15px 20px;
}
.contblog  a {
    text-decoration: none;
    padding: 18px 180px 18px 15px;
    background-color: #f6f7fc;
    color: black;
    display: inline-block;
    font-weight: bold;
    position: relative;
    /*left: 0;
    top: 100%;*/
  }
.subbtn{
    font-size: 15px;
}
.flechanaranja{
    width: 56px;
    height: 56px;
    background-color:var(--amarillo);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}
.flechanaranja:hover{
    background-color:var(--cafeheader);
}
.iconoflecha{
    font-size: 18px;
    color: #fff;
}
.fechac{
    color: var(--cafeheader);
    font-weight: 800;
}
.news{
    font-size: 25px;
    text-align: center;
    margin: auto;
    color: var(--cafeheader);
    font-weight: 900;
    font-family: var(--fontprim);
}
.new{
    margin: auto;
    width: 5%;
    border: var(--amarillo) 2px solid;
    background-color: var(--amarillo);
}
/*ACORDEON*/
.cajaacordeon{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border: var(--amarillo) 3px solid;
        box-shadow: 0px 0px 6px #333;
}
.contacordeon{
    width: 45%;
    padding: 20px;
    /*border: 1px green solid;*/
}
.contacordeon h1{
    text-align: left;
    font-size: 30px;
    font-family: var(--fontprim);
}
.acordeon {
    width: 100%;
    margin: auto;
    border-bottom: 1px #ccc solid;
    border-top: 1px #ccc solid;
  }
.acordeon_titulo {
  color: black;
  background: transparent;
  padding: 20px;
  font-size: 18px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content:flex-start;
  align-items:stretch;
}
.acordeon_titulo h4{
    padding-left: 25px;
    font-family: var(--fontsec);
}
.acordeon_contenido {
  display: none;
  margin: 0;
  padding: 5px 40px 20px 30px;
  text-align: left;
  line-height: 28px;
  font-size: 15px;
  color: gray;
}
.iconos2{
  position: relative;
  padding:0;
  width:15px;
  height:15px;
}
.iconos2 i{
  padding: 5px;
  background:var(--cafeheader);
  color: white;
  border-radius: 5px;
}
.mas1, .mas2, .mas3, .mas4{
    position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    transition: all .3s;
  }
  .menos1, .menos2, .menos3, .menos4{
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
  }
  .desaparecer{
    opacity: 0;
  }
 /*fin acordeon*/

/*VIDEO 100% RESPONSIVE*/
.contvideor {
    background-color: var(--blanco);
    border-radius: 15px;
    margin: auto;
    padding: 20px;
    width: 55%;
    position: relative;
}
.contvideor article{
    max-width: 95%;
    margin: 0 auto;
}
#videores{
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;/*nos da proporcion de 16:9*/
    position: relative;
}
#videores iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*CONTACTOS*/
.contfor{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 25px;
}
.formjs{
    width: 80%;
}
.cont_nombres{
    width: 20%;
    display: inline-block;
    vertical-align: top;
    text-align: right;
    padding-right: 15px;
    line-height: 55px;
  }
  .cont_elem{
    width: 60%;
    display: inline-block;
    vertical-align: top;
  }
  .campos{
    border-radius: 10px;
    border: 2px var(--amarillo) solid;
    padding: 15px;
    width: 100%;
    margin-bottom: 10px;
  }
  textarea{
    width: 400px;
    height:150px;
    border-radius: 10px;
    border: 1px #999 solid;
    padding: 10px;
    resize: none;
  }
  #enviar{
    padding: 10px 30px;
    background-color: var(--amarillo);
    color: white;
    border: 2px solid var(--amarillo);
    border-radius: 10px; 
    font-weight: 700;
    font-size: 15px;
    transition: all 0.5s;
  }
  #enviar:hover{
    padding: 10px 30px;
    background-color: var(--cafeheader);
    color: var(--blanco);
    border: 2px solid var(--cafeheader);
    border-radius: 10px; 
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0px 0px 8px #333;
  }
  #borrar{
    padding: 10px 30px;
    background-color: transparent;
    border: 2px var(--cafeheader) solid;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.5s;
    color: var(--cafeheader);
  }
  #borrar:hover{
    background-color: transparent;
    border: 2px var(--amarillo) solid;
    box-shadow: 0px 0px 8px #333;
  }
  .rojo{
    color: red;
  }
 /*footer*/
 footer{
    background-color: var(--cafeheader);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 50px 10px 50px;
    text-align: center;
    color: white;
 }
 .pie{
    padding: 25px;
    max-width: 400px;
 }
 .pie img{
    width: 100%;
 }
 .redes2{
    width: 40%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.redes2 i{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--amarillo);
    color: white;
    padding-top: 7px;
    cursor: pointer;
}
.redes2 i:hover{
    background-color: var(--blanco);
    color: var(--amarillo);
}
/*REAJUSTE*/
@media screen and (max-width: 960px ){
    header {
        z-index: 99;
        position: fixed;
    }
    header.abajo {
        background-color: var(--amarillo);
        opacity: 90%;
    }
    .head {
        background-color: var(--cafeheader);
        opacity: 90%;
        width: 100%;
    }
    .cabecera{
        flex-direction: column;
    }
    .conheader{
        width: 100%;
        padding: 0px;
    }
    .contmenu {
        padding: 10px;
        display: block;
    }
    .logo {
        width: 70%;
    }
    .logo img {
        width: 100%;
        padding-left: 25px;
    }
    nav{
        width: 100%;
        display: none;
        opacity: 90%;
        padding-bottom: 10px;
    }
    nav ul{
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
    nav li{
        width: 100%;
    }
    nav ul li a{
        border: none;
        border-bottom: white 2px dotted;
        padding: 15px 25px;
        display: block;
        color: white;
    }
    .caption{
        left: 10%;
        top: 30%;
        width: 80%;
        padding: 15px 20px 15px 20px;
        text-align: center;
    }
    .caption p {
        display: none;
    }
    .contenidomodal {
        width: 60%;
    }
    .contenidomodal h3{
        font-size: 20px;
        line-height: 25px;
    }
    .titulos h1{
        text-align: center;
        font-size: 30px;
        margin-top: -80px;
        padding: 100px 0px 15px 0px;
        font-family: var(--fontprim);
    }
    .quienesomos{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
        gap: 80px;
        /*border: #000 1px solid;*/
    }
    .quienesomos figure{
        width: 95%;
    }
    .quienesomos article{
        width: 95%;
    }
    .video{
        width: 80px;
        height: 80px;
        bottom: 98%;
        left: 45%;
        box-shadow: 0px 0px 1px var(--gris);
    }
    .whats{
        opacity: 50%;
        top: 0;
        left: 0%;
    }
    .contblog  article {
        max-width: 550px;
        margin: 20px;
      }
      .contblog  figure{
        max-width: 500px;
      }
      .contblog  a {
        width: 95%;
        text-decoration: none;
        padding: 18px 180px 18px 15px;
        background-color: #f6f7fc;
        color: black;
        display: inline-block;
        font-weight: bold;
        position: relative;
        /*left: 0;
        top: 100%;*/
      }
      .cajaacordeon{
        display: flex;
        flex-direction: column;
        }
        .contacordeon{
        width: 95%;
        }
        .contvideor {
            width: 95%;
        }
        .formjs{
            width: 95%;
        }
        .cont_nombres{
            width: 30%;
            display: inline-block;
            vertical-align: top;
            text-align: right;
            padding-right: 15px;
            line-height: 55px;
            font-size: 14px;
          }
        .cont_elem{
            width: 65%;
            display: inline-block;
            vertical-align: top;
          }
          #enviar{
            margin-bottom: 10px;
          }
}

/*MOVIL*/
@media screen and (max-width: 400px ){
    .caption h3{
        font-size: 35px;
        line-height: 40px;
        text-shadow: 0px 0px 10px #333;
    }
    .btnslide {
        background-color: rgba(255, 255, 255, 0.3);
    }
    .titulos h1{
        text-align: center;
        font-size: 25px;
        margin-top: -80px;
        padding: 100px 0px 15px 0px;
        font-family: var(--fontprim);
    }
    .video{
        width: 60px;
        height: 60px;
        bottom: 100%;
        left: 42%;
        box-shadow: 0px 0px 1px var(--gris);
    }
    .video i{
        font-size: 25px;
        color: var(--blanco);
    }
    .info2 i{
        color: var(--amarillo);
        font-size: 35px;
      }
    .info2 h3{
        font-size: 12px;
    }
    .info2 {
        width: 95%;
      }
      #slider1 .overview li {
        border: 2px var(--cafeheader) solid;
        box-shadow: 0px 0px 10px #333;
     }
     .galeria{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .galeria a {
        width: 95%;
        position: relative;
        overflow: hidden;
        margin-bottom: -8px;
    }
    .fondomodal {
        padding: 150px 10px;
    }
      /*tamano del modal*/
    .contenidomodal {
    padding-bottom: 50px;
    width: 80%;
    }
    .cerrarmodal {
        left: 93%;
    }
}
