/*=============================================================
Aspectos Generales
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #00abe4;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover {
  color: #00abe4;
  text-decoration: underline;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 10px;
  height: 100%;
  font-family: "raleway-rg";
}

body .wrapper {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  body .wrapper {
    width: 84%;
  }
}

@media only screen and (min-width: 992px) {
  body .wrapper {
    max-width: 1140px;
  }
}

body .wrapper-sm {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

strong {
  font: inherit;
}

p, li, a, q {
  font-size: 1.6rem;
}

.titulo {
  font: 3.6rem "lemonmilk-bdit";
  color: #005ca9;
}

.subtitulo {
  font: 2rem "lemonmilk-bdit";
  color: #005ca9;
}

.texto-blanco {
  color: #fff;
}

.texto-azul {
  color: #005ca9;
}

.light {
  font-family: "lemonmilk-ltit";
}

div img {
  width: 100%;
}

input[type=text], input[type=tel], input[type=email], textarea {
  width: 100%;
}

input[type=text], input[type=tel], input[type=email], input[type=url], label, textarea {
  display: block;
  font-size: 1.6rem;
}

input, textarea {
  border: none;
  outline: none;
  padding: 1rem;
  border-radius: 6px 6px 6px 6px;
  background-color: #d6d6d6;
}

.cta-btn {
  color: #fff !important;
  background-color: #00abe4;
  padding: 1.2rem 3.6rem;
  display: inline-block;
  border-radius: 8px;
  -webkit-transform: skew(-6deg);
  -ms-transform: skew(-6deg);
  transform: skew(-6deg);
  font: 1.7rem "raleway-rg";
  border: none;
  line-height: 1.5 !important;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .cta-btn {
    line-height: 1 !important;
  }
}

.cta-btn:hover {
  background-color: #005ca9;
  text-decoration: none;
}

.contact-btn {
  position: fixed;
  z-index: 10;
  right: 2rem;
  bottom: 2rem;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
}

.contact-btn:hover {
  color: #fff;
  text-decoration: none;
}

.seccion-primera {
  padding-top: 8rem;
}

.seccion {
  overflow: hidden !important;
  padding-bottom: 8rem;
}

.seccion .wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 992px) {
  .seccion .wrapper-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.seccion .wrapper-flex .tarjeta {
  width: 100%;
  position: relative;
}

.seccion .wrapper-flex .tarjeta:not(:last-child) {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 992px) {
  .seccion .wrapper-flex .tarjeta:not(:last-child) {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .seccion .wrapper-flex .tarjeta {
    width: calc(33.3333333% - 2rem);
  }
}

.seccion .wrapper-flex .tarjeta .frame {
  padding: 2rem;
  background-color: #005ca9;
  border-radius: 20px;
  -webkit-transform: skew(-6deg);
  -ms-transform: skew(-6deg);
  transform: skew(-6deg);
}

.seccion .wrapper-flex .tarjeta p {
  color: #fff;
}

.seccion .wrapper-flex .fondo-gris {
  background-color: #646363;
}

.seccion .wrapper-flex .fondo-azul {
  background-color: #005ca9;
}

.seccion .wrapper-flex .articulo {
  width: 100%;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 992px) {
  .seccion .wrapper-flex .articulo {
    width: calc(50% - 2rem);
    margin-bottom: 0;
  }
}

.seccion .wrapper-flex .tarjeta-img {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .seccion .wrapper-flex .tarjeta-img {
    width: calc(50% - 2rem);
  }
}

.seccion .wrapper-flex .tarjeta-img .frame {
  border-radius: 20px;
  -webkit-transform: skew(-6deg);
  -ms-transform: skew(-6deg);
  transform: skew(-6deg);
  overflow: hidden;
}

.whatsapp-modal {
  width: calc(100% - 2rem);
  position: fixed;
  right: 1rem;
  background-color: #EAE5DB;
  z-index: 10;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (min-width: 576px) {
  .whatsapp-modal {
    max-width: 400px;
  }
}

.whatsapp-modal .whatsapp-header {
  background-color: #128c7e;
  padding: 1rem;
  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;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.75);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.75);
}

.whatsapp-modal .whatsapp-header .destino {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.whatsapp-modal .whatsapp-header .destino p {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.7rem;
}

.whatsapp-modal .whatsapp-header .destino p span {
  font-weight: normal;
  font-size: 1.5rem;
}

.whatsapp-modal .whatsapp-header .pic {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1rem;
}

.whatsapp-modal .whatsapp-header .fas {
  font-size: 3rem;
  color: #0c5f55;
  cursor: pointer;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.25);
}

.whatsapp-modal .whatsapp-body {
  padding: 2rem 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.whatsapp-modal .whatsapp-body .dialog {
  width: 13px;
  height: 12px;
  background-image: url(../img/dialog.png);
  position: relative;
  z-index: 2;
}

.whatsapp-modal .whatsapp-body .mensaje {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0px 8px 8px 8px;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.whatsapp-modal .whatsapp-body .mensaje p {
  color: #000;
  font-size: 1.5rem;
}

.whatsapp-modal .whatsapp-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 2rem 1rem 1rem;
}

.whatsapp-modal .whatsapp-footer .mensaje {
  background-color: #D1FEC9;
  padding: 1rem;
  border-radius: 16px;
  width: calc(100% - (50px + 2rem/2));
  -webkit-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15);
}

.whatsapp-modal .whatsapp-footer .mensaje p {
  color: #000;
  font-size: 1.5rem;
}

.whatsapp-modal .whatsapp-footer .send-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url(../img/send-btn-dark.png);
}

.whatsapp-modal2 {
  bottom: 1rem;
  opacity: 1;
}

/* Fin de Aspectos Generales  ================================*/
/*=============================================================
Header
==============================================================*/
.header {
  padding: 1rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

@media only screen and (min-width: 576px) {
  .header {
    padding: 2rem 0;
  }
}

.header .wrapper {
  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;
}

.header .logo {
  width: 188px;
  height: 52px;
  background-image: url(../img/logo-blanco.png);
  background-size: contain;
}

@media only screen and (min-width: 992px) {
  .header .logo {
    width: 250px;
    height: 69px;
  }
}

.header .menu-btn .uno, .header .menu-btn .dos, .header .menu-btn .tres {
  background-color: #fff;
}

.header .main-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 171, 228, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  top: 0;
  left: 0;
  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;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 200;
}

@media only screen and (min-width: 992px) {
  .header .main-menu {
    position: relative;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto;
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.header .main-menu .close-btn {
  height: 72px;
}

.header .menu-opened {
  -webkit-clip-path: circle(150% at 50% 50%);
  clip-path: circle(150% at 50% 50%);
}

.header .menu-closed {
  -webkit-clip-path: circle(0% at 50% 50%);
  clip-path: circle(0% at 50% 50%);
}

.header .menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  padding: 0;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .header .menu {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header .menu li:not(:last-child) {
    margin-right: 4rem;
  }
}

.header .menu li {
  position: relative;
  left: -100%;
}

@media only screen and (min-width: 992px) {
  .header .menu li {
    width: auto;
    left: 0;
  }
}

.header .menu a {
  font: 2.4rem "lemonmilk-it";
  color: #000;
  line-height: 2.5;
}

@media only screen and (min-width: 992px) {
  .header .menu a {
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
  }
}

.header .menu a:hover {
  color: #fff;
  text-decoration: none;
}

@media only screen and (min-width: 992px) {
  .header .menu a:hover {
    color: #00abe4;
  }
}

.header .menu .selected {
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .header .menu .selected {
    color: #00abe4;
  }
}

.blur {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.header2 {
  padding: 1rem 0;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  -webkit-animation: dropheader 0.5s linear;
  animation: dropheader 0.5s linear;
}

.header2 .logo {
  background-image: url(../img/logo.png);
  width: 115px;
  height: 32px;
}

@media only screen and (min-width: 992px) {
  .header2 .logo {
    width: 140px;
    height: 39px;
  }
}

.header2 .main-menu .close-btn {
  height: 52px;
}

.header2 .menu-btn .uno, .header2 .menu-btn .dos, .header2 .menu-btn .tres {
  background-color: #00abe4;
}

.header2 .menu a {
  color: #000;
}

.header2 .menu a:hover {
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .header2 .menu a:hover {
    color: #00abe4;
  }
}

@-webkit-keyframes dropheader {
  from {
    top: -76px;
  }
  to {
    top: 0;
  }
}

@keyframes dropheader {
  from {
    top: -76px;
  }
  to {
    top: 0;
  }
}

.menu-btn, .menu-btn2, .menu-btn-close {
  width: 30px;
  cursor: pointer;
}

.menu-btn .uno, .menu-btn .dos, .menu-btn .tres, .menu-btn2 .uno, .menu-btn2 .dos, .menu-btn2 .tres, .menu-btn-close .uno, .menu-btn-close .dos, .menu-btn-close .tres {
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.menu-btn .dos, .menu-btn2 .dos, .menu-btn-close .dos {
  margin: 6px 0;
}

.close-btn {
  position: absolute;
  top: 0;
  width: 100%;
  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;
  z-index: 300;
}

.menu-btn2 .dos, .menu-btn-close2 .dos {
  opacity: 0;
}

.menu-btn2 .uno, .menu-btn-close2 .uno {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn2 .tres, .menu-btn-close2 .tres {
  -webkit-transform: rotate(-45deg) translate(5px, -7px);
  -ms-transform: rotate(-45deg) translate(5px, -7px);
  transform: rotate(-45deg) translate(5px, -7px);
}

.menu-btn-close .uno, .menu-btn-close .dos, .menu-btn-close .tres {
  background-color: #fff !important;
}

/* Fin de Header  ============================================*/
/*=============================================================
Main
==============================================================*/
.slider {
  position: relative;
  overflow: hidden;
  height: 60vh;
  width: 100vw;
}

@media only screen and (min-width: 992px) {
  .slider {
    height: 100vh;
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
  z-index: 10;
}

.slide .content {
  position: absolute;
  top: 50%;
  left: -600px;
  opacity: 0;
  width: 75%;
  margin: 0 auto;
}

@media only screen and (min-width: 992px) {
  .slide .content {
    max-width: 1140px;
  }
}

.slide .content h2, .slide .content p {
  text-shadow: 2px 2px 6px #000;
}

.slide .content h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem !important;
  line-height: 1;
}

@media only screen and (min-width: 992px) {
  .slide .content h2 {
    font-size: 5rem;
  }
}

.slide .content p {
  font-size: 1.9rem;
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .slide .content p {
    font-size: 2rem;
  }
}

.slide .content a {
  margin-top: 1rem;
}

.slide.current .content {
  opacity: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.7s ease-in-out 0.3s;
  -o-transition: all 0.7s ease-in-out 0.3s;
  transition: all 0.7s ease-in-out 0.3s;
}

.buttons button#next {
  position: absolute;
  right: 5px;
  z-index: 10;
}

.buttons button#prev {
  position: absolute;
  left: 5px;
  z-index: 10;
}

.buttons button {
  font-size: 6rem;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
  opacity: 0.2;
  top: 30%;
}

@media only screen and (min-width: 992px) {
  .buttons button {
    top: 50%;
  }
}

.buttons button:hover {
  opacity: 0.4;
}

/* Backgorund Images */
.slide:first-child {
  background: url(../img/home-slider/1.jpg) no-repeat center top/cover;
}

.slide:nth-child(2) {
  background: url(../img/home-slider/2.jpg) no-repeat center top/cover;
}

.slide:nth-child(3) {
  background: url(../img/home-slider/3.jpg) no-repeat center top/cover;
}

.slide:nth-child(4) {
  background: url(../img/home-slider/4.jpg) no-repeat center top/cover;
}

@media only screen and (min-width: 992px) {
  .seccion-marcas .marcas {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.seccion-marcas .marca {
  width: 150px;
}

.seccion-contacto .wrapper-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 992px) {
  .seccion-contacto .wrapper-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 992px) {
  .seccion-contacto .wrapper-sm .formulario-contacto, .seccion-contacto .wrapper-sm .datos-contacto {
    width: calc(50% - 2rem);
  }
}

.seccion-contacto .formulario-contacto form {
  margin-top: 2rem;
}

.seccion-contacto .formulario-contacto input[type=text], .seccion-contacto .formulario-contacto input[type=tel], .seccion-contacto .formulario-contacto input[type=email], .seccion-contacto .formulario-contacto textarea {
  margin-top: 3.6rem;
  border: 2px solid #d6d6d6;
}

.seccion-contacto .formulario-contacto .formgroup {
  position: relative;
}

.seccion-contacto .formulario-contacto label {
  position: absolute;
  color: #777;
  top: 1.33333rem;
  left: 1rem;
  text-align: left;
  cursor: text;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.seccion-contacto .formulario-contacto textarea {
  resize: none;
  height: 175px;
}

.seccion-contacto .formulario-contacto .forminput:focus + .formlabel,
.seccion-contacto .formulario-contacto .forminput:not(:placeholder-shown) + .formlabel {
  -webkit-transform: translateY(-38px) scale(0.8);
  -ms-transform: translateY(-38px) scale(0.8);
  transform: translateY(-38px) scale(0.8);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  cursor: pointer;
  font-family: "raleway-bd";
}

.seccion-contacto .formulario-contacto input[type=button], .seccion-contacto .formulario-contacto input[type=submit] {
  margin-top: 3rem;
  width: 100%;
  height: 45px;
}

.seccion-contacto .formulario-contacto .warning-text {
  color: #a94242;
  font-family: "raleway-bd";
  font-size: calc(1.6rem * 0.9);
  position: absolute;
  right: 1rem;
  top: -24px;
}

.seccion-contacto .datos-contacto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 4.8rem;
}

.seccion-contacto .dato-cont {
  border-radius: 12px 12px 12px 12px;
}

.seccion-contacto .dato-cont:not(:last-child) {
  background-color: rgba(0, 92, 169, 0.25);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .seccion-contacto .dato-cont:not(:last-child) {
    width: auto;
  }
}

.seccion-contacto .dato-cont:last-child {
  overflow: hidden;
  width: 100%;
  height: 321px;
}

.seccion-contacto .dato-cont:last-child iframe {
  height: 100%;
}

.seccion-contacto .dato-cont i {
  font-size: 2.6rem;
  margin-right: 2rem;
}

.seccion-contacto .dato-cont a {
  color: #005ca9;
  font-family: "raleway-bd";
}

.seccion-contacto .dato-cont p {
  margin-bottom: 0;
  font: 1.5rem "raleway-rg";
  color: #005ca9;
}

/* Fin de Main  ============================================*/
/*=============================================================
Footer
==============================================================*/
.footer {
  padding: 8rem 0 4rem 0;
  background-color: #646363;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .footer {
    text-align: left;
  }
}

.footer a, .footer p {
  color: #fff;
}

.footer ul {
  padding: 0;
}

.footer .wrapper .row .col:not(:first-child) {
  margin-top: 4rem;
}

@media only screen and (min-width: 992px) {
  .footer .wrapper .row .col:not(:first-child) {
    margin-top: 0;
  }
}

.footer .footer-menu li {
  list-style: none;
}

@media only screen and (min-width: 992px) {
  .footer .footer-menu li {
    list-style: square;
  }
  .footer .footer-menu li::marker {
    color: #fff;
  }
}

.footer .footer-menu a {
  text-transform: uppercase;
}

.footer .rs-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2rem;
}

@media only screen and (min-width: 992px) {
  .footer .rs-icons {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.footer .rs-icons li {
  text-align: center;
  list-style: none;
}

.footer .rs-icons li:not(:last-child) {
  margin-right: 1rem;
}

.footer .rs-icons li a {
  width: 44px;
  height: 44px;
  display: block;
  font-size: 2.4rem;
  color: #646363;
  line-height: 44px;
  background-color: #fff;
  border-radius: 50%;
}

.footer .footer-contacto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
  .footer .footer-contacto {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.footer .footer-contacto i {
  width: 24px;
}

.footer .logo-footer {
  width: 220px;
  margin: 0 auto;
}

.footer .copyright {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

/* Fin de Footer  ============================================*/
