/*****************
****** Todo ******
*****************/
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

* {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
}
 
body {
    overscroll-behavior-x: none;
}

/*****************
****** Menu ******
*****************/

.menu {
    position: fixed;
    top: 0;
    left: 0;
    

    z-index: 100;

    width: 100%;
    height: 100px;
    background-color: #111c13;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);

}

.menu .nav  {
    position: absolute;
    top: 0;
    left: 0;
  
    width: 100%;
    height: 100vh;
    padding-top: 30px;
  
    background-color: #111c13;
  
    display: none;
    overflow: auto;
}
  
.menu .nav div {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.menu .nav a {
    padding: 5px;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
  
    transition: all .3s;
}
  
.menu .nav a:hover {
    color: rgb(151, 179, 28);
}

.menu #btn-menu {
    display: none;
}

.menu a span {
    margin-left: 5px;
    padding: 5px;
    height: 5px;
    font-size: 15px;
    border-left: solid 1px rgb(202, 202, 202);

    display: flex;
    align-items: center;
    justify-content: center;
}

.menu .serv {
    position: relative;
}

.menu .nav .serv .sub {
    position: absolute;
    top: 7px;
    right: 20%;
    left: auto;
    height: 15px;
    padding: 0 5px;
    font-size: 15px;
    border-left: 1px solid rgb(199, 199, 199);

    display: flex;
    align-items: center;

    color: rgb(255, 255, 255);
}

.menu .nav .serv .sub:hover {
    color: rgb(151, 179, 28);
}

.menu .nav .submenu {
    display: none;
}

.menu .pup {
    color: rgb(0, 174, 255);
    margin-right: 10%;
    padding: 5px 13px;
}

.menu .logo {
    width: 300px;
    height: 70px;

    margin-left: 10%;
}

.menu .logo img {
    max-width: 100%;

}

.menu .nav div .active {
    color: rgb(151, 179, 28);
}

.scroll {
    overflow: hidden;
}

.exit {
    position: absolute;
    right: 0px;
    left: auto;
    top: 0px;
    font-family: monospace;
  }
  
  .exit span {
    height: 30px;
    width: 30px;
    cursor: pointer;
    font-size: 20px;
  
    color: rgb(151, 179, 28);
    border-radius: 50%;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .exit span:active {
    background-color: rgb(151, 179, 28);
    color: white;
  }
  
/******************
*****Banner******
******************/

.centro {
    width: 100%;
   
}

.centro .contenedor {
    width: 100%;
    height:100%;
}

.centro .contenedor h2 {
    text-align: center;
    font-size: 30px;
    color: var(--color-3);
    padding: 35px;
    border-bottom: 2px solid var(--color);
}

.centro .cont {
    
    position: relative;
    width: auto;
     height:100%;
  
}

.centro .cont img {
    width: 100%;
    display: block;
     height:20%;
     top:70px;
    position: relative;
}







.banner {
    widows: 100%;
    height: 60vh;
    background: url(../img/banner1.jpg) fixed;

    background-size: cover;

    position: relative;

    color: white;
    text-align: center;
}

.banner .text {
    position: absolute;
    top: 50%;
    left: 14%;
    right: 12.5%;

    transform: translateY(-50%);

    width: 70%;

}

.banner h1 {
    font-size: 1em;
}

.banner p {
    font-size: 0.5;
}


/******************
*****Services******
******************/

.services {

    background: url(../img/services.jpg) fixed;    
    position: relative;
    padding: 5em 0;

   

   
}

.services .title {
    text-align: center;
}

.services .title h1 {
    font-size: 25px;
    color: rgb(255, 255, 255);
}

.services .title p {
    color:rgb(255, 255, 255);
}

.services .content {
    width: 85%;
    margin: auto;
    padding-top: 5em;
   

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.services .content .target {
    width: 200px;
    padding: 20px;
    color: rgba(0,0,0, .6);

    text-align: center;
    font-size: 13px;
}

.services .content .target .icon {
    width: 80%;
    margin: auto;
}
.services .content .target img {
    max-width: 100%;
}

.services .content .target h1 {
    text-align: center;
    font-size: 15px;
    color: rgb(255, 255, 255);
    padding-top: 1em;
}

.services .content .target a {
    text-decoration: none;
    transition: all .2s;
    color: white;

    background-color: rgb(25, 94, 37,1);
    display: block;
    width: 40%;
    margin: auto;

    padding: 5px;
    margin-top: 40px;
}

.services .content .target a:hover {
    background-color: rgb(157, 177, 72);
}

.services .content .target a:active {
    background-color: rgb(191, 231, 9);
}

/******************
*****normal******
******************/

.normal {
  
    background: url(../img/normal.jpg) fixed ;
     background-size: cover;
 position: relative;
   

    
}

.normal .title {
    text-align: center;
}

.normal .title h1 {
    font-size: 25px;
    color: rgb(19, 19,19);
}

.normal .title p {
    color: rgb(19, 19,19);
}

.normal .content {
    width: 85%;
    margin: auto;
    padding-top: 5em;
   

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.normal .content .target {
    width: 200px;
    padding: 20px;
    color: rgba(0,0,0, .6);

    text-align: center;
    font-size: 13px;
}

.normal .content .target .icon {
    width: 80%;
    margin: auto;
}
.normal .content .target img {
    max-width: 100%;
}

.normal .content .target h1 {
    text-align: center;
    font-size: 15px;
    color: rgb(255, 255, 255);
    padding-top: 1em;
}

.normal .content .target a {
    text-decoration: none;
    transition: all .2s;
    color: white;

    background-color: rgb(25, 94, 37,1);
    display: block;
    width: 40%;
    margin: auto;

    padding: 5px;
    margin-top: 40px;
}

.normal .content .target a:hover {
    background-color: rgb(157, 177, 72);
}

.normal .content .target a:active {
    background-color: rgb(191, 231, 9);
}


/******************
*****  team  ******
******************/

.team {
    position: relative;
    background-color: rgba(243, 243, 243, 0.815);

    padding: 10em 0;
}

.team h1 {
    font-size: 25px;
    text-align: center;
    padding-bottom: 4em;
}

.team .content {
    width: 80%;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team .target {
    width: 250px;
    text-align: center;
    margin-bottom: 35px;
}

.team .dis {
    box-sizing: border-box;
    border: solid 10px white;
}

.team .dis img {
    border: solid 6px rgb(189, 188, 188);
    width: 95%;
    border-radius: 50%;
}

.team .target .img {
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.team .target .img img {
    display: block;
    max-width: 100%;
}

.team .target p {
    padding-top: 1em;
}

.team .target a {
    color: white;
    border-radius: 50%;
    display: inline-block;
    background-color: gray;
    margin: 5px;
    padding: 5px;
}

.team .target a span {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.team .target a:hover {
    background-color: rgb(191, 231, 9);
}

.thteam {
    padding: 30px 0 0;
    background-color: #fff;
}

.thteam .content {
    max-width: 1000px;
}

.thteam .target {
    width: 150px;
    transition: all .3s;
}

.thteam .target a {
    background: none;
    border-radius: 0;
}

.thteam .target a:hover {
    background-color: white;
}

.thteam .target .img {
    filter: grayscale(1);
    border-radius: 0;
}

.thteam .target .item2 {
    max-width: 70%;
    text-align: center;
}

.thteam .target .img:hover {
    filter: grayscale(0);
}

/******************
*****contacts******
******************/


@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  :focus{
      outline: none;
  }
  
  body{
      background: #ffffff;
      font-family: 'Open sans';
  }
  
  /* FORMULARIO =================================== */
  
  .form_wrap{
      width: 90%;
      height: 530px;
      max-width: 1000px;
      margin: 50px auto;
      display: flex;

      box-sizing:border-box;
  
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Informacion de Contacto*/
  
  .cantact_info::before{
      content: '';
      width: 100%;
      height: 100%;
  
      position: absolute;
      top: 0;
      left: 0;
  
      background: #2a7a3b;
      opacity: 0.9;
      box-sizing:border-box;
  }
  
  .cantact_info{
      width: 38%;
      position: relative;
  
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  
      background-image: url('../fondo.jpg');
      background-size: cover;
      background-position: center center;

      box-sizing:border-box;
  
  }
  
  .info_title,
  .info_items{
      position: relative;
      z-index: 3;
      color: #fff;
      box-sizing:border-box;
  }
  
  .info_title{
      margin-bottom: 60px;
      box-sizing:border-box;
  }
  
   .info_title span{
      font-size: 100px;
      display: block;
      text-align: center;
      margin-bottom: 15px;
      box-sizing:border-box;
  }
  
  .info_title h2{
      font-size: 35px;
      text-align: center;
      box-sizing:border-box;
  }
  
  .info_items p{
      display: flex;
      align-items: center;
  
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
      box-sizing:border-box;
  }
  
  .info_items p:nth-child(1) span{
      font-size: 30px;
      margin-right: 10px;
      box-sizing:border-box;
  }
  
  .info_items p:nth-child(2) span{
      font-size: 30px;
      margin-right: 15px;
      margin-left: 4px;
      box-sizing:border-box;
  }
  .info_items p:nth-child(3) span{
      font-size: 30px;
      margin-right: 15px;
      margin-left: 4px;
      box-sizing:border-box;
  }
  
  
  /* Formulario de contacto*/
  form.form_contact{
      width: 62%;
      padding: 30px 40px;
      box-sizing:border-box;
  }
  
  form.form_contact h2{
      font-size: 25px;
      font-weight: 600;
      color: #303030;
      margin-bottom: 30px;
      box-sizing:border-box;
  }
  
  form.form_contact .user_info{
      display: flex;
      flex-direction: column;
      box-sizing:border-box;
  }
  
  form.form_contact label{
      font-weight: 600;
      box-sizing:border-box;
  }
  
  form.form_contact input,
  form.form_contact textarea{
      width: 100%;
      padding: 8px 0px 5px;
      margin-bottom: 20px;

      box-sizing:border-box;
  
      border: none;
      border-bottom: 2px solid #2a7a3b;
  
      font-family: 'Open sans';
      color: #2a7a3b;
      font-size: 14px;
      font-weight: 400;
  }
  
  form.form_contact textarea{
      max-width: 100%;
      min-width: 100%;
      max-height: 90px;
      box-sizing:border-box;
  }
  
  form.form_contact input[type="submit"]{
      width: 180px;
      background: #2a7a3b;
      padding: 10px;
      border: none;
      border-radius: 25px;
  
      align-self: flex-end;
  
      color: #fff;
      font-family: 'Open sans';
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;

      box-sizing:border-box;
  }
  
  form.form_contact input[type="submit"]:hover{
      background: rgb(151, 179, 28);
      box-sizing:border-box;
  }
  
  /* Ventana de errores*/
  .modal_wrap{
      width: 100%;
      height: 100vh;
      background: rgba(0,0,0,0.7);
      box-sizing:border-box;
  
      position: fixed;
      top: 0;
      left: 0;
      z-index: 3;
  
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .mensaje_modal{
      background: #fff;
      box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
      width: 400px;
      padding: 30px 20px 15px;
      box-sizing:border-box;
  }
  
  .mensaje_modal h3{
      text-align: center;
      font-family: 'Ubuntu';
      font-size: 20px;
      font-weight: 400;
      box-sizing:border-box;
  }
  
  .mensaje_modal h3:after{
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: #C5C5C5;
      margin: 10px 0px 15px;
      box-sizing:border-box;
  }
  
  .mensaje_modal p{
      font-size: 16px;
      color: #606060;
      box-sizing:border-box;
  }
  
  .mensaje_modal p:before{
      content: "\f00d";
      font-family: FontAwesome;
      display: inline-block;
      color: #E25151;
      margin-right: 8px;
      box-sizing:border-box;
  }
  
  #btnClose{
      display: inline-block;
      padding: 3px 10px;
      margin-top: 10px;
  
      background: #E25151;
      color: #fff;
      border: 2px solid #B14141;
      box-sizing:border-box;
      cursor: pointer;
  
      float: right;
  }
  
  /* MENSAJE EXITOSO*/
  
  .mensaje-exito{
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-sizing:border-box;
  }
  
  .mensaje-exito h1{
      font-size: 35px;
      display: block;
      text-align: center;
      margin-bottom: 20px;
      box-sizing:border-box;
  }
  
  .mensaje-exito a{
      display: block;
      padding: 10px 30px;
      background: #4091EC;
      text-decoration: none;
      color: #fff;
      box-sizing:border-box;
  }
  
  .mensaje-exito a:hover{
      background: #3371B6;
      box-sizing:border-box;
  }









footer {
    width: 100%;
    height: auto;
    background-color: #333;
}
  
  footer .social {
    width: 100%;
    padding: 2em 0;
  
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
  
  footer .social a {
    margin-left: 10px;
    margin-right: 10px;
  
    font-size: 20px;
    color: gray;
}
  
  footer .social a:hover {
    color: rgb(56, 175, 255);
}
  
  footer .foot {
    padding: 5px 0 30px 0;
    font-size: 10px;
    text-align: center;
  
    background-color: #333;
    color: gray;
  
}


.centro {
    width: 100%;
}

.centro .contenedor {
    width: 100%;
    height:100%;
}

.centro .contenedor h2 {
    text-align: center;
    font-size: 30px;
    color: var(--color-3);
    padding: 35px;
    border-bottom: 2px solid var(--color);
}

.centro .cont {
    box-sizing: initial;
    position: relative;
    width: auto;
     height:100%;
  
}

.centro .cont video {
    width: 100%;
    display: block;
     height:100%;
    position: relative;
}

.centro .cont .playPause {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translateX(-50%) translateY(-50%);

    background-color: rgba(0, 0, 0, .7);
    border: none;
    padding: 15px;
    color: var(--bg-color);
    font-size: 20px;
    border-radius: 50%;
}

.centro .cont .playPause:focus,
.centro .cont .fullScreen {
    outline: none;
}

.none {
    visibility: hidden;
}

.centro .cont .fullScreen {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--bg-color);

    border: none;
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
    background-color: transparent;
    opacity: 0;
}

.centro .cont .fullScreen:hover {
    opacity: 1;
}

.centro .cont .playPause:hover {
    visibility: visible;
}

.centro .cont video:hover + .playPause {
    visibility: visible;
}

.centro .cont video:hover ~ .fullScreen {
    opacity: 1;
}

/****************
muestra
****************/

.muestra {
    padding: 10em 0;

    background-color: rgb(245, 245, 245);
}

.muestra h2 {
    width: 80%;
    margin: auto;
    font-size: 18px;
    text-align: center;
    margin-bottom: 3em;
}

.muestra .content {
    width: 80%;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.muestra .content .target {
    width: 250px;
    height: 250px;

    margin-bottom: 30px;

    background-color: rgb(0, 174, 255);;

    display: flex;
    align-items: center;
    justify-content: center;
}

.muestra .content .target img {
    max-width: 100%;
}


/******RESPOSIVE******/

@media (min-width: 800px) {

    /*****************
    ****** Menu ******
    *****************/

    .menu .pup {
        display: none;
    }
  
    .menu .nav {
        left: auto;
        right: 10%;
        height: auto;
        width: auto;
        top: 20px;
        padding-top: 0;
  
        display: block;

        overflow: visible;
    }
  
    .menu .nav div {
      flex-direction: row;
    }
  
    .menu .nav a {
        height: 60px;
        padding: 0 20px;
  
        display: flex;
        align-items: center;
    }

    .menu .nav .serv {
        width: 110px;
    }

    .menu .nav .serv .sub {
        right: 0;
        top: 23px;
    }


    .menu .nav div .exit {
        display: none;
    }
    
    .menu .nav .submenu {
        position: absolute;
        top: 60px;
        background-color: rgb(51, 83, 16);
    }

    .menu .nav .submenu .sub-men {
        display: flex;
        flex-direction: column;
    }

    .menu .nav .submenu .sub-men a {
        height: 30px;
    }
    



    .hola h1 {
        font-size: 3em;
    }
    
    .hola p {
        font-size: 1.5;
    }

    .hola .icon {
        width: 400px;
    }

    .hola .icon video  {
        max-width: 400px;
    }
        /*****************
    *****videopro *****
    *****************/
   
  

    /*****************
    ***** banner *****
    *****************/

    .banner h1 {
        font-size: 3em;
    }
    
    .banner p {
        font-size: 1.5;
    }

    .banner .icon {
        width: 400px;
    }

    .banner .icon video  {
        max-width: 400px;
    }
        /*****************
    *****videopro *****
    *****************/

    .videopro h1 {
        font-size: 3em;
    }
    
    .videopro p {
        font-size: 1.5;
    }

    .videopro .icon {
        width: 400px;
    }

    .videopro .icon img {
        max-width: 400px;
    }


    /******************
    *****contacts******
    ******************/

   
     .privilegios .sect {
        width: 50%;
    }

 
    .centro .contenedor h2 {
        font-size: 40px;
    }



}

@media (min-width: 1024px) {
    
    /*****************
    ****** Menu ******
    *****************/

    .menu .nav {
        margin-right: 10%;
    }

    /*****************
    ***** banner *****
    *****************/
    
    .banner h1 {
        font-size: 4em;
    }

    .banner p {
        font-size: 2em;
    }




}
