/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
   html {
     box-sizing: border-box;
   }
   *,*:before,*:after {
     box-sizing: inherit;
   }
   body {
     background-color: #ffffff;
     font-family: 'Libre Baskerville', serif;
     height: 100%;
     margin: 0;

   }
   /**Estilos Globales**/
 .contenedor {
   width: 100%;
   margin: 0 auto;
 }
 @media only screen and (min-width:480px) {
   .contenedor {
     width: 100%;
   }
 }
 @media only screen and (min-width:768px) {
   .contenedor {
     width: 100%;
   }
 }
 @media only screen and (min-width:992px) {
   .contenedor {
     width: 100%;
     max-width: 1100px;
   }
 }

  span.italic {
    font-weight: bold;
    font-style: italic;
  }

  span.capital {
    font-weight: bold;
    padding-top: 7px;
    margin-right: 12px;
    line-height: .83;
    font-size: 35px;
    float: left;
    position: relative;
    /**font-style: italic;**/
  }

 h1 {
   text-align: left;
  }

  p.referencias {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5em!important;
    padding-top: 7px;
    text-align: left;
    font-weight: bold;
   }

   p.piefoto {
     text-align: center!important;
   }

.ir-arriba {
	display:none;
	padding: 15px;
	background: #000000;
	font-size: 20px;
	color:#fff;
	cursor:pointer;
	position: fixed;
  bottom: 0px;
  right: 10px;
}

.titulos {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5em!important;
  padding-top: 7px;
}

@media only screen and (max-width:768px) {
  p.titulosblog {
    margin-left: 50px !important;
  }
}

.titulosblog {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5em!important;
  text-align: left;
  padding-top: 10px;
  margin-left: 0px!important;
}

   /**Header-Imagen ppal**/
   div.hero {
     background-image: url(../img/PedroTrebbau_Home_edit.jpg);
     height: 100vh;
     background-position: right;
     background-size: cover;

   }

   div.contenedor-header {
     padding-top: 0px;
   }
   @media only screen and (min-width:768px) {
     div.contenedor-header {
       padding-top: 0px;
     }
   }
   /**Barra de Navegación Principal**/
   div.barra {
     background-color: rgba(257, 237, 1, 0.8);
     padding: 0px 0px;
    }

    div.barra-segundo {
      background-color: #000000;
      padding: 0px 0px
     }

    div.logonombre h1 {
      font-family: 'Libre Baskerville', serif;
      font-size: 2.3em;
      margin: 0;
      padding-top: 10px;
      padding-left: 10px;
    }
    div.logonombre-segundo h1 {
      font-family: 'Libre Baskerville', serif;
      color: rgba(257, 237, 1, 0.8);
      font-size: 2.3em;
      margin: 0;
      padding: 10px 0 5px 0;
    }

    @media only screen and (min-width:769px) {
      div.logonombre h1 {
        float: left;
        margin-left: 30px;
      }
    }
   /**Menú de Navegación Principal**/
   nav.navegacion-principal {
     display: none;
     width: 100%; /**Medida para le responsive se vea bien**/
   }

  @media only screen and (min-width:769px) {
  nav.navegacion-principal {
      float: right;
      margin-right: 30px;
    }
  }

  nav.navegacion-principal a {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2em;
    /**font-weight: bold;**/
    text-align: left;
    margin-top: 20px;
    padding-bottom: 10px;
    color: #000000;
    display:block;
    text-decoration: none;
    /*text-transform: uppercase;*/
    padding-left:  5px;
    padding-right: 5px;
    clear: both;
 }
 @media only screen and (min-width:767px) {
 nav.navegacion-principal a {
   /**line-height: 60px**/Para alinear el menú con el logo. También se puede usar el padding y line-height**/
   text-align: right;
   width: auto;
   display: inline-block;

   }
 }
.linea {
  display: none;
  margin-right: -10px;
}
@media only screen and (min-width:769px) {
  .linea {
  display: inline-block;
  }
}

.sobre1 {
  padding-right: 5px;
  padding-left: 3px;
}

img.sobre1:hover {
  transform:scale(1.2);
  -ms-transform:scale(1.2); // IE 9
  -moz-transform:scale(1.2); // Firefox
  -webkit-transform:scale(1.2); // Safari and Chrome
  -o-transform:scale(1.2); // Opera
  -webkit-transition: all 500ms ease-in-out; // IE 9
  -moz-transition: all 500ms ease-in-out; // Firefox
  -ms-transition: all 500ms ease-in-out; // Safari and Chrome
  -o-transition: all 500ms ease-in-out; // Opera
}

 nav.navegacion-principal a:hover {
   color: #9c9c9c;
   text-decoration: none;
}
@media only screen and (min-width:769px) {
  nav.navegacion-principal {
    width: 67%;
    float: center;
    text-align: right;
    display: block;
  }
}

/**Menú Movil**/
div.menu-movil {
  width: 40px;
  display: block;
  float: right;
  text-align: right;
  margin-top: -50px;
  padding-bottom: 5px;
  margin-right: 30px;/**OJO**/
}

div.menu-movil:hover {
  cursor: pointer;
}
@media only screen and (min-width:769px){
div.menu-movil {
  display: none;
  }
}
div.menu-movil span {
height: 5px;
margin-top: 10px;
background-color: #000000;
display: block;
}

/**Menú Idiomas**/
.flags1 {
  width:16px;
    height:16px;
    border-radius:150px;
    /*border:1px solid rgba(257, 237, 1, 0.8);*/
}
.flags2 {
  width:16px;
    height:16px;
    border-radius:150px;
    border:1px solid #000000;
}

.idioma {
  float: right;
  margin-top: -33px;
  margin-right: 5px;
}


  /**Sección 1**/
  div.seccion1 {
    background-color: #feed01;
    padding: 30px 0 30px 0;
}

div.seccionblog1 {
  background-color: #feed01;
  padding: 30px 0 30px 0;
}

  .seccion1 p {
    font-size: 1.2em;
    text-align: left;
}

.seccionblog1 p {
  font-size: 1.2em;
  text-align: left;
}

    div.contenido-seccion1 > div {
    background-color: #feed01;
}

div.contenido-seccionblog1 > div {
background-color: #feed01;
}


@media only screen and (min-width:768px) {
  div.contenido-seccion1 > div {
    width: 50%;
    float: left;
  }
}

@media only screen and (min-width:768px) {
  div.contenido-seccionblog1 > div {
    width: 50%;
    float: left;
  }
}

  div.seccion1 {
      max-width:auto;
      margin:0 auto;
    }

    div.seccionblog1 {
        max-width:auto;
        margin:0 auto;
      }

    div.contenido-seccion1 {
      max-width: auto;

    }

    div.contenido-seccionblog1 {
      max-width: auto;

    }

    div.contenido-seccion1 p {
      font-family: 'Libre Baskerville', serif;
      font-size: 1em;
      text-align: left;
      margin-right: 50px;
      margin-left: 50px;
    }

    div.contenido-seccionblog1 p {
      font-family: 'Libre Baskerville', serif;
      font-size: 1em;
      text-align: left;
      margin-right: 50px;
      margin-left: 50px;
    }

div.texto-izquierdo p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1em;
  text-align: left;
  margin-right: 50px;
  margin-left: 0px;
}

div.texto-izquierdotit p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1em;
  text-align: left;
  margin-right: 50px;

}
    div.contenido-seccion1 h1 {
      font-family: 'Libre Baskerville', serif;
      font-size: 2.5em;
      margin-left: 50px;
    }

    div.contenido-seccionblog1 h1 {
      font-family: 'Libre Baskerville', serif;
      font-size: 2.5em;
      margin-left: 50px;
    }

    div.contenido-seccion1 a {
      font-family: 'Libre Baskerville', serif;
      color: #000000;
      font-size: 1em;
      font-style: italic;
      float: right;
      margin-right: 50px;
    }

    div.contenido-seccionblog1 a {
      font-family: 'Libre Baskerville', serif;
      color: #000000;
      font-size: 1em;
      font-style: italic;
      float: right;
      margin-right: 50px;
    }

    div.contenido-seccion1 a:hover {
    text-decoration: none;
    font-weight: bold;
    }

    div.contenido-seccionblog1 a:hover {
    text-decoration: none;
    font-weight: bold;
    }


    @media only screen and (max-width:768px) {
      img.fotoblog {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 75%;
        border: 2px solid;
      }
    }

    img.fotoblog {
      border: 2px solid;
    }
  }

  p::first-letter {
  font-weight: bold;
  color: red;
}

/**Foto Middle 1**/

div.middle1 {
  background-image: url(../img/PedroTrebbau_Middel1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 600px;
}

  /**Sección 2**/
  div.seccion2 {
    background-color: #afafaf;
    padding: 30px 0 30px 0;
  }
  .seccion2 p {
    font-size: 1.2em;
    text-align: left;
}
    div.contenido-seccion2 > div {
    background-color: #afafaf;
}
  @media only screen and (min-width:768px) {
    div.contenido-seccion2 > div {
      width: 50%;
      float: left;
    }
  }
  div.seccion2 {
      max-width:auto;
      margin:0 auto;
    }
    div.contenido-seccion2 {
      max-width: auto;
    }
    div.contenido-seccion2 p {
      font-family: 'Libre Baskerville', serif;
      font-size: 1em;
      text-align: left;
      margin-right: 50px;
      margin-left: 50px;
    }
    div.contenido-seccion2 h1 {
      font-family: 'Libre Baskerville', serif;
      font-size: 2.5em;
      margin-left: 50px;
    }

    /**Sección Gallery**/
    .galeria {
    background-color: #000000;
    }

    div.galeria {
    overflow:hidden;
    text-align:center;
    width:100%;
    }

    div.galeria a {
      display: inline-block;
      margin: 40px 50px 40px 60px;
      border: 1px solid #afafaf;
    }

      a.imagenes img {
      max-width: 100%;
      filter: gray;
      -webkit-filter: grayscale(1);/**Efecto gris en las fotos/** /**-Webkit-Comando para agregar filtros en Google Chrome y Safari**/
      -webkit-transition: all .5s ease-in-out;
    }

  a.imagenes:hover img {
      -webkit-filter: sepia(80%);
    /**-webkit-transform: scale(1.1);/**Para darle un zoom a la foto**/
    }
    span.lb-number {
      display: none!important;
    }
  /**Foto Middle 2**/

    div.middle2 {
      background-image: url(../img/PedroTrebbau_Middel2.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: top;
      height: 600px;
    }

  /**Foto Middle 3**/

  div.middle3 {
    background-image: url(../img/PedroTrebbau_Middel3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:top;
    height: 600px;
  }

    /**Sección 3**/

    div.seccion3 {
      background-color: #feed01;
      padding: 30px 0 30px 0;
    }
    .seccion3 p {
      font-size: 1.2em;
      text-align: left;
  }
      div.contenido-seccion3 > div {
      background-color: #feed01;
  }
    @media only screen and (min-width:768px) {
      div.contenido-seccion3 > div {
        width: 50%;
        float: left;
      }
    }
    div.seccion3 {
        max-width:auto;
        margin:0 auto;
      }
      div.contenido-seccion3 {
        max-width: auto;
      }
      div.contenido-seccion3 p {
        font-family: 'Libre Baskerville', serif;
        font-size: 1em;
        text-align: left;
        margin-right: 50px;
        margin-left: 50px;
      }
      div.contenido-seccion3 h1 {
        font-family: 'Libre Baskerville', serif;
        font-size: 2.5em;
        margin-left: 50px;
      }

      div.contenido-seccion3 a {
        font-family: 'Libre Baskerville', serif;
        color: #000000;
        font-size: 1em;
        font-style: italic;
        padding-left: 150px;
      }

      div.contenido-seccion3 a:hover {
      text-decoration: none;
      font-weight: bold;
      }

      /**Foto Middle 4**/

      div.middle4 {
        background-image: url(../img/PedroTrebbau_Middel4.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;
      }

    /**Sección 4**/

    div.seccion4 {
      background-color: #afafaf;
      padding: 30px 0 30px 0;
    }
    .seccion4 p {
      font-size: 1.2em;
      text-align: left;
  }
      div.contenido-seccion4 > div {
      background-color: #afafaf;
  }
    @media only screen and (min-width:768px) {
      div.contenido-seccion4 > div {
        width: 50%;
        float: left;
      }
    }
    div.seccion4 {
        max-width:auto;
        margin:0 auto;
      }
      div.contenido-seccion4 {
        max-width: auto;
      }
      div.contenido-seccion4 p {
        font-family: 'Libre Baskerville', serif;
        font-size: 1em;
        text-align: left;
        margin-right: 50px;
        margin-left: 50px;
      }
      div.contenido-seccion4 h1 {
        font-family: 'Libre Baskerville', serif;
        font-size: 2.5em;
        margin-left: 50px;
      }
      div.contenido-seccion4 a {
        font-family: 'Libre Baskerville', serif;
        color: #000000;
        font-size: 1em;
        font-style: italic;
        padding-left: 150px;
      }

      div.contenido-seccion4 a:hover {
      text-decoration: none;
      font-weight: bold;
      }

      /**Foto Middle 3**/

      div.middle5 {
        background-image: url(../img/PedroTrebbau_Middel5.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        height: 600px;
      }
      /**Sección 5**/
      div.seccion5 {
        background-color: #feed01;
        padding: 30px 0 30px 0;

      }
      .seccion5 p {
        font-size: 1.2em;
        text-align: left;
    }
        div.contenido-seccion5 > div {
        background-color: #feed01;

    }
      @media only screen and (min-width:768px) {
        div.contenido-seccion5 > div {
          width: 50%;
          float: left;
        }
      }
      div.seccion5 {
          max-width:auto;
          margin:0 auto;
        }
        div.contenido-seccion5 {
          max-width: auto;
        }
        div.contenido-seccion5 p {
          font-family: 'Libre Baskerville', serif;
          font-size: 1em;
          text-align: left;
          margin-right: 50px;
          margin-left: 50px;
        }

        div.contenido-seccion5 h1 {
          font-family: 'Libre Baskerville', serif;
          font-size: 2.5em;
          margin-left: 50px;
        }
        div.contenido-seccion5 a {
          font-family: 'Libre Baskerville', serif;
          color: #000000;
          font-size: 1em;
          font-style: italic;
          padding-left: 150px;
        }

        div.contenido-seccion5 a:hover {
        text-decoration: none;
        font-weight: bold;
        }
        /**Sección 6**/

        div.seccion6 {
          background-color: #afafaf;
          padding: 30px 0 30px 0;
        }
        .seccion6 p {
          font-size: 1.2em;
          text-align: left;
        }
          div.contenido-seccion6 > div {
          background-color: #afafaf;
        }
        @media only screen and (min-width:768px) {
          div.contenido-seccion6 > div {
            width: 50%;
            float: left;
          }
        }
        div.seccion6 {
            max-width:auto;
            margin:0 auto;
          }
          div.contenido-seccion6 {
            max-width: auto;
          }
          div.contenido-seccion6 p {
            font-family: 'Libre Baskerville', serif;
            font-size: 1em;
            text-align: left;
            margin-right: 50px;
            margin-left: 50px;
          }
          div.contenido-seccion6 h1 {
            font-family: 'Libre Baskerville', serif;
            font-size: 2.5em;
            margin-left: 50px;
          }
          div.contenido-seccion6 a {
            font-family: 'Libre Baskerville', serif;
            color: #000000;
            font-size: 1em;
            font-style: italic;
            margin-left: 50px;
          }
          div.contenido-seccion6 a:hover {
          text-decoration: none;
          font-weight: bold;
          }

      /**Sección 7- Currículum vitae**/

          div.seccion7 {
            background-color: #000000;
            padding: 30px 0 30px 0;
          }
          .seccion7 p {
            font-size: 1.2em;
            text-align: left;
          }
            div.contenido-seccion7 > div {
            background-color: #000000;
          }
          @media only screen and (min-width:768px) {
            div.contenido-seccion7 > div {
              width: 50%;
              float: left;
            }
          }
          div.seccion7 {
              max-width:auto;
              margin:0 auto;
            }
            div.contenido-seccion7 {
              max-width: auto;
            }
            div.contenido-seccion7 p {
              font-family: 'Libre Baskerville', serif;
              font-size: 1em;
              text-align: left;
              margin-right: 50px;
              margin-left: 50px;
              color: #ffffff;
            }
            div.contenido-seccion7 h1 {
              font-family: 'Libre Baskerville', serif;
              font-size: 2.5em;
              padding-left: 50px;
            }
            div.contenido-seccion7 a {
              font-family: 'Libre Baskerville', serif;
              color: #ffffff;
              font-size: 1em;
              font-style: italic;
              margin-left: 50px;
            }

            div.contenido-seccion7 a:hover {
            text-decoration: none;
            font-weight: bold;
            }

            /**Sección 8 - Blog**/

                div.seccion8 {
                  background-color: #afafaf;
                  padding: 30px 0 30px 0;
                }
                .seccion8 p {
                  font-size: 1.2em;
                  text-align: left;
                }
                  div.contenido-seccion8 > div {
                  background-color: #afafaf;
                }
                @media only screen and (min-width:768px) {
                  div.contenido-seccion8 > div {
                    width: 50%;
                    float: left;
                  }
                }
                div.seccion8 {
                    max-width:auto;
                    margin:0 auto;
                  }
                  div.contenido-seccion8 {
                    max-width: auto;
                  }
                  div.contenido-seccion8 p {
                    font-family: 'Libre Baskerville', serif;
                    font-size: 1em;
                    text-align: left;
                    margin-right: 50px;
                    margin-left: 50px;
                    color: #000000;
                  }
                  div.contenido-seccion8 h1 {
                    font-family: 'Libre Baskerville', serif;
                    font-size: 2.5em;
                    padding-left: 50px;
                  }
                  div.contenido-seccion8 a {
                    font-family: 'Libre Baskerville', serif;
                    color: #000000;
                    font-size: 1em;
                    font-style: italic;
                    margin-left: 50px;
                  }

                  div.contenido-seccion8 a:hover {
                  text-decoration: none;
                  font-weight: bold;
                  }

  /**Sección 9--Contacto--**/

div.seccion9 {
  background-color: #000000;
  padding: 80px 0 30px 0;
}
.seccion9 p {
  font-size: 1.2em;
  text-align: left;
}
div.contenido-seccion9 > div {
  background-color: #000000;
}
@media only screen and (min-width:768px) {
  div.contenido-seccion9 > div {
    width: 50%;
    float: left;
  }
}
div.seccion9 {
    max-width:auto;
    margin:0 auto;
}
div.contenido-seccion9 {
    max-width: auto;
}
div.contenido-seccion9 p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1em;
    text-align: left;
    margin-right: 50px;
    margin-left: 50px;
}
div.contenido-seccion9 h2 {
    font-family: 'Libre Baskerville', serif;
    color: #ffffff;
    font-size: 2.5em;
    margin-left: 50px;
}
.caja-1{
  margin: 20px 10px;
  margin-left: -40px;
  padding: 10px;
  font-size: 14px;
}
.caja-2{
  margin: 20px 10px;
  margin-left: -40px;
  padding: 10px;
  font-size: 14px;
}
form {
  width: 50%;
  margin: auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
label {
  font-family: 'Libre Baskerville', serif;
  color: #ffffff;
  font-style: normal;
  font-size: 14px;
  padding: 0px 0 10px 0;
}

input, textarea {
background-color : #4b5557;
color: #ffffff;
font-size: 16px;
border: none;
margin-left: 40px;
width: 100%;
}
textarea {
  min-height: 200px;
  max-height: 300px;
  max-width: 100%;
}
@media only screen and (min-width:768px) {
  form {
    width: 50%;
  }
}

.button {
  font-family: 'Libre Baskerville', serif;
  color: #ffffff;
  padding: 10px 40px 10px 40px;
  margin-left: -40px;
  margin-bottom: 40px;
  background-color: #4b5557;
  border: none;
  border-radius: 2.5px;
}

  /**Contacto

  div.contenido-seccContacto {
      max-width:auto;
      margin:0 auto;
    }
    div.contenido-seccContacto {
      max-width: auto;
    }

    @media only screen and (min-width:768px) {
      div.contenido-seccContacto > div {
        width: 50%;
        float: left;
      }
    }
  .dos-columnas{
  	margin-top: 50px;
  }

  .formulario{
  	float: right;
  	width: 50%;
  	margin: auto;
  	color:#999;
  }
  .caja-1{
  	margin: 20px 20px;
  	padding: 10px;
  	font-size: 14px;
  }
  .caja-2{
  	margin: 20px 20px;
  	padding: 10px;
  	font-size: 14px;
  }

  div.contacto {
      background-color: black;
      height: 100%;
    }
  .contacto p {
    font-family: 'Libre Baskerville', serif;
    color: #939393;
    font-style: normal;
    font-size: 14px;
    padding: 10px 0px 10px 0px;
    margin-left: 20px;
  }

  .contacto h1 {
    font-family: 'Libre Baskerville', serif;
    color: #ffffff;
    font-size: 1.9em;
    padding: 40px 0 45px 0;
    margin-left: 20px;
  }

    .contacto p span {
    font-family: 'Libre Baskerville', serif;
    color: #ffffff;
  }
  .contacto-informacion {
    float: left;
  }


@media only screen and (min-width:768px) {
.contacto-informacion {
    width: 50%;
    float: left;
  }
}
@media only screen and (min-width:768px) {
  .dos-columnas {
    width: 50%;
    float: right;
  }
}
  label {
    font-family: 'Libre Baskerville', serif;
    color: #ffffff;
    font-style: normal;
    font-size: 14px;
    padding: 0px 0 10px 0;
  }

  input {
  background-color : #4b5557;
  color: #ffffff;
  font-size: 16px;
  border: none;
  margin-left: 40px;

}
 textarea {
  background-color: #4b5557;
  color: #ffffff;
  border: none;
}


.formulario {
  float: left;
  width: 50%;
  margin: auto;
  color:#999;
  padding-top: 80px;
}


.caja-1 {
  font-family: 'Libre Baskerville', serif;
  background-color: #4b5557;
  color: #ffffff;
  border: none;
}
.caja-2 {
  font-family: 'Libre Baskerville', serif;
  background-color: #4b5557;
  color: #ffffff;
  border: none;
}

.button {
  font-family: 'Libre Baskerville', serif;
  color: #ffffff;
  padding: 10px 40px 10px 40px;
  margin-left: 20px;
  margin-bottom: 40px;
  background-color: #4b5557;
  border: none;
}
/**

/**Currículum Vitae**/
/**Sección X**/
div.seccionx {
  background-color: #feed01;
  padding: 30px 0 30px 0;
}
.seccionx p {
  font-size: 1.2em;
  text-align: left;
}
  div.contenido-seccionx > div {
  background-color: #feed01;
}
@media only screen and (min-width:768px) {
div.contenido-seccionx > div {
  width: 100%;
  float: left;
}
}
div.seccionx {
    max-width:auto;
    margin:0 auto;
  }
  div.contenido-seccion1 {
    max-width: auto;

  }

  div.contenido-seccionx p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1em;
    text-align: left;
    margin-right: 50px;
    margin-left: 50px;
  }
  div.contenido-seccionx h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5em;
    margin-left: 50px;
  }

  div.contenido-seccionx a {
    font-family: 'Libre Baskerville', serif;
    color: #000000;
    font-size: 1em;
    font-style: italic;
    float: right;
    margin-right: 50px;
  }

  div.contenido-seccionx a:hover {
  text-decoration: none;
  font-weight: bold;
  }
.cursiva {
  font-weight: normal;
}
.lista-trabajos {
  margin-left: 50px;
}
#estudios {
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
#experiencia {


}
#fundaciones {
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}
#trabajos {
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
#membresias {
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}



  /**Footer**/

footer {
  background-color: #191e21;
  padding-top: 20px;
  padding-bottom: 10px;

  }
  footer.site-footer-segundo {
    background-color: #191e21;
    padding-top: 10px;

  }
footer.contenedor > div {
    color: #ffffff;
    padding: 0px 20px;
    font-size: 12px;
  }
footer div.redes-sociales {
  text-align: center;
  margin-top: 20px;
}
div.redes-sociales a {
  color: #4e585a;
  font-size: 2.5em;
  margin: 10px;
}
p.copyright {
  background-color: #191e21;
  color: #4e585a;
  padding: 10px 0;
  margin: 10px 0 0 0;
  text-align: center;
}

p.copyright-segundo {
  background-color: #191e21;
  color: #4e585a;
  text-align: center;
  padding: 5px 0 0 0;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
