@charset "UTF-8";
/* Font  */
@font-face {
  font-family: "Glacial Indifference";
  src: url("../font/GlacialIndifference-Regular.otf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Glacial Indifference";
  src: url("../font/GlacialIndifference-Bold.otf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

section {
  padding: 100px 0;
}

img {
  width: 100%;
  max-width: 100%;
}

h1 {
  color: #FFF;
  text-align: center;
  font-family: "Glacial Indifference";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.banner p {
  color: #FFF;
  text-align: center;
  font-family: "Glacial Indifference";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

button, a.btn-default, .btnbr {
  color: var(--negro, #1E1E1E);
  text-align: center;
  font-family: "Glacial Indifference";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  padding: 10px 40px;
  border-radius: 50px;
  background: var(--gris, #F4F2F2);
}

figure.ilist {
  margin: 0;
  padding: 0;
}
figure.ilist img {
  width: 100px;
  height: auto;
}

h2 {
  color: var(--negro, #1E1E1E);
  font-family: "Glacial Indifference";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h4 {
  color: var(--negro, #1E1E1E);
  font-family: "Glacial Indifference";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

p {
  color: var(--negro, #1E1E1E);
  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}

a {
  text-decoration: none;
}

.hiddenT {
  display: block;
}

.hiddenD {
  display: none;
}

.hiddenD1 {
  display: none;
}

.hiddenM {
  display: block;
}

.menu a.btn-default.hiddenD {
  display: none;
}

.lineas {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
}

.lineas-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

.lineas-marquee span {
  display: inline-block;
  padding-right: 2rem; /* Espacio entre repeticiones */
  font-family: "Glacial Indifference";
  font-size: 15px;
  letter-spacing: 0.3em;
  color: #222;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 992px) {
  .hiddenD1 {
    display: flex;
  }
  .hiddenT {
    display: none;
  }
  h2 {
    font-size: 23px;
  }
  .mySwiper {
    padding-bottom: 50px;
  }
  .mySwiper .swiper-pagination-bullet-active {
    background: #fff;
  }
  .mySwiper .swiper-pagination-bullet {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .hiddenM {
    display: none;
  }
  .hiddenD {
    display: block;
  }
  h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
  }
  .banner p {
    font-size: 20px;
  }
  h2 {
    font-size: 26px;
  }
  .lineas-marquee span {
    font-size: 12px;
  }
}
/* Menu  */
.menu {
  padding: 0;
  width: 100%;
  top: 10px;
  left: 0;
}
.menu img {
  height: 55px;
  width: auto;
}
.menu div#navbarSupportedContent {
  padding: 23px 0;
}
.menu a.btn-default {
  display: block;
  margin: 25px 0;
  border-radius: 25px;
  background-color: #000;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  text-align: center;
  font-family: Apercu;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px; /* 164.286% */
  text-transform: uppercase;
  padding: 6px 23px;
}
.menu nav.navbar.navbar-expand-lg.navbar-light.bg-light {
  background: transparent !important;
  border-radius: 30px;
  padding: 10px 20px;
}
.menu nav.navbar.navbar-expand-lg.navbar-light.bg-light {
  width: 100%;
  display: block;
}
.menu .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  width: 100%;
  display: flex;
  justify-content: right;
}
.menu a.nav-link {
  padding: 12px 15px !important;
  text-align: left;
  color: var(--negro, #1E1E1E);
  font-family: "Glacial Indifference";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.menu a.nav-link:hover {
  color: #E96F0D;
}
.menu figure {
  margin: 0;
  padding: 10px;
}
.menu .logoH {
  transition: transform 0.3s ease;
  width: 120px;
}
.menu .logoH:hover {
  animation: heartBeat 0.5s forwards; /* Cambia "bounce" por cualquier otra animación */
}
.menu svg.bi.bi-arrow-right-short {
  width: 56px;
  font-size: 50px;
  height: 40px;
  color: #000;
  background: #000;
  border-radius: 13px;
  margin: 0;
  margin-top: -6px;
  margin-left: 12px;
}

.menu li button {
  display: none;
}

button.navbar-toggler {
  border: none;
}

button.navbar-toggler img {
  max-width: 30px !important;
}

.flecha {
  display: none;
}

.btnheader {
  display: none;
}

@media screen and (max-width: 992px) {
  a.btn-default.hiddenD {
    max-width: 60%;
    display: block;
    margin: 20px auto 40px;
    color: #000;
    text-align: center;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    padding: 10px 40px;
    border: none;
    width: 100%;
    border-radius: 9px;
    background: #F6D1DF;
  }
  div#navbarSupportedContent {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4156862745);
  }
  div#navbarSupportedContent a.nav-link {
    color: #000;
    font-size: 19px;
    text-align: center;
    border-bottom: 1px solid white;
    padding-left: 3px !important;
    padding: 12px !important;
  }
  .navbar {
    justify-content: flex-end;
  }
  .btnheader {
    display: block;
    margin: 12px auto;
  }
  .menu .navbar-nav {
    flex-direction: column !important;
    width: 100% !important;
    display: flex !important;
    text-align: center;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }
  li.nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 0;
    padding: 15px 40px;
  }
  li.nav-item.active:first-child {
    border-top: 1px white solid;
    padding-top: 30px;
  }
  button.navbar-toggler {
    box-shadow: none;
  }
  .menu li a {
    text-decoration: none;
  }
  .menu li a button {
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: "DM Serif Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #E41770;
    padding: 10px 40px;
    border-radius: 20px;
    border: 0;
    margin: 0 auto;
    max-width: -moz-max-content;
    max-width: max-content;
    display: block;
  }
  li.nav-item.active:first-child {
    border-top: 0px white solid;
    padding-top: 30px;
  }
  button.navbar-toggler {
    color: #fff;
    text-align: center;
    font-family: "Glacial Indifference";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    background: #000;
    text-transform: none;
    padding: 2px 35px;
    border-radius: 20px;
    float: right;
    margin: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .menu figure img {
    max-width: 300px;
    width: 86%;
    height: auto;
  }
  .menu figure img.logo {
    height: 34px;
    width: auto !important;
  }
  .menu a.nav-link {
    padding: 20px 20px !important;
    color: #1B1B1B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px; /* 115% */
    text-transform: capitalize;
  }
  .menu li.nav-item {
    width: 100%;
  }
  .menu .navbar-nav li.nav-item.active:first-child {
    border: none;
  }
  .btn-default.hiddenD {
    max-width: 80%;
    padding: 10px;
    margin: 30px auto;
  }
  li.nav-item {
    padding: 10px 0;
  }
  a.btn-default.hiddenD {
    max-width: 75%;
    display: block;
    margin: 20px auto 40px;
  }
  .menu button.navbar-toggler {
    float: right;
    padding: 3px 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: 13px 0;
  }
  .menu div#navbarSupportedContent a.nav-link {
    color: #000;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid white;
    padding-left: 3px !important;
    padding: 20px !important;
    text-transform: uppercase;
    padding: 7px !important;
  }
}
/* Menu  */
.banner {
  background-image: url("../imagenes/header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 300px 0;
  position: relative;
}
.banner p {
  margin: 20px 0 30px;
}
.banner::before {
  content: "";
  position: absolute;
  bottom: -9%;
  right: 6%;
  width: 186px;
  height: 186px;
  z-index: 1;
  background: url(../imagenes/sello.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 992px) {
  .banner {
    padding: 250px 20px;
  }
  .banner .row {
    max-width: 600px;
    margin: 0 auto;
  }
  .banner .row p {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    background-image: url("../imagenes/movil/header.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 15px;
  }
  .banner p {
    margin: 20px 0 30px;
  }
  .banner::before {
    content: "";
    position: absolute;
    bottom: -9%;
    right: 6%;
    width: 140px;
    height: 140px;
    z-index: 1;
    background: url(../imagenes/sello.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.nosotros {
  padding: 300px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.nosotros .col-md-6 {
  padding: 40px;
}
.nosotros .col-md-6.cont {
  padding: 25px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.nosotros .col-md-6.cont h2 {
  margin: 30px 0;
}

@media screen and (max-width: 992px) {
  .nosotros .col-md-6.cont {
    padding: 10px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .nosotros .col-md-6.cont h2 {
    margin: 20px 0;
  }
  .nosotros {
    padding: 200px 15px 100px;
  }
}
@media screen and (max-width: 767px) {
  .nosotros {
    padding: 150px 15px 100px;
  }
  .nosotros .col-md-6 {
    padding: 20px;
  }
  .nosotros .col-md-6.cont {
    padding: 20px;
  }
  .nosotros .col-md-6.cont h2 br {
    display: none;
  }
}
.beneficios {
  max-width: 90%;
  margin: 0 auto;
}
.beneficios .row.bg {
  border-radius: 30px;
  background: var(--verde, #B7CEC4);
  padding: 100px;
}
.beneficios .row.bg .cardSlider {
  border-radius: 10px;
  background: #FFF;
  min-height: 350px;
  padding: 50px 25px 24px 28px;
}
.beneficios .row.bg .cardSlider h4 {
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.beneficios h2 {
  text-align: center;
  padding-top: 70px;
}

@media screen and (max-width: 992px) {
  .beneficios {
    padding: 100px 0px;
  }
  .beneficios .row.bg {
    padding: 40px 20px 60px;
  }
  .beneficios h2 {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .beneficios {
    padding: 50px 0px;
  }
  .beneficios .cardSlider {
    min-height: 400px !important;
  }
  .beneficios .mySwiper {
    padding-bottom: 10px;
  }
  .beneficios h2 {
    padding-top: 40px;
    font-size: 23px;
  }
}
section.form {
  background-image: url(../imagenes/form.png);
  background-size: 300px;
  background-position: 88% 70%;
  background-repeat: no-repeat;
  padding-bottom: 200px;
}
section.form fieldset {
  max-width: 600px !important;
}
section.form form {
  padding: 0 60px;
  max-width: 840px;
  margin: 0 auto;
}
section.form .col-md-6.cont {
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
section.form .col-md-6.cont h2 {
  margin: 30px 0;
}
section.form form fieldset.form-columns-1 .hs-input {
  width: 100%;
}
section.form form button, section.form form input, section.form form optgroup, section.form form select, section.form form textarea {
  margin: 0;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  padding: 10px 10px 10px;
  border-radius: 0;
  color: var(--negro, #1E1E1E);
  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.form form ::-moz-placeholder {
  color: #000;
}
section.form form ::placeholder {
  color: #000;
}
section.form form label.hs-error-msg.hs-main-font-element {
  text-align: left;
  color: #000;
  font-size: 12px;
}
section.form form option {
  color: #000;
}
section.form form label.hs-error-msg.hs-main-font-element {
  text-align: left;
  color: #fff;
  font-size: 12px;
}
section.form form input.hs-button.primary.large {
  border: none;
  margin-top: 30px;
  max-width: 230px;
}
section.form form input.hs-button.primary.large {
  text-align: center;
  width: 40%;
  max-width: 600px;
  padding: 10px;
  text-transform: uppercase;
  margin: 25px 0;
  display: block;
  padding: 10px 40px;
  border-radius: 50px;
  background: var(--negro, #1E1E1E);
  color: #FFF;
  text-align: center;
  font-family: "Glacial Indifference";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
section.form form .actions {
  text-align: left;
}
section.form .contHistoria {
  margin: 0 70px;
}

@media screen and (max-width: 992px) {
  section.form .col-md-6.cont {
    padding: 0 10px;
  }
  section.form .col-md-6.cont h2 {
    margin: 20px 0;
  }
  section.form form {
    padding: 0 0px;
    max-width: 840px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  section.form {
    background-image: url(../imagenes/form.png);
    background-size: 200px;
    background-position: 90% 80%;
    background-repeat: no-repeat;
    padding: 100px 15px;
  }
}
.datos {
  max-width: 90%;
  margin: 0 auto;
}
.datos .row.bg {
  border-radius: 30px;
  background-image: url(../imagenes/foto-datos.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 15%;
}
.datos .row.bg h2 {
  color: #FFF;
  margin: 30px 0;
}
.datos .row.bg ul li {
  color: #FFF;
  margin: 23px 0;
  font-size: 18px;
  text-decoration: none;
  list-style: none;
  position: relative;
}
.datos .row.bg ul li::after {
  content: "•";
  font-size: 2em;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -19px;
  left: -24px;
}

@media screen and (max-width: 767px) {
  .datos .row.bg {
    border-radius: 30px;
    background-image: url(../imagenes/movil/foto-datos.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 5%;
  }
}
.galeria {
  padding: 150px 0;
}
.galeria .swiper.mySwiper {
  padding-bottom: 30px;
}
.galeria .swiper.mySwiper .swiper-pagination-bullet-active {
  background: #000;
}

@media screen and (max-width: 992px) {
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    color: #ED6B06;
    font-size: 20px;
    font-weight: 800;
    position: absolute;
    left: 20px !important;
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-prev:after {
    color: #ED6B06;
    font-size: 20px;
    font-weight: 800;
    position: absolute;
    right: 20px !important;
  }
  .galeria .swiper.mySwiper {
    padding-bottom: 30px;
    padding: 20px;
    overflow: hidden;
  }
  .galeria {
    padding: 100px 0;
  }
  .galeria h2 span {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .galeria h2 {
    padding: 60px 15px;
    text-align: center;
    margin-bottom: 60px;
  }
  .galeria h2 span {
    display: block;
    font-size: 34px;
    line-height: 38px;
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 16px;
    right: 20px !important;
  }
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 16px;
  }
  .swiper-button-prev {
    position: absolute;
    top: 95%;
    left: 35%;
  }
  .swiper-button-next {
    position: absolute;
    top: 95%;
    right: 35%;
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 16px;
    right: 14px !important;
  }
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 16px;
    left: 15px !important;
  }
  div.swiper-wrapper {
    padding-bottom: 40px !important;
  }
  .galeria .mySwiper3 {
    padding-bottom: 2px;
  }
  .galeria .mySwiper3 .swiper-pagination-bullet-active {
    background: #000;
  }
  .galeria .mySwiper3 .swiper-pagination-bullet {
    background: #000;
  }
}
section.marcas {
  padding: 100px 0 100px;
  max-width: 1000px;
  margin: 0 auto;
}
section.marcas .col-md-6 {
  padding: 60px;
}
section.marcas .col-md-6 img {
  max-width: 330px;
  height: auto;
}
section.marcas .col-md-6.cont {
  padding: 25px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
section.marcas .col-md-6.cont h2 {
  margin: 30px 0;
}
section.marcas .col-md-6.cont ul {
  padding: 0;
  margin: 0;
}
section.marcas .col-md-6.cont ul li {
  list-style: none;
  padding-bottom: 8px;
  margin: 0;
}

section.video {
  max-width: 90%;
  margin: 0 auto;
}
section.video h2 {
  text-align: center;
  margin-bottom: 50px;
}
section.video .contVideo {
  padding: 0;
}
section.video .contVideo iframe {
  border-radius: 30px;
  height: 50vw;
}

@media screen and (max-width: 767px) {
  section.video {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 15px 100px;
  }
}
.pasos {
  width: 80%;
  margin: 0 auto;
}
.pasos .row.bgrosa {
  position: relative;
  background: #F4F2F2;
  margin: 0 auto;
  border-radius: 40px;
  padding: 80px 80px 80px 140px;
  font-family: "Glacial Indifference", Arial, sans-serif;
}
.pasos .row.bgrosa img {
  width: 100px;
}
.pasos .row.bgrosa h2 {
  text-align: left;
  margin: 20px 0;
}

.pasos .col-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.pasos .col-4 .ilist {
  margin-bottom: 10px;
}

.pasos .col-8 {
  display: flex;
  align-items: center;
}

.pasos .col-8 .row {
  width: 100%;
}

.pasos .cardpasos {
  margin-bottom: 32px;
  min-height: 160px;
  padding: 20px;
  margin: 0;
}

.pasos .cardpasos h4 {
  color: var(--negro, #1E1E1E);
  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.pasos .cardpasos p {
  color: var(--negro, #1E1E1E);
  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}

@media (max-width: 992px) {
  .pasos .bgrosa {
    flex-direction: column;
    min-height: unset;
    padding: 30px 0;
  }
  .pasos .col-4, .pasos .col-8 {
    width: 100%;
    max-width: 100%;
  }
  .pasos .col-4 {
    margin-bottom: 30px;
  }
  .pasos .row.bgrosa {
    position: relative;
    background: #F4F2F2;
    margin: 0 auto;
    border-radius: 40px;
    padding: 80px 30px 80px 30px;
    font-family: "Glacial Indifference", Arial, sans-serif;
  }
  .pasos .cardpasos {
    min-height: 200px;
    padding: 20px 20px 20px 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .pasos {
    padding: 20px 0;
    border-radius: 20px;
  }
  .pasos .col-4 h2 {
    font-size: 1.3rem;
  }
  .pasos .cardpasos h4 {
    font-size: 1rem;
  }
  .pasos .cardpasos p {
    font-size: 0.95rem;
  }
  .pasos {
    padding: 20px 15px;
    border-radius: 20px;
    width: 100%;
  }
  .pasos .row.bgrosa {
    position: relative;
    background: #F4F2F2;
    margin: 0 auto;
    border-radius: 30px;
    padding: 60px 15px 50px 15px;
    font-family: "Glacial Indifference", Arial, sans-serif;
  }
  .pasos .cardpasos {
    min-height: auto;
    padding: 20px 20px 20px 0;
    margin: 0;
  }
}
.bannerFooter {
  text-align: center;
}
.bannerFooter h2 {
  position: relative;
  padding: 100px;
  background-image: url(../imagenes/footer.png);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
.bannerFooter p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bannerFooter a.btnbr {
  border-radius: 50px;
  background: var(--negro, #1E1E1E);
  color: white;
  padding: 10px 60px;
}

footer {
  background: #F4F2F2;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px;
}
footer p {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Glacial Indifference";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .bannerFooter {
    padding: 80px 15px 100px;
  }
  .bannerFooter h2 {
    font-size: 24px;
    position: relative;
    padding: 20px 0;
    background-image: url(../imagenes/movil/ilus-footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
  }
  .bannerFooter p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  footer p {
    font-size: 13px;
  }
}/*# sourceMappingURL=styles.css.map */