/* Font  */
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Light.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 600;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-ExtraBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 800;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
div.menu {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 30px 0;
  background-color: #f5eb62;
}
div.menu .container-fluid {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 1670px;
}
div.menu .logo-container .logo-alem {
  height: auto;
  width: auto;
  max-height: 50px;
}
div.menu .hamburger {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 20px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
div.menu .hamburger ._layer {
  background: #000;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
}
div.menu .hamburger.is-active {
  position: fixed;
  top: 25px;
  right: 5%;
}
div.menu .hamburger.is-active ._layer {
  background: #000;
}
div.menu .hamburger.is-active .-top {
  transform: translateY(9px) rotate(45deg);
}
div.menu .hamburger.is-active .-mid {
  opacity: 0;
}
div.menu .hamburger.is-active .-bottom {
  transform: translateY(-9px) rotate(-45deg);
}
div.menu .menuppal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1001;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.menu .menuppal.is_active {
  transform: translateY(0);
}
div.menu .menuppal ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
div.menu .menuppal ul li {
  margin: 20px 0;
}
div.menu .menuppal ul li a {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
div.menu .menuppal ul li a:hover {
  color: #0d477f;
}

@media screen and (max-width: 767px) {
  div.menu {
    padding: 15px 0;
  }
  div.menu .logo-container .logo-alem {
    max-height: 13px;
  }
  div.menu .menuppal ul li a {
    font-size: 20px;
  }
}
html,
body {
  width: 100%;
  overflow-x: hidden !important;
}

section {
  padding: 100px 0;
}

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

p b {
  font-weight: 700;
}

h1 {
  color: var(--Azul, #0d477f);
  font-family: Poppins;
  font-size: 49px;
  font-style: normal;
  font-weight: 800;
  line-height: 58px; /* 118.367% */
  text-transform: uppercase;
}

h6 {
  color: var(--Negro, #5d5c5c);
  font-family: Poppins;
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

h2 {
  color: var(--Azul, #0d477f);
  font-family: Poppins;
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 56px; /* 127.273% */
}

h4 {
  color: var(--Azul, #0d477f);
  text-align: center;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h5 {
  color: #161616;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

p {
  color: #fbf5e7;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.banner p {
  color: var(--Negro, #5d5c5c);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 108.333% */
}

.btn,
.btnbr,
input.hs-button.primary.large,
a.btn.btnbr {
  padding: 12px 40px;
  border-radius: 14px;
  background: var(--Amarillo, #f5eb62);
  color: var(--Azul, #0d477f);
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover,
a.btn.btnbr:hover {
  opacity: 1;
  background-color: #db9c02;
  color: white;
}

a {
  text-decoration: none;
}

.hiddenD {
  display: none;
}

.swiper {
  padding-bottom: 50px;
  padding: 30px;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  width: auto;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

@media screen and (max-width: 992px) {
  .hiddenDL {
    display: block;
  }
  .hiddenD {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block;
  }
  .hiddenM {
    display: none !important;
  }
  .swiper {
    padding: 0;
  }
  h1 {
    font-size: 34px;
    line-height: 38px; /* 111.765% */
  }
  .banner p {
    font-size: 18px;
    line-height: 23px; /* 110% */
  }
  .banner p br {
    display: none;
  }
  h6 {
    font-size: 18px;
    line-height: normal;
  }
  h2 {
    font-size: 34px;
    line-height: 38px; /* 108.333% */
  }
  h2 br {
    display: none;
  }
  p {
    font-size: 18px;
    line-height: 23px; /* 127.778% */
  }
}
section.banner {
  background-color: #fff9f4;
  padding: 0;
  position: relative;
  overflow: hidden;
}
section.banner .row.g-0 {
  width: 100%;
  margin: 0;
}
section.banner .banner-content {
  padding: 160px 16%;
  max-width: 800px;
  width: 100%;
}
section.banner .banner-content h1.main-title {
  text-transform: none;
  margin-bottom: 60px;
  text-align: left;
}
section.banner .banner-content .description {
  color: #5d5c5c;
  margin-bottom: 40px;
}
section.banner .banner-content .description b {
  color: #5d5c5c;
}
section.banner .banner-image {
  width: 100%;
  height: 100%;
  min-height: 50vh;
}
section.banner .banner-image .img-header {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (min-width: 992px) {
  section.banner .col-lg-6 {
    height: 100vh;
  }
  section.banner .banner-content {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  section.banner .banner-image .img-header {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  section.banner .banner-image {
    height: 50vh;
  }
  section.banner .banner-content {
    padding: 60px 25px;
    text-align: left;
  }
  section.banner .banner-content h1.main-title {
    text-align: left;
  }
  section.banner .banner-content .description {
    text-align: left;
  }
  section.banner .col-lg-6.bg-white {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  section.banner .banner-content h1.main-title {
    margin-bottom: 40px;
  }
  section.banner .banner-image {
    height: 400px;
  }
  section.banner .banner-content .btnbr {
    width: 90%;
    display: inline-block;
  }
}
section.nosotros {
  background-color: #fff;
  padding: 150px 0 0;
  position: relative;
}
section.nosotros .container {
  max-width: 1200px;
}
section.nosotros .subtitle {
  color: #999;
  text-transform: none;
  margin-bottom: 20px;
  text-align: left;
}
section.nosotros h2 {
  text-transform: none;
  text-align: left;
  margin-bottom: 0;
}
section.nosotros .text-content {
  padding-left: 50px;
}
section.nosotros .text-content p {
  color: #5d5c5c;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: left;
}
section.nosotros .text-content p b {
  color: #5d5c5c;
  font-weight: 700;
}

@media (max-width: 992px) {
  section.nosotros {
    padding: 80px 20px;
  }
  section.nosotros h2 {
    margin-bottom: 20px;
  }
  section.nosotros .text-content {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  section.nosotros {
    padding: 60px 15px;
  }
  section.nosotros h2 {
    margin-bottom: 20px;
  }
  body .nosotros .col-lg-6.mb-3.mb-lg-0 {
    padding: 0;
  }
}
section.beneficios {
  padding: 50px 0 100px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
section.beneficios .container-fluid {
  max-width: 1750px;
}
section.beneficios .dog-container {
  position: relative;
  margin-bottom: -40px;
  z-index: 1;
}
section.beneficios .dog-container .dog-img {
  max-width: 250px;
  height: auto;
  z-index: 0;
  margin-bottom: -20px;
}
section.beneficios .cardbene {
  width: 100%;
  min-height: 290px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
section.beneficios .cardbene.card-blue {
  background-color: #99c8ea;
}
section.beneficios .cardbene.card-yellow {
  background-color: #f5eb62;
}
section.beneficios .cardbene .card-inner {
  border: 2px solid #fff;
  width: 100%;
  height: 100%;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  text-align: center;
}
section.beneficios .cardbene h4 {
  color: #0d477f;
  margin-bottom: 30px;
}
section.beneficios .cardbene p {
  color: #0d477f;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 1540px) {
  section.beneficios .cardbene .card-inner {
    min-height: 375px;
  }
}
@media screen and (max-width: 991px) {
  section.beneficios {
    padding-top: 0;
    padding-bottom: 100px;
  }
  section.beneficios .cardbene {
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  section.beneficios {
    padding: 50px 0;
  }
  section.beneficios .cardbene {
    margin-bottom: 20px;
    min-height: auto;
    height: 420px;
  }
}
section.form {
  padding: 400px 0 150px;
  margin-top: -300px;
  position: relative;
  background-color: #fff9f4;
  overflow: hidden;
  /* HubSpot Overrides */
}
section.form .container-fluid {
  max-width: 1600px;
  padding-left: 2%;
  padding-right: 2%;
}
section.form .subtitle {
  color: #5d5c5c;
  margin-bottom: 20px;
  text-align: left;
}
section.form h2 {
  text-align: left;
  margin-bottom: 30px;
}
section.form .store-image {
  position: relative;
}
section.form .store-image img {
  max-width: 100%;
  height: auto;
}
section.form .contForm {
  max-width: 600px;
}
section.form label {
  color: #5d5c5c;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
section.form fieldset {
  height: 50px;
}
section.form input[type=text],
section.form input[type=email],
section.form input[type=tel],
section.form textarea,
section.form select {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  padding: 10px 0 5px !important;
  width: 100% !important;
  font-size: 16px;
  color: #000;
  box-shadow: none !important;
  margin-bottom: 0px;
  font-family: Poppins !important;
}
section.form input[type=text]:focus,
section.form input[type=email]:focus,
section.form input[type=tel]:focus,
section.form textarea:focus,
section.form select:focus {
  border-bottom-color: #0d477f !important;
  outline: none;
}
section.form input[type=text]::-moz-placeholder, section.form input[type=email]::-moz-placeholder, section.form input[type=tel]::-moz-placeholder, section.form textarea::-moz-placeholder, section.form select::-moz-placeholder {
  color: #999;
}
section.form input[type=text]::placeholder,
section.form input[type=email]::placeholder,
section.form input[type=tel]::placeholder,
section.form textarea::placeholder,
section.form select::placeholder {
  color: #999;
}
section.form .hs-fieldtype-intl-phone {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  gap: 15px;
  width: 100%;
}
section.form .hs-fieldtype-intl-phone select {
  width: 35% !important;
  flex-shrink: 0;
  margin-bottom: 0 !important;
  padding-right: 0 !important;
}
section.form .hs-fieldtype-intl-phone input[type=tel] {
  width: auto !important;
  flex-grow: 1 !important;
  margin-bottom: 0 !important;
}
section.form .hs_submit {
  text-align: left;
  margin-top: 30px;
}
section.form .hs_submit .actions {
  text-align: left;
}
section.form input.hs-button.primary {
  background-color: #f5eb62 !important;
  color: #0d477f !important;
  font-family: Poppins !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 12px 40px !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
section.form input.hs-button.primary:hover {
  background-color: #f2e532 !important;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  section.form {
    padding: 60px 20px;
    margin-top: 0px;
  }
  section.form .col-lg-6 {
    margin-bottom: 40px;
  }
  section.form .store-image img {
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  section.form {
    padding: 50px 0;
  }
  section.form .form-wrapper {
    padding: 15px;
  }
  section.form fieldset {
    height: auto !important;
    margin-bottom: 20px;
  }
  section.form .hs-form-field {
    width: 100% !important;
    float: none !important;
  }
  section.form .store-image img {
    max-width: 100%;
  }
}
section.datos {
  padding: 0;
  background-color: transparent;
}
section.datos .datos-content {
  background-color: #0d477f;
  background-image: none;
  padding: 180px 0;
  width: 100%;
  border-radius: 0;
  margin: 0;
  max-width: 100%;
}
section.datos .subtitle {
  color: #fff;
  margin-bottom: 30px;
}
section.datos h2 {
  color: #fff;
  margin-bottom: 80px;
  text-align: center;
}
section.datos .dato-item {
  text-align: center;
  padding: 0 20px;
}
section.datos .dato-item .dato-icon {
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 50px;
  display: inline-block;
}
section.datos .dato-item p {
  color: #fff;
}

@media screen and (max-width: 767px) {
  section.datos .datos-content {
    padding: 60px 20px;
  }
  section.datos h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
  section.datos .dato-item {
    margin-bottom: 50px;
  }
  section.datos .dato-item p {
    font-size: 16px;
  }
  section.datos .dato-item .dato-icon {
    height: 60px;
  }
}
section.galeria {
  padding: 200px 0 100px;
  overflow: hidden;
  background-color: #fff9f4;
}
section.galeria .container-fluid {
  padding: 0;
}
section.galeria .subtitle {
  font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 5px;
}
section.galeria h2 {
  color: #0d477f;
  text-transform: none;
  text-align: center;
}
section.galeria .swiper-galeria {
  width: 100%;
  padding-bottom: 50px;
  overflow: visible;
}
section.galeria .swiper-galeria .swiper-slide {
  max-width: 65%;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
section.galeria .swiper-galeria .swiper-slide.swiper-slide-active {
  opacity: 1;
}
section.galeria .swiper-galeria .swiper-slide picture {
  display: block;
  width: 100%;
}
section.galeria .swiper-galeria .swiper-slide picture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
section.galeria .swiper-galeria .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
section.galeria .swiper-galeria .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0d477f;
}

@media screen and (max-width: 991px) {
  section.galeria h2 {
    font-size: 32px;
  }
  section.galeria .swiper-galeria .swiper-slide {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  section.galeria {
    padding: 80px 0;
  }
  section.galeria h2 {
    font-size: 28px;
    padding: 0 15px;
  }
  section.galeria .swiper-galeria .swiper-slide {
    max-width: 100%;
    width: 100%;
  }
}
section.diferencial {
  padding: 100px 0 200px;
  background-color: #fff9f4;
}
section.diferencial .diferencial-image-wrapper {
  position: relative;
  padding: 20px;
  display: inline-block;
  width: 100%;
}
section.diferencial .diferencial-image-wrapper .main-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
section.diferencial .diferencial-image-wrapper .square-yellow {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #f5eb62;
  z-index: 1;
}
section.diferencial .diferencial-image-wrapper .square-blue {
  position: absolute;
  bottom: 0px;
  left: 20px;
  width: 100px;
  height: 80px;
  background-color: #99c8ea;
  z-index: 1;
}
section.diferencial .diferencial-content .subtitle {
  color: #5d5c5c;
  font-weight: 300;
  text-transform: capitalize;
}
section.diferencial .diferencial-content h2 {
  color: #0d477f;
  text-transform: none;
}
section.diferencial .diferencial-content p {
  color: #5d5c5c;
  text-align: left;
}
section.diferencial .diferencial-content p strong {
  font-weight: 700;
  color: #5d5c5c;
}

@media screen and (max-width: 991px) {
  section.diferencial {
    padding-top: 0;
  }
  section.diferencial h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  section.diferencial {
    padding: 20px 15px 100px;
  }
  section.diferencial .diferencial-image-wrapper {
    margin-bottom: 40px;
  }
  section.diferencial .diferencial-image-wrapper .square-yellow {
    width: 0;
    height: 0;
  }
  section.diferencial .diferencial-image-wrapper .square-blue {
    width: 0;
    height: 0;
    left: 0;
  }
}
section.video {
  padding: 0;
  position: relative;
  background-color: transparent;
}
section.video .video-bg-top {
  background-color: #0d477f;
  padding: 100px 0 300px 0;
  text-align: center;
}
section.video .video-bg-top .subtitle {
  color: #fff;
  text-transform: capitalize;
}
section.video .video-bg-top h2 {
  color: #fff;
  font-weight: 800;
  margin: 0;
}
section.video .video-container-wrapper {
  margin-top: -250px;
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}
section.video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #000;
}
section.video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 991px) {
  section.video .video-bg-top {
    padding: 80px 0 120px 0;
  }
  section.video .video-bg-top h2 {
    font-size: 32px;
  }
  section.video .video-container-wrapper {
    margin-top: -80px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.video .video-bg-top {
    padding: 60px 0 100px 0;
  }
  section.video .video-container-wrapper {
    margin-top: -60px;
  }
  section.video .video-wrapper {
    border-radius: 10px;
  }
}
section.pasos {
  padding: 100px 20px 150px 16%;
}
section.pasos .container {
  max-width: 1320px;
}
section.pasos .subtitle {
  color: #5d5c5c;
  text-align: left;
}
section.pasos h2 {
  color: #0d477f;
  text-transform: none;
  margin-bottom: 20px;
  text-align: left;
}
section.pasos .swiper-pasos {
  padding: 0 10px;
}
section.pasos .swiper-pasos .swiper-wrapper {
  align-items: stretch;
}
section.pasos .swiper-pasos .swiper-slide {
  height: auto;
}
section.pasos .card-paso {
  min-height: 150px;
  padding: 30px;
  position: relative;
  height: 100%;
}
section.pasos .card-paso.card-blue {
  background-color: #99c8ea;
}
section.pasos .card-paso.card-yellow {
  background-color: #f5eb62;
}
section.pasos .card-paso .card-inner {
  border: 2px solid #fff;
  padding: 30px 30px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
section.pasos .card-paso h4 {
  color: #0d477f;
  text-transform: uppercase;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
section.pasos .card-paso p {
  color: var(--Azul, #0d477f);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}
section.pasos .btnslider {
  position: relative;
  margin-top: 50px;
  display: flex !important;
  justify-content: flex-start !important;
  max-width: 1250px;
  margin: 0;
}
section.pasos .btnslider .swiper-button-prev,
section.pasos .btnslider .swiper-button-next {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  left: auto;
  right: auto;
}
section.pasos .btnslider .swiper-button-prev::after,
section.pasos .btnslider .swiper-button-next::after {
  display: none;
}
section.pasos .btnslider .swiper-button-prev img,
section.pasos .btnslider .swiper-button-next img {
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
section.pasos .btnslider .swiper-button-prev img:hover,
section.pasos .btnslider .swiper-button-next img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 991px) {
  section.pasos {
    padding: 100px 0 100px 50px;
  }
  section.pasos h2 {
    font-size: 32px;
  }
  section.pasos .card-paso {
    min-height: auto;
  }
  section.pasos .card-paso .card-inner {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  section.pasos {
    padding: 100px 10px 100px 10px;
  }
  section.pasos .swiper-pasos {
    padding: 0;
  }
}
footer {
  background-color: #fff9f4;
  position: relative;
  padding-top: 50px;
}
footer::before {
  content: "";
  position: absolute;
  top: -25%;
  right: 180px;
  width: 465.888px;
  height: 667.743px;
  background-image: url(../imagenes/Perrofooter.png);
  background-size: contain;
  background-position: right;
  z-index: 20;
  background-repeat: no-repeat;
}
footer .footer-content {
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}
footer .footer-content h2 {
  color: #0d477f;
  margin-bottom: 30px;
  text-transform: none;
}
footer .footer-content p {
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--Negro, #5d5c5c);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px; /* 108.333% */
}
footer .footer-content p b {
  font-weight: 700;
}
footer .footer-content .btn-footer {
  background-color: #f5eb62;
  color: #0d477f;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: none;
  margin-bottom: 60px;
}
footer .footer-content .btn-footer:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
footer .dog-img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin-left: auto;
}
footer .footer-bottom {
  background-color: #f5eb62;
  padding: 30px 0;
  text-align: center;
  position: relative;
  z-index: 3;
}
footer .footer-bottom p {
  color: #000;
  font-family: Poppins;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

@media screen and (max-width: 1540px) {
  footer::before {
    right: 80px;
  }
}
@media screen and (max-width: 991px) {
  footer {
    padding-top: 80px;
  }
  footer::before {
    display: none;
  }
  footer .dog-img {
    margin: 0 auto;
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 60px;
  }
  footer p,
  footer h2 {
    padding-left: 15px;
    padding-right: 15px;
  }
  footer .footer-content .btn-footer {
    margin-bottom: 40px;
  }
  footer .dog-img {
    max-width: 80%;
  }
  footer .col-lg-12.text-center.text-lg-center.mx-auto.mb-lg-0.mb-4 {
    margin-bottom: -30px !important;
    z-index: 9;
  }
  footer .footer-content p {
    font-size: 18px;
  }
}/*# sourceMappingURL=styles.css.map */