* {
  padding: 0;
  margin: 0;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  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;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: titulos;
  font-style: normal;
  font-weight: normal;
  src: url(../fuentes/911Fonts.com_CenturyGothicBold__-_911fonts.com_fonts_pMgo.ttf);
}

@font-face {
  font-family: textos;
  font-style: normal;
  font-weight: normal;
  src: url(../fuentes/911Fonts.com_CenturyGothicRegular__-_911fonts.com_fonts_mhpY.ttf);
}

.regresar {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  height: 50px;
  width: 50px;
  z-index: 1;
  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;
  border-radius: 0 10px 10px 0;
}

.regresar a {
  color: #111525;
  font-size: 2em;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.regresar:hover {
  cursor: pointer;
  background: white;
}

.regresar:hover a {
  font-size: 2.5em;
}

.dosecciones {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-image: url(../imagenes/fondosecciones01.png);
  background-size: cover;
}

.container {
  position: relative;
  height: 100vh;
  width: 50%;
  padding: 5%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #1f243a8a;
  color: white;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr .5fr 2fr;
      grid-template-rows: 1fr .5fr 2fr;
      grid-template-areas: "titulo" "secciones" "contenido";
}

.titulo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: titulo;
  width: 100%;
  font-family: titulos;
  text-transform: uppercase;
}

.titulo h2 {
  font-family: textos;
  font-size: 1em;
}

.icon {
  width: 100%;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: secciones;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.icon h1 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1em;
  font-family: titulos;
  -webkit-transition: .3s;
  transition: .3s;
}

.icon .iconBx {
  text-align: center;
}

.icon .iconBx.active h1 {
  color: white;
  font-size: 1.2em;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: contenido;
}

.content p, .content li, .content h2 {
  font-family: textos;
}

.content .contentBx {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.content .contentBx.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.galeria {
  width: 50%;
  overflow: hidden;
  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;
}

@media screen and (max-width: 760px) {
  .dosecciones {
    height: 150vh;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .galeria {
    width: 100%;
    height: 100%;
    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;
  }
  .container {
    width: 100%;
    height: 90%;
    padding: 15% 5% 0 5%;
  }
}
/*# sourceMappingURL=secciones.css.map */