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

html {
  font-size: 16px;
  font-family: "Lato";
  font-style: normal;
  color: #777;
}

body {
  background: #fff;
}

img {
	width:100%;
}

.main__header {
  padding: 0 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 100;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

.main__logo {
  min-width: 150px;
  max-width: 200px;
  margin-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-main {
  width: 680px;
  height: 100%;
}

.nav-main__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #070e07;
}

.nav-main__item {
  width: 220px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.nav-main__item:hover .nav-main__submenu {
  top: 65px;
}

.nav-main__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
}

.nav-main__item-titulo {
  width: 150px;
  color: #f1f2f3;
  font-size: 1.2rem;
  -webkit-transition: color 0.5s ease-out, font-size 0.3s linear;
  transition: color 0.5s ease-out, font-size 0.3s linear;
}

.nav-main__item:hover .nav-main__item-titulo {
  color: #bbdb20;
  font-size: 0.75rem;
}

.nav-main__item-subtitulo {
  width: 150px;
  color: #bbdb20;
  font-size: 0.75rem;
  -webkit-transition: color 0.5s ease-out, font-size 0.3s linear;
  transition: color 0.5s ease-out, font-size 0.3s linear;
}

.nav-main__item:hover .nav-main__item-subtitulo {
  color: #f1f2f3;
  font-size: 1.4rem;
}

.nav-main__item-icon {
  width: 50px;
  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;
}

.nav-main__item-icon i {
  color: #f1f2f3;
  font-size: 1rem;
  -webkit-transition: font-size 0.3s linear;
  transition: font-size 0.3s linear;
}

.nav-main__item:hover .nav-main__item-icon i {
  color: #bbdb20;
  font-size: 2rem;
}

.nav-main__submenu {
  position: absolute;
  top: -300px;
  left: 0;
  list-style: none;
  width: 100%;
  padding-bottom: 1rem;
  padding-top: 1rem;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  -webkit-transition: top 0.5s linear;
  transition: top 0.5s linear;
  z-index: -1;
}

.nav-main__submenu-item {
  line-height: 2rem;
  width: 100%;
}

.nav-main__submenu-item:hover {
  background-color: #bbdb20;
}

.nav-main__submenu-link {
  color: #f1f2f3;
  text-decoration: none;
  display: block;
  padding-left: 2rem;
}

.nav-main__submenu-link i {
  padding-right: 0.7rem;
}

.nav-main__submenu-link:hover {
  color: #070e07;
}

.main-btn {
  display: none;
  border: none;
  outline: none;
  background-color: transparent;
  color: #fff;
  font-size: 1.5rem;
}

@media only screen and (max-width: 850px) {
  .main-btn {
    display: block;
  }
  .main__header {
    display: block;
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  }
  .main__logo {
    max-width: 100%;
    width: 100%;
    padding: 1rem 2rem;
    background-color: #070e07;
  }
  .main__logo img {
    max-width: 150px;
  }
  .nav-main {
    position: relative;
    width: 100vw;
    height: 100vh;
    top: -1050px;
    z-index: -1;
    -webkit-transition: top .5s ease-out;
    transition: top .5s ease-out;
  }
  .nav-main__up {
    top: -10px;
  }
  .nav-main__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .nav-main__submenu {
    position: absolute;
    top: 82%;
    left: 0;
    list-style: none;
    width: 100%;
    padding-bottom: 1rem;
    padding-top: 1rem;
    background-color: skyblue;
    z-index: 2;
  }
}

.reserva-superior {
  height: 80px;
  background-color: #070e07;
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
}

.banner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  font-size: 4rem;
  background-image: url("/images/entrada.jpg");
}

.banner-main__contenedor {
  margin-right: 10vw;
  margin-left: auto;
  width: 35vw;
}

.banner-main__titulo {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  text-shadow: 1px 1px 1px #333;
  text-transform: uppercase;
  color: #bbdb20;
}

.banner-main__subtitulo {
  font-size: 0.5em;
  text-shadow: 1px 1px 1px #333;
  color: #fff;
}

@media only screen and (max-width: 1900px) {
  .banner-main__contenedor {
    margin-right: 9rem;
    width: 35vw;
  }
}

@media only screen and (max-width: 1200px) {
  .banner-main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 3rem;
    background-image: url("/images/entrada-dark.jpg");
  }
  .banner-main__contenedor {
    margin: 0;
    width: 50vw;
  }
}

@media only screen and (max-width: 900px) {
  .banner-main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2rem;
    background-image: url("/images/entrada-dark.jpg");
    max-height: 400px;
  }
  .banner-main__contenedor {
    margin: 0;
    width: 70vw;
  }
}

.banner--big {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 75vh;
  font-size: 4rem;
}

.banner--big__titulo {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  text-shadow: 1px 1px 1px #333;
  text-transform: uppercase;
}

.banner--big__subtitulo {
  font-size: 0.5em;
  text-shadow: 1px 1px 1px #333;
}

@media only screen and (orientation: portrait) {
  .banner--big {
    font-size: 2.5rem;
    min-height: 30vh;
  }
}

.banner--small {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 2.5rem;
  padding: 6rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#070e07), to(#333));
  background-image: linear-gradient(to right, #070e07, #333);
}

.banner--small__titulo {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  color: #bbdb20;
  text-shadow: 1px 1px 1px #333;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.banner--small__subtitulo {
  font-size: 0.5em;
  text-shadow: 1px 1px 1px #333;
}

@media only screen and (orientation: portrait) {
  .banner--small {
    font-size: 2rem;
    padding: 6rem 2rem;
  }
}

.grid--dark {
  background-color: #070e07;
  color: #fff;
}

.grid2 {
  padding: 6rem;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 0rem;
  grid-column-gap: 4rem;
}

.grid2__celda {
	align-self: center;
}

.grid2__imagen {
	height: 400px;
	
}

.grid2__imagen img {
	display:block;
	height: 100%;
	object-fit:contain;
}

.grid3 {
  padding: 0 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 2rem;
  grid-column-gap: 4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 4rem;
}

.grid3__celda {
  height: 100%;
}

.grid4 {
  padding: 0 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 2rem;
  grid-column-gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.grid4__celda {
  height: 100%;
}

.grid-multiple {
  display: -ms-grid;
  display: grid;
  grid-gap: 2rem;
  -ms-grid-columns: (minmax(100px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
}

.grid-iconos {
  display: -ms-grid;
  display: grid;
  grid-gap: 2rem;
  -ms-grid-columns: (minmax(100px, 150px))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(100px, 150px));
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-grid-row-align: center;
      align-self: center;
}

@media only screen and (max-width: 1400px) {
  .grid3,
  .grid4 {
    padding: 0 6rem;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-row-gap: 3rem;
  }
}

@media only screen and (max-width: 900px) {
  .grid2,
  .grid3,
  .grid4 {
    padding: 2rem;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .grid-multiple {
    -ms-grid-columns: (minmax(50px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }
  .grid-iconos {
    margin-top: 2rem;
  }
}

.enlace-imagen img {
  width: 100%;
}

.subbloque {
  margin-bottom: 4rem;
}

.bloque-txt__titulo {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #bbdb20;
}

.bloque-txt__parrafo {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  line-height: 1.75rem;
  font-size: 1rem;
}

.bloque-txt__parrafo:first-of-type::first-letter {
  font-weight: bold;
  font-size: 1.2rem;
}

.bloque-txt__destacado {
  border-left: 3px solid #bbdb20;
  padding: 1rem;
  align-self:center;
}

.bloque-txt__destacado span {
  border-left: 2px solid #bbdb20;
  padding-left: 1rem;
  color: #92aa1a;
  font-size: 1.35rem;
  display: block;
}

.bloque-txt__destacado span::before {
  content: "\f27a";
  color: #a744c5;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  padding-right: 0.5rem;
}

.serviciosblk {
  background-color: #f1f2f3;
  padding: 6rem;
}

.serviciosblk__titulo {
  text-transform: uppercase;
  text-align: center;
  color: #bbdb20;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.serviciosblk__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.serviciosblk__card {
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  height: 100%;
}

.serviciosblk__texto {
  text-align: center;
  color: #aaaaaa;
  margin-top: 0.5rem;
}

@media only screen and (max-width: 900px) {
  .serviciosblk {
    padding: 2rem;
  }
  .serviciosblk__titulo {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
}

.form-campo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 500px;
  padding: 0.7rem 1.4rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.form-campo label {
  color: #aaaaaa;
}

.form-campo input {
  border: none;
  margin-left: 0.7rem;
  font-size: 1rem;
  outline: none;
}

.form-campo input::-webkit-input-placeholder {
  color: #aaaaaa;
}

.form-campo input:-ms-input-placeholder {
  color: #aaaaaa;
}

.form-campo input::-ms-input-placeholder {
  color: #aaaaaa;
}

.form-campo input::placeholder {
  color: #aaaaaa;
}

.form-campo input:focus + label i {
  color: #333;
}

.form-campo textarea {
  border: none;
  margin-left: 0.7rem;
  font-size: 1rem;
  height: 154px;
  font-family: "Lato";
  outline: none;
}

.form-campo textarea::-webkit-input-placeholder {
  color: #aaaaaa;
}

.form-campo textarea:-ms-input-placeholder {
  color: #aaaaaa;
}

.form-campo textarea::-ms-input-placeholder {
  color: #aaaaaa;
}

.form-campo textarea::placeholder {
  color: #aaaaaa;
}

.form-campo textarea:focus + label i {
  color: #333;
}

.btn2__container {
  height: 120px;
  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;
}

.btn2 {
  position: relative;
  width: 240px;
  height: 40px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #a744c5;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px #cccccc;
          box-shadow: 0px 0px 10px #cccccc;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}

.btn2__texto {
  margin-left: 60px;
  position: relative;
  font-size: 0.8rem;
  text-transform: capitalize;
  color: #fff;
}

.btn2::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f4ad";
  width: 40px;
  height: 40px;
  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;
  font-size: 1rem;
  color: #a744c5;
  background-color: #e4d3e9;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn2:hover::after {
  content: attr(data-texto);
  width: 100%;
  font-family: "Lato";
  font-size: 0.8rem;
  font-weight: bold;
}

.minicard__bloque {
  padding: 6rem;
}

@media only screen and (max-width: 900px) {
  .minicard__bloque {
    padding: 2rem;
  }
}

.minicard__tituloprincipal {
  color: #bbdb20;
  text-align: center;
  font-size: 2.5rem;
}

.grid--dark .minicard__subtituloprincipal {
  color: #fff;
}

.minicard__subtituloprincipal {
  text-align: center;
}

.minicard__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 5rem 0 3rem 0;
}

.minicard {
  margin-bottom: 2rem;
  max-width: 280px;
  padding: 1rem 1rem;
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background-color .9s, -webkit-box-shadow .9s;
  transition: background-color .9s, -webkit-box-shadow .9s;
  transition: box-shadow .9s, background-color .9s;
  transition: box-shadow .9s, background-color .9s, -webkit-box-shadow .9s, transform .9s ;
}

.minicard:hover {
	transform: scale(1.1);
}

.minicard--dorada {
  border: 1px solid #dab902;
  -webkit-box-shadow: 0px 0px 10px #333, 0px -20px 0px -10px rgba(255, 255, 255, 0.7), 0px -30px 0px -30px rgba(255, 255, 255, 0.3);
          box-shadow: 0px 0px 10px #333, 0px -20px 0px -10px rgba(255, 255, 255, 0.7), 0px -30px 0px -30px rgba(255, 255, 255, 0.3);
}

.minicard--dorada:hover,
.minicard--dorada:focus {
  background-color: #fcda18;
  -webkit-box-shadow: 0px 0px 10px #333, 0px -30px 0px -15px rgba(255, 255, 255, 0.7), 0px -70px 0px -40px rgba(255, 255, 255, 0.3);
          box-shadow: 0px 0px 10px #333, 0px -30px 0px -15px rgba(255, 255, 255, 0.7), 0px -70px 0px -40px rgba(255, 255, 255, 0.3);
}

.minicard--verde {
  border: 1px solid #92aa1a;
  -webkit-box-shadow: 0px 0px 10px #333, 0px -15px 0px -10px rgba(0, 0, 0, 0.3), 0px -30px 0px -30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px #333, 0px -15px 0px -10px rgba(0, 0, 0, 0.3), 0px -30px 0px -30px rgba(0, 0, 0, 0.1);
}

.minicard--verde:hover,
.minicard--verde:focus {
  background-color: #bbdb20;
  -webkit-box-shadow: 0px 0px 10px #333, 0px -30px 0px -15px rgba(0, 0, 0, 0.3), 0px -70px 0px -40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px #333, 0px -30px 0px -15px rgba(0, 0, 0, 0.3), 0px -70px 0px -40px rgba(0, 0, 0, 0.1);
}

.minicard__titulo {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5rem;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.minicard--dorada .minicard__titulo {
  border-bottom: 1px solid #dab902;
  color: #fff;
}

.minicard--dorada:hover .minicard__titulo {
  color: #070e07;
}

.minicard--verde .minicard__titulo {
  border-bottom: 1px solid #92aa1a;
  color: #070e07;
}

.minicard__descripcion {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.minicard--dorada .minicard__descripcion {
  color: #fff;
  text-align: center;
}

.minicard--dorada:hover .minicard__descripcion {
  color: #070e07;
}

.minicard--verde .minicard__descripcion {
  color: #070e07;
  text-align: center;
}

.minicard__puntos {
  color: #fff;
  margin-bottom: 0.5rem;
}

.minicard__puntos i {
  margin-right: 0.5rem;
}

.minicard:hover .minicard__puntos {
  color: #070e07;
}

.minicard__link {
  display: block;
  color: #bbdb20;
  text-align: center;
  text-decoration: none;
  padding: 1rem;
}

.minicard__link i {
  border: 1px solid #92aa1a;
  padding: 0.8rem;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 5px #aaaaaa;
          box-shadow: 0px 0px 5px #aaaaaa;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.minicard__link:hover i {
  color: #070e07;
}

.minicard__link i:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #070e07;
}

.service-card {
  border-radius: 5px;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0px 0px 5px #aaaaaa;
          box-shadow: 0px 0px 5px #aaaaaa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1rem;
  height: 100%;
}

.service-card__cuerpo {
  padding: 1rem;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-card__titulo {
  color: #070e07;
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

.service-card__texto {
  color: #aaaaaa;
}

.service-card__enlace {
  text-align: center;
}

.doblecolumna {
  padding: 0 6rem;
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 4rem;
          column-gap: 4rem;
  margin-bottom: 4rem;
}

.doblecolumna__titulo {
  -webkit-column-span: all;
          column-span: all;
}

@media only screen and (max-width: 900px) {
  .doblecolumna {
    padding: 2rem;
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.iconos {
  -webkit-filter: drop-shadow(0px 0px 10px #aaaaaa);
          filter: drop-shadow(0px 0px 10px #aaaaaa);
  margin-bottom: 1rem;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.iconos:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.btn--outline-gris {
  color: #aaaaaa;
  border: 1px solid #aaaaaa;
}

.nopadding {
  padding: 2rem 0;
}

.bigpadding {
  padding-bottom: 6rem;
}

.bigmargin {
  margin-bottom: 6rem;
}

.bigpadding--doble {
  padding-bottom: 6rem;
  padding-top: 6rem;
}

.text-blanco {
  color: #fff;
}

.text-centrado {
  text-align: center;
}

.footer {
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 1rem;
  text-align: center;
  color: #f1f2f3;
  background-color: #070e07;
  background-image: -webkit-gradient(linear, left top, right top, from(#070e07), to(#333));
  background-image: linear-gradient(to right, #070e07, #333);
}

.footer-menus {
  max-width: 1100px;
  margin: 1rem auto;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f2f3;
}

.footer-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-menu__list,
.footer__bloque {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.footer-menu,
.footer__bloque {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-top: 0.5rem;
}

.footer-menu__item {
  list-style: none;
}

.footer-menu__enlace {
  text-decoration: none;
  color: #f1f2f3;
}

.footer-menu__enlace:hover {
  text-decoration: none;
  color: #bbdb20;
}

.footer__icono {
  color: #fff;
}

.footer-menu__titulo {
  border-bottom: 1px solid #f1f2f3;
  line-height: 2rem;
}

.footer-bloque__titulo {
  border-bottom: 1px solid #f1f2f3;
  line-height: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer__idioma {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  margin: 1rem 0.2rem;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  border: 1px solid #fff;
}

.footer__idioma:hover {
  text-decoration: none;
  color: #fff;
  background-color: #a744c5;
}

.idioma_seleccionado {
  background-color: #a744c5;
  color: #fff;
}

@media screen and (min-width: 415px) {
  .footer-menu,
  .footer__bloque {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
}

.entrada {
  background-image: url("/images/entrada.jpg");
}

.amenazas {
  background-image: url("/images/amenazas.jpg");
}

.consecuencias {
  background-image: url("/images/consecuencias.jpg");
}

.proteccion {
  background-image: url("/images/proteccion.jpg");
}

.soluciones {
  background-image: url("/images/soluciones-personalizadas.jpg");
}

.informacion {
  background-image: url("/images/informacion.jpg");
}

.servicios {
  background-image: url("/images/servicios.jpg");
}

.asesoria-legal {
  background-image: url("/images/asesoria-legal.jpg");
}

.mantenimiento {
  background-image: url("/images/mantenimiento.jpg");
}

.nube {
  background-image: url("/images/nube.jpg");
}

.seguridad {
  background-image: url("/images/seguridad.jpg");
}

.redes {
  background-image: url("/images/redes.jpg");
}

.web {
  background-image: url("/images/internet.jpg");
}

.compras {
  background-image: url("/images/compras.jpg");
}

.virtualizacion {
  background-image: url("/images/virtualizacion.jpg");
}
/*# sourceMappingURL=style.css.map */