/* Font  */
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-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: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 20px 0;
  background-color: transparent;
}
div.menu .container-fluid {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 1700px;
}
div.menu .brlogos {
  flex-direction: row;
  align-content: center;
  justify-content: center;
}
div.menu .logo-container {
  gap: 450px;
}
div.menu .logo-container .logo-mila {
  height: auto;
  width: 120px;
  min-width: 120px;
}
div.menu .logo-container .logo-mrtasty {
  height: auto;
  width: 120px;
  min-width: 120px;
}
div.menu .hamburger {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 25px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
div.menu .hamburger ._layer {
  background: #fff;
  height: 3px;
  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(11px) rotate(45deg);
}
div.menu .hamburger.is-active .-mid {
  opacity: 0;
}
div.menu .hamburger.is-active .-bottom {
  transform: translateY(-11px) 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: #F28C19;
}

@media screen and (max-width: 992px) {
  div.menu .logo-container {
    gap: 150px;
  }
}
@media screen and (max-width: 767px) {
  div.menu {
    padding: 15px 0;
  }
  div.menu .logo-container {
    gap: 20px;
  }
  div.menu .logo-container .logo-mila {
    min-width: 45px;
    width: 85px;
  }
  div.menu .logo-container .logo-mrtasty {
    min-width: 45px;
    width: 85px;
  }
}
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: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

h2 {
  color: #161616;
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

h3 {
  color: #161616;
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

h4 {
  color: #161616;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}

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

p {
  color: #FBF5E7;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.banner p {
  color: #161616;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}

.btn,
.btnbr,
input.hs-button.primary.large,
a.btn.btnbr {
  padding: 12px 40px;
  border-radius: 15px;
  background: #F28C19;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  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;
}

.barra figure {
  margin: 0;
}

.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) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 32px;
  }
  .hiddenDL {
    display: block;
  }
  .hiddenD {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block;
  }
  .hiddenM {
    display: none !important;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  .swiper {
    padding: 0;
  }
  .barra {
    background-image: url(../imagenes/franja.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40px;
  }
  .barra figure {
    display: none;
  }
}
section.banner {
  background-image: url("../imagenes/back_header.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 360px 0 40px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.banner .container {
  max-width: 1450px;
}
section.banner::before, section.banner::after {
  display: none;
}
section.banner h1.main-title {
  color: #FFF;
  font-weight: 900;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 280px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
section.banner .info-card-wrapper {
  margin-top: auto;
  padding-top: 50px;
}
section.banner .info-card {
  border-radius: 20px;
  background: #FBF5E7;
  padding: 30px 115px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  margin: 0 auto;
}
section.banner .info-card p {
  color: #161616;
  font-weight: 500;
  margin: 0;
  text-align: left;
}
section.banner .info-card p b {
  font-weight: 800;
}
section.banner .info-card .btnbr {
  background: #F28C19;
  color: #FFF;
  font-weight: 600;
  padding: 2px 35px;
  border-radius: 50px;
}
section.banner .info-card .btnbr:hover {
  background: #cc720c;
}

@media screen and (max-width: 992px) {
  section.banner {
    padding: 250px 20px 40px;
  }
  section.banner h1.main-title {
    margin-bottom: 150px;
  }
  section.banner .info-card {
    padding: 30px 60px;
  }
}
@media screen and (max-width: 767px) {
  section.banner {
    background-image: url("../imagenes/movil/back_header.jpg");
    padding: 200px 15px 40px;
  }
  section.banner h1.main-title {
    margin-bottom: 100px;
  }
  section.banner .info-card {
    padding: 30px;
  }
  section.banner .info-card p {
    margin-bottom: 40px;
  }
  section.banner .info-card .btnbr {
    padding: 2px 25px;
    margin: 0;
    display: block;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
section.nosotros {
  background-color: #161616;
  background-image: none;
  padding: 300px 0;
  position: relative;
}
section.nosotros .container {
  max-width: 1200px;
}
section.nosotros h2 {
  color: #FFF;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 0;
}
section.nosotros h2 span {
  font-weight: 800;
  display: block;
}
section.nosotros .text-content p {
  color: #FFF;
  font-weight: 400;
  margin-bottom: 30px;
}
section.nosotros .text-content p b {
  font-weight: 700;
}

@media (max-width: 992px) {
  section.nosotros {
    padding: 80px 20px;
  }
  section.nosotros h2 {
    font-size: 32px;
    margin-bottom: 0px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  section.nosotros {
    padding: 100px 15px;
  }
  section.nosotros h2 {
    font-size: 28px;
  }
}
section.beneficios {
  padding: 200px 0 100px;
  background-color: #fff; /* Ensure white background for section */
}
section.beneficios .container-fluid {
  padding-left: 5%;
}
section.beneficios .woman-image {
  position: relative;
  /* Add rotation or style if needed, image seems slightly tilted in design */
}
section.beneficios .woman-image img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}
section.beneficios .swiper {
  padding: 20px;
  padding-left: 130px;
}
section.beneficios .cardbene {
  background: #FBF5E7;
  padding: 40px 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #FBF5E7;
  border-radius: 20px;
  outline: 2px solid #a11d1d;
  outline-offset: -15px;
  outline-style: solid;
  border-radius: 30px;
  flex-wrap: wrap;
}
section.beneficios .cardbene h4 {
  color: #000; /* Black Title per design images */
  font-weight: 800; /* Extra Bold */
  text-transform: none; /* remove uppercase default if needed, though designs look mixed case */
  margin-bottom: 20px;
}
section.beneficios .cardbene p {
  color: #000;
  font-weight: 400;
}
section.beneficios .btnslider {
  display: flex;
  justify-content: left; /* Center buttons below slider */
  gap: 20px;
  margin-top: 30px;
  margin-left: 124px; /* Visual adjustment to align somewhat with slider center or start */
}
section.beneficios .btnslider .swiper-button-prev,
section.beneficios .btnslider .swiper-button-next {
  position: static; /* Remove default absolute positioning */
  margin: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: none; /* Remove default styling */
}
section.beneficios .btnslider .swiper-button-prev::after,
section.beneficios .btnslider .swiper-button-next::after {
  content: none; /* Remove default swiper arrows */
}
section.beneficios .btnslider .swiper-button-prev img,
section.beneficios .btnslider .swiper-button-next img {
  height: 25px; /* Adjust size of custom buttons */
  width: auto;
}
section.beneficios .btnslider .swiper-button-prev:hover,
section.beneficios .btnslider .swiper-button-next:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 992px) {
  section.beneficios {
    padding: 100px 0;
  }
  section.beneficios .col-md-5 {
    margin-bottom: 50px; /* Space between image and slider on mobile */
  }
  section.beneficios .woman-image img {
    max-width: 100%;
  }
  section.beneficios .swiper {
    padding: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  section.beneficios {
    padding: 60px 15px;
  }
  section.beneficios .cardbene {
    padding: 30px 20px;
    min-height: 340px;
  }
  section.beneficios .cardbene h4 {
    font-size: 22px;
  }
  section.beneficios .swiper {
    padding: 0;
    padding-left: 0;
  }
  section.beneficios .btnslider {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-direction: row;
    margin: 30px auto;
    justify-content: center;
  }
}
section.form {
  padding: 100px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  /* HubSpot Overrides */
  /* Fix for HubSpot International Phone Field */
  /* Target the submit button container to center it */
}
section.form h5 {
  color: #000;
  /* Inherits font-family: Montserrat and font-size: 18px from _general.scss */
  margin-bottom: 10px;
}
section.form h5 b {
  font-weight: 800;
}
section.form .container {
  max-width: 1200px;
}
section.form .contForm {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0;
  /* Removed border and shadow for cleaner look, or keep if preferred. 
     Design images usually show a very clean form on white background. */
}
section.form fieldset {
  max-width: 100%;
  text-align: left; /* Keep labels left aligned even if container is centered */
}
section.form section.form .hs-form-field {
  margin-bottom: 20px;
}
section.form label {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
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 !important;
  width: 100% !important;
  font-size: 16px;
  color: #000;
  box-shadow: none !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: #000 !important;
  outline: none;
}
section.form .hs-fieldtype-intl-phone {
  display: flex !important;
  align-items: flex-end; /* Align bottom borders */
  gap: 20px;
}
section.form .hs-fieldtype-intl-phone select {
  width: 30% !important;
  padding-right: 0 !important;
}
section.form .hs-fieldtype-intl-phone input[type=tel] {
  width: 70% !important;
}
section.form .hs_submit {
  text-align: center;
  margin-top: 30px;
}
section.form .actions {
  text-align: center;
}
section.form input.hs-button.primary {
  background-color: #F28C19 !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 60px !important;
  color: #fff !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  cursor: pointer;
  display: inline-block;
  width: auto !important;
  transition: background 0.3s;
  line-height: 14px;
}
section.form input.hs-button.primary:hover {
  background-color: #cc720c !important;
  opacity: 1 !important;
}

@media screen and (max-width: 992px) {
  section.form {
    padding: 60px 20px;
  }
  section.form h5 br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  section.form {
    padding: 60px 15px;
  }
  section.form h5 {
    font-size: 16px;
  }
  section.form h5 br {
    display: none;
  }
}
section.datos {
  padding: 100px 0;
  position: relative;
  background-color: #fff;
}
section.datos .container {
  max-width: 1320px;
}
section.datos .datos-content {
  background-image: url(../imagenes/back_datos.jpg);
  background-size: cover;
  background-position: center;
  padding: 180px 0;
  position: relative;
  /* Contained style */
  max-width: 1700px;
  margin: 0 auto;
  border-radius: 30px;
  width: 100%; /* Responsive width */
}
section.datos h2 {
  color: #fff;
  /* Inherit Montserrat and size from general */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 1px;
}
section.datos h2 span {
  font-weight: 400;
}
section.datos .dato-item {
  text-align: center;
  padding: 0 20px;
}
section.datos .dato-item .dato-icon {
  width: 20px; /* Small dot icon size */
  height: auto;
  margin-bottom: 25px;
  display: inline-block;
}
section.datos .dato-item p {
  color: #fff;
  font-weight: 400;
}
section.datos .dato-item p b {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  section.datos {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.datos .datos-content {
    padding: 80px 10px;
  }
  section.datos h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  section.datos .dato-item {
    margin-bottom: 40px;
    padding: 0;
  }
}
section.galeria {
  padding: 100px 0;
  background-color: #fff;
  /* Mobile Slider Specifics */
}
section.galeria .container {
  max-width: 1450px;
}
section.galeria h2 {
  color: #000;
  /* Inherit Montserrat and size from general */
  font-weight: 400; /* Regular weight based on screenshot look, bold on specific parts */
  margin-bottom: 60px;
  text-transform: uppercase;
}
section.galeria h2 b {
  font-weight: 800;
}
section.galeria .gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px; /* Rounded corners for images */
}
section.galeria .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
section.galeria .swiper {
  padding: 0;
}
section.galeria .btnslider {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
section.galeria .btnslider .swiper-button-prev,
section.galeria .btnslider .swiper-button-next {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
}
section.galeria .btnslider .swiper-button-prev::after,
section.galeria .btnslider .swiper-button-next::after {
  display: none;
}
section.galeria .btnslider .swiper-button-prev img,
section.galeria .btnslider .swiper-button-next img {
  width: 40px; /* Adjust based on asset size */
  height: auto;
}

@media screen and (max-width: 992px) {
  section.galeria {
    padding: 60px 15px;
  }
  section.galeria .gap-3 {
    gap: 3rem !important;
  }
  section.galeria h2 {
    margin-bottom: 40px;
  }
}
section.diferencial {
  padding: 200px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
section.diferencial .diferencial-img-wrapper {
  position: absolute;
  top: 10px;
  left: 0;
  width: 38%;
  height: 100%;
  background-image: url(../imagenes/foto_diferencial.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  z-index: 1;
}
section.diferencial .container {
  position: relative;
  z-index: 2;
}
section.diferencial h3 {
  color: #000;
  /* Matches "UN COMBO DE MARCAS..." header style */
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
}
section.diferencial h3 b {
  font-weight: 800;
}
section.diferencial p {
  color: #000;
  font-weight: 400;
  text-align: left;
}
section.diferencial p b {
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  section.diferencial {
    padding: 60px 0;
  }
  section.diferencial .img-fluid {
    max-width: 100%;
    height: auto;
    left: -13%;
    position: relative;
  }
  section.diferencial h3 {
    text-align: left;
  }
  section.diferencial p {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  section.diferencial {
    padding: 60px 15px;
  }
  section.diferencial .img-fluid {
    max-width: 100%;
    height: auto;
    left: -10%;
    position: relative;
  }
}
section.video {
  padding: 200px 0;
  background-color: #161616; /* Dark background */
  color: #fff;
}
section.video .container {
  max-width: 1450px;
}
section.video h2 {
  text-align: center;
  color: #fff;
  font-weight: 400; /* Regular for first part */
  margin-bottom: 50px;
  text-transform: uppercase;
}
section.video h2 b {
  font-weight: 800; /* Bold for second part */
  display: block; /* Force new line logic if not handled by br, or just emphatic */
  margin-top: 5px;
}
section.video iframe {
  padding: 0 !important;
  width: 80%;
  height: 500px;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: none;
}

@media screen and (max-width: 992px) {
  section.video {
    padding: 100px 20px;
  }
  section.video iframe {
    padding: 0 !important;
    width: 100%;
    height: 400px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  section.video {
    padding: 150px 15px 100px;
  }
  section.video iframe {
    padding: 0 !important;
    width: 100%;
    height: 400px;
    border-radius: 20px;
  }
}
section.pasos {
  padding: 100px 0;
  /* Container for the main card */
  /* Mobile Slider Specifics */
}
section.pasos .container {
  max-width: 1450px;
}
section.pasos .pasos-card {
  border-radius: 30px;
  padding: 150px 100px;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #FBF5E7;
  outline: 2px solid #C31D1E;
  outline-offset: -15px;
  outline-style: solid;
  border-radius: 30px;
  background-color: #FBF5E7;
}
section.pasos h2 {
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 50px;
}
section.pasos h2 b {
  font-weight: 800;
}
section.pasos .paso-item {
  padding: 0 40px 0;
  text-align: left;
}
section.pasos .paso-item h4 {
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none;
  text-align: left;
}
section.pasos .paso-item p {
  color: #000;
  font-weight: 400;
}
section.pasos .swiper {
  padding: 0;
}
section.pasos .btnslider {
  position: static;
  margin-top: 30px;
}
section.pasos .btnslider .swiper-button-prev,
section.pasos .btnslider .swiper-button-next {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
}
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: 40px;
  height: auto;
}

@media screen and (max-width: 992px) {
  section.pasos {
    padding: 60px 0;
  }
  section.pasos .pasos-card {
    padding: 100px 60px;
    border-radius: 20px;
    max-width: 80%;
    margin: 0 auto;
  }
  section.pasos .gap-3 {
    gap: 3rem !important;
  }
  section.pasos .paso-item {
    text-align: left; /* Center text on mobile if preferred, or keep left */
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  section.pasos {
    padding: 60px 15px;
  }
  section.pasos .pasos-card {
    padding: 100px 40px;
    border-radius: 20px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.bannersFooter {
  padding: 100px 0;
  background-color: #fff; /* Clean background */
  /* Used h3 in HTML */
  /* Primary Button Style (Yellow/Orange) */
}
.bannersFooter .container {
  max-width: 1450px;
}
.bannersFooter .cont {
  padding-left: 150px;
}
.bannersFooter h3 {
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
}
.bannersFooter h3 b {
  font-weight: 800;
}
.bannersFooter p {
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}
.bannersFooter .btnbr {
  background: #F28C19;
  border: none;
  border-radius: 15px;
  padding: 12px 40px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.bannersFooter .btnbr:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  text-decoration: none;
  color: #fff;
}

footer {
  background-color: #161616; /* Dark background */
  border-top: 1px solid #333;
  padding: 30px 0;
}
footer .container {
  max-width: 1450px;
}
footer .footer-logo {
  max-height: 40px;
  width: auto;
  display: block;
}
footer p.copy {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

@media screen and (max-width: 992px) {
  .bannersFooter {
    padding: 60px 40px;
  }
  .bannersFooter .cont {
    padding-left: 0;
    text-align: left;
  }
  .bannersFooter h3 {
    text-align: left;
    margin-top: 20px;
  }
  .bannersFooter p {
    text-align: left;
  }
  .bannersFooter .btn, .bannersFooter .btnbr, .bannersFooter input.hs-button.primary.large, .bannersFooter a.btn.btnbr {
    padding: 10px 40px;
    line-height: 1;
    margin: 0;
    display: block;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  footer {
    text-align: center;
  }
  footer .d-flex {
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .bannersFooter {
    padding: 60px 20px;
  }
  footer .footer-logo {
    max-height: 30px;
    width: auto;
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */