@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Roboto&display=swap");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #e9ecf4;
  color: #000;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
}

.contenedor {
  width: 90%;
  max-width: 1500px;
  margin: 20px auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, auto);

  grid-template-areas:
    "header header header"
    "contenido sidebar sidebar"
    "widget-2 widget-1 widget-2"
    "footer footer footer";
}

.contenedor > div,
.contenedor .contenido,
.contenedor .sidebar,
.contenedor .footer {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
}

header {
  height: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  z-index: 1000;
  background: none;
}

#btn-menu {
  display: none;
}

header label {
  font-size: 0px;
  cursor: pointer;
  display: none;
}

.menu ul {
  background: rgba(0, 59, 18, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.menu ul ul {
  display: none;
}

.menu a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}

.menu a:hover {
  background: rgba(154, 206, 22);
  color: #fff;
}

.menu a span {
  margin-left: 10px;
}

.menu ul li:hover ul {
  display: block;
  position: absolute;
}

a {
  text-decoration: none;
  }

h2:hover {
color: none;
}


@media screen and (min-width: 320px) and (max-width: 360px) {
  .contenedor {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";
  }

  header label {
    position: absolute;
    display: block;
  }

  .icon-menu {
    background: rgba(0, 59, 18);
    color: rgba(154, 206, 22);
    width: 45px;
    height: 45px;
    font-size: 40px;
    text-align: center;
    line-height: 56px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-left: 0%;
    margin-top: 0%;
    z-index: 1000;
  }
  .menu {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1000;
    font-size: 14px;
  }
  .menu ul {
    display: block;
  }
  .menu a span {
    position: absolute;
    right: 5px;
  }
  .menu ul li:hover ul {
    display: none;
    position: static;
  }
  #btn-menu:checked ~ .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .menu ul ul {
    background: rgba(0, 0, 0, 0.3);
  }
  .menu ul ul a {
    padding: 15px 40px;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 2;
    background: none;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 2;
    width: 100%;
    height: 90%;
    max-width: 300px;
    max-height: 260px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 1;
    grid-column-end: 2;
    width: auto;
    height: auto;
    font-size: 10px;
    grid-row: 4;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 80%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #imagen {
    width: 200px;
    height: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }


  .contenedor .vid {
    width: 100%;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 10%;
    grid-area: 3 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 2;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 4 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 10 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 12 / 1;
    grid-column-start: 1;
    grid-column-end: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    text-align: center;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 5 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 11 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 15 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 19 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 21 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 23 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 25 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 27 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 29 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 31 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 33 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 35 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 22 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 24 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 26 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 28 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 30 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 32 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 34 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 36 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }
  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 80px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 11px;
  }

  .copy {
    font-size: 11px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }
}

@media screen and (min-width: 361px) and (max-width: 460px) {
  .contenedor {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";
  }

  header label {
    position: absolute;
    display: block;
  }

  .icon-menu {
    background: rgba(0, 59, 18);
    color: rgba(154, 206, 22);
    width: 45px;
    height: 45px;
    font-size: 40px;
    text-align: center;
    line-height: 56px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-left: 0%;
    margin-top: 0%;
    z-index: 1000;
  }
  .menu {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1000;
    font-size: 14px;
  }
  .menu ul {
    display: block;
  }
  .menu a span {
    position: absolute;
    right: 5px;
  }
  .menu ul li:hover ul {
    display: none;
    position: static;
  }
  #btn-menu:checked ~ .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .menu ul ul {
    background: rgba(0, 0, 0, 0.3);
  }
  .menu ul ul a {
    padding: 15px 40px;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 2;
    background: none;
    grid-row: 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 2;
    width: 100%;
    height: 90%;
    max-width: 320px;
    max-height: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 1;
    grid-column-end: 2;
    width: auto;
    height: auto;
    font-size: 10px;
    grid-row: 4;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 80%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #imagen {
    width: 200px;
    height: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }


  .contenedor .vid {
    width: 100%;
  }

  
  .contenedor .widget-3 {
    width: 100%;
    height: 10%;
    grid-area: 4 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 2;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 5 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 7 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 9 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 11 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 9 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 13 / 1;
    grid-column-start: 1;
    grid-column-end: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    text-align: center;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 6 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 8 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 10 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 12 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 15 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 19 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 21 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 23 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 25 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 27 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 29 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 31 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 33 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 35 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 22 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 24 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 26 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 28 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 30 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 32 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 34 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 36 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 80px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 11px;
  }

  .copy {
    font-size: 11px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }
}

@media screen and (min-width: 461px) and (max-width: 540px) {
  .contenedor {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";
      justify-content: center;
      align-items: center;
  }

  header label {
    position: absolute;
    display: block;
  }

  .icon-menu {
    background: rgba(0, 59, 18);
    color: rgba(154, 206, 22);
    width: 45px;
    height: 45px;
    font-size: 40px;
    text-align: center;
    line-height: 56px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-left: 0%;
    margin-top: 0%;
    z-index: 1000;
  }
  .menu {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1000;
    font-size: 14px;
  }
  .menu ul {
    display: block;
  }
  .menu a span {
    position: absolute;
    right: 5px;
  }
  .menu ul li:hover ul {
    display: none;
    position: static;
  }
  #btn-menu:checked ~ .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .menu ul ul {
    background: rgba(0, 0, 0, 0.3);
  }
  .menu ul ul a {
    padding: 15px 40px;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 2;
    background: none;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    min-height: auto;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 2;
    width: 100%;
    height: 90%;
    max-width: 320px;
    max-height: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 1;
    grid-column-end: 2;
    width: auto;
    height: auto;
    font-size: 10px;
    grid-row: 4;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 70%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #imagen {
    width: 200px;
    height: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }


  .contenedor .vid {
    width: 100%;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 10%;
    grid-area: 3 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 2;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 4 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 10 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 12 / 1;
    grid-column-start: 1;
    grid-column-end: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    text-align: center;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 5 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 11 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 15 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 19 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 21 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 23 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 25 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 27 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 29 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 31 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 33 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 35 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 22 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 24 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 26 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 28 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 30 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 32 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 34 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 36 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }


  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }
  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 80px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 11px;
  }

  .copy {
    font-size: 11px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }
}

@media screen and (min-width:541px) and (max-width:680px) {
	.contenedor {
		width: 60%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
               justify-content: center;
               align-items: center;
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 3;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 2;
		width: 100%;
		height: 90%;
		max-width: 320px;
		max-height: 320px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 2;
		width: auto;
		height: auto;
		font-size: 10px;
		grid-row: 4;
	}

	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row: 2;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 50%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 100%;
		height: auto;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-area: 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 75%;
		height: auto;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-area: 5;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
  #imagen {
    width: 200px;
    height: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }


  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 3;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 7 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 10 / 1;
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 2;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 11 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 13 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 15 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 15 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 17 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 19 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 19 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 21 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 22 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:681px) and (max-width:760px) {
	.contenedor {
		width: 60%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
               justify-content: center;
               align-items: center;
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 3;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 2;
		width: 100%;
		height: 90%;
		max-width: 320px;
		max-height: 320px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 2;
		width: auto;
		height: auto;
		font-size: 10px;
		grid-row: 4;
	}

	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row: 2;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 50%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 100%;
		height: auto;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-area: 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 75%;
		height: auto;
		grid-column-start: 1;
		grid-column-end: 2;
		grid-area: 5;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
  #imagen {
    width: 200px;
    height: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }


  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 3;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 7 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 10 / 1;
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 2;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 11 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 13 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 15 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 15 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 17 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 19 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 19 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 21 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 22 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }


  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width: 761px) and (max-width: 860px) {
  .contenedor {
    width: 60%;
    max-width: 700px;
    margin: 40px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";
      justify-content: center;
      align-items: center;
  }

  header label {
    position: absolute;
    display: block;
  }

  .icon-menu {
    background: rgba(0, 59, 18);
    color: rgba(154, 206, 22);
    width: 45px;
    height: 45px;
    font-size: 40px;
    text-align: center;
    line-height: 56px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-left: 0%;
    margin-top: 0%;
    z-index: 1000;
  }
  .menu {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1000;
    font-size: 14px;
  }
  .menu ul {
    display: block;
  }
  .menu a span {
    position: absolute;
    right: 5px;
  }
  .menu ul li:hover ul {
    display: none;
    position: static;
  }
  #btn-menu:checked ~ .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .menu ul ul {
    background: rgba(0, 0, 0, 0.3);
  }
  .menu ul ul a {
    padding: 15px 40px;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 3;
    background: none;
    grid-row: 3;
    min-width: 320px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .vid {
    width: auto;
    height: auto;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 2;
    width: 100%;
    height: 90%;
    max-width: 320px;
    max-height: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 1;
    grid-column-end: 2;
    width: auto;
    height: auto;
    font-size: 10px;
    grid-row: 4;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 40%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 70%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #imagen {
    width: 200px;
    height: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }


  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 3;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 7 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 10 / 1;
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 2;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 11 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 13 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 15 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 15 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 17 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 19 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 19 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 21 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 20 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 22 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 80px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 11px;
  }

  .copy {
    font-size: 11px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }
}

@media screen and (min-width: 861px) and (max-width: 960px) {
  .contenedor {
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";

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

  header label {
    position: absolute;
    display: block;
  }

  .icon-menu {
    background: rgba(0, 59, 18);
    color: rgba(154, 206, 22);
    width: 45px;
    height: 45px;
    font-size: 40px;
    text-align: center;
    line-height: 56px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-left: 0%;
    margin-top: 0%;
    z-index: 1000;
  }
  .menu {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1000;
    font-size: 14px;
  }
  .menu ul {
    display: block;
  }
  .menu a span {
    position: absolute;
    right: 5px;
  }
  .menu ul li:hover ul {
    display: none;
    position: static;
  }
  #btn-menu:checked ~ .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .menu ul ul {
    background: rgba(0, 0, 0, 0.3);
  }
  .menu ul ul a {
    padding: 15px 40px;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 4;
    background: none;
    grid-row: 3;
    min-width: 320px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 2;
    width: 100%;
    height: 90%;
    max-width: 320px;
    max-height: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 1;
    grid-column-end: 2;
    width: auto;
    height: auto;
    font-size: 10px;
    grid-row: 4;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 30%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 50%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #imagen {
    width: 200px;
    height: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }


  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 4;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 7 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 10 / 1;
    grid-column-start: 1;
    grid-column-end: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 11 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 11 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 13 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 13 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 15 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 15 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 15 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 17 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 80px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 11px;
  }

  .copy {
    font-size: 11px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }
}

@media screen and (min-width: 961px) and (max-width: 1140px) {
  .contenedor {
    width: 90%;
    max-width: 850px;
    margin: 40px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";

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

  header label {
    position: absolute;
    display: block;
  }

  .icon-menu {
    background: rgba(0, 59, 18);
    color: rgba(154, 206, 22);
    width: 45px;
    height: 45px;
    font-size: 40px;
    text-align: center;
    line-height: 56px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-left: 0%;
    margin-top: 0%;
    z-index: 1000;
  }
  .menu {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1000;
    font-size: 14px;
  }
  .menu ul {
    display: block;
  }
  .menu a span {
    position: absolute;
    right: 5px;
  }
  .menu ul li:hover ul {
    display: none;
    position: static;
  }
  #btn-menu:checked ~ .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .menu ul ul {
    background: rgba(0, 0, 0, 0.3);
  }
  .menu ul ul a {
    padding: 15px 40px;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 4;
    background: none;
    grid-row: 3;
    min-width: 320px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 2;
    width: 100%;
    height: 90%;
    max-width: 320px;
    max-height: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 1;
    grid-column-end: 2;
    width: auto;
    height: auto;
    font-size: 10px;
    grid-row: 4;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 25%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 100%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 45%;
    height: auto;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-area: 5;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .vid {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
  }

  #imagen {
    width: 250px;
    height: 200px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: 0.5s;
    object-fit: cover;
  }

  #imagen:hover {
    scale: 1.2;
  }
  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 1;
    grid-column-end: 4;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 7 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 10 / 1;
    grid-column-start: 1;
    grid-column-end: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 1;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 9 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 250px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 11 /1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 11 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 13 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 13 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 15 / 1;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 15 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 15 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 17 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 17 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 16 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 18 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 80px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 11px;
  }

  .copy {
    font-size: 11px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }
}

@media screen and (min-width: 1141px) and (max-width: 1290px) {
  .contenedor {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";

      justify-content: center;
      align-items: center;
      text-align: center;
  }
  .contenedor .header {
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    height: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    z-index: 1000;
  }

  #btn-menu {
    display: none;
  }

  header label {
    font-size: 0px;
    cursor: pointer;
    display: none;
  }

  .menu ul {
    background: rgba(0, 59, 18, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  .menu ul ul {
    display: none;
  }

  .menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
  }

  .menu a:hover {
    background: rgba(154, 206, 22);
    color: #fff;
  }

  .menu a span {
    margin-left: 10px;
  }

  .menu ul li:hover ul {
    display: block;
    position: absolute;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 6;
    background: none;
    grid-row: 3 / 5;
    min-width: 330px;
    min-height: 230px;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
    height: 90%;
    max-width: 330px;
    max-height: 230px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 3;
    grid-column-end: 7;
    width: auto;
    height: auto;
    font-size: 11px;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 55%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 200%;
    height: auto;
    grid-column-start: 3;
    grid-column-end: 8;
    grid-area: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 80%;
    height: auto;
    grid-column-start: 3;
    grid-column-end: 8;
    grid-area: 4 / 3;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #imagen {
    width: 180px;
    height: 200px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: 0.5s;
    object-fit: cover;
  }

  #imagen:hover {
    scale: 1.2;
  }
  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .contenedor .widget-3 {
    width: 80%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    color: #000;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 9 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 3;
    grid-column-start: 3;
    grid-column-end: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 4;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 5;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 200px;
    height: 150px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 9 /2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 9 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 9 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 9 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 11 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 11 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 11 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 13 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 13 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }


  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
    color: black;
    font-family: "roboto";
  }
  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 90px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 12px;
  }

  .copy {
    font-size: 12px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }
}

@media screen and (min-width: 1291px) and (max-width: 1414px) {
  .contenedor {
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";

      justify-content: center;
      align-items: center;
  }
  .contenedor .header {
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    height: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    z-index: 1000;
  }

  #btn-menu {
    display: none;
  }

  header label {
    font-size: 0px;
    cursor: pointer;
    display: none;
  }

  .menu ul {
    background: rgba(0, 59, 18, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  .menu ul ul {
    display: none;
  }

  .menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
  }

  .menu a:hover {
    background: rgba(154, 206, 22);
    color: #fff;
  }

  .menu a span {
    margin-left: 10px;
  }

  .menu ul li:hover ul {
    display: block;
    position: absolute;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 6;
    background: none;
    grid-row: 3 / 5;
    min-width: 330px;
    min-height: 230px;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
    height: 90%;
    max-width: 330px;
    max-height: 230px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 3;
    grid-column-end: 7;
    width: auto;
    height: auto;
    font-size: 13px;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 65%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 190%;
    height: auto;
    grid-column-start: 3;
    grid-column-end: 8;
    grid-area: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 190%;
    height: auto;
    grid-column-start: 3;
    grid-column-end: 8;
    grid-area: 4 / 3;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #imagen {
    width: 100%;
    height:  250px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: 0.5s;
    object-fit: cover;
  }

  #imagen:hover {
    scale: 1.2;
  }

  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 4;
  }

  .contenedor .widget-3 {
    width: 80%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    color: #000;
  }


  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 9 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 3;
    grid-column-start: 3;
    grid-column-end: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 4;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 5;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 250px;
    height: 200px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 9 /2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 9 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 9 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 9 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 11 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 11 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 11 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 13 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 13 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 16px;
  }

  h1 {
    font-size: 24px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 100px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 13px;
  }

  .copy {
    font-size: 13px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
  }
}

@media screen and (min-width: 1415px) and (max-width: 1560px) {
  .contenedor {
    width: 90%;
    max-width: 1100px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";

      align-items: center;
      justify-content: center;
  }
  .contenedor .header {
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    height: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    z-index: 1000;
  }

  #btn-menu {
    display: none;
  }

  header label {
    font-size: 0px;
    cursor: pointer;
    display: none;
  }

  .menu ul {
    background: rgba(0, 59, 18, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  .menu ul ul {
    display: none;
  }

  .menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
  }

  .menu a:hover {
    background: rgba(154, 206, 22);
    color: #fff;
  }

  .menu a span {
    margin-left: 10px;
  }

  .menu ul li:hover ul {
    display: block;
    position: absolute;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 7;
    background: none;
    grid-row: 3 / 5;
    min-width: 430px;
    min-height: 350px;
    justify-content: center;
    align-items: center;

  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
    height: 90%;
    max-width: 420px;
    max-height: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 3;
    grid-column-end: 7;
    width: auto;
    height: auto;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 65%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 200%;
    height: auto;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-area: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 200%;
    height: auto;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-area: 4 / 3;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  #imagen {
    width: 250px;
    height: 200px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: 0.5s;
    object-fit: cover;
  }

  #imagen:hover {
    scale: 1.2;
  }

  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 7;
  }

  .contenedor .widget-3 {
    width: 80%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    color: #000;
  }

  #imagen {
    width: 250px;
    height: 200px;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 9 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 3;
    grid-column-start: 3;
    grid-column-end: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 4;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 5;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 250px;
    height: 200px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 9 /2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 9 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 9 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 9 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 11 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 11 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 11 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 13 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 13 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }


  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 16px;
  }

  h1 {
    font-size: 24px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .pie {
    width: 120px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
  }

  .copy {
    font-size: 14px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 25px;
  }
}

@media screen and (min-width: 1561px) and (max-width: 1690px) {
  .contenedor {
    width: 90%;
    max-width: 1200px;
    margin: 20px 15%;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";

      align-items: center;
      justify-content: center;
  }
  .contenedor .header {
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    height: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    z-index: 1000;
  }

  #btn-menu {
    display: none;
  }

  header label {
    font-size: 0px;
    cursor: pointer;
    display: none;
  }

  .menu ul {
    background: rgba(0, 59, 18, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  .menu ul ul {
    display: none;
  }

  .menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
  }

  .menu a:hover {
    background: rgba(154, 206, 22);
    color: #fff;
  }

  .menu a span {
    margin-left: 10px;
  }

  .menu ul li:hover ul {
    display: block;
    position: absolute;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 7;
    background: none;
    grid-row: 3 / 5;
    min-width: 430px;
    min-height: 350px;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
    height: 90%;
    max-width: 430px;
    max-height: 350px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 3;
    grid-column-end: 7;
    width: auto;
    height: auto;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 70%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 200%;
    height: auto;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 200%;
    height: auto;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-area: 5 / 3;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  #imagen {
    width: 250px;
    height: 200px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: 0.5s;
    object-fit: cover;
  }

  #imagen:hover {
    scale: 1.2;
  }

  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 7;
  }

  #imagen {
    width: 250px;
    height: 200px;
  }


  .contenedor .widget-3 {
    width: 80%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    color: #000;
  }
  
  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 9 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 3;
    grid-column-start: 3;
    grid-column-end: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 4;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 5;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 250px;
    height: 200px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }

  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 9 /2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 9 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 9 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 9 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 11 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 11 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 11 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 13 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 13 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }


  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 16px;
  }

  h1 {
    font-size: 24px;
    color: black;
    font-family: "roboto";
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    grid-column-start: 1;
    grid-column-end: 7;
    text-align: center;
  }

  .pie {
    width: 130px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
    font-size: 15px;
  }

  .copy {
    font-size: 15px;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 25px;
  }
}

@media screen and (min-width: 1691px) and (max-width: 1920px) {
  .contenedor {
    width: 90%;
    max-width: 1550px;
    margin: 20px auto;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
    grid-template-rows: repeat(4, auto);

    grid-template-areas:
      "header header header"
      "contenido sidebar sidebar"
      "widget-2 widget-1 widget-2"
      "footer footer footer";
  }

  .contenedor .header {
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    height: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    z-index: 1000;
  }

  #btn-menu {
    display: none;
  }

  header label {
    font-size: 0px;
    cursor: pointer;
    display: none;
  }

  .menu ul {
    background: rgba(0, 59, 18, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  .menu ul ul {
    display: none;
  }

  .menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
  }

  .menu a:hover {
    background: rgba(154, 206, 22);
    color: #fff;
  }

  .menu a span {
    margin-left: 10px;
  }

  .menu ul li:hover ul {
    display: block;
    position: absolute;
  }

  .contenedor .contenido {
    grid-column-start: 1;
    grid-column-end: 7;
    background: none;
    grid-row: 2 / 5;
    min-width: auto;
    min-height: auto;
    text-decoration: none;
  }

  .contenedor .vid {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 7;
  }

  .banner {
    z-index: -1000;
  }

  #foto {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
    height: 90%;
    max-width: 450px;
    max-height: 350px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .contenedor .sidebar {
    background: none;
    text-align: justify;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    grid-column-start: 3;
    grid-column-end: 7;
    width: auto;
    height: auto;
    display: none;
  }

  .contenedor .widget-1 {
    background: none;
    width: 100%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nombre {
    width: 70%;
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2 / 3;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contenedor .widget-2 {
    display: none;
    width: 200%;
    height: auto;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  #tabla {
    width: 200%;
    height: auto;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-area: 5 / 3;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  #imagen {
    width: 181.75px;
    height: 131.39;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: 0.5s;
    object-fit: cover;
  }

  #imagen:hover {
    scale: 1.2;
  }

  .contenedor .widget-3 {
    width: 100%;
    height: 50%;
    grid-area: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    grid-column-start: 3;
    grid-column-end: 5;
    color: #000;
  }

  #imagen {
    width: 250px;
    height: 100%;
  }

  .contenedor .widget-4 {
    width: 100%;
    height: auto;
    grid-area: 6 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-5 {
    width: 100%;
    height: auto;
    grid-area: 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-6 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-7 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 6 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-8 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 9 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-9 {
    display: none;
    width: 100%;
    height: auto;
    grid-area: 8 / 3;
    grid-column-start: 3;
    grid-column-end: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9 {
    cursor: pointer;
  }

  .contenedor .widget-10 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-11 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 3;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-12 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 4;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-13 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 5;
    display: flex;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  #imagen1 {
    width: 250px;
    height: 200px;
  }

  .contenedor .widget-1,
  .contenedor .widget-2,
  .contenedor .widget-3,
  .contenedor .widget-4,
  .contenedor .widget-5,
  .contenedor .widget-6,
  .contenedor .widget-7,
  .contenedor .widget-8,
  .contenedor .widget-9,
  .contenedor .widget-10,
  .contenedor .widget-11,
  .contenedor .widget-12,
  .contenedor .widget-13,
  .contenedor .widget-14,
  .contenedor .widget-15,
  .contenedor .widget-16,
  .contenedor .widget-17,
  .contenedor .widget-18,
  .contenedor .widget-19,
  .contenedor .widget-20,
  .contenedor .widget-21,
  .contenedor .widget-22,
  .contenedor .widget-23,
  .contenedor .widget-24,
  .contenedor .widget-25,
  .contenedor .widget-26,
  .contenedor .widget-27,
  .contenedor .widget-28,
  .contenedor .widget-29,
  .contenedor .widget-30,
  .contenedor .widget-31 {
    cursor: pointer;
  }


  #imagen1 {
    transition: 0.5s;
  }

  #imagen1:hover {
    scale: 1.2;
  }

  .contenedor .widget-14 {
    width: 100%;
    height: auto;
    grid-area: 9 /2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-15 {
    width: 100%;
    height: auto;
    grid-area: 9 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-16 {
    width: 100%;
    height: auto;
    grid-area: 9 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-17 {
    width: 100%;
    height: auto;
    grid-area: 9 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-18 {
    width: 100%;
    height: auto;
    grid-area: 11 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-19 {
    width: 100%;
    height: auto;
    grid-area: 11 / 3;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-20 {
    width: 100%;
    height: auto;
    grid-area: 11 / 4;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-21 {
    width: 100%;
    height: auto;
    grid-area: 11 / 5;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-22 {
    width: 100%;
    height: auto;
    grid-area: 13 / 2;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-23 {
    width: 100%;
    height: auto;
    grid-area: 13 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-24 {
    width: 100%;
    height: auto;
    grid-area: 13 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .contenedor .widget-25 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f6b324;
    text-decoration: none;
  }

  .contenedor .widget-26 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #00257d;
  }

  .contenedor .widget-27 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-28 {
    width: 100%;
    height: 50%;
    grid-area: 10 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #e44713;
  }

  .contenedor .widget-29 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 2;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ec8123;
  }

  .contenedor .widget-30 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #7e3812;
  }

  .contenedor .widget-31 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 4;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
  }

  .contenedor .widget-32 {
    width: 100%;
    height: 50%;
    grid-area: 12 / 5;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: red;
  }

  .contenedor .widget-33 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-34 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  .contenedor .widget-35 {
    width: 100%;
    height: 50%;
    grid-area: 14 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 59, 18);
    text-align: center;
  }

  h2 {
    color: #fff;
    font-weight: lighter;
    font-family: "Roboto";
    font-size: 16px;
    text-decoration: none;
  }

  h1 {
    font-size: 24px;
    color: black;
    font-family: "roboto";
    text-decoration: none;
  }

  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    grid-column-start: 1;
    grid-column-end: 7;
    text-align: center;
  }

  .pie {
    width: 150px;
    height: auto;
  }

  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #aviso {
    color: #fff;
    cursor: pointer;
  }

  #icon {
    color: #fff;
    cursor: pointer;
    font-size: 35px;
  }
}
