*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  font: normal 1em/1.62em 'Poppins',Arial,sans-serif;
  /*font: 400 15px/1.8 "Lato", sans-serif;*/
  /*-->font-family: sans-serif;*/
  /*font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));*/
  /*-->font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1600 - 300)));*/ /*https://css-tricks.com/snippets/css/fluid-typography/*/
  /*font-size: 16px;*/
  color: #777;
}

/*@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 22px;
  }
}*/

*:focus {
    outline: none;
}


a{
  text-decoration: none;
  color: #FFF;
}

.caption {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #FFF;
}

.caption span.border {
  /*background-color: #111;
  padding: 18px;
  font-size: 25px;
  letter-spacing: 10px;*/
  font: bold 3.75em/1em 'Poppins',sans-serif;
  text-transform: uppercase;
  letter-spacing: -.075em;
  color: #f7f7f7;
}

.seccion{
  position:relative;
  height: calc(100vh - 80px);
  width: 100%;
  /*overflow: hidden;*/
  top: 80px;
}

/*.seccion div{
  color:#ddd;
  background-color:rgba(40,46,52,0);
  text-align:center;
  padding:50px 80px;
  text-align: justify;
  min-height: 100vh;
}*/

.social a{
  display: inline-block;
  text-align:center;
  text-transform: uppercase;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 10px;
  /*border: 1px solid transparent;*/
}

#main-logo {
    font: bold 3.75em/1em 'Poppins',sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 .367em;
    cursor: default;
}

#site-desc{
  font-size: 1.1em;
  margin: 0 0 1.75em;
  padding: 0;
  letter-spacing: -.04em;
}

#inicio .social a i{
    padding: 7px;
    line-height: 1em;
}

.contact {
  width: 33%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


@media (max-width: 500px){
  #main-logo {
    font: bold 3em/1em 'Poppins',sans-serif;
  }
}

@media (max-height: 900px){
  .contact {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
  }
}

@media (max-width: 1024px){
  .contact {
    width: 80%
  }
}


.facebook:hover {
    color: #4e64b5;
}

.twitter:hover {
    color: #00aced;
}
.instagram:hover {
    color: #9a8f62;
}
.youtube:hover {
    color: #c82929;
}

.telegram:hover {
    color: #2ca5e0;
}


@media screen and (max-width:50em) {  
    /*footer {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, 1fr);
      grid-gap: 0;
    }
    footer .branding {
      grid-row-start: 3;
      text-align: center;
    }
    footer .social {
      grid-row-start: 1;
    }*/
   .contact {
        /*grid-row-start: 2;*/
        background-color: darken(#c73e1d, 5%);
    }
}



.button {
    display: inline-block;
    min-width: 115px;
    /*height: 25px;*/
    background: #000000;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    border:none;
    cursor: pointer;
    /*line-height: 25px;*/
}

/* The Modal (background) */
.block-scroll {overflow:hidden;} /* clase de manejo */

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  /*padding-top: 100px;*/ /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  box-sizing: border-box;
}

/* The Close Button */
.close {
  position: fixed;
  display: block;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  background-color: rgba(0,0,0,0.5);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.clear {
    clear: both;
}

form label{
  display:block;
  margin: 20px  0 10px 0;
  letter-spacing: 1px;
}

form input, form textarea{
  width:100%;
  background: #fff;
  padding: .6em;
  border: 1px solid #CCC;
  border-radius: 8px;
  margin-bottom:.4em;
  appearance: none;
  font-size: 100%;
  font-family: inherit;
}

/*form input:focus, form textarea:focus {
  border: 3px solid #333;
}*/

form button {
  font-weight: bold;
  background-color: #666;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

form button:hover {
  background-color: #333;
}