:root {
  /* Blue Shades */
  --blue-1: #fade5c; /* Darker Blue */
  --blue-2: #fade5c; /* Primary Blue */
  --blue-3: #64abe4; /* Light Blue */
  --blue-4: #8abde7; /* Very Light Blue */
  --blue-5: #b0d0e8; /* Comfortable Blue */
  --blue-6: #e7e7e7; /* Hover Blue */
  --blue-7: #f5fbff; /* Hover Light Blue */
  --blue-8: #fffbf4;

  --gold-1: #132658; /* Azul muy oscuro */
  --gold-2: #0C1A33; /* Azul oscuro */
  --gold-3: #3c4b7d; /* Azul medio */
  --gold-4: #6572a1; /* Azul desaturado */
  --gold-5: #8c98c3; /* Azul grisáceo */
  --gold-6: #b2bde0; /* Azul muy claro */
  --gold-7: #d9def4; /* Azul casi blanco */
  --gold-8: #f3f5fc; /* Blanco con un leve tinte azulado */



  /* Red Shades */
  --red-1: #bb0d0d; /* Dark Red */
  --red-2: #ff4b5c; /* Primary Red */
  --red-3: #e77d7d; /* Shadow Forter Red */
  --red-4: #f7b7b7; /* Shadow Fort Red */
  --red-5: #ffd7d7; /* Shadow Light Red */
  --red-6: #fff1f1; /* Shadow Red */

  /* Orange Shades */
  --orange-1: #ad5202; /* Tainted Orange */
  --orange-2: #e0700e; /* Primary Orange */
  --orange-3: #eec7a5; /* Light Orange */
  --orange-4: #fff6ee; /* Very Light Orange */

  /* Green Shades */
  --green-1: #186c10; /* Tainted Green */
  --green-2: #62a820; /* Primary Green */
  --green-3: #279a1ca4; /* Cake Green */
  --green-4: #96e39c; /* Shadow Green */
  --green-5: #ebffed; /* Shadow Light Green */

  /* Gray Shades */
  --gray-1: #98989872; /* Real Shadow */
  --gray-2: #afafaf; /* Shadow Gray */
  --gray-3: #dcdcdc; /* Hover Gray */
  --gray-4: #e9e9e9; /* Background Gray */
  --gray-5: #f1f1f1; /* New Gray */
  --gray-6: #efefef; /* Very Light Gray */
  --gray-7: rgb(210, 210, 210); /* Light Gray */
  --gray-8: #fafafa; /* Input Field */
  --gray-9: #f6f6f6ce; /* Input Valid */
  --gray-10: rgb(247, 247, 247); /* Text Gray */


  /* Black Shades */
  --black-1: #000000; /* Background Dark */
  --black-2: #383838; /* Opacity Black */
  --black-3: #575757; /* Light Black */
  --black-4: #929292; /* Very Light Black */

  --white: #ffffff;
  --hola: #307cbbd2;

}
/* Blue Shades */
.blue-1 { color: var(--blue-1) !important; }
.blue-2 { color: var(--blue-2) !important; }
.blue-3 { color: var(--blue-3) !important; }
.blue-4 { color: var(--blue-4) !important; }
.blue-5 { color: var(--blue-5) !important; }
.blue-6 { color: var(--blue-6) !important; }
.blue-7 { color: var(--blue-7) !important; }
.blue-8 { color: var(--blue-8) !important; }

.bg-blue-1 { background-color: var(--blue-1) !important; }
.bg-blue-2 { background-color: var(--blue-2) !important; }
.bg-blue-3 { background-color: var(--blue-3) !important; }
.bg-blue-4 { background-color: var(--blue-4) !important; }
.bg-blue-5 { background-color: var(--blue-5) !important; }
.bg-blue-6 { background-color: var(--blue-6) !important; }
.bg-blue-7 { background-color: var(--blue-7) !important; }
.bg-blue-8 { background-color: var(--blue-8) !important; }

/* Red Shades */
.red-1 { color: var(--red-1) !important; }
.red-2 { color: var(--red-2) !important; }
.red-3 { color: var(--red-3) !important; }
.red-4 { color: var(--red-4) !important; }
.red-5 { color: var(--red-5) !important; }
.red-6 { color: var(--red-6) !important; }

.bg-red-1 { background-color: var(--red-1) !important; }
.bg-red-2 { background-color: var(--red-2) !important; }
.bg-red-3 { background-color: var(--red-3) !important; }
.bg-red-4 { background-color: var(--red-4) !important; }
.bg-red-5 { background-color: var(--red-5) !important; }
.bg-red-6 { background-color: var(--red-6) !important; }

/* Orange Shades */
.orange-1 { color: var(--orange-1) !important; }
.orange-2 { color: var(--orange-2) !important; }
.orange-3 { color: var(--orange-3) !important; }
.orange-4 { color: var(--orange-4) !important; }

.bg-orange-1 { background-color: var(--orange-1) !important; }
.bg-orange-2 { background-color: var(--orange-2) !important; }
.bg-orange-3 { background-color: var(--orange-3) !important; }
.bg-orange-4 { background-color: var(--orange-4) !important; }

/* Green Shades */
.green-1 { color: var(--green-1) !important; }
.green-2 { color: var(--green-2) !important; }
.green-3 { color: var(--green-3) !important; }
.green-4 { color: var(--green-4) !important; }
.green-5 { color: var(--green-5) !important; }

.bg-green-1 { background-color: var(--green-1) !important; }
.bg-green-2 { background-color: var(--green-2) !important; }
.bg-green-3 { background-color: var(--green-3) !important; }
.bg-green-4 { background-color: var(--green-4) !important; }
.bg-green-5 { background-color: var(--green-5) !important; }

/* Gray Shades */
.gray-1 { color: var(--gray-1) !important; }
.gray-2 { color: var(--gray-2) !important; }
.gray-3 { color: var(--gray-3) !important; }
.gray-4 { color: var(--gray-4) !important; }
.gray-5 { color: var(--gray-5) !important; }
.gray-6 { color: var(--gray-6) !important; }
.gray-7 { color: var(--gray-7) !important; }
.gray-8 { color: var(--gray-8) !important; }
.gray-9 { color: var(--gray-9) !important; }
.gray-10 { color: var(--gray-10) !important; }

.bg-gray-1 { background-color: var(--gray-1) !important; }
.bg-gray-2 { background-color: var(--gray-2) !important; }
.bg-gray-3 { background-color: var(--gray-3) !important; }
.bg-gray-4 { background-color: var(--gray-4) !important; }
.bg-gray-5 { background-color: var(--gray-5) !important; }
.bg-gray-6 { background-color: var(--gray-6) !important; }
.bg-gray-7 { background-color: var(--gray-7) !important; }
.bg-gray-8 { background-color: var(--gray-8) !important; }
.bg-gray-9 { background-color: var(--gray-9) !important; }
.bg-gray-10 { background-color: var(--gray-10) !important; }

/* Gold Shades */
.gold-1 { color: var(--gold-1) !important; }
.gold-2 { color: var(--gold-2) !important; }
.gold-3 { color: var(--gold-3) !important; }
.gold-4 { color: var(--gold-4) !important; }
.gold-5 { color: var(--gold-5) !important; }
.gold-6 { color: var(--gold-6) !important; }
.gold-7 { color: var(--gold-7) !important; }
.gold-8 { color: var(--gold-8) !important; }

.bg-gold-1 { background-color: var(--gold-1) !important; }
.bg-gold-2 { background-color: var(--gold-2) !important; }
.bg-gold-3 { background-color: var(--gold-3) !important; }
.bg-gold-4 { background-color: var(--gold-4) !important; }
.bg-gold-5 { background-color: var(--gold-5) !important; }
.bg-gold-6 { background-color: var(--gold-6) !important; }
.bg-gold-7 { background-color: var(--gold-7) !important; }
.bg-gold-8 { background-color: var(--gold-8) !important; }


/* Black Shades */
.black-1 { color: var(--black-1) !important; }
.black-2 { color: var(--black-2) !important; }
.black-3 { color: var(--black-3) !important; }
.black-4 { color: var(--black-4) !important; }

.bg-black-1 { background-color: var(--black-1) !important; }
.bg-black-2 { background-color: var(--black-2) !important; }
.bg-black-3 { background-color: var(--black-3) !important; }
.bg-black-4 { background-color: var(--black-4) !important; }

.white{ color:white !important}
.bg-white{ background-color: white !important; }
.bg-transparent-black{
  background-color: #000000b8 !important;
}


html {
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box !important;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow-y: auto !important; 
  overflow-x: hidden !important; /* Nada de scroll horizontal */
}
a{
  text-decoration: none !important;
  color: auto !important;
}
body {
  margin: 0 !important;
  padding: 0;
  background: black;
  width: 100%;
  height: 100%;
  overflow: none !important;
}

.section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.contact-us-btn{
  height: 1.9rem; 
  min-width: 16rem; 
}
.contact-us-btn-icon{
  width: 6.1rem;
  height: 7.1rem; 
  margin-left: 0.5rem;
}

h1, h2, h3, h4, h5{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: bolder;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  margin: 0;
}
button{
  outline: none !important;
  background-color: transparent;
  border: none;
  transition: 0.8s;
  cursor: pointer !important;
}
a{
  transition: 0.8s;
}

button:hover, a:hover{
  transform: scale(1.1) !important;
  transition: 0.8s;
}
.hover-this{
  transition: 0.5s;
}
.hover-this:hover{
  transition: 0.5s;
  transform: scale(1.05) !important;
}

p {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  font-size: 1.8rem;
}
.white{
  color: white;
}
hr{
  margin: auto 0 !important;
}


.fp-tableCell{
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 !important;
  justify-content: center;
}
.init{
  height: 100%;
  width: 100%;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote{
  width: 35%;
}
.quote img{
  width: 100%;
  filter: drop-shadow(0.4rem 0.4rem 15px rgba(0,0,0,1));
}
.img-shadow{
  filter: drop-shadow(0.4rem 0.4rem 15px rgba(0,0,0,1));

}
.bgVideo {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
  margin: 0 !important;
}
.bgVideo2 {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
  margin: 0 !important;

  transform-origin: center right;
  transform: perspective(800px) scaleX(1.4) skewY(-2deg);

}
.bgVideo3 {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
  margin: 0 !important;
}
.img-container-2{
  width: 30%;
  position: relative;
  display: flex;
}
.img-container-2 .wave-overlay{
  bottom: 15% !important;
  position: absolute;
  left: 50%; transform: translateX(-50%);
}

.bgVideo::-webkit-media-controls {
  display: none !important;
}
.bgVideo {
  display: block;
  pointer-events: none; /* Evita clics en el video */
}

.grid-points {
  display: grid;
  grid-template-columns: repeat(5, 1.5rem);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
  border-radius: 50%;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
}

.close-video-modal {
  position: absolute;
  top: -4rem;
  right: 0;
  font-size: 60px;
  color: white;
  cursor: pointer;
}

.pluses-div{
  width: 5rem; 
  margin-left: 4rem;
}
.side-banner {
  position: absolute;
  left: 2rem; /* Ajusta según el tamaño que quieras separar */
  top: 20%;
  z-index: 1000000;
  transform: translateY(-50%);
  background-color: #fade5c;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  width: fit-content !important;
  /* min-height: 30rem; */
  display: flex;
  padding: 2rem 1rem 3rem 1rem;
  align-items: center;
  justify-content: center;
}

.side-banner-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: black;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  text-align: center;
}

.flex{
  flex-flow: row nowrap;
  display: flex;
}
.flex-center{
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
}
.flex-start{
  flex-flow: row nowrap;
  display: flex;
  align-items: flex-start;
}
.flex-start-between{
  flex-flow: row nowrap;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flex-start-start{
  flex-flow: row nowrap;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.flex-start-end{
  flex-flow: row nowrap;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.flex-start-center{
  flex-flow: row nowrap;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.flex-center-center{
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-center-end{
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flex-center-between{
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-center-start{
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-stretch-between{
  flex-flow: row nowrap;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.flexc-end-center{
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  justify-content: center;
}
.flexc-end-between{
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  justify-content: space-between;
}
.flexc{
  display: flex;
  flex-flow: column nowrap;
}
.flexc-start{
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.flexc-center{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.flexc-center-center{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.flexc-start-between{
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: space-between;
}
.flexc-center-between{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
}
.flex-wrap{
  flex-flow: row wrap !important;
}
.text-center, .main-title{
  text-align: center !important;
}
.text-justify{
  text-align: justify !important;
}
.text-start{
  text-align: start !important;
}
.text-end{
  text-align: end ;
}

/* Tamaños de texto */
.font-095{
  font-size: 0.95rem !important;
}
.font-09{
  font-size: 0.9rem !important;
}
.font-1{
  font-size: 1rem !important;
}
.font-1-1{
  font-size: 1.1rem !important;
}
.font-1-2{
  font-size: 1.2rem !important;
}
.font-1-3{
  font-size: 1.3rem !important;
}
.font-1-4{
  font-size: 1.4rem !important;
}
.font-1-5{
  font-size: 1.5rem !important;
}
.font-2{
  font-size: 2rem !important;
}
.font-2_5{
  font-size: 2.5rem !important;
}
.font-3{
  font-size: 3rem !important;
}
.font-4{
  font-size: 4rem !important;
}
.font-5{
  font-size: 5rem !important;
}
.font-6{
  font-size: 6rem !important;
}
.font-7{
  font-size: 7rem !important;
}
.font-8{
  font-size: 8rem !important;
}
.font-9{
  font-size: 9rem !important;
}
.font-special-1 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-variation-settings: "wdth" 100 !important;
  font-size: 9rem;
  color: transparent;
  -webkit-text-stroke: 1px #fade5c !important;
  letter-spacing: -1.9rem;
  line-height: 4rem;
}
  



.font-special-3{
  font-size: 9rem;
  color: transparent;
  -webkit-text-stroke: 5px gray;
  text-align: center;
  letter-spacing: -1.9rem;
  line-height: 4rem;
}
.font-special-1-number{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-variation-settings: "wdth" 100 !important;
  font-size: 10rem;
  color: transparent;
  -webkit-text-stroke: 1px #fade5c !important;
  letter-spacing: -1.9rem;
  line-height: 4rem;
}
.font-special-2{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-variation-settings: "wdth" 100 !important;
  font-size: 6.2rem;
  color: white;
  letter-spacing: -0.3rem;
  line-height: 7.1rem;
  text-align: center;
}
.fonter-special-12{
  font-size: 12rem !important;
  line-height: 9rem !important;
}
.opacity-1{
  opacity: 0.1;
}
.opacity-2{
  opacity: 0.2;
}
.opacity-3{
  opacity: 0.3;
}
.opacity-4{
  opacity: 0.4;
}
.opacity-5{
  opacity: 0.5;
}
.opacity-6{
  opacity: 0.6;
}
.opacity-7{
  opacity: 0.7;
}
.opacity-8{
  opacity: 0.8;
}
.opacity-9{
  opacity: 0.9;
}
.opacity-10{
  opacity: 1;
}
.fontw-100 {
  font-weight: 100 !important;
}

.fontw-200 {
  font-weight: 200 !important;
}

.fontw-300 {
  font-weight: 300 !important;
}

.fontw-400 {
  font-weight: 400 !important;
}

.fontw-500 {
  font-weight: 500 !important;
}

.fontw-600 {
  font-weight: 600 !important;
}

.fontw-700 {
  font-weight: 700 !important;
}

.fontw-800 {
  font-weight: 800 !important;
}

.fontw-900 {
  font-weight: 900 !important;
}

/* min-height classes */
.min-h-5{
  min-height: 5vh !important;
}
.min-h-10{
  min-height: 10vh !important;
}
.min-h-15{
  min-height: 15vh !important;
}
.min-h-20{
  min-height: 20vh !important;
}
.min-h-25{
  min-height: 25vh !important;
}
.min-h-30{
  min-height: 30vh !important;
}
.min-h-35{
  min-height: 35vh !important;
}
.min-h-40{
  min-height: 40vh !important;
}
.min-h-45{
  min-height: 45vh !important;
}
.min-h-50{
  min-height: 50vh !important;
}
.min-h-55{
  min-height: 55vh !important;
}
.min-h-60{
  min-height: 60vh !important;
}
.min-h-65{
  min-height: 65vh !important;
}
.min-h-70{
  min-height: 70vh !important;
}
.min-h-75{
  min-height: 75vh !important;
}
.min-h-80{
  min-height: 80vh !important;
}
.min-h-85{
  min-height: 85vh !important;
}
.min-h-90{
  min-height: 90vh !important;
}
.min-h-95{
  min-height: 95vh !important;
}
.min-h-100{
  min-height: 100vh !important;
}
/* height classes */
.h-5{
  height: 5vh !important;
}
.h-10{
  height: 10vh !important;
}
.h-15{
  height: 15vh !important;
}
.h-20{
  height: 20vh !important;
}
.h-25{
  height: 25vh !important;
}
.h-30{
  height: 30vh !important;
}
.h-35{
  height: 35vh !important;
}
.h-40{
  height: 40vh !important;
}
.h-45{
  height: 45vh !important;
}
.h-50{
  height: 50vh !important;
}
.h-55{
  height: 55vh !important;
}
.h-60{
  height: 60vh !important;
}
.h-65{
  height: 65vh !important;
}
.h-70{
  height: 70vh !important;
}
.h-75{
  height: 75vh !important;
}
.h-80{
  height: 80vh !important;
}
.h-85{
  height: 85vh !important;
}
.h-90{
  height: 90vh !important;
}
.h-95{
  height: 95vh !important;
}
.h-100{
  height: 100vh !important;
}
.h-50p{
  height: 50% !important;
}
.h-100p{
  height: 100% !important;
}
/* max-height classes */
.max-h-5{
  max-height: 5vh !important;
}
.max-h-10{
  max-height: 10vh !important;
}
.max-h-15{
  max-height: 15vh !important;
}
.max-h-20{
  max-height: 20vh !important;
}
.max-h-25{
  max-height: 25vh !important;
}
.max-h-30{
  max-height: 30vh !important;
}
.max-h-35{
  max-height: 35vh !important;
}
.max-h-40{
  max-height: 40vh !important;
}
.max-h-45{
  max-height: 45vh !important;
}
.max-h-50{
  max-height: 50vh !important;
}
.max-h-55{
  max-height: 55vh !important;
}
.max-h-60{
  max-height: 60vh !important;
}
.max-h-65{
  max-height: 65vh !important;
}
.max-h-70{
  max-height: 70vh !important;
}
.max-h-75{
  max-height: 75vh !important;
}
.max-h-80{
  max-height: 80vh !important;
}
.max-h-85{
  max-height: 85vh !important;
}
.max-h-90{
  max-height: 90vh !important;
}
.max-h-95{
  max-height: 95vh !important;
}
.max-h-100{
  max-height: 100vh !important;
}

/* Width */
.w-1 {
  /* min-width: 1% !important; */
  width: 1% !important;
}
.w-2 {
  /* min-width: 2% !important; */
  width: 2% !important;
}
.w-3 {
  /* min-width: 3% !important; */
  width: 3% !important;
}
.w-4 {
  /* min-width: 4% !important; */
  width: 4% !important;
}
.w-5 {
  /* min-width: 5% !important; */
  width: 5% !important;
}
.w-6 {
  /* min-width: 6% !important; */
  width: 6% !important;
}
.w-7 {
  /* min-width: 7% !important; */
  width: 7% !important;
}
.w-8 {
  /* min-width: 8% !important; */
  width: 8% !important;
}
.w-9 {
  /* min-width: 9% !important; */
  width: 9% !important;
}
.w-10 {
  /* min-width: 10% !important; */
  width: 10% !important;
}
.w-11 {
  /* min-width: 11% !important; */
  width: 11% !important;
}
.w-12 {
  /* min-width: 12% !important; */
  width: 12% !important;
}
.w-13 {
  /* min-width: 13% !important; */
  width: 13% !important;
}
.w-14 {
  /* min-width: 14% !important; */
  width: 14% !important;
}
.w-15 {
  /* min-width: 15% !important; */
  width: 15% !important;
}
.w-16 {
  /* min-width: 16% !important; */
  width: 16% !important;
}
.w-17 {
  /* min-width: 17% !important; */
  width: 17% !important;
}
.w-18 {
  /* min-width: 18% !important; */
  width: 18% !important;
}
.w-19 {
  /* min-width: 19% !important; */
  width: 19% !important;
}
.w-20 {
  /* min-width: 20% !important; */
  width: 20% !important;
}
.w-21 {
  /* min-width: 21% !important; */
  width: 21% !important;
}
.w-22 {
  /* min-width: 22% !important; */
  width: 22% !important;
}
.w-23 {
  /* min-width: 23% !important; */
  width: 23% !important;
}
.w-24 {
  /* min-width: 24% !important; */
  width: 24% !important;
}
.w-24_5 {
  /* min-width: 24.5% !important; */
  width: 24.5% !important;
}
.w-25 {
  /* min-width: 25% !important; */
  width: 25% !important;
}
.w-25rem {
  /* min-width: 25rem !important; */
  width: 25rem !important;
}
.w-26 {
  /* min-width: 26% !important; */
  width: 26% !important;
}
.w-27 {
  /* min-width: 27% !important; */
  width: 27% !important;
}
.w-28 {
  /* min-width: 28% !important; */
  width: 28% !important;
}
.w-29 {
  /* min-width: 29% !important; */
  width: 29% !important;
}
.w-30 {
  /* min-width: 30% !important; */
  width: 30% !important;
}
.w-30rem {
  /* min-width: 30rem !important; */
  width: 30rem !important;
}
.w-31 {
  /* min-width: 31% !important; */
  width: 31% !important;
}
.w-32 {
  /* min-width: 32% !important; */
  width: 32% !important;
}
.w-32_5{
  /* min-width: 32.7% !important; */
  width: 32.7% !important;
}
.w-33 {
  /* min-width: 33% !important; */
  width: 33% !important;
}
.w-34 {
  /* min-width: 34% !important; */
  width: 34% !important;
}
.w-35 {
  /* min-width: 35% !important; */
  width: 35% !important;
}
.w-36 {
  /* min-width: 36% !important; */
  width: 36% !important;
}
.w-37 {
  /* min-width: 37% !important; */
  width: 37% !important;
}
.w-38 {
  /* min-width: 38% !important; */
  width: 38% !important;
}
.w-39 {
  /* min-width: 39% !important; */
  width: 39% !important;
}
.w-40 {
  /* min-width: 40% !important; */
  width: 40% !important;
}
.w-40rem {
  /* min-width: 40rem !important; */
  width: 40rem !important;
}
.w-41 {
  /* min-width: 41% !important; */
  width: 41% !important;
}
.w-42 {
  /* min-width: 42% !important; */
  width: 42% !important;
}
.w-43 {
  /* min-width: 43% !important; */
  width: 43% !important;
}
.w-44 {
  /* min-width: 44% !important; */
  width: 44% !important;
}
.w-45 {
  /* min-width: 45% !important; */
  width: 45% !important;
}
.w-46 {
  /* min-width: 46% !important; */
  width: 46% !important;
}
.w-47 {
  /* min-width: 47% !important; */
  width: 47% !important;
}
.w-48 {
  /* min-width: 48% !important; */
  width: 48% !important;
}
.w-49 {
  /* min-width: 49% !important; */
  width: 49% !important;
}
.w-49-input {
  /* min-width: 49.3% !important; */
  width: 49.3% !important;
}
.w-49_6{
  /* min-width: 49.6% !important; */
  width: 49.6% !important;
}
.w-50 {
  /* min-width: 50% !important; */
  width: 50% !important;
}

.w-51 {
  /* min-width: 51% !important; */
  width: 51% !important;
}

.w-52 {
  /* min-width: 52% !important; */
  width: 52% !important;
}

.w-53 {
  /* min-width: 53% !important; */
  width: 53% !important;
}

.w-54 {
  /* min-width: 54% !important; */
  width: 54% !important;
}

.w-55 {
  /* min-width: 55% !important; */
  width: 55% !important;
}

.w-56 {
  /* min-width: 56% !important; */
  width: 56% !important;
}

.w-57 {
  /* min-width: 57% !important; */
  width: 57% !important;
}

.w-58 {
  /* min-width: 58% !important; */
  width: 58% !important;
}

.w-59 {
  /* min-width: 59% !important; */
  width: 59% !important;
}

.w-60 {
  /* min-width: 60% !important; */
  width: 60% !important;
}

.w-61 {
  /* min-width: 61% !important; */
  width: 61% !important;
}

.w-62 {
  /* min-width: 62% !important; */
  width: 62% !important;
}

.w-63 {
  /* min-width: 63% !important; */
  width: 63% !important;
}

.w-64 {
  /* min-width: 64% !important; */
  width: 64% !important;
}

.w-65 {
  /* min-width: 65% !important; */
  width: 65% !important;
}

.w-66 {
  /* min-width: 66% !important; */
  width: 66% !important;
}

.w-67 {
  /* min-width: 67% !important; */
  width: 67% !important;
}

.w-68 {
  /* min-width: 68% !important; */
  width: 68% !important;
}

.w-69 {
  /* min-width: 69% !important; */
  width: 69% !important;
}

.w-70 {
  /* min-width: 70% !important; */
  width: 70% !important;
}

.w-75{
  /* min-width: 75% !important; */
  width: 75% !important;
}
.w-77{
  /* min-width: 77% !important; */
  width: 77% !important;
}
.w-78{
  /* min-width: 78% !important; */
  width: 78% !important;
}
.w-80{
  /* min-width: 80% !important; */
  width: 80% !important;
}
.w-85{
  /* min-width: 85% !important; */
  width: 85% !important;
}
.w-90{
  /* min-width: 90% !important; */
  width: 90% !important;
}
.w-95{
  /* min-width: 95% !important; */
  width: 95% !important;
}
.w-100{
  /* min-width: 100% !important; */
  width: 100% !important;
}
.margin-text{
  margin-bottom: 1rem; 
  margin-left: -10%;
}

/* Margenes */
.margin-0{
  margin: 0 !important;
}
.margin-05{
  margin-top: 0.5% !important;
  margin-bottom: 0.5% !important;
}
.margin-05rem{
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.margin-1{
  margin-top: 1% !important;
  margin-bottom: 1% !important;
}
.margin-1rem{
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.margin-2rem{
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.margin-2{
  margin-top: 2% !important;
  margin-bottom: 2% !important;
}
.margin-3{
  margin-top: 3% !important;
  margin-bottom: 3% !important;
}
.margin-4{
  margin-top: 4% !important;
  margin-bottom: 4% !important;
}
.margin-5{
  margin-top: 5% !important;
  margin-bottom: 5% !important;
}
.margin-6{
  margin-top: 6% !important;
  margin-bottom: 6% !important;
}
.margin-7{
  margin-top: 7% !important;
  margin-bottom: 7% !important;
}
.margin-8{
  margin-top: 8% !important;
  margin-bottom: 8% !important;
}
.margin-9{
  margin-top: 9% !important;
  margin-bottom: 9% !important;
}
.margin-10{
  margin-top: 10% !important;
  margin-bottom: 10% !important;
}

/* Margenes Top */
.margin-t-05rem{
  margin-top: 0.5rem !important;
}
.margin-t-05{
  margin-top: 0.5% !important;
}
.margin-t-1{
  margin-top: 1% !important;
}
.margin-t-2{
  margin-top: 2% !important;
}
.margin-t-3{
  margin-top: 3% !important;
}
.margin-t-4{
  margin-top: 4% !important;
}
.margin-t-5{
  margin-top: 5% !important;
}
.margin-t-6{
  margin-top: 6% !important;
}
.margin-t-7{
  margin-top: 7% !important;
}
.margin-t-8{
  margin-top: 8% !important;
}
.margin-t-9{
  margin-top: 9% !important;
}
.margin-t-10{
  margin-top: 10% !important;
}

/* Margenes Bottom */
.margin-b-05{
  margin-bottom: 0.5% !important;
}
.margin-b-1{
  margin-bottom: 1% !important;
}
.margin-b-2{
  margin-bottom: 2% !important;
}
.margin-b-3{
  margin-bottom: 3% !important;
}
.margin-b-4{
  margin-bottom: 4% !important;
}
.margin-b-5{
  margin-bottom: 5% !important;
}
.margin-b-6{
  margin-bottom: 6% !important;
}
.margin-b-7{
  margin-bottom: 7% !important;
}
.margin-b-8{
  margin-bottom: 8% !important;
}
.margin-b-9{
  margin-bottom: 9% !important;
}
.margin-b-10{
  margin-bottom: 10% !important;
}
.margin-b-01rem {
  margin-bottom: 0.1rem !important;
}
.margin-b-02rem {
  margin-bottom: 0.2rem !important;
}
.margin-b-03rem {
  margin-bottom: 0.3rem !important;
}
.margin-b-04rem {
  margin-bottom: 0.4rem !important;
}
.margin-b-05rem {
  margin-bottom: 0.5rem !important;
}
.margin-b-06rem {
  margin-bottom: 0.6rem !important;
}
.margin-b-07rem {
  margin-bottom: 0.7rem !important;
}
.margin-b-08rem {
  margin-bottom: 0.8rem !important;
}
.margin-b-09rem {
  margin-bottom: 0.9rem !important;
}
.margin-b-1rem {
  margin-bottom: 1rem !important;
}
.margin-b-2rem {
  margin-bottom: 2rem !important;
}
.margin-b-3rem {
  margin-bottom: 3rem !important;
}
.margin-b-4rem {
  margin-bottom: 4rem !important;
}


/* Márgenes Left */
.margin-l-1{
  margin-left: 1% !important;
}
.margin-l-05rem{
  margin-left: 0.5rem !important;
}
.margin-l-1rem{
  margin-left: 1rem !important;
}
.margin-l-2rem{
  margin-left: 2rem !important;
}
.margin-l-2{
  margin-left: 2% !important;
}
.margin-l-3{
  margin-left: 3% !important;
}
.margin-l-4{
  margin-left: 4% !important;
}
.margin-l-5{
  margin-left: 5% !important;
}
.margin-l-6{
  margin-left: 6% !important;
}
.margin-l-7{
  margin-left: 7% !important;
}
.margin-l-8{
  margin-left: 8% !important;
}
.margin-l-9{
  margin-left: 9% !important;
}
.margin-l-10{
  margin-left: 10% !important;
}

/* Márgenes Right */
.margin-r-0{
  margin-right: 0 !important;
}
.margin-r-05rem{
  margin-right: 0.5rem !important;
}
.margin-r-1{
  margin-right: 1% !important;
}
.margin-r-1rem{
  margin-right: 1rem !important;
}
.margin-r-2{
  margin-right: 2% !important;
}
.margin-r-3{
  margin-right: 3% !important;
}
.margin-r-4{
  margin-right: 4% !important;
}
.margin-r-5{
  margin-right: 5% !important;
}
.margin-r-6{
  margin-right: 6% !important;
}
.margin-r-7{
  margin-right: 7% !important;
}
.margin-r-8{
  margin-right: 8% !important;
}
.margin-r-9{
  margin-right: 9% !important;
}
.margin-r-10{
  margin-right: 10% !important;
}
.border-rad-0{
  border-radius: 0 !important;
}
.border-rad-04{
  border-radius: 0.4rem !important;
}
.border-rad-1{
  border-radius: 1rem !important;
}
.border-rad-2{
  border-radius: 2rem !important;
}
.border-rad-3{
  border-radius: 3rem !important;
}
.border-rad-4{
  border-radius: 4rem !important;
}
.border-rad-left-1{
  border-radius: 1rem 0 1rem 0;
}
.border-rad-right-1{
  border-radius: 0 1rem 0 1rem;
}
.border-rad-right-top-1{
  border-radius: 0 1rem 0 0;
}
.padding-05-0{
  padding: 0.5rem 0 !important;
}
.padding-05{
  padding: 0.5rem !important;
}
.padding-0{
  padding: 0 !important;
}
.padding-08rem{
  padding: 0.8rem !important;
}
.padding-1rem{
  padding: 1rem !important;
}
.padding-2rem{
  padding: 2rem !important;
}
.padding-3rem{
  padding: 3rem !important;
}
.padding-4rem{
  padding: 4rem !important;
}
.padding-5rem{
  padding: 5rem !important;
}
.padding-6rem{
  padding: 6rem !important;
}
.box{
  background-color: var(--black-1);
  border: solid white;
  padding: 2rem;
}


.bullet-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-shape {
  width: 100%;
  height: 200px;
}

.bullet-text {
  color: white;
  font-size: 18px;
  line-height: 1.6;
}

.bullet-text b {
  font-weight: bold;
  color: white;
}

.speed-lines {
  position: absolute;
  left: -60px;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.speed-lines span {
  display: block;
  width: 40px;
  height: 4px;
  background: yellow;
  border-radius: 2px;
}

.fade-up-init {
  opacity: 0;
  transform: scale(1.1);
}

.fade-up {
  animation: fadeUpAnim 1s ease-out forwards;
}

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotatePlus {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


@keyframes pulseUpDown {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}


.pulse1 {
  animation: pulseUpDown 4s ease-in-out infinite;
}

.pulse2 {
  animation: pulseUpDown 4s ease-in-out infinite;
  animation-delay: 2s; /* DESFASE PERFECTO */
}

@keyframes blink {
  0%, 85%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* 8 clases con tiempos diferentes */
.blink-1 {
  animation: blink 1.5s infinite;
}
.blink-2 {
  animation: blink 2s infinite;
}
.blink-3 {
  animation: blink 2.5s infinite;
}
.blink-4 {
  animation: blink 3s infinite;
}
.blink-5 {
  animation: blink 3.5s infinite;
}
.blink-6 {
  animation: blink 4s infinite;
}
.blink-7 {
  animation: blink 5s infinite;
}
.blink-8 {
  animation: blink 6s infinite;
}


/* Todas rotan en loop infinito, pero con diferentes duraciones */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.circle-content {
  width: 100%;
  height: 100%;
  object-fit: cover; /* El truco para rellenar bonito sin deformar */
  border-radius: 100%;
}
.circle-0_5rem{
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem !important;
  min-width: 0.5rem !important;
  height: 0.5rem !important;
}
.circle-1rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem !important;
  min-width: 1rem !important;
  height: 1rem !important;
}

.circle-1_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem !important;
  min-width: 1.5rem !important;
  height: 1.5rem !important;
}

.circle-2rem {
  border-radius: 100%;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  width: 2rem !important;
  min-width: 2rem !important;
  height: 2rem !important;
}

.circle-2_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem !important;
  min-width: 2.5rem !important;
  height: 2.5rem !important;
}

.circle-3rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem !important;
  min-width: 3rem !important;
  height: 3rem !important;
}

.circle-3_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem !important;
  min-width: 3.5rem !important;
  height: 3.5rem !important;
}

.circle-4rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem !important;
  min-width: 4rem !important;
  height: 4rem !important;
}

.circle-4_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem !important;
  min-width: 4.5rem !important;
  height: 4.5rem !important;
}

.circle-5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem !important;
  min-width: 5rem !important;
  height: 5rem !important;
}

.circle-5_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem !important;
  min-width: 5.5rem !important;
  height: 5.5rem !important;
}

.circle-6rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem !important;
  min-width: 6rem !important;
  height: 6rem !important;
}

.circle-6_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem !important;
  min-width: 6.5rem !important;
  height: 6.5rem !important;
}

.circle-7rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem !important;
  min-width: 7rem !important;
  height: 7rem !important;
}

.circle-7_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem !important;
  min-width: 7.5rem !important;
  height: 7.5rem !important;
}

.circle-8rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem !important;
  min-width: 8rem !important;
  height: 8rem !important;
}

.circle-9rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9rem !important;
  min-width: 9rem !important;
  height: 9rem !important;
}

.circle-9_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.5rem !important;
  min-width: 9.5rem !important;
  height: 9.5rem !important;
}

.circle-10rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem !important;
  min-width: 10rem !important;
  height: 10rem !important;
}

.circle-10_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.5rem !important;
  min-width: 10.5rem !important;
  height: 10.5rem !important;
}

.circle-11rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem !important;
  min-width: 11rem !important;
  height: 11rem !important;
}

.circle-11_5rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.5rem !important;
  min-width: 11.5rem !important;
  height: 11.5rem !important;
}

.circle-12rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem !important;
  min-width: 12rem !important;
  height: 12rem !important;
}
.circle-20rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem !important;
  min-width: 20rem !important;
  height: 20rem !important;
}
.circle-25rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25rem !important;
  min-width: 25rem !important;
  height: 25rem !important;
}
.circle-26rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26rem !important;
  min-width: 26rem !important;
  height: 26rem !important;
}
.circle-27rem {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27rem !important;
  min-width: 27rem !important;
  height: 27rem !important;
}
.clients-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  /* max-width: 1600px; */
  margin: 0 auto;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box-message {
  background-image: url('content/images/message.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1rem 1rem 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  min-height: 210px;
  margin: 1rem 0 1rem 0;

}
.column a{
  margin: 1 0 5rem 0;
}


.box-message p {
  color: #f7df5c;
  font-size: 3rem;
  font-weight: 800;
  text-align: center !important;
  line-height: 2.5rem;

  /* Sombra obscena y brutal: */
  text-shadow:
    0 6px 12px rgba(0,0,0,1),
    0 8px 24px rgba(0,0,0,1),
    0 10px 40px rgba(0,0,0,1);
}

.box-message p span{
  font-weight: 100;
}
.box-message p span.apt{
  font-size: 2rem;
}
.box-message p b.apt-2{
  font-size: 4rem;
}
.box-message p b.apt-3{
  font-size: 2.4rem;
  letter-spacing: -0.1rem !important;
}
.empty {
  visibility: hidden;
}
.scroll-hint {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  transition: opacity 0.5s ease;
  z-index: 9999;
}

.scroll-hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-visible {
  opacity: 1;
  pointer-events: auto;
}


/* Ícono animado */
.scroll-icon {
  font-size: 4rem !important;
  animation: bounce 1.5s infinite;
}

/* Texto */
.scroll-text {
  margin: 0;
  font-size: 2rem;
}

/* Animación tipo rebote */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}



.appear-1780, .appear-1700, .appear-1570, .appear-1480, .appear-1470, .appear-1260, .appear-1250, 
.appear-1200, .appear-1180, .appear-1080, .appear-1000, .appear-992, .appear-900, .appear-800, .appear-768, .appear-666, .appear-600, .appear-480 {
    display: none !important;
}
@media (max-width: 1780px) {
    .disappear-1780{ display: none !important; }
    .appear-1780 { display: flex !important; }
    .ver-mas { display: flex !important; }
}
@media (max-width: 1700px) {
    .force-column-1700 { flex-direction: column !important; }
    .force-text-center-1700 { text-align: center !important; }
    .disappear-1700 { display: none !important; }
    .appear-1700 { display: flex !important; }

    .w-24-r-1700 { width: 24% !important; }
    .w-32-r-1700 { width: 32% !important; }
    .w-49-r-1700 { width: 49% !important; }
    .w-100-r-1700 { width: 100% !important; }

    .h-50-r-1700 { height: 50vh !important; }
    .h-100-r-1700 { height: 100vh !important; }
    .h-auto-r-1700 { height: auto !important; }

    .mb-1rem-r-1700 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1700 { margin-bottom: 2rem !important; }
    .box-message {
      width: 190px;
      min-height: 190px;
    }
    .fonter-special-12{
      font-size: 10rem !important;
      line-height: 7.5rem !important;
      letter-spacing: -0.9rem !important;
    }
}

@media (max-width: 1570px) {
    .force-column-1570 { flex-direction: column !important; }
    .force-text-center-1570 { text-align: center !important; }
    .disappear-1570 { display: none !important; }
    .appear-1570 { display: flex !important; }

    .w-32-r-1570 { width: 32% !important; }
    .w-49-r-1570 { width: 49% !important; }
    .w-100-r-1570 { width: 100% !important; }

    .h-50-r-1570 { height: 50vh !important; }
    .h-100-r-1570 { height: 100vh !important; }
    .h-auto-r-1570 { height: auto !important; }

    .mb-1rem-r-1570 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1570 { margin-bottom: 2rem !important; }

    .box-message{
      width: 170px;
      min-height: 170px;
    }
    .box-message p{
      font-size: 2rem !important;
      line-height: 1.8rem;
    }
    .box-message p span.apt{
      line-height: 2rem;
      font-size: 1.7rem !important;
    }
    .box-message p b.apt-2{
      line-height: 1.8rem;
      font-size: 3.3rem !important;
    }
    .box-message p b.apt-3{
      line-height: 1.8rem;
      font-size: 1.8rem !important;
    }
}

@media (max-width: 1480px) {
    .force-column-1480 { flex-direction: column !important; }
    .force-text-center-1480 { text-align: center !important; }
    .disappear-1480 { display: none !important; }
    .appear-1480 { display: flex !important; }
    header ul:first-child a { margin: 0 0.5rem !important; }

    .w-32-r-1480 { width: 32% !important; }
    .w-49-r-1480 { width: 49% !important; }
    .w-100-r-1480 { width: 100% !important; }

    .h-50-r-1480 { height: 50vh !important; }
    .h-100-r-1480 { height: 100vh !important; }
    .h-auto-r-1480 { height: auto !important; }

    .mb-1rem-r-1480 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1480 { margin-bottom: 2rem !important; }

    .modal-dialog{ width: 80% !important; }
    .svg-wrapper{
      width: fit-content !important;
    }
    .svg-1{
      width: 700px !important;
    }
    .svg-2{
      width: 300px !important;
    }
}

@media (max-width: 1470px) {
    .force-column-1470 { flex-direction: column !important; }
    .force-text-center-1470 { text-align: center !important; }
    .disappear-1470 { display: none !important; }
    .appear-1470 { display: flex !important; }

    .w-32-r-1470 { width: 32% !important; }
    .w-40-r-1470 { width: 40% !important; }
    .w-49-r-1470 { width: 49% !important; }
    .w-80-r-1470 { width: 80% !important; }
    .w-100-r-1470 { width: 100% !important; }

    .h-50-r-1470 { height: 50vh !important; }
    .h-80-r-1470 { height: 80vh !important; }
    .h-100-r-1470 { height: 100vh !important; }
    .h-auto-r-1470 { height: auto !important; }

    .mb-1rem-r-1470 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1470 { margin-bottom: 2rem !important; }

    .font-special-1{
      font-size: 7rem ;
    }
    .font-special-3{
      font-size: 7rem ;
    }
    .font-special-1-number{
      font-size: 7rem ;
    }
    .font-special-2{
      font-size: 3.8rem ;
    }
    p{
      font-size: 1.5rem !important;
    }
    .box-message{
      width: 155px;
      min-height: 155px;
    }
    .box-message p{
      font-size: 1.8rem !important;
    }
    .box-message p span.apt{
      font-size: 1.4rem !important;
    }
    .box-message p b.apt-2{
      font-size: 2.8rem !important;
    }
    .fonter-special-12{
      font-size: 8rem !important;
      line-height: 6rem !important;
      letter-spacing: -0.9rem !important;
    }
    .svg-1{
      width: 550px !important;
    }
}

@media (min-height: 1100px) {
    .w-32-h-1100 { width: 32% !important; }
    .w-40-h-1100 { width: 40% !important; }
    .w-49-h-1100 { width: 49% !important; }
    .w-80-h-1100 { width: 80% !important; }
    .w-100-h-1100 { width: 100% !important; }
}

@media (max-width: 1300px) {
  .force-column-1300 { flex-direction: column !important; }
  .force-text-center-1300 { text-align: center !important; }
  .disappear-1300 { display: none !important; }
  .appear-1300 { display: flex !important; }

  .w-32-r-1300 { width: 32% !important; }
  .w-49-r-1300 { width: 49% !important; }
  .w-100-r-1300 { width: 100% !important; }

  .h-50-r-1300 { height: 50vh !important; }
  .h-80-r-1300 { height: 80vh !important; }
  .h-100-r-1300 { height: 100vh !important; }
  .h-auto-r-1300 { height: auto !important; }

  .mb-1rem-r-1300 { margin-bottom: 1rem !important; }
  .mb-2rem-r-1300 { margin-bottom: 2rem !important; }
}


@media (max-width: 1260px) {
    .force-column-1260 { flex-direction: column !important; }
    .force-text-center-1260 { text-align: center !important; }
    .disappear-1260 { display: none !important; }
    .appear-1260 { display: flex !important; }

    .w-32-r-1260 { width: 32% !important; }
    .w-49-r-1260 { width: 49% !important; }
    .w-100-r-1260 { width: 100% !important; }

    .h-50-r-1260 { height: 50vh !important; }
    .h-100-r-1260 { height: 100vh !important; }
    .h-auto-r-1260 { height: auto !important; }

    .mb-1rem-r-1260 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1260 { margin-bottom: 2rem !important; }

     .font-9 { font-size: 7rem !important; }  /* ↓ de 9rem a 7rem */
    .font-8 { font-size: 6rem !important; }  /* ↓ de 8rem a 6rem */
    .font-7 { font-size: 5.5rem !important; }  /* ↓ de 7rem a 5.5rem */
    .font-6 { font-size: 4.5rem !important; }  /* ↓ de 6rem a 4.5rem */
    .font-5 { font-size: 3.8rem !important; }  /* ↓ de 5rem a 3.8rem */
    .font-4 { font-size: 3rem !important; }  /* ↓ de 4rem a 3rem */
    .font-3 { font-size: 2.5rem !important; }  /* ↓ de 4rem a 3rem */

    
}

@media (max-width: 1250px) {
    .force-column-1250 { flex-direction: column !important; }
    .force-text-center-1250 { text-align: center !important; }
    .disappear-1250 { display: none !important; }
    .appear-1250 { display: flex !important; }

    .w-32-r-1250 { width: 32% !important; }
    .w-49-r-1250 { width: 49% !important; }
    .w-100-r-1250 { width: 100% !important; }

    .h-50-r-1250 { height: 50vh !important; }
    .h-100-r-1250 { height: 100vh !important; }
    .h-auto-r-1250 { height: auto !important; }

    .mb-1rem-r-1250 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1250 { margin-bottom: 2rem !important; }

    .svg-4{
      width: 600px !important;
    }
    .img-quote{
      width: 17rem !important;
    }
    .side-banner{
      left: -1rem !important;
      top: 10% !important;
    }
}

@media (max-width: 1200px) {
    .force-column-1200 { flex-direction: column !important; flex-flow: column wrap !important; }
    .force-text-center-1200 { text-align: center !important; }
    .disappear-1200 { display: none !important; }
    .appear-1200 { display: flex !important; }
    .force-column-1200 .w-32 { width: 100% !important; margin: 0 0 1rem 0; }

    .w-32-r-1200 { width: 32% !important; }
    .w-49-r-1200 { width: 49% !important; min-width: 49% !important;}
    .w-95-r-1200 { width: 95% !important; }
    .w-100-r-1200 { width: 100% !important; }

    .h-50-r-1200 { height: 50vh !important; }
    .h-100-r-1200 { height: 100vh !important; }
    .h-auto-r-1200 { height: auto !important; }

    .mb-1rem-r-1200 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1200 { margin-bottom: 2rem !important; }

    .pluses{
      width: 100% !important;
    }
    .pluses img{
      width: 7rem !important;
    }
}
@media (max-width: 1180px) {
  .force-column-1180 { flex-direction: column !important; }
  .force-text-center-1180 { text-align: center !important; }
  .disappear-1180 { display: none !important; }
  .appear-1180 { display: flex !important; }

  .w-32-r-1180 { width: 32% !important; }
  .w-49-r-1180 { width: 49% !important; }
  .w-100-r-1180 { width: 100% !important; }

  .h-50-r-1180 { height: 50vh !important; }
  .h-100-r-1180 { height: 100vh !important; }
  .h-auto-r-1180 { height: auto !important; }

  .mb-1rem-r-1180 { margin-bottom: 1rem !important; }
  .mb-2rem-r-1180 { margin-bottom: 2rem !important; }

  .margin-text{
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 1080px) {
    .force-column-1080 { flex-direction: column !important; }
    .force-text-center-1080 { text-align: center !important; }
    .disappear-1080 { display: none !important; }
    .appear-1080 { display: flex !important; }

    .w-32-r-1080 { width: 32% !important; }
    .w-49-r-1080 { width: 49% !important; }
    .w-100-r-1080 { width: 100% !important; }

    .h-50-r-1080 { height: 50vh !important; }
    .h-100-r-1080 { height: 100vh !important; }
    .h-auto-r-1080 { height: auto !important; }

    .mb-1rem-r-1080 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1080 { margin-bottom: 2rem !important; }

    .clients-columns{
      grid-template-columns: repeat(4, 1fr);
    }
    .curly-icon{
      width: 7rem !important;
    }
    .svg-3{
      width: 450px !important;
    }
}

@media (max-width: 1000px) {
    .force-column-1000 { flex-direction: column !important; }
    .force-text-center-1000 { text-align: center !important; }
    .disappear-1000 { display: none !important; }
    .appear-1000 { display: flex !important; }

    .w-32-r-1000 { width: 32% !important; }
    .w-49-r-1000 { width: 49% !important; }
    .w-100-r-1000 { width: 100% !important; }

    .h-50-r-1000 { height: 50vh !important; }
    .h-100-r-1000 { height: 100vh !important; }
    .h-auto-r-1000 { height: auto !important; }

    .mb-1rem-r-1000 { margin-bottom: 1rem !important; }
    .mb-2rem-r-1000 { margin-bottom: 2rem !important; }
    .m-1rem-r-1000{
        margin: 1rem 0 !important;
    }
    
    .font-4{
        font-size: 3rem !important;
    }
    .circle-25rem{
      width: 20rem !important;
      min-width: 20rem !important;
      height: 20rem !important;
    }
}

@media (max-width: 992px) {
    .force-column-992 { flex-direction: column !important; }
    .force-text-center-992 { text-align: center !important; }
    .disappear-992 { display: none !important; }
    .appear-992 { display: flex !important; }

    .w-32-r-992 { width: 32% !important; }
    .w-49-r-992 { width: 49% !important; }
    .w-80-r-992 { width: 80% !important; }
    .w-100-r-992 { width: 100% !important; }
    .w-25rem-r-992{
        width: 25rem !important;
    }

    .h-50-r-992 { height: 50vh !important; }
    .h-100-r-992 { height: 100vh !important; }
    .h-auto-r-992 { height: auto !important; }

    .flexc-center-r-992{
     align-items: center !important;       
    }

    .special-bullet{
      width: 100% !important;
      min-width: 0 !important;
      margin-left: -1rem !important;
      transform: scale(1.15) !important;
    }
    /* .special-circle{
      min-width: 0 !important;
      width: 60% !important;
    } */

    .mb-1rem-r-992 { margin-bottom: 1rem !important; }
    .mb-2rem-r-992 { margin-bottom: 2rem !important; }
    .mb-3rem-r-992 { margin-bottom: 3rem !important; }
    .mb-4rem-r-992 { margin-bottom: 4rem !important; }

    .svg-4{
      width: 500px !important;
    }
    .img-quote{
      width: 14rem !important;
    }
    .circles-div{
      width: 60% !important;
    }
}

@media (max-width: 900px){
  .clients-columns{
    grid-template-columns: repeat(3, 1fr);
  }
  .disappear-900 { display: none !important; }
  .appear-900 { display: flex !important; }
  .fonter-special-12{
    font-size: 7rem !important;
    line-height: 5rem !important;
  }
  .quote{
    width: 60% !important;
  }
  .svg-1{
    width: 450px !important;
  }
  .svg-3{
    width: 400px !important;
  }
}

@media (max-width: 800px) {
    .force-column-800 { flex-direction: column !important; }
    .force-text-center-800 { text-align: center !important; }
    .disappear-800 { display: none !important; }
    .appear-800 { display: flex !important; }

    .flexc-center-r-800{
      align-items: center !important;
      justify-content: center !important;
    }
    .w-32-r-800 { width: 32% !important; }
    .w-49-r-800 { width: 49% !important; }
    .w-100-r-800 { width: 100% !important; }

    .h-50-r-800 { height: 50vh !important; }
    .h-100-r-800 { height: 100vh !important; }
    .h-auto-r-800 { height: auto !important; }

    .mb-1rem-r-800 { margin-bottom: 1rem !important; }
    .mb-2rem-r-800 { margin-bottom: 2rem !important; }
    .bgVideo2, .bgVideo3{
      width: 150% !important;
    }
}

@media (max-width: 768px) {
    .force-column-768 { flex-direction: column !important; }
    .force-row-768 {flex-direction: row !important;}
    .no-wrap-768 {flex-flow: nowrap !important;}
    .force-text-center-768 { text-align: center !important; }
    .disappear-768 { display: none !important; }
    .appear-768 { display: flex !important; }

    .w-32-r-768 { width: 32% !important; }
    .w-49-r-768 { width: 49% !important; }
    .w-95-r-768 { width: 95% !important; }
    .w-100-r-768 { width: 100% !important; }

    .h-50-r-768 { height: 50vh !important; }
    .h-100-r-768 { height: 100vh !important; }
    .h-auto-r-768 { height: auto !important; }

    .mb-1rem-r-768 { margin-bottom: 1rem !important; }
    .mb-2rem-r-768 { margin-bottom: 2rem !important; }

    .font-7 { font-size: 4.5rem !important; }  /* ↓ de 5.5rem a 4.5rem */
    .font-6 { font-size: 3.8rem !important; }  /* ↓ de 4.5rem a 3.8rem */
    .font-5 { font-size: 3rem !important; }  /* ↓ de 3.8rem a 3rem */
    .font-4 { font-size: 2.5rem !important; }  /* ↓ de 3rem a 2.5rem */
    .font-3 { font-size: 2rem !important; }  /* ↓ de 2.5rem a 2rem */
    .font-2 { font-size: 1.5rem !important; }  /* ↓ de 1.8rem a 1.5rem */

    .fonter-special-12{
      text-align: center !important;
      width: 100% !important;
    }

    .flexc-center-r-768{
      align-items: center !important;       
    }
    .svg-3{
      width: 350px !important;
    }
    .svg-2{
      width: 240px !important;
    }
    .svg-1{
      width: 500px !important;
    }
    .side-banner{
     left: -1rem !important;
      top: -20% !important;
      padding: 1rem 0.5rem 2rem;
    }
    .side-banner-text{
      font-size: 1rem !important;
    }

}

@media (max-width: 666px) {
  .force-column-666 { flex-direction: column !important; }
    .force-text-center-666 { text-align: center !important; }
    .disappear-666 { display: none !important; }
    .appear-666 { display: flex !important; }

    .w-32-r-666 { width: 32% !important; }
    .w-49-r-666 { width: 49% !important; }
    .w-95-r-666 { width: 95% !important; }
    .w-100-r-666 { width: 100% !important; }

    .h-50-r-666 { height: 50vh !important; }
    .h-100-r-666 { height: 100vh !important; }
    .h-auto-r-666 { height: auto !important; }

    .mb-1rem-r-666 { margin-bottom: 1rem !important; }
    .mb-2rem-r-666 { margin-bottom: 2rem !important; }

    .clients-columns{
      grid-template-columns: repeat(2, 1fr);
    }
    .svg-3{
      width: 300px !important;
    }
}

@media (max-width: 600px) {
    .force-column-600 { flex-direction: column !important; }
    .force-text-center-600 { text-align: center !important; }
    .disappear-600 { display: none !important; }
    .appear-600 { display: flex !important; }

    .w-32-r-600 { width: 32% !important; }
    .w-49-r-600 { width: 49% !important; }
    .w-80-r-600 { width: 80% !important; }
    .w-100-r-600 { width: 100% !important; }

    .h-50-r-600 { height: 50vh !important; }
    .h-100-r-600 { height: 100vh !important; }
    .h-auto-r-600 { height: auto !important; }

    .mb-1rem-r-600 { margin-bottom: 1rem !important; }
    .mb-2rem-r-600 { margin-bottom: 2rem !important; }

    .fonter-special-12{
      font-size: 6rem !important;
    }
    .svg-1{
      width: 400px !important;
    }
    .svg-2{
      width: 200px !important;
      height: 80px !important;
    }
    .svg-3{
      margin-right: 1rem !important;
    }
    .circle-25rem{
      width: 15rem !important;
      min-width: 15rem !important;
      height: 15rem !important;
    }
    .pluses img{
      width: 5rem !important;
    }
    .pluses-div{
      width: 4rem !important;
    }
    .pluses-div img{
      width: 1.4rem !important;
    }
    .lets-tka{
      flex-flow: column-reverse !important;
      align-items: end !important;
    }
    .margin-text{
      margin: 0 !important;
    }
    .margin-text .pluses-div-2{
      margin-right: 5rem !important;
      margin-top: -5rem !important;
      margin-bottom: 1rem !important;
    }
}

@media (max-width: 480px) {
    .force-column-480 { flex-direction: column !important; }
    .force-text-center-480 { text-align: center !important; }
    .disappear-480 { display: none !important; }
    .flexc-center-r-480{
      align-items: center !important;
      justify-content: center !important;
    }
    .appear-480, .sub-appear-480 { display: flex !important; }

    .w-32-r-480 { width: 32% !important; }
    .w-49-r-480 { width: 49% !important; }
    .w-80-r-480 {width: 80% !important;}
    .w-100-r-480 { width: 100% !important; }

    .h-50-r-480 { height: 50vh !important; }
    .h-100-r-480 { height: 100vh !important; }
    .h-auto-r-480 { height: auto !important; }

    .mb-1rem-r-480 { margin-bottom: 1rem !important; }
    .mb-2rem-r-480 { margin-bottom: 2rem !important; }
    .mb-3rem-r-480 { margin-bottom: 3rem !important; }

    .box-message{
      width: 120px;
      min-height: 120px;
    }

    .font-special-1{
      font-size: 6rem ;
    }
    .font-special-3{
      font-size: 6rem ;
    }
    .font-special-1-number{
      font-size: 6rem ;
    }
    .font-special-2{
      font-size: 2.7rem ;
    }
    p{
      font-size: 1.3rem !important;
    }
    .fonter-special-12{
      font-size: 4.5rem !important;
      letter-spacing: -0.5rem !important;
      line-height: 3.5rem !important;
    } 
    .contact-us-btn{
      min-width: 0 !important;
      width: 100% ;
    }
    .msg-img{
      width: 10rem !important;
      height: auto !important;
      margin: 1rem 0 0 0 !important;
    }
    .msg-p{
      width: 100% !important;;
    }
    .fonter-special-12{
      font-size: 4rem !important;
      line-height: 3rem !important;
    } 
    .box{
      padding: 2rem 0 !important;
    }
    .circles-div{
      width: 80% !important;
    }
}
@media (max-width: 430px) {
    .svg-1{
      width: 350px !important;
    }
    .svg-2{
      width: 160px !important;
      height: 70px !important;
    }
    .svg-3{
      width: 280px !important;
    }
    .circle-25rem {
      width: 12rem !important;
      min-width: 12rem !important;
      height: 12rem !important;
    }
}
@media (max-width: 380px) {
  .svg-1{
    width: 280px !important;
    height: 120px !important;
  }
  .items-plus-div{
    flex-flow: column !important;
  }
  .circles-div{
    width: 100% !important;
  }
  .pluses img{
    width: 3rem !important;
  }
  .pluses .pulse2{
    margin-top: -1rem !important;
  }
  .pluses .pulse1{
    margin-right: 3rem !important;
  }
  .curly-icon{
    width: 5rem !important;
  }
  .circle-25rem {
    width: 10rem !important;
    min-width: 10rem !important;
    height: 10rem !important;
  }
}
@media (max-width: 350px){
  .svg-2{
    width: 130px !important;
  }
  .circle-25rem {
    width: 8rem !important;
    min-width: 8rem !important;
    height: 8rem !important;
  }
  .box-message{
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    width: 100px !important; 
    min-height: 100px !important;
  }
  .box-message p{
    font-size: 1.2rem !important;
  }
  .box-message p b.apt-2{
    font-size: 2rem !important;
  }
  .box-message p span.apt{
    font-size: 1rem !important;
  }
  .box-message p b.apt-3{
    font-size: 1.4rem !important;
  }
}
