@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0 !important;
  font-family: "Montserrat", sans-serif;
}

a:focus {
  outline: none;
}

.feeling_toggle.visible {
  display: block;
}


/******casos_exito_home********/
.caso_zoom-pan-container {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  /* Ajusta el tamaño según tus necesidades */
  height: 100%;
  /* Ajusta el tamaño según tus necesidades */
}

.caso_zoom-pan-image {
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.caso_home {
  position: relative;
  display: none;
}

.casos_home_cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  grid-auto-rows: minmax(0px, auto);
}

.casos_home_cont .primero {
  grid-column: 1;
  grid-row: 1;
  height: 38vh;
  display: block;
}

.casos_home_cont .segundo {
  grid-column: 2;
  grid-row: 1;
  height: 38vh;
  display: block;
}

.casos_home_cont .tercero {
  grid-column: 3;
  grid-row: 1;
  height: 38vh;
  display: block;
}

.casos_home_cont .cuarto {
  grid-column: 1;
  grid-row: 2;
  height: 38vh;
  display: block;
}

.casos_home_cont .quinto {
  grid-column: 2;
  grid-row: 2;
  height: 38vh;
  display: block;
}

.casos_home_cont .sexto {
  grid-column: 3;
  grid-row: 2;
  height: 38vh;
  display: block;
}


.caso_img img {
  opacity: 0;
}

.logo_hover {
  width: 100%;
  height: 100%;
  background-color: #00000077;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.logo_hover a {
  width: 120px;
}

.caso_home:hover .logo_hover {
  opacity: 1;
  transition: opacity 0.5s ease;

}

.logo_hover img {
  width: 100%;
  height: auto;
}

.casos_home_button_cont {
  width: 100%;
  padding: 30px 0;
}

.sol_img {
  width: 40%;
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  border-radius: 20px;
}

.sol_img img {
  opacity: 0;
}

.filtro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/******fin casos_exito_home********/


.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 280px;
  overflow: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 120s linear infinite;
}


#aliados_home {
  padding: 80px 0;
}

.aliados_cont {
  width: 70%;
  margin: 0 auto;
  display: flex;
}

.aliados_left {
  flex-basis: calc(60%);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2em;
  opacity: 0;
  /* Inicialmente oculto */
  transform: translateY(100px);
}

.aliados_rigth {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: flex-end;
  gap: 0 15px;
  opacity: 0;
  /* Inicialmente oculto */
  transform: translateY(-10px);
}

.aliado_img {
  max-width: 150px;
}

.aliados_rigth_1 {
  background-color: #fff;
  border-radius: 3px;
  padding-top: 60px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  padding: 0 10px;
  width: 100%;
  aspect-ratio: 95 / 100;
}

section {
  margin: 0 auto;
  position: relative;
}


.feelingHeader {
  max-width: 1920px;
  margin: 0 auto;
  z-index: 999999;
}

.clientes_cont {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
}

.clientes_slider .owl-item img {
  max-width: 80px;
  margin: 0 auto;
}

.clientes_slider .owl-stage {
  display: flex;
  align-items: center;
}

.clientes_slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  justify-content: space-between;
  display: none;
}

.clientes_slider .owl-nav button span {
  font-size: 30px;
}






/* Estilos básicos para el carrusel */
.carousel {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
  padding: 6px;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease;
  padding-top: 30px;
  margin-top: 50px;
}

.carousel-images .carousel-item {
  min-width: 100%;
  /* Cada slide ocupa el 100% del ancho del contenedor */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-images img {
  width: 100%;
  display: block;
}

.carousel-dots {
  text-align: center;
  position: relative;
  top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-direction: row;

}

.carousel-dots .dot-line {
  position: absolute;
  height: 5px;
  background-color: #004CFF;
  top: 69%;
  left: 0;
  transform: translateY(-50%);
  transition: width 0.5s ease;
}

.carousel-dots .dot {
  cursor: pointer;
  margin: 0 5px;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  display: flex;
  line-height: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  flex-direction: column;
  font-size: 39px;
  gap: 30px;
  scroll-snap-align: center;
  /* Alinear el snap al centro */
}

.dot_img {
  background-image: url('../img/tlasterbl.svg');
  width: 60px;
  height: 60px;
  background-size: contain;
}

.carousel-dots .active {
  color: #000;
}

.carousel-dots .active .dot_img {
  color: #000;
  background-image: url('../img/tlastergr.svg');
  background-repeat: no-repeat;
}

.timeline_cont {
  width: 50%;
  background-color: #ffffff00;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15)
}

.timeline_cont h3 {
  padding: 10px 15px;
}

.timeline_txt {
  padding: 10px 15px;
  font-size: 17px;
}

#timeline_section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 3%;
  padding-top: 3%;
}

.timeline_section_cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.timeline_title {
  width: 30%;
  position: relative;
}

.timeline_title .star {
  position: absolute;
  top: -27%;
  right: 2%;
}

.timeline_title h2 {
  font-size: 71px;
  line-height: 1em;
  color: #000;
}

.figura {
  position: absolute;
}

/* Estilos específicos para pantallas pequeñas */
/*@media (max-width: 768px) {*/
.carousel-dots {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.carousel-dots .dot {
  flex-shrink: 0;
  scroll-snap-align: center;
}

/*}*/







/*****************Servicios RZ*******************/
* {
  box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0;
}

/*** 3.0 - App ***/
#app {
  display: grid;
  grid-template-rows: 15px 1fr;
  grid-template-areas:
    "nav nav "
    "list image";
  width: 100vw;
  height: auto;

  /* Background configs  */
  background-image: var(--image-cover);
  background-blend-mode: soft-light;
  background-color: #ffffff;
  background-size: cover;
  filter: grayscale(0.1);
  background-repeat: no-repeat;
}

/* Background animation */
@keyframes zoom {
  0% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

#app::before {
  /* --image-cover; */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  animation: zoom var(--velocity) forwards;

  /* Background configs */
  background-image: var(--image-cover);
  background-blend-mode: inherit;
  background-color: inherit;
  background-size: inherit;
}

/*** 3.1 - Layout ***/
#navbar {
  grid-area: nav;
}

#projects-list {
  grid-area: list;
}

#projects-gallery {
  grid-area: image;
}

#projects-details {
  grid-area: detail;
}

/*** 3.2 - Header ***/
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--spacing-large);
  font-size: 80%;
}

#navbar .nav_search {
  display: none;
}

.nav_links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 50vw;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nav_links a {
  padding: var(--spacing-large);
  width: 100%;
  margin: unset;
}

/*** 3.1.1 - Hamburguer Menu ***/
#navbar .ham-menu-icon {
  display: block;
  height: 3px;
  position: absolute;
  top: 24px;
  right: 24px;
  max-width: var(--spacing-large);
  max-height: var(--spacing-large);
  background: var(--primary);
  border: unset;
  width: 100%;
}

.ham-menu-icon:before,
.ham-menu-icon:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  height: inherit;
  width: 70%;
  background: inherit;
  transform: rotate(0deg);
}

.ham-menu-icon::after {
  top: 20px;
}

/*** 3.1.1.1 - Menu Open ***/
[data-menu-open] * {
  transition: var(--transition);
}

[data-menu-open] .nav_links a {
  font-size: 22px;
}

[data-menu-open] #projects-gallery,
[data-menu-open] #projects-list {
  transform: translateX(calc((100vw - 70vw) * -1)) scale(0.8);
  transform-origin: left center;
}

[data-menu-open] #projects-gallery {
  box-shadow: 14px 0 28px rgba(0, 0, 0, 0.08), 10px 0 10px rgba(0, 0, 0, 0.12);
}

/*** 3.3.1 - Projects List ***/
#projects-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh;
  z-index: 1;

  transition: var(--transition);
}

#projects-list * {
  transition: var(--transition);
}

#projects-list nav {
  width: fit-content;
  margin-right: auto;
  padding-bottom: 15px;
}

#projects-list li {
  opacity: 0.4;
  cursor: pointer;
}


/*#projects-list li a hr {
  display: inline-block;
  min-width: 20%;
  max-width: 40%;
  width: 100%;
  border: 1px solid;
  margin-inline-end: var(--spacing);
}*/

/* First element selected default */
#projects-list nav li[data-selected="true"] {
  opacity: 1;
}

#projects-list nav li[data-selected="true"] span {
  opacity: 1;
}

#projects-list li[data-selected="true"] a hr {
  width: 0%;
}

/*** 3.3.2 - Projects Gallery ***/
#projects-gallery {
  padding: 0 5vw;
  margin-bottom: 5vh;
  margin-inline-start: auto;
  overflow: hidden;
  width: 100%;
  display: grid;


  transition: var(--transition);
}

#projects-gallery>* {
  grid-area: 1 / 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transition: var(--transition);
}

#projects-gallery img:not([data-selected="true"]) {
  transform: scale(1.5);
  opacity: 0;
}


/*** 3.3.3 - Projects Details ***/
#projects-details {
  display: grid;
  grid-template-columns: 1fr;
  max-height: 96px;
  overflow: hidden;
  display: none;
}

.details_project:not([data-selected="true"]) {
  position: absolute;
  top: 100%;
}

.details_project {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  padding: var(--spacing-large);
  align-items: center;
}

.project_author {
  padding-right: var(--spacing-medium);
}

.project_author strong {
  display: block;
}

.project_author author {
  font-weight: 300;
}

.project_detail {
  font-weight: 300;
  font-size: 80%;
}

.project-name h2 {
  text-align: left;
}


#projects-list nav li {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding-bottom: 20px;
}

#projects-list nav li .container-cta {
  justify-content: left;
}

.project-content .pc_cont {
  overflow: hidden;
}

.project-content .pc_cont p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  line-height: 1.1em;
}

.boton_cont .container-cta {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.boton_cont {
  overflow: hidden;
  height: 50px;
}

/* Para mostrar el contenido del primer li */
#projects-list ul li:first-child .project-content .pc_cont p,
#projects-list ul li:first-child .boton_cont .container-cta {
  opacity: 1;
}

.project-name {
  border-bottom: 1px solid #bbb;
  padding-bottom: 15px;
}

/*********************/







html {
  height: 100%;
  width: 100%;
}

#socios {
  width: 100%;
  display: block;
  margin: 0 auto;
  background-color: #fff;
}



#socios_slider .item {
  background: #0c83e7;
  padding: 80px 0px;
  margin: 5px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

#socios_slider_tmb .item {
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#socios_slider_tmb .item h1 {
  font-size: 33px;
}

#socios_slider_tmb .item img {
  filter: grayscale(100);
}

#socios_slider_tmb .current .item img {
  filter: grayscale(0);
}

#socios_slider_tmb {
  padding: 0 80px;
}

#socios_slider_tmb.socios_slider {
  position: relative;
  background-color: #f7f7f7;
  z-index: 1;
}

#socios_slider.socios_slider {
  background-color: #f7f7f7;
  z-index: 2;
}

/*arrows on first carousel*/
#socios_slider .owl-nav {
  width: 100%;
}


#socios_slider .owl-next,
#socios_slider .owl-prev {
  position: absolute;
}

#socios_slider_tmb {
  display: block !important;
}

#socios_slider .owl-prev {
  width: 40px;
  top: 230px;
  left: 40px;
}

#socios_slider .owl-next {
  width: 40px;
  top: 230px;
  right: 40px;
}

.socio_cont {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socios_slider .socio_img_cont img {
  width: 70%;
  margin: 0 auto;
  z-index: 2;
}

.socio_img_cont {
  width: 50%;
  position: relative;
}

.socio_info_cont {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.socio_info {
  width: 50%;
}

.socio_info h1 {
  color: #000;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}


.socio .figura {
  position: absolute;
  top: 19%;
  right: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  height: 81%;
}

.socio .figura img {
  width: 100%;
}

.socio_info h2 {
  color: #000;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

.text_info {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 300;
  width: 95%;
}


/***********SECCION CONTACTO HOME***************/

.contacto_home_cont {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 30px 0;
  gap: 65px;
}

.contacto_col {
  flex-basis: calc(50% - 0px);
  padding-right: 15%;
  position: relative;
}

.text_acom {
  position: relative;
  z-index: 9;
}

.text_acom h1 {
  font-size: 48px;
  line-height: 1.1em;
}

.contacto_col.cont_col_r {
  width: 40%;
}



.text_form p {
  position: relative;
  z-index: 9;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 100;
}

.cont_form {
  display: flex;
  width: 100%;
  margin-top: 30px;
}

.cont_form label {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.cont_form label input {
  width: 100%;
}

.cont_home_form form {
  width: 100%;
}

#contacto_home input[type="text"],
#contacto_home input[type="email"],
#contacto_home input[type="url"],
#contacto_home input[type="password"],
#contacto_home input[type="search"],
#contacto_home input[type="number"],
#contacto_home input[type="tel"],
#contacto_home input[type="range"],
#contacto_home input[type="date"],
#contacto_home input[type="month"],
#contacto_home input[type="week"],
#contacto_home input[type="time"],
#contacto_home input[type="datetime"],
#contacto_home input[type="datetime-local"],
#contacto_home input[type="color"] {
  color: #000;
  border: 1px solid #EDEDED;
  border-radius: 3px;
  padding: 3px;
  margin-top: 10px;
}

#contacto_home textarea {
  color: #000;
  border: 1px solid #EDEDED;
  border-radius: 3px;
  padding: 3px;
  margin-top: 0px;
  height: 100px;
}

#contacto_home select {
  color: #000;
  border: 1px solid #EDEDED;
  border-radius: 3px;
  padding: 3px;
  margin-top: 0px;
  width: 100%;
}

.mensaje_form {
  margin-top: 20px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.wpcf7-list-item label input {
  width: 15px;
  height: 15px;
  border: 1px solid #EDEDED !important;
  margin-right: 5px;
}

.wpcf7-list-item label span {
  font-size: 15px;
  text-transform: initial;
}

.wpcf7-list-item label span a {
  color: #000;
}

#contacto_home button,
#contacto_home input[type="button"],
#contacto_home input[type="reset"],
#contacto_home input[type="submit"] {
  border: 0px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #004CFF;
  color: #fff;
  line-height: 1;
  padding: 0.6em 1em 0.6em;
  margin: 0 auto;
  left: 0;
  right: 0;
  float: none;
  display: block;
}






/***********FIN SECCION CONTACTO HOME***************/


/***********footer efect*****************************************/
.site-main {
  position: relative;
  min-height: 100vh;
  z-index: 9999;
}



.menuFooter {
  width: 100%;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  align-items: center;
}

.menuFooter::before {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  left: 5%;
}

.menuFooter::after {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  right: 5%;
}

#sect_contacto_home::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  left: 5%;
  top: 70px;
  z-index: 9999;
}

#sect_contacto_home::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  right: 5%;
  top: 70px;
}

.rueda {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}



.rueda img {
  animation: rotate 120s linear infinite;
}


.destacados_home_animado .aster:nth-of-type(1) {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  left: -3%;
  top: 0px;
}

.destacados_home_animado .aster:nth-of-type(2) {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  right: -3%;
  top: 0px;
}

.destacados_home_animado .aster:nth-of-type(3) {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  left: -3%;
  bottom: 3%;
}

.destacados_home_animado .aster:nth-of-type(4) {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  right: -3%;
  bottom: 3%;
}







.efect span:nth-of-type(1) {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  left: 5%;
  top: 45px;
}

.efect span:nth-of-type(2) {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  right: 5%;
  top: 45px;
}


.efect span:nth-of-type(3) {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  left: 5%;
  bottom: 0px;
}

.efect span:nth-of-type(4) {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/asterisco.svg);
  right: 5%;
  bottom: 0px;
}







.menuFooter nav ul {
  margin: 0;
  padding: 0;
}

.menuFooter nav ul .sub-menu {
  display: none;
}

.menuFooter nav ul li a {
  color: #000;
  font-size: 22px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.menuFooter nav ul li {
  position: relative;
}

.menuFooter nav ul li::before {
  display: none;
}

.footer_address {
  position: relative;
}

.info_contact {
  position: relative;
}

.email_contact {
  position: relative;
}

.footer_icono {
  position: absolute;
  top: 4px;
  left: -22px;
  color: #fff;
  font-size: 17px;
}

.info_con {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/***********fin footer efect*****************************************/


.menu li:before {
  content: " ";
  position: absolute;
  top: 22px;
  left: -39px;
  background-image: url(../img/flechaOVERmenu.svg);
  width: 50px;
  height: 50px;
  z-index: -1;
  transform: scale(0, 0);
  transition: all 0.5s ease;
  background-size: cover;
}

.menu li:hover::before {
  transform: scale(1, 1);
  transition: all 0.5s ease;

}

.menuFooter .menu li a {
  position: relative;
}

.menuFooter .menu li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -41px;
  background-image: url(../img/flechaOVERmenu.svg);
  width: 30px;
  height: 30px;
  z-index: -1;
  transform: scale(0, 0);
  transition: all 0.5s ease;
  background-size: cover;
}

.menuFooter .menu li a:hover::after {
  transform: scale(1, 1);
  transition: all 0.5s ease;
  z-index: 9;
}

header nav:before {
  content: url('../img/Trazado1.svg');
  position: absolute;
  bottom: -10px;
  left: 10px;
  z-index: -2;
}

.sub-menu li a {
  position: relative;
}

.sub-menu li a::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #004CFF;
}

.sub-menu li a::before {
  content: "";
  width: 0%;
  height: 3px;
  background-color: #004CFF;
  transition: all 0.7s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sub-menu li a:hover::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

/****efecto boton*******/

:root {
  --negro: #000;
  --blanco: #fff;
  --color_resaltador: #F77826;
}

.container-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

#boton-cta {
  display: flex;
  position: relative;
  padding: 0px 14px;
  align-items: center;
  justify-content: center;
  gap: 1em;
  overflow: hidden;
  border-radius: 3px;
  font-size: 18px;
  background: var(--color_resaltador);
  color: var(--blanco) !important;
  text-decoration: none;
  height: 40px;
  line-height: 1.1em;
  width: fit-content;
  /* Ajusta el ancho del elemento al contenido que contiene*/
  font-weight: 300;
  pointer-events: auto;
  /* Hacer que el elemento responda a eventos del puntero del mouse según su comportamiento predeterminado. */

  box-shadow: 0 6px 10px #0000000a, 0 2px 4px #0000000a;
  transition: background cubic-bezier(.35, 0, 0, 1) .2s;
  /* Transición suave para el cambio de color de fondo del elemento, utilizando una función de curva de Bézier para controlar la velocidad de la transición */
  will-change: transform;
  /*  Indica al navegador que se espera que el elemento cambie su propiedad de transformación en el futuro */
  flex-direction: initial !important;
}

/*  Regla que se aplica cuando el dispositivo tiene una capacidad de detección de hover  */

#boton-cta:hover {
  color: var(--negro) !important;
  background: #fff;
  transition: background cubic-bezier(.35, 0, 0, 1) .5s .3s
    /* Transición suave para la propiedad background con una duración de 0.5 segundos y un retraso inicial de 0.3 segundos. */
}

#boton-cta:hover #boton-cta-text {
  transform: translate3d(-1.5em, 0, 0);
  /*Transformación al elemento, desplazándolo horizontalmente en el eje X hacia la izquierda en 1.5 veces el tamaño de la fuente actual.*/
  color: #fff;
}

#boton-cta:hover #boton-cta-bullet {
  transform: translate3d(4em, 0, 0) scale(100);
  /*Desplaza un elemento hacia la derecha y lo escala en tamaño 32 veces en todas las dimensiones.*/
  background: #11C7CC;
}

#boton-cta:hover #boton-cta-flecha {
  transform: translateZ(0)
}

#boton-cta:hover #boton-cta-flecha svg {
  color: var(--blanco)
}


#boton-cta-bullet {
  display: inline-block;
  position: relative;
  width: .5em;
  height: .5em;
  background: #fff;
  border-radius: 100px;
  z-index: 1;
  transition: background cubic-bezier(.35, 0, 0, 1) .5s, transform cubic-bezier(.35, 0, 0, 1) .4s;
  top: auto;
  left: auto;
}

#boton-cta-text {
  position: relative;
  z-index: 1;
  transition: color cubic-bezier(.35, 0, 0, 1) .5s, transform cubic-bezier(.35, 0, 0, 1) .4s;
  width: auto;
  height: auto;
  left: auto;
  top: auto;
  background-image: none;
}

#boton-cta-flecha {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 1em;
  height: 1.2em;
  width: 1.2em;
  color: var(--color_resaltador);
  border-radius: 100%;
  transform: translate3d(3em, 0, 0);
  transition: transform cubic-bezier(.4, 0, 0, 1) .4s;
  z-index: 1;
}

#boton-cta-flecha svg {
  width: 100%;
  height: 100%;
  transition: color .5s;
}


.why_left .container-cta {
  justify-content: flex-start;
  margin-top: 30px;
}

/****fin efecto boton*******/

#contacto_home {
  background-color: #fff;
  margin-top: 3%;
}


/*****seccion why******/
#why {
  width: 100%;
  display: flex;
  justify-content: center;
}

.why_container {
  width: 90%;
  border: 1px solid #E9EBEB;
  border-radius: 20px;
}

.why_left {
  padding: 20px 15px;
}

.why_left h2 {
  font-size: 25px;
  line-height: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.why_left p {
  font-size: 16px;
  line-height: 1.1em;
  margin-bottom: 10px;
}

.why_right {
  position: relative;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

.why_simbol {
  position: absolute;
  top: 26%;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.why_simbol img {
  margin-bottom: -6px;
  width: 100%;
  animation: rotate 120s linear infinite;
}

.why_image {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  overflow: hidden;
}

.why_image img {
  margin-bottom: -15px;
}


/*****seccion why******/




































.whatsapp {
  position: fixed;
  bottom: 40%;
  right: 2%;
  z-index: 99999;
}

.whatsapp ul li a {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 30px;
  border-radius: 100%;
  display: block;
}

.whatsapp img {
  width: 100%;
}

.redes_header ul li {
  border-bottom: 0;
}

header .redes_header ul li::after {
  display: none;
}

.footerCenter {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.footerCenter a {
  color: #fff;
}



/*****nosotros***/
.page-template-page-nosotros {
  background-color: #fff;
}

.banner_nosotros {
  color: #000;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#11C7CC+0,11C7CC+80,ffffff+80 */
  background: linear-gradient(to bottom, #11C7CC 0%, #11C7CC 80%, #ffffff 80%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner_nosotros .intro_nos {
  width: 96%;
  display: flex;
  flex-direction: column;
}

.banner_nosotros .banner_nosotros_imagen {
  width: 96%;
  margin-top: 10%;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.banner_nosotros .banner_nosotros_imagen img {
  border-radius: 20px;
  width: 100%;
}

.intro_nos .titulo h1 {
  font-size: 131px;
  margin-bottom: 0px;
  opacity: 0;
  /* Inicialmente invisible para la animación */
}

.intro_nos .intro {
  width: 75%;
  font-size: 37px;
  text-align: right;
}

.intro_nos .intro p {
  opacity: 0;
  /* Inicialmente invisible para la animación */
}


.nosotros_video_cont {
  position: relative;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  padding-top: 30px;
  /* IE6 workaround*/
  height: 0;
  overflow: hidden;
}

.nosotros_video_cont iframe,
.nosotros_video_cont object,
.nosotros_video_cont embed,
.nosotros_video_cont video {
  position: absolute;
  top: -85px;
  left: 0;
  width: 100%;
  height: 100%;
}




#especiales {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.especiales_cont {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 8% 2%;
  gap: 70px;
}

.especiales_cont::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #949494;
  top: 36%;
  left: 0;
}

#especiales::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #949494;
  bottom: 0px;
}

.especiales_cont_tl {
  width: 86%;

}

#especiales h1 {
  font-size: 71px;
  color: #000;
  width: 40%;
  line-height: 1.1em;
  z-index: 2;
}

#especiales h2 {
  line-height: 2.2em;

}

.especiales_cont_txt p {
  font-size: 17px;
  padding-bottom: 20px;
  line-height: 1.2em;
  letter-spacing: 1.2px;
  transform: translateY(-30px);
}

.especiales_cont_txt {
  column-count: 2;
  width: 55%;
  column-gap: 70px;
  position: relative;
}

.especiales_cont_txt .rueda,
.especiales_cont_txt .star {
  width: 100px;
  /* Adjust the size as needed */
  transform: translateY(50px);
}

.especiales_cont_txt .rueda {
  position: absolute;
  top: -130%;
  left: 60%;
  width: 40%;
}

.especiales_cont_txt .star {
  position: absolute;
  top: -103%;
  left: 57%;
}




#mision {
  display: flex;
  justify-content: center;
  position: relative;
}


.mision_cont {
  width: 90%;
  display: flex;
  gap: 70px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 130px;
}

.mision_img {
  width: 70%;
  padding-left: 15%;
  position: relative;
}

.mision_img img {
  z-index: 1;
  border-radius: 20px;
}

.mision_txt {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mision_img .aster {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 50%;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.mision_img .star {
  position: absolute;
  top: 9%;
  left: 95%;
  overflow: hidden;
  z-index: 2;
  width: 94px;
}

.mision_txt h2 {
  font-size: 71px;
  line-height: 1em;
  color: #000;
  text-transform: uppercase;
}

.mision_txt p {
  font-size: 18px;
  line-height: 1.2em;
  color: #000;
  letter-spacing: 1.1px;
}


#como_somos #header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  top: 0;
  width: 100%;
  z-index: 100;
}

#como_somos #container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#como_somos .block {
  width: 80px;
  height: 80px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  position: absolute;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}





#socios_sect {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  background-color: #F7F7F7;
}

.socios_head {
  width: 90%;
  padding: 60px 0;
}

.socios_head ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 5px;
}

.socios_head ul li {
  font-size: 67px;
  color: #000;
  display: flex;
  align-items: center;
  line-height: 1em;
}

.socios_head ul li:first-child {
  color: #cdcbcb;
}

.socios_head ul li:nth-child(4) {
  color: #cdcbcb;
}

.socios_head ul li:last-child {
  margin-top: 10px;
}


.brain img {
  width: 130px;
}

#team {
  width: 100%;
  display: flex;
  padding: 60px 0;
  background-color: #fff;
}

.team_cont {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  padding: 10% 0;
}

.team_fondo {
  opacity: 0;
  width: 100%;
}

.team_txt {
  width: 60%;
  color: #fff;
}

#socios .socio {
  display: flex;
  justify-content: center;
}

.socio_cont {
  width: 70%;
  justify-content: center;
  align-items: center;
}

#trabajo {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 0;
  background-color: #004CFF;
  z-index: 9;
}

.trabajo_cont {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.trabajo_txt {
  font-size: 17px;
}

.trabajo_txt a {
  background-color: var(--blanco);
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 5px;
  padding: 7px 0;
}

.como_titulo {
  width: 90%;
  position: relative;
}

.como_titulo h2 {
  line-height: 1.1em;
  padding: 50px;
  font-weight: 700;
  font-size: 91px;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
}

.asterBlan {
  position: absolute;
  top: 32px;
  left: 25%;
}


/*****fin nosotros*****/




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


/***seccion servicios*****/


#servicios_section section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicios_section .serv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1px);
}

#servicios_section h2 {
  color: white;
  /*text-shadow: 1px 1px 1px black;*/
  z-index: 1;
  font-size: 3em;
  ;
  line-height: 1.1em;
  width: 54%;
}

.serv_int_cont {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.serv_iz {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.servicio_ind:nth-child(odd) .serv_iz {
  align-items: flex-start;
}

.servicio_ind:nth-child(even) .serv_iz {
  align-items: flex-end;
}

.servicio_ind:nth-child(odd) .serv_der {
  text-align: left;
  justify-content: flex-start;
  background-image: url();
}

.servicio_ind:nth-child(even) .serv_der {
  text-align: right;
  justify-content: flex-end;
}

.servicio_ind:nth-child(odd) h2 {
  width: 60%;
  text-align: left;
}

.servicio_ind:nth-child(even) h2 {
  width: 60%;
  text-align: right;
}

.serv_der {
  width: 50%;
  color: #fff;
  font-size: 21px;
  /*text-shadow: 1px 1px 1px black;*/
  display: flex;
  justify-content: flex-end;
}

#servicios_head h2 {
  padding: 15px;
}

.serv_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgb(21, 133, 177);
  background: radial-gradient(circle, rgba(21, 133, 177, 1) 0%, rgba(18, 164, 191, 1) 37%, rgba(24, 112, 168, 1) 100%);
  opacity: 0.7;
}

#clientes_home {
  background-color: #fff;
}


/*** fin seccion servicios*****/





/*** 

seccion servicio single

****/
.single-servicios {
  background-color: #fff;
}

#quehacemos {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
}

.quehacemos_cont {
  width: 80%;
}

.quehacemos_titulo {
  width: 100%;
  text-align: left;
  padding: 70px 0;
}

.quehacemos_titulo h2 {
  text-align: center;
  font-size: 53px;
  color: #000;
}

.quehacemos_tarj {
  padding: 15px 15px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quehacemos_tarj:last-child {
  padding: 15px 15px 0px;
}

.quehacemos_tarj h2 {
  font-size: 50px;
  width: 50%;
  line-height: 1em;
  padding-right: 5%;
  color: #000;
  padding-bottom: 20px;
  padding-left: 50px;
  text-transform: uppercase;
}

.quehacemos_tarjetas {
  padding: 20px 0 80px;
  cursor: pointer;
}

.quehacemos_tarj_txt {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 5px;
}

.quehacemos_tarj_txt:nth-child(1):before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 6px;
  left: 0;
}


.quehacemos_tarj_txt_cont {
  width: 50%;
  padding-right: 15%;
}

.quehacemos_tarj_txt_cont p {
  font-size: 21px;
  line-height: 1em;
  color: #000;
}

.simg_cont {
  width: 50%;
  overflow: hidden;
}

#tabs_proyectos {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  flex-direction: column;
  overflow: hidden;
}

.tabs_proyectos_cont {
  width: 80%;
  display: flex;
  flex-direction: column;
}

.tabs-container {
  margin-bottom: 20px;
}

.tabs {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tabs li {
  display: inline;
}

.tabs li a {
  display: inline-block;
  padding: 10px 20px;
  border-bottom: none;
  text-decoration: none;
  color: #333;
}

.tabs li a:hover {
  border-bottom: 1px solid #11C7CC;
}

.tabs li a.active {
  border-bottom: 1px solid #11C7CC;
}

.tab-content {
  padding: 20px 0;
  overflow-y: hidden;
}

.tab-pane {
  visibility: hidden;
  display: block;
  height: 0;
}

.tab-pane.active {
  visibility: visible;
  height: auto;
}

.tab-pane-cont {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.thumbnail {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.thumbnail img {
  width: 100%;
  opacity: 0;
}

.card_cont {
  display: flex !important;
  flex-direction: column !important;
  width: calc(33.333%);
  gap: 20px !important;
  background-color: #fff;
  padding: 15px;
}



.thumbnail_cont {
  max-height: 600px;
  background-size: 100% !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 0px;
  transition: all 7700ms ease-in-out !important;
  transition-behavior: normal !important;
  transition-duration: 7700ms !important;
  transition-timing-function: ease-in-out !important;
  transition-delay: 0s !important;
  transition-property: all !important;
}

.thumbnail_cont:hover {
  transition: all 7700ms ease-in-out !important;
  transition-behavior: normal !important;
  transition-duration: 7700ms !important;
  transition-timing-function: ease-in-out !important;
  transition-delay: 0s !important;
  transition-property: all !important;
  background-position-y: 100% !important;
}

.tabs_proyectos_titulo {
  width: 80%;
  text-align: left;
  padding: 15px 0;
}


#banner_serv_int {
  width: 100%;
  display: flex;
}

#banner_serv_int .banner {
  width: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 101%;
  background-size: cover;
}

#banner_serv_int .banner img {
  opacity: 0;
}

.serv_intro {
  width: 100%;
  padding: 5% 5% 10% 5%;
  display: flex;
  flex-direction: column;
}

.serv_intro h1 {
  font-size: 95px;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
  width: 60%;
  margin-bottom: 20px;
}

.serv_intro .intro_txt {
  display: flex;
  justify-content: flex-start;
  font-size: 21px;
  color: #fff;
}

.intro_txt_cont {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

#section_title {
  text-align: center;
  color: #000;
  font-size: 43px;
}


/*** 

fin seccion servicio single

*****/



/*** seccion casos de exito*****/
#casos_exito {
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.logo_caso {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4% 0 2%;
}

#banner_caso {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#banner_caso .banner {
  background-size: cover;
  width: 80%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 0;
  border-radius: 60px;
  overflow: hidden;
  max-height: 65vh;
}

#banner_caso .banner img {
  opacity: 0;
  width: 100%;

}

.servicios_video_cont {
  position: relative;
  padding-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.videoBanner_cont {
  width: 70%;
  overflow: hidden;
  border-radius: 20px;
}

.servicios_video_cont iframe,
.servicios_video_cont object,
.servicios_video_cont embed,
.servicios_video_cont video {
  width: 100%;
}





.introcaso {
  width: 100%;
  display: flex;
  justify-content: center;
}

.introcaso h1 {
  font-size: 17px;
  font-weight: 400;
}

.introcaso .intro {
  font-size: 50px;
  font-weight: 700;
}

.introcaso .intro {
  width: 70%;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 2% 0;
}

.introcaso .intro ul {
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 30%;
}

.introcaso .intro ul li:first-child {
  font-size: 52px;
  line-height: 1.1em;
  color: #949494;
  font-weight: 300;
}

.introcaso .intro ul li:last-child {
  font-size: 30px;
  line-height: 1.1em;
  color: #000000;
  text-align: center;
}

.intro {

  width: 80%;
  z-index: 2;
  text-transform: initial;
}

.introPga .titulo h1 {
  margin-bottom: 10px;
  font-size: 171px;
  color: #000;
  z-index: 2;
}

.introPga .intro {
  color: #000;
  margin: 0;
}

#casos_exito {
  display: flex;
  justify-content: center;
  background-color: #fff;
  position: relative;
  z-index: 9999;
  margin-top: 70px;
}

.titulo_wrap {
  display: flex;
  justify-content: flex-end;
  width: 78%;
}

.titulo_wrap p {
  opacity: 0;
}


.blog_mark {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  float: none;
  margin: 0 auto;
  width: 30%;
  z-index: 1;
}

.banner-call-to-action {
  background-color: #EDEDED;
  padding: 50px 0;
  text-align: center;
  margin-top: 40px;
}

.banner-call-to-action .banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.banner-call-to-action h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.banner-call-to-action p {
  font-size: 18px;
  margin-bottom: 30px;
}

.project-info .project-titulo {
  height: 70px;
}

.container-casos a {
  display: flex;
  align-items: center;
}

.grid-item h2 {
  margin-top: 20px;
  transition: margin-top 0.5s ease-out;
}

.grid-item a {
  margin-top: 20px;
}

.grid-item:hover h2 {
  margin-top: 0;
}

.container-casos a .container-casos-text {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 300;
  margin-right: 10px;
}

.container-casos a .container-casos-img img.boton-cta-image {
  width: 180px;
  height: auto;
  opacity: 1;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  grid-auto-rows: minmax(0px, auto);
  width: 90%;
  padding-bottom: 50px;
}

.grid-item {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
}

.grid-item img {
  opacity: 0;
}


.masonry .primero {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100vh;
}

.masonry .segundo {
  grid-column: 2;
  grid-row: 1/2;
  height: 49.5vh;
}

.masonry .tercero {
  grid-column: 2;
  grid-row: 2/3;
  height: 49.5vh;
}

.masonry .cuarto {
  grid-column: 1/3;
  grid-row: 3;
  height: 60vh;
}

.masonry-item {
  margin-bottom: 0.5rem;
  /* Espacio entre elementos */
  break-inside: avoid;
  /* Evita el corte de elementos entre columnas */
  background-color: #fff;
}

.masonry .quinto {
  grid-column: 1;
  grid-row: 4 / 6;
  height: 100vh;
}

.masonry .sexto {
  grid-column: 2;
  grid-row: 4;
  height: 49.5vh;
}

.masonry .septimo {
  grid-column: 2;
  grid-row: 5;
  height: 49.5vh;
}

.masonry .octavo {
  grid-column: 1;
  grid-row: 7;
}

.masonry .noveno {
  grid-column: 2;
  grid-row: 7;
}

.masonry .decimo {
  grid-column: 1/3;
  grid-row: 8;
  height: 45vh;
}

.project-info {
  position: absolute;
  display: flex;
  padding: 4em;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: 0.8s opacity cubic-bezier(0.54, 0.63, 0.11, 1.09);
}

.grid-item:hover .project-info {
  opacity: 1;
}

.project-info .container-cta {
  justify-content: flex-start;
}

.project-info .project-titulo {
  height: 70px;
  overflow: hidden;
}

.project-info .project-titulo h2 {
  margin-top: 60px;
}

.grid-item:hover h2 {
  margin-top: 0px;
  transition: 1.3s margin-top cubic-bezier(0.54, 0.63, 0.11, 1.09);
}


#antecedentes {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.antecedentes_cont {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.antecedentes_cont_left {
  width: 70%;
  display: flex;
  align-items: flex-start;
}

.antecedentes_cont_left h2 {
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 800;
  padding: 20px 40px 20px 20px;
  color: #000;
  text-transform: uppercase;
  width: 60%;
}

.antecedentes_cont_left_p {
  font-size: 16px;
  line-height: 1.3em;
  padding: 20px;
  color: #000;
  width: 40%;
}

.antecedentes_cont_left_p p {
  margin-bottom: 15px;
}

.antecedentes_cont_right {
  width: 80%;
  border-radius: 30px;
  overflow: hidden;
}

#problema {
  width: 100%;
  display: flex;
  justify-content: center;
}

.problema_cont {
  width: 75%;
}

.problema_cont_left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.texto_problema {
  width: 50%;
  padding: 5%;
  margin-top: -100px;
}

.texto_problema h2 {
  font-size: 60px;
  color: #000;
  line-height: 1.1em;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.texto_problema p {
  font-size: 16px;
  color: #000;
  line-height: 1.3em;
  margin-bottom: 10px !important;
}

.problema_cont_left img {
  width: 48%;
  margin-top: -100px;
}

#caso_galeria {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.caso_galeria_cont {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  width: 100%;
}

.galeria_caso {
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
}

.galeria_caso img {
  opacity: 0;
}

.caso_galeria_cont .galeria_caso:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  height: 67vh;
}

.caso_galeria_cont .galeria_caso:nth-child(2) {
  grid-column: 4/6;
  grid-row: 1;
  height: 33.5vh;
}

.caso_galeria_cont .galeria_caso:nth-child(3) {
  grid-column: 4/6;
  grid-row: 2;
  height: 33.5vh;
}

#resultado {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.resultado_cont {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.resultado_cont_left {
  width: 60%;
  padding: 4%;
}

.resultado_cont_right {
  width: 40%;
  padding-right: 15%;
}

.resultado_cont_right h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1em;
  color: #000;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.resultado_cont_right p {
  margin-bottom: 15px !important;
}

.visita {
  padding: 10px 0;
}

.visita a {
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  line-height: 1em;
  display: flex;
  font-weight: 800;
}

.visita .link-arrow {
  background-image: url(../img/blackArrow.png);
  width: 100px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 18px;
}

.resultado_cont_right iframe {
  width: 100% !important;
}

.resultado-responsive {
  position: relative;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  padding-top: 30px;
  /* IE6 workaround*/
  height: 0;
  overflow: hidden;
}

.resultado-responsive iframe,
.resultado-responsive object,
.resultado-responsive embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.casos_related_right {
  display: flex;
  width: 100%;
  align-items: center;
  height: 290px;
  overflow: hidden;
}

#casos_related {
  width: 100%;
  background-color: #fff;
  justify-content: center;
  padding: 0;
}

.casos_related_cont {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.plantilla_secundaria .casos_related_left {
  padding: 5%;
}

.casos_related_left {
  width: 100%;
  padding: 0 5%;
}

.casos_related_left h2 {
  text-align: center;
  color: #000000;
  font-size: 53px;
  font-weight: 700;
  padding-bottom: 40px;
  padding-top: 40px;
  text-transform: uppercase;
  line-height: 1em;
}

.caso_related {
  width: 100%;
  height: 100%;
  position: relative;
}

.caso_related img {
  height: 300;
}

#call_footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #EDEDED;
  align-items: center;
}

.call_footer_cont {
  width: 70%;
  padding: 10% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Dos columnas de igual tamaño */
  grid-template-rows: auto auto;
  /* Dos filas automáticas */
  gap: 10px;
  /* Espacio entre elementos */
  align-items: center;
  /* Alinear contenido verticalmente en el centro */
}

.call_footer_cont h2 {
  grid-column: 1;
  /* Primera columna */
  grid-row: 1;
  /* Ocupa dos filas */
  font-size: 56px;
  color: #000;
  line-height: 1em !important;
}

.call_footer_cont h5 {
  grid-column: 1;
  /* Segunda columna */
  grid-row: 2;
  /* Primera fila */
}

.link-arrow {
  background-image: url(../img/blackArrow.png);
  width: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 18px;
}


.call_footer_cont h5 a {
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  line-height: 1em;
  display: flex;
}

.call_footer_cont p {
  grid-column: 2;
  /* Segunda columna */
  grid-row: 1/2;
  /* Segunda fila */
  font-size: 32px;
  color: #000;
  line-height: 1em;
}

.call_footer_cont p {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3em;
}


/*** fin seccion casos de exito*****/





/*** seccion prefooter*****/
#prefooter {
  width: 100%;
  justify-content: center;
  display: flex;
  background-color: #fff;
}

.prefooter_cont {
  width: 70%;
  display: flex;
  gap: 30px;
  align-items: baseline;
  flex-wrap: nowrap;
  padding-bottom: 80px;
  justify-content: space-between;
  padding: 5% 0;
}

/*** fin seccion prefooter*****/






.destacados_home_animado {
  position: relative;
}

.destacados_home_animado .container-cta {
  justify-content: flex-start;
}


/*******

blog

*******/

#blog .tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
  z-index: 1;
}

#blog .tab-links:after {
  display: block;
  clear: both;
  content: '';
}

#blog .tab-links li {
  margin: 0 5px;
  float: left;
  list-style: none;
}

#blog .tab-links a {
  padding: 9px 15px;
  display: inline-block;
  border-radius: 3px 3px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #000;
  transition: all linear 0.15s;
  text-transform: uppercase;
}

#blog .tab-links a:hover {
  background: #004CFF;
  text-decoration: none;
  color: #fff;
}

#blog .tab-content {
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  background: #fff;

}

#blog .tab {
  display: flex;
  visibility: hidden;
  height: 0;
  flex-wrap: wrap;
}

#blog .tab.active {
  visibility: visible;
  height: auto;
}

#blog .tabs li a:hover {
  border-bottom: 0px solid #11C7CC;
}

#blog .tab-links li.active a {
  background: #004CFF;
  color: #fff;
}

.blog_tarjeta {
  position: relative;
  flex: 1 1 calc(33.333%);
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.blog_tarjeta.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog_tarjeta_over {
  background-color: #000000af;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blogInfo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 40px;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 25px;
}

.blogInfo a {
  color: #fff;
}


#banner_blog {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

#banner_blog span {
  position: absolute;
  background-image: url(../img/asterisco.svg);
  width: 24px;
  height: 24px;
}

#banner_blog .span1 {
  top: 100px;
  left: 0%;
}

#banner_blog .span2 {
  top: 100px;
  right: 0%;
}

#banner_blog .span3 {
  bottom: 0%;
  right: 0%;
}


#banner_blog .span4 {
  bottom: 0%;
  left: 0%;
}

#banner_blog .introPga {
  width: 90%;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 50px;
}

.introPga .intro {
  font-size: 35px;
  color: #000;
  margin-top: 50px;
  line-height: 1.1em;
}

.blogInfo a {
  font-size: 28px;
  font-weight: 100;
  padding-bottom: 20px;
}

#blog .tab-links li {
  margin: 0 5px;
  float: left;
  list-style: none;
  border: solid 1px #000;
  border-radius: 5px;
}

#blog .tab.active {
  display: flex;
  justify-content: center;
}



.blog_tarjeta.post-1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

.blog_tarjeta .blog_tarjeta_image {
  height: 50vh;
}

.blog_tarjeta.post-1 .blog_tarjeta_image {
  height: 100vh;
}

.blog_tarjeta.post-2 {
  grid-column: 2;
  grid-row: 1;
}

.blog_tarjeta.post-3 {
  grid-column: 2;
  grid-row: 2;
}

.blog_tarjeta.post-4 {
  grid-column: 1/3;
  grid-row: 3;
  height: 50vh;
}

.blog_tarjeta.post-5 {
  grid-column: 1;
  grid-row: 4 / 6;
}

.blog_tarjeta.post-6 {
  grid-column: 2;
  grid-row: 4;
}

.blog_tarjeta.post-7 {
  grid-column: 2;
  grid-row: 5;
}

.blog_tarjeta.post-8 {
  grid-column: 1/3;
  grid-row: 6;
  height: 50vh;
}

.blog_tarjeta.post-9 {
  grid-column: 1;
  grid-row: 7 / 9;
}

.blog_tarjeta.post-12 {
  grid-column: 1/3;
  grid-row: 9;
  height: 50vh;
}

.blog_tarjeta.post-13 {
  grid-column: 1;
  grid-row: 10 / 12;
}

.blog_tarjeta.post-16 {
  grid-column: 1/3;
  grid-row: 12;
  height: 50vh;
}

.blog_tarjeta.post-17 {
  grid-column: 1;
  grid-row: 13 / 15;
}


.blog_tarjeta_image {
  opacity: 0;
}



#blog .tabs_proyectos_cont {
  width: 100%;
}

#blog .tab-content {
  padding: 0px;
  position: relative;
  width: 100%;
}

.tab-content {
  padding: 20px 0;
  overflow-y: initial !important;
}

#blog .tab-content {
  padding: 0px;
  position: relative;
  z-index: 2;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.blog_mark {
  position: absolute;
  top: 212px;
  left: 0;
  right: 0;
  float: none;
  margin: 0 auto;
  width: 30%;
  z-index: 1;
}

.blog_mark img {
  width: 100%;
  animation: spin 900s infinite linear;
}




#blog .tabs .tab-links {
  width: 90%;
  margin: 0;
  display: none;
}

#banner_blog .titulo h1 {
  font-size: 171px;
  margin: 0;
  color: #000;
  opacity: 0;
  margin-top: 60px;
}

/******

fin blog 

*******/





/**** blog interna**/
.blog_interna {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.blog_interna_cont {
  width: 80%;
}

.related-posts-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding: 10px;
}

.carousel-item img {
  width: 100%;
  height: auto;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

#blog_related {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #fff;
}

.blog_related_cont {
  width: 80%;

}

#title {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

#title h2 {
  width: 80%;
}

/****

fin blog interna

****/


/*** Policies ***/

#banner_policies span {
  position: absolute;
  background-image: url(../img/asterisco.svg);
  width: 24px;
  height: 24px;
}

#banner_policies {
  background-color: #fff;
  display: flex;
  justify-content: center;
  width: 100%;
}

#banner_policies .span1 {
  top: 100px;
  left: 0%;
}

#banner_policies .span2 {
  top: 100px;
  right: 0%;
}

#banner_policies .span3 {
  bottom: 0%;
  right: 0%;
}

#banner_policies .span4 {
  bottom: 0%;
  left: 0%;
}

#banner_policies .introPga {
  width: 90%;
  display: flex;
}

.page_content {
  width: 80%;
  display: flex;
  justify-content: center;
}

.page_content_cont {
  max-width: 90%;
  margin: 0 auto;
}

.introPga .titulo h1 {
  font-size: 120px;
  text-transform: uppercase;
}

.page_content_cont p {
  color: #000;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 400;
  margin-bottom: 20px !important;
  text-align: justify;
}

/*** 
fin policies
 ***/






/********

interna contacto

********/

#banner_contact {
  background-color: #fff;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 2%;
}

#banner_contact .banner {
  display: none;
}

#banner_contact .banner {
  display: none;
}

#banner_contact .introPga {
  width: 90%;
  display: flex;
}

#banner_contact .introPga .text-container {
  width: 76%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#banner_contact .introPga .image-container {
  width: 30%;
  position: relative;
}

#banner_contact .rueda.rueda_cont {
  position: absolute;
  top: 4%;
  left: 0;
  width: 560px;
  height: auto;
  left: -63%;
}

#banner_contact .rueda.rueda_cont img {
  opacity: 0;
}

#banner_contact .titulo {
  width: 100%;
  z-index: 1;
}

#banner_contact .titulo h1 {
  font-size: 171px;
  margin: 0;
  margin-top: 110px;
  color: #000;
  opacity: 0;
}

#banner_contact .intro h2 {
  opacity: 0;
}

#banner_contact .intro h2 span {
  font-size: 37px !important;
  line-height: 1.1em;
}

#banner_contact .intro p {
  opacity: 0;
}

#banner_contact .intro p span {
  font-size: 37px !important;
  line-height: 1.1em;
}

#banner_contact .titulo_wrap {
  display: flex;
  justify-content: flex-end;
  width: 90%;
}

#banner_contact .intro {
  width: 80%;
  z-index: 1;
}

.contacto_interna .contacto_home_cont {
  flex-direction: row;
  width: 80%;
  padding: 100px 0 50px;
}

.contacto_interna .contacto_col {
  flex-basis: calc(50%);
  padding-right: 0%;
  position: relative;
}

#sect_contacto_home .contacto_col {
  flex-basis: calc(50%);
  padding-right: 15%;
  position: relative;
}

/********

fin interna contacto

********/






/****

social share

****/
.social-share-icons {
  margin-top: 20px;
  display: flex;
}

.social-share-icons ul {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

.social-icon {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}

.social-icon i {
  font-size: 20px;
}

.social-icon.share-facebook:hover {
  color: #3b5998;
}

.social-icon.share-twitter:hover {
  color: #1da1f2;
}

.social-icon.share-linkedin:hover {
  color: #0077b5;
}

.social-icon.share-whatsapp:hover {
  color: #25d366;
}

/**fin social share**/


.dynamic-txts-RC .round {
  width: 108px;
  height: 108px;
  border-radius: 100%;
  background-color: #D1EAFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.wrapper .rueda {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: -24%;
  right: 0;
  overflow: hidden;
  left: auto;
  z-index: -1;
}

.wrapper .rueda img {
  width: auto !important;
}

.round_cont {
  display: flex;
  gap: 0 10px;
}


@keyframes showword {

  40%,
  60% {
    opacity: 0;
    left: -100%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}


.slide_txt {
  overflow: hidden;
}

.slide_txt p {
  animation: showword 2s;
  animation-timing-function: ease-in-out;
}



/***como somos**/
#como_somos {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
}

#simulation-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  background-image: url(../imgcm/grupo.svg);
  background-position: bottom center;
  background-size: auto;
  background-repeat: no-repeat;
  flex-direction: column;
}




.destacados_home_animado {
  width: 85%;
  padding: 100px 0;
}

.wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.wrapper .static-txt {
  color: black;
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1.1em;
  letter-spacing: 1.02px;

}

.wrapper .dynamic-txts-RC {
  margin-left: 0px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}

.dynamic-txts-RC li {
  list-style: none;
  color: #000;
  font-size: 4.7em;
  font-weight: 700;
  position: relative;
  top: 0;
  margin-top: -2%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.dynamic-txts-RC li p {
  font-size: 4.7em;
}

.round_cont_comp .slide_txt {
  margin-top: -10px;
}

@keyframes slide {
  100% {
    top: -360px;
  }
}

.dynamic-txts-RC li span {
  position: relative;
  margin: 5px 0;

}


@keyframes typing {

  40%,
  60% {
    left: calc(100% + 30px);
  }

  100% {
    left: 0;
  }
}



.dynamic-txts li span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  border-left: 0px solid blue;
  animation: typing 2s steps(5) infinite;
  top: 0;
  animation-timing-function: ease-in-out;
}

@media (max-width: 767px) {
  .wrapper .dynamic-txts-RC {
    width: 100%;
  }
}





/*********seccione politicas internas**********/

#archivos {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 999;
  margin-top: 70px;
}

.archivos_cont {
  width: 70%;
  display: flex;
  justify-content: center;
  gap: 5%;
}

.archivo_cont {
  width: 30%;
  position: relative;
}

.archivo_cont:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 94%);
  z-index: 9;
}

.titulo_doc {
  font-size: 12px;
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: baseline;
  gap: 15px;
  width: 100%;
  height: 100%;
  padding: 15px 15px 25px 15px;
  z-index: 9;
}



/*********seccione politicas internas**********/








/***

responsive soluciones

*******/

@media screen and (max-width: 767px) {
  #banner_blog {
    margin-top: 25%;
  }

  #banner_blog .span1 {
    display: none;
  }

  #banner_blog .span2 {
    display: none;
  }

  #banner_blog .span3 {
    display: none;
  }

  #banner_blog .span4 {
    display: none;
  }

  .titulo_wrap {
    justify-content: flex-start;
    width: 100%;
    margin-top: 70px;
  }

  .blog_mark {
    width: 70%;
  }

  .blog_mark img {
    animation: none;
  }

  #servicios_section {
    padding-top: 0px;
  }

  .page-template-page-casos .introPga .intro {
    font-size: 18px;
    line-height: 1.3em;
    width: 100%;
    margin-top: 65px;
  }

  .serv_int_cont {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
  }

  #servicios_section h2 {
    font-size: 21px;
    text-transform: uppercase;
    width: 100%;
  }

  .serv_der {
    width: 100%;
    font-size: 15px;
  }

  .servicio_ind:nth-child(even) .serv_iz {
    justify-content: flex-start;
  }

  .servicio_ind:nth-child(even) h2 {
    text-align: left;
    width: 100%;
  }

  .servicio_ind:nth-child(even) .serv_der {
    justify-content: flex-start;
    text-align: left;
  }

  .container-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .casos_home_button_cont .container-cta {
    justify-content: center;
  }

  #boton-cta {
    font-size: 16px;
  }

  .why_simbol {
    top: 54%;
  }
}

@media screen and (min-width: 767px) and (max-width: 992px) {

  .introPga .titulo h1 {
    font-size: 80px !important;
  }

  .page-template-page-servicios .introPga .intro {
    font-size: 22px;
  }

  .blog_mark {
    top: 230px;
    width: 40%;
  }

  .serv_int_cont {
    width: 80%;
  }

  #servicios_section h2 {
    font-size: 28px;
  }
}

@media screen and (min-width: 993px) and (max-width: 1024px) {
  .page-template-page-servicios .introPga .intro {
    font-size: 28px;
  }

  #servicios_section h2 {
    font-size: 2em !important;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .page-template-page-servicios .introPga .intro {
    font-size: 27px;
    line-height: 1.4em;
  }

  #servicios_section h2 {
    font-size: 2em !important;
  }
}

/***

fin responsive soluciones

*******/




/***

responsive casos

*******/



@media screen and (max-width: 767px) {
  #casos_exito {
    margin-top: 30px;
  }

  .container-casos a {
    display: flex;
    flex-direction: column;
  }

  .container-casos a .container-casos-text {
    font-size: 17px;
  }

  .project-info .project-titulo {
    overflow: visible;
  }

  .masonry {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0;
  }

  .introPga .titulo h1 {
    font-size: 90px;
    top: 25px;
    margin-bottom: 30px;
  }

  .project-info {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
  }

  .cuarto {
    height: auto;
    grid-column: 2;
    grid-row: 3;
  }

  .other-post {
    grid-column: 1;
    grid-row: 6;
    height: auto;
  }


}

@media screen and (min-width: 767px) and (max-width: 992px) {

  .introPga .titulo h1 {
    font-size: 80px;
  }

  #banner_blog .titulo h1 {
    position: relative;
    left: 0;
    margin-top: 50px;
  }

  .grid-item {
    width: 100%;
    height: 50vh;
  }

  #banner_blog .intro {
    font-size: 20px;
    line-height: 1.1em;
    margin-top: 50px;
  }

  #banner_blog .intro {
    width: 100%;
  }

  .project-info {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
  }

  .project-info .project-titulo {
    overflow: visible;
  }

  .container-casos a {
    display: flex;
    flex-direction: column;
  }

  .container-casos a .container-casos-text {
    font-size: 18px;
  }

  .container-casos a .container-casos-text {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 80px;
  }
}

@media (min-width: 993px) and (max-width: 1024px) {

  .introPga .titulo h1 {
    font-size: 110px;
    margin-bottom: 30px;
  }

  .project-info {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
  }

  .project-info .project-titulo {
    overflow: visible;
  }

  .container-casos a .container-casos-text {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 100px;
  }
}

@media (min-width: 1025px) and (max-width: 1299px) {

  .introPga .titulo h1 {
    font-size: 130px;
    margin-bottom: 30px;
  }

  .project-info {
    display: flex;
    align-items: flex-start;
    padding: 2.5rem;
  }

  .project-info .project-titulo p {
    font-size: 25px !important;
  }

  .container-casos a .container-casos-text {
    font-size: 15px;
    width: 100%;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 220px;
  }
}

@media (min-width: 1300px) and (max-width: 1366px) {

  .introPga .titulo h1 {
    font-size: 130px;
    margin-bottom: 30px;
  }

  .container-casos a .container-casos-text {

    font-size: 16px;
    width: 100%;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 250px;
  }
}

@media (min-width: 1366px) and (max-width: 1500px) {

  .introPga .titulo h1 {
    margin-bottom: 30px;
  }

  #banner_blog .titulo h1 {
    font-size: 120px;
    margin: 0;
    color: #000;
    opacity: 0;
    margin-top: 70px;
  }
}

@media screen and (min-width: 320px) and (max-width: 580px) {

  #casos_exito {
    margin-top: 25%;
  }

  .intro {
    width: 100%;
  }

  .introPga {
    position: relative;
    top: 20px;
  }

  .titulo_wrap {
    display: flex;
    justify-content: flex-start;
    width: 90%;
    position: relative;
    left: 0%;
  }

  .introPga .titulo h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  #banner_blog .titulo h1 {
    opacity: 1 !important;
  }

  #blog .quehacemos_titulo {
    display: none;
  }

  .introPga .intro {
    font-size: 23px;
  }

  .blog_mark {
    top: 50%;
    width: 50%;
  }

  .project-info {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
  }

  #banner_blog .span1 {
    display: none
  }

  #banner_blog .span2 {
    display: none;
  }

  #banner_blog .span3 {
    display: none;
  }

  #banner_blog .span4 {
    display: none;
  }

}



/***

fin responsive casos

*******/





/***

responsive single casos

*******/
.container-casos a .container-casos-text {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 300;
  margin-right: 10px;
}

.container-casos a .container-casos-img img.boton-cta-image {
  width: 160px;
  height: auto;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  #banner_caso {
    padding: 15% 0;
  }

  #banner_caso .banner {
    width: 92%;
    margin-top: -12px;
  }



  .introcaso .intro {
    flex-direction: column;
    padding: 0;
  }

  .introcaso .intro ul li:first-child {
    font-size: 30px;
  }

  .introcaso .intro ul li:last-child {
    font-size: 22px;
  }

  .antecedentes_cont_left {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }


  .antecedentes_cont_left h2 {
    font-size: 30px;
    padding: 20px 20px 20px 20px;
  }

  .antecedentes_cont_right {
    width: 90%;
  }

  .problema_cont {
    width: 100%;
  }

  .texto_problema {
    width: 100%;
  }

  .texto_problema h2 {
    font-size: 30px;
  }

  .problema_cont_left img {
    width: 90%;
    margin: 0 auto;
  }

  .resultado_cont {
    flex-direction: column;
  }

  .resultado_cont_left {
    width: 100%;
    order: 2;
    z-index: 1;
  }

  .resultado_cont_right {
    width: 90%;
    order: 1;
    position: relative;
    top: 0px;
    padding-right: 0%;
  }

  .resultado_cont_right h2 {
    font-size: 30px;
  }

  .casos_related_cont {
    margin-top: 0%;
  }

  .casos_related_left h2 {
    font-size: 30px;
    text-align: left;
    padding: 0 0 20px 0;
  }

  .call_footer_cont {
    font-size: 30px;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
    width: 90%;
  }

  .casos_related_right {
    flex-direction: column;
    height: auto;
  }

  .caso_related img {
    height: auto;
  }

  .project-info {
    padding: 2em;
  }

  .call_footer_cont p {
    font-size: 17px;
  }

  .call_footer_cont h2 {
    font-size: 40px;
    width: 100%;
  }

  .call_footer_cont h5 {
    width: 100%;
  }

  .logo_caso {
    width: 30%;
    padding: 1% 0 6%;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .introcaso .intro {
    width: 80%;
  }

  .introcaso .intro ul li:first-child {
    font-size: 50px;
  }

  .introcaso .intro ul li:last-child {
    font-size: 30px;
  }

  .antecedentes_cont_left {
    width: 80%;
  }

  .antecedentes_cont_left h2 {
    padding: 0 20px 0 0;
    font-size: 40px;
  }

  .problema_cont {
    width: 90%;
  }

  .texto_problema h2 {
    font-size: 50px;
  }

  .call_footer_cont {
    font-size: 30px;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
  }

  .texto_problema {
    width: 100%;
    padding: 5% 5% 12% 5%;
    margin-top: 0px;
  }

  .problema_cont_left img {
    width: 100%;
    margin-top: 0px;
  }

  .problema_cont_left {
    gap: 0;
  }

  .resultado_cont_left {
    width: 100%;
  }

  .project-info {
    padding: 2em;
  }

  #boton-cta {
    font-size: 15px;
  }

  .container-casos a .container-casos-text {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 100px;
  }

  .antecedentes_cont_left {
    display: flex;
    flex-direction: column;
  }

  .antecedentes_cont_left h2 {
    width: 100%;
  }

  .antecedentes_cont_left_p {
    width: 100%;
  }

  .problema_cont_left {
    flex-direction: column;
  }

  .resultado_cont {
    flex-direction: column-reverse;
  }

  .resultado_cont_right {
    width: 90%;
    padding-right: 0%;
  }

  .call_footer_cont h2 {
    font-size: 40px;
    width: 100%;
  }

  .call_footer_cont h5 {
    width: 100%;
  }

  .call_footer_cont {
    width: 90%;
  }
}

@media (min-width: 993px) and (max-width: 1024px) {
  .introcaso .intro {
    width: 80%;
  }

  .introcaso .intro ul li:first-child {
    font-size: 60px;
  }

  .introcaso .intro ul li:last-child {
    font-size: 35px;
  }

  .antecedentes_cont_left {
    width: 80%;
  }

  .antecedentes_cont_left h2 {
    font-size: 50px !important;
  }

  .texto_problema h2 {
    font-size: 50px !important;
  }

  .call_footer_cont p {
    font-size: 30px !important
  }

  .casos_related_left h2 {
    font-size: 50px !important;
  }

  .problema_cont_left {
    gap: 10px;
  }

  .texto_problema {
    padding: 5% 5% 12% 5%;
  }

  .resultado_cont_right h2 {
    font-size: 50px !important;
  }

  .project-info {
    padding: 2em;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 100px;
  }
}

@media (min-width: 1025px) and (max-width: 1299px) {
  .introcaso .intro {
    width: 80%;
  }

  .introcaso .intro ul li:first-child {
    font-size: 60px;
  }

  .introcaso .intro ul li:last-child {
    font-size: 32px;
  }

  .antecedentes_cont_left {
    width: 70%;
  }

  .antecedentes_cont_left h2 {
    font-size: 55px !important
  }

  .texto_problema h2 {
    font-size: 55px !important;
  }

  .problema_cont_left {
    gap: 12px;
  }

  .texto_problema {
    padding: 5% 5% 12% 5%;
    margin-top: -30px;
  }

  .resultado_cont_right h2 {
    font-size: 55px !important;
  }

  .casos_related_left h2 {
    font-size: 55px !important;
  }

  .call_footer_cont {
    font-size: 60px !important;
  }

  .call_footer_cont p {
    font-size: 20px !important;
    width: 100%;
  }

  .project-info {
    padding: 2em;
  }

  .container-casos a .container-casos-text {
    font-size: 14px;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 130px;
  }
}

@media (min-width: 1300px) and (max-width: 1366px) {
  .problema_cont_left {
    gap: 17px;
  }
}




/***

fin responsive single casos

*******/


/***


single servicios


*******/


@media screen and (max-width: 767px) {

  .serv_intro {
    padding: 30% 12% 20% 12%;
  }

  .serv_intro h1 {
    width: 100%;
    font-size: 28px;
  }

  .intro_txt_cont {
    width: 100%;
    font-size: 18px;
  }

  #boton-cta {
    font-size: 14px;
  }

  .quehacemos_titulo {
    padding: 30px 0;
  }

  .quehacemos_titulo h2 {
    font-size: 30px;
    line-height: 1em;
  }

  .quehacemos_tarj {
    padding: 15px 15px 41px;
  }

  .quehacemos_tarj h2 {
    font-size: 21px;
    padding-left: 0;
    width: 100%;
    line-height: 1.3em;
  }

  .quehacemos_tarj_txt_cont {
    width: 100%;
    padding-right: 0;
  }

  .quehacemos_tarj_txt_cont p {
    line-height: 1.4em;
  }

  #section_title {
    width: 90%;
    font-size: 19px;
    text-align: left;
    padding: 20px 0 40px;
  }

  .casos_related_right {
    flex-direction: column;
    height: auto;
  }

  .project-info {
    padding: 2em;
  }
}

@media (min-width: 768px) and (max-width: 992px) {

  .serv_intro {
    padding: 10% 7% 20% 7%;
  }

  .serv_intro h1 {
    width: 100%;
    font-size: 50px;
  }

  .intro_txt_cont {
    width: 100%;
    font-size: 30px;
  }

  .quehacemos_tarj h2 {
    font-size: 38px;
    width: 70%;
  }

  .project-info {
    padding: 2.5em;
  }

  .container-casos a {
    flex-direction: column;
  }
}

@media (min-width: 993px) and (max-width: 1024px) {
  .project-info {
    padding: 3em;
  }

  .container-casos a .container-casos-text {
    font-size: 14px;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 100px;
  }
}

@media (min-width: 1025px) and (max-width: 1299px) {
  .project-info {
    padding: 3em;
  }

  .container-casos a .container-casos-text {
    font-size: 14px;
  }

  .container-casos a .container-casos-img img.boton-cta-image {
    width: 100px;
  }
}

@media (min-width: 1300px) and (max-width: 1366px) {
  .project-info {
    padding: 3em;
  }
}



/******

fin single servicios

*******/




/******

404

*******/

.sect404 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
}

.logo404 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.img404 {
  color: #EDEDED;
  text-align: center;
  font-size: 683px;
  font-weight: 800;
  line-height: 1em;
  margin-top: -170px;
}

.bloque_formas {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -136px;
}

.barra {
  color: #000;
  font-size: 26px;
  font-weight: 800;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  letter-spacing: 3.1px;
  position: relative;
}

.barra p {
  position: absolute;
  top: 34%;
  right: 5%;
}


.pj {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -34%;
}

.bloque_gfoot {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 3px solid #000;
  padding-top: 50px;
}

.bloque_gfoot p {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 400;
  padding-bottom: 20px;
}

.redes_404 ul {
  display: flex;
  padding: 0;
  margin: 0;
}

.sect404 .span {
  position: absolute;
  background-image: url(../img/asterisco.svg);
  width: 24px;
  height: 24px;
}

.sect404 .span1 {
  top: 10%;
  left: 5%;
}

.sect404 .span2 {
  top: 10%;
  right: 5%;
}

.sect404 .span3 {
  bottom: 5%;
  right: 5%;
}

.sect404 .span4 {
  bottom: 5%;
  left: 5%;
}

/******


fin 404


*******/




/******


 search


*******/
.search_results_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.result_container {
  width: 80%;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.result_container article {
  width: 32%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 15px 40px;
  border-radius: 10px;
}

.result_container article .container-cta {
  margin-top: 15px;
  margin-bottom: 15px;
}

.search_ti {
  width: 80%;
  margin-bottom: 15px;
}

.search_ti h2 {
  color: #000;
  padding: 50px;
  text-align: center;
  font-size: 70px;
  text-transform: uppercase;
  line-height: 1em;
}

.resulta_ti {
  padding: 15px 0;
  margin-bottom: 15px;
}

.resulta_ti h2 {
  line-height: 1.3em;
}

.resulta_ti h2 a {
  color: #000;
  font-weight: 600;
  font-size: 30px;
  line-height: 1em;
}

.search_banner_cont .img_cont {
  background-position: center;
  background-size: cover;
}

.search_banner_cont .img_cont img {
  visibility: hidden;
}

#search_banner {
  margin-top: -50px;
}

.busqueda_img {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.result_container .entry-summary p {
  color: #000;
  font-size: 18px;
}

.noresult h3 {
  font-size: 30px;
  color: #000;
}

.nores_opt {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}

.nores_opt a {
  display: block;
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  border: 1px solid #000;
}

.nores_opt a:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.5s ease-in-out;
}

/******


fin search


*******/





/******

plantilla_secundaria

*******/

.plantilla_secundaria #antecedentes {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

.plantilla_secundaria .antecedentes_cont_left {
  width: 70%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.plantilla_secundaria .antecedentes_cont_left h2 {
  line-height: 1.1em;
  font-weight: 800;
  padding: 20px 40px 20px 20px;
  color: #000;
  text-transform: uppercase;
  width: 100%;
}

.plantilla_secundaria .antecedentes_cont_left_p {
  font-size: 16px;
  line-height: 1.3em;
  padding: 20px;
  color: #000;
  width: 100%;
}

.plantilla_secundaria #resultado {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 100px 0;
}

.plantilla_secundaria .resultado_cont_right {
  width: 80%;
  padding-right: 0%;
}

.plantilla_secundaria .resultado_cont {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: center;
}

.plantilla_secundaria .problema_cont_left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  flex-direction: column;
}

.plantilla_secundaria .texto_problema {
  width: 80%;
  padding: 4% 2%;
  margin-top: 0px;
}

.plantilla_secundaria .problema_cont_left .galeria_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 10%;
}

.plantilla_secundaria .problema_cont_left .galeria_cont img {
  flex: 0 0 calc(50% - 10px);
  /* Ocupa 50% menos el espacio del gap */
  box-sizing: border-box;
  margin-top: 0px;
  border-radius: 15px;
}

.plantilla_secundaria .problema_cont_left .galeria_cont img:nth-child(1),
.plantilla_secundaria .problema_cont_left .galeria_cont img:nth-child(3n + 1) {
  flex: 0 0 100%;
  /* Ocupa 100% del ancho */
}






.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  display: block;
  /* Ocultar por defecto */
  transition: opacity 0.3s;
}

.play-button:hover {
  opacity: 1;
}

.controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  display: none;
}

.controls button,
.controls input[type="range"] {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}





.carousel-dots::-webkit-scrollbar {
  width: 12px;
  /* Ancho de la barra de desplazamiento vertical */
  height: 12px;
  /* Altura de la barra de desplazamiento horizontal */
}

.carousel-dots::-webkit-scrollbar-thumb {
  background-color: #004cffb4;
  /* Color del "pulgar" de la barra de desplazamiento */
  border-radius: 6px;
  /* Radio de borde para el "pulgar" */
}

.carousel-dots::-webkit-scrollbar-thumb:hover {
  background-color: #004cff;
  /* Color del "pulgar" al pasar el ratón */
}

.carousel-dots::-webkit-scrollbar-track {
  background-color: #004cff82;
  /* Color de la pista de la barra de desplazamiento */
  border-radius: 6px;
  /* Radio de borde para la pista */
}

.carousel-dots::-webkit-scrollbar-track:hover {
  background-color: #004cffa1;
  /* Color de la pista al pasar el ratón */
}

.footer_container .footer_col {
  width: 20%;
}

.logo_footer img {
  width: 100%;
  max-width: 200px;
}


.footer-social-icons {
  display: flex;
  gap: 15px;
  list-style: none;
}

.footer-social-icons li a {
  display: flex;
  background-image: url(../img/rrssbg.png);
  background-size: cover;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}












.responsive {
  display: none;
}



@media (max-width: 767px) {
  .responsive {
    display: block;
  }

  .escritorio {
    display: none;
  }

  .casos_home_cont {
    display: flex;
  }

  .caso_home {
    position: relative;
    flex-basis: calc(100% - 10px);
    /* El -10px es para dejar espacio entre los elementos */
  }

  .casos_home_cont {
    flex-direction: column;
  }

  .container_1 {
    font-size: 18px;
  }

  .container_1 {
    font-size: 0.5em;
  }

  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: column;
    gap: 25px;
    width: 85%;
  }

  .aliados_left {
    font-size: 20px;
  }

  .aliados_rigth {
    width: 100%;
    flex-wrap: nowrap;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 30px;
  }

  .socio_info h2 {
    font-size: 20px;
  }



  #banner_contact .titulo h1 {
    font-size: 70px;
    margin-bottom: 20px;
    margin-top: 70px;
  }

  #banner_contact .titulo_wrap {
    width: 100%;
  }

  #banner_contact .intro {
    width: 90%;
  }

  #banner_contact .intro h2 span {
    font-size: 32px !important;
  }

  #banner_contact .intro p span {
    font-size: 26px !important;
  }

  #banner_contact .introPga .image-container {
    width: 100%;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: -22rem;
    width: 390px;
    height: auto;
    left: 5rem;
  }

  #sect_contacto_home {
    z-index: 9999;
    background-color: #fff;
  }

  .contacto_home_cont {
    flex-direction: column;
    width: 80%;
  }

  .text_acom h1 {
    font-size: 38px;
    line-height: 1.1em;
  }

  .contacto_interna .contacto_home_cont {
    flex-direction: column;
    padding: 0px 0 50px;
  }

  .contacto_home_cont {
    gap: 20px;
  }

  #sect_contacto_home .contacto_col {
    padding-right: 0%;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .contacto_col {
    width: 100%;
  }

  .contacto_col.cont_col_r {
    width: 100%;
    padding-right: 0;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 100%;
  }

  .efect .col_iz {
    width: 100%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 33px;
  }

  .efect h2 {
    font-size: 25px;
  }

  .col_der_img {
    height: 22vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: 100%;
    height: 43vh;
  }

  .efect {
    padding: 30px;
    margin-bottom: 0;
  }

  .efect h3 {
    padding: 70px 0px 30px;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 30px 0;
  }

  .caso_home {
    display: none;
  }


  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 30px 0;
  }

  .container_1 h2 {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
  }

  .container_1 h1 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_slider .owl-nav {
    top: 10%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 40px 25px !important;
  }

  .footer-navigation {
    text-align: center;
  }

  #boton-cta {
    height: 40px;
    line-height: 1.1em;
    font-size: 14px;
  }

  .destacados_home_animado #boton-cta {
    font-size: 15px;
  }

  .menu li:before {
    top: -11px;
  }

  .introPga {
    flex-direction: column;
  }

  #projects-gallery {
    display: none;
  }

  .wrapper {
    flex-direction: column;
  }

  #projects-list ul {
    margin: 0;
  }

  #app #navbar {
    display: none;
  }

  .destacados_home_animado {
    padding: 48px 0 !important;
  }

  .dynamic-txts-RC li {
    width: auto !important;
    margin-top: 0%;
  }

  .dynamic-txts-RC li p {
    font-size: 0.2em !important;
    line-height: 0.9em !important;
  }

  .wrapper .static-txt {
    font-size: 1.8em !important;
    letter-spacing: 0.7px !important;
  }

  .menuFooter {
    align-items: flex-end;
    gap: 30px;
  }

  .why_right {
    width: 100%;
  }

  .why_image {
    margin-top: 0px;
  }

  .dynamic-txts-RC .round {
    width: 18px;
    height: 18px;
    padding: 4px;
  }

  .round_cont_comp:last-child .round {
    display: none;
  }

  .wrapper .rueda {
    width: 83%;
    left: 25%;
  }

  .why_container {
    overflow: hidden;
  }

  .round_cont_comp .slide_txt {
    margin-top: 0px !important;
  }

  /**
  interna nosotros
  **/


  .intro_nos .titulo h1 {
    font-size: 30px;
    line-height: 1em;
    width: 100%;
    padding: 30px 0 10px;
    margin-top: 100px;
  }

  .intro_nos .intro {
    width: 100%;
    font-size: 20px;
    line-height: 1em;
  }

  .especiales_cont_txt .star {
    display: none;
  }

  .especiales_cont_txt .star img {
    width: 45px;
  }


  #especiales h1 {
    font-size: 30px;
    width: 100%;
  }

  .especiales_cont_txt {
    column-count: 1;
    width: 100%;
    column-gap: 0px;
  }

  .mision_cont {
    width: 100%;
    gap: 30px;
    padding-bottom: 30px;
    flex-direction: column;
  }

  .mision_txt h2 {
    font-size: 30px;
    line-height: 1em;
  }

  .timeline_title {
    width: 90%;
    position: relative;
    padding-top: 30px;
  }

  .timeline_title h2 {
    font-size: 30px;
    line-height: 1em;
  }

  .socios_head ul li {
    font-size: 25px;
  }

  .socios_head ul li:last-child {
    margin-top: 0px;
  }

  .socio_cont {
    flex-direction: column;
    width: 100%;
  }

  .socio_img_cont {
    width: 90%;
  }

  .socio_info_cont {
    width: 90%;
    gap: 10px;
  }

  .socio_info {
    width: 100%;
  }

  #especiales h2 span {
    font-size: 30px !important;
    line-height: 1.1em;
  }

  .mision_img {
    width: 90%;
    padding-left: 0%;
  }

  .mision_txt {
    width: 90%;
  }

  .mision_img .star {
    display: none;
  }

  .carousel {
    width: 100%;
    padding: 0px;
  }

  .timeline_section_cont {
    width: 90%;
    gap: 50px;
  }

  .carousel-dots .dot {
    font-size: 22px;
    gap: 30px;
  }

  .carousel-dots .dot-line {
    top: 73%;
  }

  .timeline_cont {
    width: 90%;
  }

  .brain img {
    width: 150px;
  }

  .socios_head ul {
    width: 100%;
  }

  #socios_slider_tmb {
    padding: 0 20px;
  }

  #socios .owl-dots {
    display: none;
  }

  #socios_slider .owl-nav {
    top: 35%;
  }

  #socios_slider .owl-prev {
    width: 20px;
    top: 134px;
    left: 5px;
  }

  #socios_slider .owl-next {
    width: 20px;
    top: 134px;
    right: 5px;
  }

  .trabajo_cont {
    width: 70%;
  }

  .trabajo_txt {
    font-size: 16px;
  }


  #banner_blog {
    margin-top: 10%;
  }

  #banner_blog .titulo h1 {
    font-size: 38px;
  }

  #banner_blog .titulo h1 {
    position: relative;
    left: 0;
  }

  .blog_tarjeta .blog_tarjeta_image {
    height: 45vh;
  }

  .como_titulo h2 {
    font-size: 50px;
    padding: 50px 25px;
    position: relative;
    z-index: 999;
  }

  #servicios_home {
    width: 100%;
    padding: 0;
  }

  .efect h4 {
    font-size: 21px;
    width: 84%;
  }

  .accordion-inner {
    flex-direction: column;
    gap: 5px;
  }

  .accordion-inner img {
    width: 100%;
  }

  .accordion-text {
    flex: 100%;
    padding: 5%;
  }

  .especiales_cont::after {
    display: none;
  }

  .asterBlan {
    display: none;
  }

  #simulation-container {
    height: 100vh;
    background-size: contain;
  }

  #como_somos {
    height: 100vh;
  }

  .brain {
    display: none;
  }

  .especiales_cont_txt .rueda {
    display: none;
  }

  .timeline_title .star {
    display: none;
  }

  #socios_slider_tmb .owl-nav {
    width: 106%;
    left: -3%;
  }

  .banner_nosotros .intro_nos {
    width: 88%;
  }

  .page-template-page-servicios .introPga .intro {
    font-size: 18px;
    margin-top: 15px;
  }

  .quehacemos_titulo {
    padding: 34px 0;
  }

  #banner_contact {
    padding-bottom: 10%;
  }

  .blogInfo a {
    font-size: 18px;
    line-height: 1em;
    letter-spacing: 0.5px;
  }

  .blogInfo {
    width: 100%;
    margin: 0 auto;
    float: none;
    left: 0;
    right: 0;
  }

  .blogInfo h2 {
    line-height: 1em;
  }

  #sect_contacto_home::before {
    display: none;
  }

  #sect_contacto_home::after {
    display: none;
  }

  #banner_contact .intro h2 {
    margin-bottom: 15px;
  }

  .simg_cont {
    width: 100%;
  }

  .quehacemos_tarj_txt {
    flex-wrap: wrap;
  }

  .texto_problema {
    margin-top: 0px;
  }

  #banner_blog .titulo h1 {
    margin-top: 0px;
  }

  #banner_caso .banner {
    background-size: cover;
    width: 90%;
    border-radius: 25px;
    max-height: 60vh;
  }

  .antecedentes_cont_left h2 {
    width: 100%;
  }

  .antecedentes_cont_left_p {
    width: 100%;
  }

  .quehacemos_tarjetas {
    padding: 20px 0 20px;
  }

  #banner_serv_int .banner {
    background-size: cover;
  }

  .sol_img {
    width: 100%;
  }

  #banner_blog .titulo_wrap p {
    opacity: 1;
  }

  #banner_blog .titulo_wrap {
    margin-top: 10px;
  }

  .logo404 img {
    width: 150px;
  }

  .img404 {
    font-size: 150px;
    margin-top: 0;
  }

  .bloque_formas {
    margin-top: 5%;
  }

  .barra {
    font-size: 14px;
    letter-spacing: 0px;
  }

  .pj {
    justify-content: flex-start;
    margin-top: -100px;
  }

  .pj img {
    width: 170px;
  }

  .bloque_gfoot {
    padding: 20px;
  }

  .bloque_gfoot p {
    font-size: 17px;
    letter-spacing: 0px;
  }

  .search_ti {
    width: 100%;
  }

  .search_ti h2 {
    font-size: 20px;
    padding: 20px;
    line-height: 1em;
  }

  .result_container {
    width: 80%;
    flex-direction: column;
  }

  .result_container article {
    width: 100%;
    padding: 20px;
  }

  #search_banner {
    margin-top: 0px;
  }

  .resulta_ti h2 a {
    color: #000;
    font-size: 20px;
    line-height: 1em;
  }

  .resulta_ti h2 {
    line-height: 1em;
  }

  .result_container .entry-summary p {
    font-size: 15px;
    line-height: 1em;
  }

  .plantilla_secundaria .antecedentes_cont_left {
    width: 100%;
  }

  .plantilla_secundaria .resultado_cont_right {
    width: 100%;
  }

  .plantilla_secundaria #resultado {
    padding: 0px 0;
  }

  .plantilla_secundaria .problema_cont_left .galeria_cont img:nth-child(1),
  .plantilla_secundaria .problema_cont_left .galeria_cont img:nth-child(3n + 1) {
    flex: 0 0 calc(100% - 30px);
  }

  .videoBanner_cont {
    width: 90%;
  }

  .play-button {
    display: none;
  }

  .grid-item {
    height: 50vh !important;
  }

  #simulation-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .archivo_cont {
    width: 100%;
  }

  .archivos_cont {
    flex-wrap: wrap;
    gap: 15px;
  }
}











@media (min-width: 768px) and (max-width: 992px) {

  .caso_home {
    position: relative;
    flex-basis: calc(100% - 10px);
    /* El -10px es para dejar espacio entre los elementos */
  }

  .casos_home_cont {
    flex-direction: column;
  }

  .container_1 {
    font-size: 18px;
  }

  .container_1 {
    font-size: 0.5em;
  }

  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: column;
    gap: 25px;
    width: 85%;
  }

  .aliados_left {
    font-size: 20px;
  }

  .aliados_rigth {
    width: 100%;
    flex-wrap: nowrap;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 18px;
  }



  #banner_contact .titulo h1 {
    font-size: 70px;
    margin-bottom: 20px;
  }

  #banner_contact .titulo_wrap {
    width: 100%;
  }

  #banner_contact .intro {
    width: 90%;
  }

  #banner_contact .intro h2 span {
    font-size: 32px !important;
  }

  #banner_contact .intro p span {
    font-size: 26px !important;
  }

  #banner_contact .introPga .image-container {
    width: 100%;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: -22rem;
    width: 390px;
    height: auto;
    left: 5rem;
  }

  #sect_contacto_home {
    z-index: 9999;
    background-color: #fff;
  }

  .contacto_home_cont {
    flex-direction: column;
    width: 80%;
  }

  .text_acom h1 {
    font-size: 38px;
    line-height: 1.1em;
  }

  .contacto_interna .contacto_home_cont {
    flex-direction: column;
  }

  .contacto_home_cont {
    gap: 20px;
  }

  #sect_contacto_home .contacto_col {
    padding-right: 0%;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .contacto_col {
    width: 100%;
  }

  .contacto_col.cont_col_r {
    width: 100%;
    padding-right: 0;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 100%;
  }

  .efect .col_iz {
    width: 100%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 33px;
  }

  .efect h2 {
    font-size: 25px;
  }

  .col_der_img {
    height: 22vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: 100%;
    height: 43vh;
  }

  .efect {
    padding: 190px 30px;
    margin-bottom: 0;
  }

  .efect h3 {
    padding: 70px 0px 30px;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 30px 0;
  }

  .caso_home {
    display: none;
    height: 26vh !important;
  }


  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 30px 0;
  }

  .container_1 h2 {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
  }

  .container_1 h1 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_slider .owl-nav {
    top: 10%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 30px 5%;
  }

  .footer-navigation {
    text-align: center;
  }

  #boton-cta {
    height: 40px;
    line-height: 1.1em;
    font-size: 20px;
  }

  .destacados_home_animado #boton-cta {
    font-size: 15px;
  }

  .menu li:before {
    top: -11px;
  }

  .introPga {
    flex-direction: column;
  }

  #projects-gallery {
    display: none;
  }

  .wrapper {
    flex-direction: column;
  }

  #projects-list ul {
    margin: 0;
  }

  #app #navbar {
    display: none;
  }

  .destacados_home_animado {
    padding: 48px 0 !important;
  }

  .dynamic-txts-RC li {
    width: auto !important;
    margin-top: 0%;
  }

  .dynamic-txts-RC li p {
    font-size: 0.2em !important;
    line-height: 0.9em !important;
  }

  .wrapper .static-txt {
    font-size: 1.8em !important;
    letter-spacing: 0.7px !important;
  }

  .menuFooter {
    align-items: flex-end;
    gap: 30px;
  }

  .why_right {
    width: 100%;
  }

  .why_image {
    margin-top: 0px;
  }

  .dynamic-txts-RC .round {
    width: 18px;
    height: 18px;
    padding: 4px;
  }

  .round_cont_comp:last-child .round {
    display: none;
  }

  .wrapper .rueda {
    width: 83%;
    left: 25%;
  }

  .why_container {
    overflow: hidden;
  }

  .round_cont_comp .slide_txt {
    margin-top: 0px !important;
  }

  /**
  interna nosotros
  **/


  .intro_nos .titulo h1 {
    font-size: 50px;
    line-height: 1em;
    width: 100%;
    padding: 30px 0 10px;
    margin-top: 100px;
  }

  .intro_nos .intro {
    width: 100%;
    font-size: 20px;
    line-height: 1em;
  }

  .especiales_cont_txt .star {
    top: -70%;
  }

  .especiales_cont_txt .star img {
    width: 45px;
  }


  #especiales h1 {
    font-size: 50px;
    width: 70%;
  }

  .especiales_cont_txt {
    column-count: 1;
    width: 100%;
    column-gap: 0px;
  }

  .mision_cont {
    width: 100%;
    gap: 10px;
    padding-bottom: 30px;
    flex-direction: column;
  }

  .mision_txt h2 {
    font-size: 50px;
    line-height: 1em;
  }

  .timeline_title {
    width: 90%;
    position: relative;
  }

  .timeline_title h2 {
    font-size: 50px;
    line-height: 1em;
  }

  .socios_head ul li {
    font-size: 19px;
  }

  .socio_cont {
    flex-direction: column;
    width: 100%;
  }

  .socio_img_cont {
    width: 90%;
  }

  .socio_info_cont {
    width: 90%;
    gap: 10px;
  }

  .socio_info {
    width: 100%;
  }

  #especiales h2 span {
    font-size: 30px !important;
    line-height: 1.1em;
  }

  .mision_img {
    width: 90%;
    padding-left: 0%;
  }

  .mision_txt {
    width: 90%;
  }

  .mision_img .star {
    display: none;
  }

  .carousel {
    width: 100%;
    padding: 0px;
  }

  .timeline_section_cont {
    width: 90%;
    gap: 50px;
  }

  .carousel-dots .dot {
    font-size: 22px;
    gap: 30px;
  }

  .carousel-dots .dot-line {
    top: 73%;
  }

  .timeline_cont {
    width: 90%;
  }

  .brain img {
    width: 150px;
  }

  .socios_head ul {
    width: 100%;
  }

  #socios_slider_tmb {
    padding: 0 20px;
  }

  #socios .owl-dots {
    display: none;
  }

  #socios_slider .owl-nav {
    top: 35%;
  }

  .trabajo_cont {
    width: 70%;
  }

  .trabajo_txt {
    font-size: 16px;
  }


  .como_titulo h2 {
    font-size: 50px;
    padding: 50px 25px;
  }

  #servicios_home {
    width: 100%;
    padding: 0;
  }

  .efect h4 {
    font-size: 21px;
    width: 84%;
  }

  .accordion-inner {
    flex-direction: column;
    gap: 5px;
  }

  .accordion-inner img {
    width: 100%;
  }

  .accordion-text {
    flex: 100%;
    padding: 5%;
  }



  .page-template-page-nosotros {
    overflow-x: hidden;
  }

  .especiales_cont::after {
    display: none;
  }

  .asterBlan {
    top: 12px;
    left: 57%;
  }

  #simulation-container {

    background-size: contain;
  }

  .brain {
    display: none;
  }

  .especiales_cont_txt .rueda {
    top: -70%;
  }

  #sect_contacto_home::before {
    display: none !important;
  }

  #sect_contacto_home::after {
    display: none !important;
  }

  .quehacemos_titulo {
    padding: 30px 0;
  }

  .masonry {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 90%;
  }

  .blog_tarjeta {
    flex: 1 1 calc(49%);
    height: 50vh;
  }

  .blogInfo a {
    font-size: 21px;
  }

  #banner_contact .intro p {
    line-height: 1em;
  }

  .sol_img {
    width: 100%;
  }

  .logo404 img {
    width: 150px;
  }

  .img404 {
    font-size: 360px;
    margin-top: -87px;
  }

  .bloque_formas {
    margin-top: 5%;
  }

  .pj {
    justify-content: flex-start;
  }

  .search_ti h2 {
    padding: 50px;
    font-size: 50px;
    line-height: 1em;
  }

  .result_container article {
    width: 48%;
    padding: 15px;
  }

  .plantilla_secundaria .call_footer_cont {
    width: 90%;
  }

  .play-button {
    display: none;
  }

  .videoBanner_cont {
    width: 90%;
  }

  #site-header {
    padding: 0 5%;
  }

  .menu-principal a {
    font-size: 13px;
  }

  #logo {
    width: 120px;
  }

  #logo img {
    width: 100%;
  }

  .menu-principal {
    gap: 15px;
  }

}


@media (min-width: 993px) and (max-width: 1024px) {
  .caso_home {
    position: relative;
    flex-basis: calc(100% - 10px);
    /* El -10px es para dejar espacio entre los elementos */

  }

  .casos_home_cont {
    flex-direction: column;
  }

  .container_1 {
    font-size: 18px;
  }

  .container_1 {
    font-size: 0.5em;
  }

  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: column;
    gap: 25px;
    width: 85%;
  }

  .aliados_left {
    font-size: 20px;
  }

  .aliados_rigth {
    width: 100%;
    flex-wrap: nowrap;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 18px;
  }

  #banner_contact .titulo h1 {
    font-size: 70px;
    margin-bottom: 20px;
  }

  #banner_contact .titulo_wrap {
    width: 100%;
  }

  #banner_contact .intro {
    width: 90%;
  }

  #banner_contact .intro h2 span {
    font-size: 32px !important;
  }

  #banner_contact .intro p span {
    font-size: 26px !important;
  }

  #banner_contact .introPga .image-container {
    width: 100%;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: -22rem;
    width: 390px;
    height: auto;
    left: 5rem;
  }

  #sect_contacto_home {
    z-index: 9999;
    background-color: #fff;
  }

  .contacto_home_cont {
    flex-direction: column;
    width: 80%;
  }

  .text_acom h1 {
    font-size: 38px;
    line-height: 1.1em;
  }

  .contacto_interna .contacto_home_cont {
    flex-direction: column;
  }

  .contacto_home_cont {
    gap: 20px;
  }

  #sect_contacto_home .contacto_col {
    padding-right: 0%;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .contacto_col {
    width: 100%;
  }

  .contacto_col.cont_col_r {
    width: 100%;
    padding-right: 0;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 100%;
  }

  .efect .col_iz {
    width: 100%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 33px;
  }

  .efect h2 {
    font-size: 25px;
  }

  .col_der_img {
    height: 22vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: 100%;
    height: 43vh;
  }

  .efect {
    padding: 30px;
    margin-bottom: 0;
  }

  .efect h3 {
    padding: 70px 0px 30px;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 30px 0;
  }

  .caso_home {
    display: none;
  }


  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 30px 0;
  }

  .container_1 h2 {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
  }

  .container_1 h1 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_slider .owl-nav {
    top: 10%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 30px 5%;
  }

  .footer-navigation {
    text-align: center;
  }

  #boton-cta {
    height: 40px;
    line-height: 1.1em;
    font-size: 20px;
  }

  .destacados_home_animado #boton-cta {
    font-size: 15px;
  }

  .menu li:before {
    top: -11px;
  }

  .introPga {
    flex-direction: column;
  }

  #projects-gallery {
    display: none;
  }

  .wrapper {
    flex-direction: column;
  }

  #projects-list ul {
    margin: 0;
  }

  #app #navbar {
    display: none;
  }

  .destacados_home_animado {
    padding: 48px 0 !important;
  }

  .dynamic-txts-RC li {
    width: auto !important;
    margin-top: 0%;
  }

  .dynamic-txts-RC li p {
    font-size: 0.2em !important;
    line-height: 0.9em !important;
  }

  .wrapper .static-txt {
    font-size: 1.8em !important;
    letter-spacing: 0.7px !important;
  }

  .menuFooter {
    align-items: flex-end;
    gap: 30px;
  }

  .why_right {
    width: 100%;
  }

  .why_image {
    margin-top: 0px;
  }

  .dynamic-txts-RC .round {
    width: 18px;
    height: 18px;
    padding: 4px;
  }

  .round_cont_comp:last-child .round {
    display: none;
  }

  .wrapper .rueda {
    width: 83%;
    left: 25%;
  }

  .why_container {
    overflow: hidden;
  }

  .round_cont_comp .slide_txt {
    margin-top: 0px !important;
  }

  /**
  interna nosotros
  **/


  .intro_nos .titulo h1 {
    font-size: 30px;
    line-height: 1em;
    width: 100%;
    padding: 30px 0 10px;
    margin-top: 100px;
  }

  .intro_nos .intro {
    width: 100%;
    font-size: 20px;
    line-height: 1em;
  }

  .especiales_cont_txt .star {
    top: -38%;
  }

  .especiales_cont_txt .star img {
    width: 45px;
  }


  #especiales h1 {
    font-size: 30px;
    width: 100%;
  }

  .especiales_cont_txt {
    column-count: 1;
    width: 100%;
    column-gap: 0px;
  }



  .mision_txt h2 {
    font-size: 30px;
    line-height: 1em;
  }

  .timeline_title {
    width: 90%;
    position: relative;
  }

  .timeline_title h2 {
    font-size: 30px;
    line-height: 1em;
  }

  .socios_head ul li {
    font-size: 19px;
  }

  .socio_cont {
    flex-direction: column;
    width: 100%;
  }

  .socio_img_cont {
    width: 90%;
  }

  .socio_info_cont {
    width: 90%;
    gap: 10px;
  }

  .socio_info {
    width: 100%;
  }

  #especiales h2 span {
    font-size: 30px !important;
    line-height: 1.1em;
  }

  .mision_img {
    width: 90%;
    padding-left: 0%;
  }

  .mision_txt {
    width: 90%;
  }

  .mision_img .star {
    display: none;
  }

  .carousel {
    width: 100%;
    padding: 0px;
  }

  .timeline_section_cont {
    width: 90%;
    gap: 50px;
  }

  .carousel-dots .dot {
    font-size: 22px;
    gap: 30px;
  }

  .carousel-dots .dot-line {
    top: 73%;
  }

  .timeline_cont {
    width: 90%;
  }

  .brain img {
    width: 150px;
  }

  .socios_head ul {
    width: 100%;
  }

  #socios_slider_tmb {
    padding: 0 20px;
  }

  #socios .owl-dots {
    display: none;
  }

  #socios_slider .owl-nav {
    top: 35%;
  }

  .trabajo_cont {
    width: 70%;
  }

  .trabajo_txt {
    font-size: 16px;
  }

  #blog .tab.active {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  #blog .post-1 {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-2 {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-3 {
    grid-column: 1;
    grid-row: 3;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-4 {
    grid-column: 1;
    grid-row: 4;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-5 {
    grid-column: 1;
    grid-row: 5;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-6 {
    grid-column: 1;
    grid-row: 6;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-7 {
    grid-column: 1;
    grid-row: 7;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-8 {
    grid-column: 1;
    grid-row: 8;
    aspect-ratio: 1;
    height: 50vh;
  }

  #blog .post-9 {
    grid-column: 1;
    grid-row: 8;
    aspect-ratio: 1;
    height: 50vh;
  }

  .como_titulo h2 {
    font-size: 35px;
    padding: 50px 25px;
  }

  #servicios_home {
    width: 100%;
    padding: 0;
  }

  .efect h4 {
    font-size: 21px;
    width: 84%;
  }

  .accordion-inner {
    flex-direction: column;
    gap: 5px;
  }

  .accordion-inner img {
    width: 100%;
  }

  .accordion-text {
    flex: 100%;
    padding: 5%;
  }



  .especiales_cont::after {
    top: 64%;
  }

  .asterBlan {
    top: 12px;
    left: 57%;
  }

  #simulation-container {
    height: 100vh;
    background-size: 65%;
  }

  #como_somos {
    height: 100vh;
  }

  .brain {
    display: none;
  }

  .especiales_cont_txt .rueda {
    top: -70%;
  }

  .sol_img {
    width: 100%;
  }

  .logo404 img {
    width: 150px;
  }

  .img404 {
    font-size: 360px;
    margin-top: -87px;
  }

  .bloque_formas {
    margin-top: 5%;
  }

  .pj {
    justify-content: flex-start;
  }

  #search_banner {
    margin-top: -10px;
  }

  .result_container article {
    width: 42%;
    padding: 15px;
  }

  .play-button {
    display: none;
  }

  .videoBanner_cont {
    width: 90%;
  }
}


@media (min-width: 1025px) and (max-width: 1299px) {
  .socio_info {
    width: 82%;
  }

  #banner_contact .titulo h1 {
    font-size: 120px;
  }

  #banner_contact .intro h2 span {
    font-size: 28px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro p span {
    font-size: 25px !important;
    line-height: 1.1em;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: 10%;
    width: 390px;
    height: auto;
  }

  .especiales_cont::after {
    top: 64%;
  }

  .como_titulo h2 {
    padding: 50px 25px;
  }

  .asterBlan {
    top: 12px;
    left: 57%;
  }

  #simulation-container {
    height: 74vh;
    background-size: contain;
  }

  #como_somos {
    height: 80vh;
  }

  .brain {
    display: none;
  }

  #banner_serv_int .banner {
    background-size: cover;
  }


}






@media (min-width: 1300px) and (max-width: 1366px) {
  #banner_contact .titulo h1 {
    font-size: 120px;
  }

  #banner_contact .intro h2 span {
    font-size: 28px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro p span {
    font-size: 25px !important;
    line-height: 1.1em;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: 10%;
    width: 390px;
    height: auto;
  }

  .socio_info {
    width: 65%;
  }

  .img404 {
    font-size: 543px;
    margin-top: -170px;
  }

  .resulta_ti h2 a {
    font-size: 18px;
  }
}

@media (min-width: 1366px) and (max-width: 1500px) {
  .socio_info {
    width: 60%;
  }
}

/****interna nosotros******/










@media (min-width: 993px) and (max-width: 1024px) {
  .aliados_cont {
    flex-direction: column;
    gap: 20px;
  }

  .aliados_rigth {
    width: 100%;
  }

  .casos_home_cont {
    flex-direction: row;
    flex-wrap: wrap;
  }



  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: row;
    gap: 25px;
    width: 85%;
  }

  .aliados_rigth {
    width: 40%;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 33px;
  }

  .contacto_home_cont {
    width: 85%;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .contacto_col {
    width: 100%;
  }

  .contacto_col.cont_col_r {
    width: 50%;
    padding-right: 5%;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 100%;
  }

  .efect .col_iz {
    width: 50%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 2.4em;
  }

  .efect h2 {
    font-size: 1.88em;
  }

  .col_der_img {
    height: 22vh;
    margin-top: -10vh;
  }

  .col_der_img img {
    width: 100%;
    height: 43vh;
  }

  .efect {
    padding: 100px 20px;
    margin-bottom: 0;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 30px 0;
  }

  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 30px 0;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.46em;
    font-weight: 600;
    line-height: 1.2em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 30px 5%;
  }

  .footer-navigation {
    text-align: center;
  }

  .info_con {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_container {
    gap: 18px;
  }

  .redes_footer {
    align-items: center;
  }

  .redes_footer ul {
    gap: 15px;
  }

  .footer_icono {
    position: absolute;
    top: -1px;
    left: -22px;
    color: #fff;
    font-size: 17px;
  }

  .imagen_acc {
    height: 280px;
  }

  .why_container {
    display: flex;
    align-items: center;
  }

  .why_left {
    width: 70%;
    padding-right: 10%;
  }

  .main-post .FBG_blog_item_cont {
    height: 70lvh;
    height: 70vh;
  }

  .secondary-post .FBG_blog_item_cont {
    height: 35lvh;
    height: 35vh;
  }

  .aliados_left {
    flex-basis: calc(50% - 0px);
    padding-right: 40px;
  }

  .text_form p {
    font-size: 1.3em;
  }

  .acc_titulo h2 {
    font-size: 1.88em;
  }

  .why_left p {
    font-size: 1.32em;
  }

  .container_1 h2 {
    font-size: 1.88em;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
    width: 54%;
  }

  .container_1 h1 {
    font-size: 1.88em;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
  }


  .call_footer_cont h2 {
    font-size: 49px !important;
  }

  p {
    font-size: 1em !important;
  }

  .cont_form label {
    font-size: 1em !important;
  }

  .menu li:before {
    top: -12px;
  }

  .dynamic-txts-RC li p {
    font-size: 0.4em !important;
    line-height: 0.6em !important;
  }

  .dynamic-txts-RC .round {
    width: 70px;
    height: 70px;
  }

  .dynamic-txts-RC .round img {
    height: 36px;
  }

  .menuFooter {
    gap: 80px;
  }

  .menuFooter nav ul {
    display: flex;
    gap: 30px;
  }

  #banner_serv_int .banner {
    background-size: cover;
  }

  .call_footer_cont {
    width: 90%;
  }

  /**nosotros interna*/
  #especiales h1 {
    font-size: 53px;
    line-height: 1.1em;
    width: 56%;
    margin-top: 70px;
  }

  .especiales_cont_txt .rueda {
    top: -100%;
    width: 50%;
  }

  .intro_nos .titulo h1 {
    font-size: 90px;
    margin-top: 180px;
  }

  .intro_nos .intro {
    font-size: 28px;
    line-height: 1.1em;
  }

  .especiales_cont_txt .star {
    top: -79%;
    left: 57%;
  }

  .especiales_cont_txt .star img {
    width: 70px;
  }

  .especiales_cont::after {
    top: 28%;
  }

  #especiales h2 span {
    font-size: 53px !important;
    line-height: 1.1em;
  }

  .mision_cont {
    width: 100%;
    gap: 70px;
    padding-bottom: 30px;
  }

  .mision_img {
    width: 55%;
    padding-left: 6%;
  }

  .mision_txt h2 {
    font-size: 45px !important;
  }

  .mision_txt p {
    font-size: 17px;
  }

  .mision_txt {
    width: 25%;
  }

  .timeline_title h2 {
    font-size: 53px !important;
  }

  .timeline_title .star {
    top: -27%;
    right: 2%;
  }

  .timeline_title .star img {
    width: 54px;
  }

  .carousel-dots {
    height: 170px;
  }

  .socios_head ul li {
    font-size: 58px;
  }

  .socios_head {
    width: 92%;
  }

  .socio_cont {
    width: 70%;
  }

  .socios_head ul {
    width: 80%;
  }


  .como_titulo h2 {
    font-size: 53px !important;
  }

  .antecedentes_cont_left {
    width: 70%;
  }

  .antecedentes_cont_left h2 {
    font-size: 50px;
  }

  .problema_cont {
    width: 85%;
  }

  .pj img {
    width: 420px;
  }

  .bloque_formas {
    width: 80%;
    margin: -117px auto 0;
    left: 0;
    right: 0;
    float: none;
  }

  .pj {
    margin-top: -31%;
  }

  .carousel {
    width: 100%;
  }

  .quehacemos_tarj {
    padding: 15px 15px 50px;
  }

  .carousel-dots .dot {
    font-size: 30px;
  }

  .menuFooter nav ul li a {
    font-size: 19px;
  }

  .especiales_cont_txt .rueda {
    left: 57%;
  }
}







@media (min-width: 1025px) and (max-width: 1299px) {
  .aliados_cont {
    flex-direction: column;
    gap: 20px;
  }

  .aliados_rigth {
    width: 100%;
  }

  .casos_home_cont {
    flex-direction: row;
    flex-wrap: wrap;
  }



  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: column;
    gap: 25px;
    width: 85%;
  }

  .aliados_rigth {
    width: 100%;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 33px;
  }

  .contacto_home_cont {
    flex-direction: row;
    width: 85%;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 100%;
  }

  .efect .col_iz {
    width: 70%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 2.4em;
  }

  .efect h2 {
    font-size: 1.88em;
  }

  .col_der_img {
    height: 22vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: 100%;
    height: 43vh;
  }

  .efect {
    padding: 150px 20px 50px;
    margin-bottom: 0;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 30px 0;
  }

  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 30px 0;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.6em;
    font-weight: 600;
    line-height: 1.2em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 30px 5%;
  }

  .footer-navigation {
    text-align: center;
  }

  .info_con {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_container {
    gap: 18px;
  }

  .redes_footer {
    align-items: center;
  }

  .redes_footer ul {
    gap: 15px;
  }

  .footer_icono {
    position: absolute;
    top: -1px;
    left: -22px;
    color: #fff;
    font-size: 17px;
  }

  .imagen_acc {
    height: 280px;
  }

  .why_container {
    display: flex;
    align-items: center;
  }

  .why_left {
    width: 70%;
    padding-right: 10%;
    padding-left: 5%;
  }

  .main-post .FBG_blog_item_cont {
    height: 100lvh;
    height: 100vh;
  }

  .secondary-post .FBG_blog_item_cont {
    height: 50lvh;
    height: 50vh;
  }

  .aliados_left {
    flex-basis: calc(50% - 0px);
    padding-right: 40px;
  }

  .text_form p {
    font-size: 1.3em;
  }

  .acc_titulo h2 {
    font-size: 1.88em;
  }

  .why_left p {
    font-size: 1.32em;
  }

  .container_1 h2 {
    font-size: 1.88em;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
    width: 54%;
  }

  .container_1 h1 {
    font-size: 1.88em;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
  }

  h2 {
    font-size: 1.6em !important;
    line-height: 1em;
  }

  .call_footer_cont h2 {
    font-size: 56px !important;
  }

  p {
    font-size: 1.1em !important;
  }

  .dynamic-txts-RC li span p {
    font-size: inherit !important;
  }

  .cont_form label {
    font-size: 1em !important;

  }

  .FBG_blog_info_cont {
    width: 50%;
  }

  .aliados_rigth_1 {
    padding-top: 100px;
  }

  .text_acom {
    padding-right: 0%;
  }

  .dynamic-txts-RC li p {
    font-size: 1.8em !important;
  }

  .dynamic-txts-RC li {
    font-size: 2.5em !important;
  }

  .dynamic-txts-RC .round {
    width: 88px;
    height: 88px;
  }

  #sect_contacto_home .contacto_col {
    padding-right: 0%;
  }

  .menuFooter::before {
    left: -5%;
  }

  .menuFooter::after {
    right: -5%;
  }

  .intro_nos .titulo h1 {
    font-size: 70px;
  }

  #banner_serv_int .banner {
    background-size: cover;
  }

  .logo404 img {
    width: 150px;
  }

  .img404 {
    font-size: 360px;
    margin-top: -87px;
  }

  .bloque_formas {
    margin-top: 5%;
  }

  .pj {
    justify-content: flex-start;
  }

  /**nosotros interna*/
  #especiales h1 {
    font-size: 53px;
    line-height: 1.1em;
    width: 56%;
    margin-top: 70px;
  }

  .especiales_cont_txt .rueda {
    top: -100%;
    width: 50%;
  }

  .intro_nos .titulo h1 {
    font-size: 90px;
    margin-top: 180px;
  }

  .intro_nos .intro {
    font-size: 28px;
    line-height: 1.1em;
  }

  .especiales_cont_txt .star {
    top: -79%;
    left: 57%;
  }

  .especiales_cont_txt .star img {
    width: 70px;
  }

  .especiales_cont::after {
    top: 28%;
  }

  #especiales h2 span {
    font-size: 53px !important;
    line-height: 1.1em;
  }

  .mision_cont {
    width: 100%;
    gap: 70px;
    padding-bottom: 30px;
  }

  .mision_img {
    width: 55%;
    padding-left: 6%;
  }

  .mision_txt h2 {
    font-size: 45px !important;
  }

  .mision_txt p {
    font-size: 17px;
  }

  .mision_txt {
    width: 25%;
  }

  .timeline_title h2 {
    font-size: 53px !important;
  }

  .timeline_title .star {
    top: -27%;
    right: 2%;
  }

  .timeline_title .star img {
    width: 54px;
  }

  .carousel-dots {
    height: 170px;
  }

  .socios_head ul li {
    font-size: 58px;
  }

  .socios_head {
    width: 92%;
  }

  .socio_cont {
    width: 70%;
  }

  .socios_head ul {
    width: 80%;
  }

  #como_somos {
    height: 90vh;
  }

  #simulation-container {
    height: 90vh;
  }

  .como_titulo h2 {
    font-size: 53px !important;
  }

  .antecedentes_cont_left {
    width: 70%;
    flex-direction: column;
  }

  .antecedentes_cont_left_p {
    width: 100%;
  }

  .antecedentes_cont_left h2 {
    font-size: 50px;
  }

  .problema_cont {
    width: 85%;
  }

  .pj img {
    width: 420px;
  }

  .bloque_formas {
    width: 80%;
    margin: -117px auto 0;
    left: 0;
    right: 0;
    float: none;
  }

  .pj {
    margin-top: -31%;
  }

  .carousel {
    width: 100%;
  }

  .quehacemos_tarj {
    padding: 15px 15px 50px;
  }

  .carousel-dots .dot {
    font-size: 30px;
  }
}





















@media (min-width: 1300px) and (max-width: 1366px) {
  .aliados_cont {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .aliados_rigth {
    width: 100%;
  }

  .casos_home_cont {
    flex-direction: row;
    flex-wrap: wrap;
  }



  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: row;
    gap: 25px;
    width: 80%;
  }

  .aliados_rigth {
    width: 70%;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 33px;
  }

  .contacto_home_cont {
    flex-direction: row;
    width: 75%;
    padding: 100px 0 50px;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 40%;
  }

  .efect .col_iz {
    width: 60%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 4em;
  }

  .efect h2 {
    font-size: 1.9em;
  }

  .efect h3 {
    font-size: 2.5em;
  }

  .titulofl {
    font-size: 2.5em !important;
  }

  .col_der_img {
    height: 30vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: auto !important;
    height: 66vh;
  }

  .efect {
    padding: 150px 20px 60px;
    margin-bottom: 0;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 50px 0;
  }

  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 100px 0;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.6em;
    font-weight: 600;
    line-height: 1em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 70px 5%;
  }

  .footer-navigation {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .info_con {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_container {
    gap: 18px;
  }

  .redes_footer {
    align-items: center;
  }

  .redes_footer ul {
    gap: 15px;
  }

  .footer_icono {
    position: absolute;
    top: -1px;
    left: -22px;
    color: #fff;
    font-size: 17px;
  }

  .imagen_acc {
    height: 210%;
    position: absolute;
    top: -77%;
    right: 5%;
    width: 30%;
  }

  .acc_content p {
    font-size: 1.2em !important;
    width: 63%;
  }

  .why_container {
    display: flex;
    align-items: center;
  }

  .why_left {
    width: 55%;
    padding-right: 8%;
    padding-left: 5%;
  }

  .main-post .FBG_blog_item_cont {
    height: 100lvh;
    height: 100vh;
  }

  .secondary-post .FBG_blog_item_cont {
    height: 50lvh;
    height: 50vh;
  }

  .aliados_left {
    flex-basis: calc(30% - 0px);
    padding-right: 0%;
  }

  .text_form p {
    font-size: 1.3em;
  }

  .acc_titulo h2 {
    font-size: 2.1em !important;
  }

  .why_left p {
    font-size: 1.32em;
  }

  .container_1 h2 {
    font-size: 2.7em;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
    width: 54%;
  }

  .container_1 h1 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
    width: 70%;
  }

  .cont_form label {
    font-size: 1em !important;

  }

  .FBG_blog_info_cont {
    width: 50%;
  }

  .textoCta .container-cta {
    display: flex;
    justify-content: flex-start;
  }

  .accordion.first .acc_titulo {
    border: none !important;
  }

  .accordion.last {
    border-bottom: 1px solid #949494 !important;
  }

  .acc_numero {
    color: #949494;
    font-size: 1.3em;
    font-weight: 900;
  }

  .why_left h2 {
    font-size: 3em !important;

  }

  .menuFooter nav ul {
    width: 80%;
    display: flex;
    justify-content: space-between;
  }

  #clientes_home {
    padding: 100px 0;
  }

  #servicios .servicios_container {
    height: 70vh;
  }

  .text_acom h1 {
    font-size: 65px;
    line-height: 1.1em;
    margin: 0;
  }

  .why_right {
    width: 45%;
  }

  .dynamic-txts-RC li p {
    font-size: 0.7em !important;
  }


  /**nosotros interna*/
  #especiales h1 {
    font-size: 53px;
    line-height: 1.1em;
    width: 42%;
  }

  .especiales_cont_txt .rueda {
    top: -100%;
    width: 50%;
  }

  .intro_nos .titulo h1 {
    font-size: 90px;
    margin-top: 180px;
  }

  .intro_nos .intro {
    font-size: 28px;
    line-height: 1.1em;
  }

  .especiales_cont_txt .star {
    top: -79%;
    left: 57%;
  }

  .especiales_cont_txt .star img {
    width: 70px;
  }

  .especiales_cont::after {
    top: 28%;
  }

  #especiales h2 span {
    font-size: 53px !important;
    line-height: 1.1em;
  }

  .mision_cont {
    width: 100%;
    gap: 70px;
    padding-bottom: 30px;
  }

  .mision_img {
    width: 60%;
    padding-left: 12%;
  }

  .mision_txt h2 {
    font-size: 53px;
  }

  .mision_txt p {
    font-size: 17px;
  }

  .mision_txt {
    width: 20%;
  }

  .timeline_title h2 {
    font-size: 53px;
  }

  .timeline_title .star {
    top: -27%;
    right: 2%;
  }

  .timeline_title .star img {
    width: 54px;
  }

  .carousel-dots {
    height: 170px;
  }

  .socios_head ul li {
    font-size: 58px;
  }

  .socios_head {
    width: 92%;
  }

  .socio_cont {
    width: 70%;
  }

  .socios_head ul {
    width: 80%;
  }

  #como_somos {
    height: 90vh;
  }

  #simulation-container {
    height: 90vh;
  }

  .como_titulo h2 {
    font-size: 73px;
  }

  .antecedentes_cont_left {
    width: 70%;
  }

  .antecedentes_cont_left h2 {
    font-size: 50px;
  }

  .problema_cont {
    width: 85%;
  }

  .pj img {
    width: 420px;
  }

  .bloque_formas {
    width: 80%;
    margin: -117px auto 0;
    left: 0;
    right: 0;
    float: none;
  }

  .pj {
    margin-top: -31%;
  }

  .carousel {
    width: 100%;
  }

  .quehacemos_tarj {
    padding: 15px 15px 50px;
  }
}






















































@media (min-width: 1366px) and (max-width: 1500px) {
  .aliados_cont {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .aliados_rigth {
    width: 100%;
  }

  .casos_home_cont {
    flex-direction: row;
    flex-wrap: wrap;
  }



  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: row;
    gap: 25px;
    width: 80%;
  }

  .aliados_rigth {
    width: 70%;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 33px;
  }

  .socio_info h2 {
    font-size: 23px;
  }

  .contacto_home_cont {
    flex-direction: row;
    width: 75%;
    padding: 100px 0 50px;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 40%;
  }

  .efect .col_iz {
    width: 60%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 4em;
  }

  .efect h2 {
    font-size: 1.9em;
  }

  .efect h3 {
    font-size: 2.5em;
  }

  .titulofl {
    font-size: 2.5em;
  }

  .col_der_img {
    height: 30vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: auto !important;
    height: 66vh;
  }

  .efect {
    padding: 150px 20px 60px;
    margin-bottom: 0;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 50px 0;
  }

  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 100px 0;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.6em;
    font-weight: 600;
    line-height: 1em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 70px 5%;
  }

  .footer-navigation {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .info_con {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_container {
    gap: 18px;
  }

  .redes_footer {
    align-items: center;
  }

  .redes_footer ul {
    gap: 15px;
  }

  .footer_icono {
    position: absolute;
    top: -1px;
    left: -22px;
    color: #fff;
    font-size: 17px;
  }

  .imagen_acc {
    height: 210%;
    position: absolute;
    top: -77%;
    right: 5%;
    width: 30%;
  }

  .acc_content p {
    font-size: 1.2em !important;
    width: 63%;
  }

  .why_container {
    display: flex;
    align-items: center;
  }

  .why_left {
    width: 55%;
    padding-right: 8%;
    padding-left: 5%;
  }

  .main-post .FBG_blog_item_cont {
    height: 100lvh;
    height: 100vh;
  }

  .secondary-post .FBG_blog_item_cont {
    height: 50lvh;
    height: 50vh;
  }

  .aliados_left {
    flex-basis: calc(30% - 0px);
    padding-right: 0%;
  }

  .text_form p {
    font-size: 1.3em;
  }

  .acc_titulo h2 {
    font-size: 2.1em !important;
  }

  .why_left p {
    font-size: 1.32em;
  }

  .container_1 h2 {
    font-size: 2.7em;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
    width: 54%;
  }

  .container_1 h1 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
    width: 70%;
  }

  .cont_form label {
    font-size: 1em !important;

  }

  .FBG_blog_info_cont {
    width: 50%;
  }


  .textoCta .container-cta {
    display: flex;
    justify-content: flex-start;
  }

  .accordion.first .acc_titulo {
    border: none !important;
  }

  .accordion.last {
    border-bottom: 1px solid #949494 !important;
  }

  .acc_numero {
    color: #949494;
    font-size: 1.3em;
    font-weight: 900;
  }

  .why_left h2 {
    font-size: 3em !important;
  }

  .menuFooter nav ul {
    width: 80%;
    display: flex;
    justify-content: space-between;
  }

  #clientes_home {
    padding: 100px 0;
  }

  #servicios .servicios_container {
    height: 70vh;
  }

  .text_acom h1 {
    font-size: 65px;
    line-height: 1.1em;
    margin: 0;
  }

  #sect_contacto_home .contacto_col {
    padding-right: 5%;
  }

  .serv_intro h1 {
    font-size: 60px;
  }

  .intro_txt_cont {
    font-size: 18px;
  }

  .why_right {
    width: 45%;
  }

  .dynamic-txts-RC li p {
    font-size: 0.7em !important;
  }


  /**nosotros interna*/
  #especiales h1 {
    font-size: 53px;
    line-height: 1.1em;
  }

  .especiales_cont_txt .rueda {
    top: -100%;
    width: 50%;
  }

  .intro_nos .titulo h1 {
    font-size: 90px;
    margin-top: 180px;
  }

  .intro_nos .intro {
    font-size: 28px;
    line-height: 1.1em;
  }

  .especiales_cont_txt .star {
    top: -79%;
    left: 57%;
  }

  .especiales_cont_txt .star img {
    width: 70px;
  }

  .especiales_cont::after {
    top: 28%;
  }

  #especiales h2 span {
    font-size: 53px !important;
    line-height: 1.1em;
  }

  .mision_cont {
    width: 100%;
    gap: 70px;
    padding-bottom: 30px;
  }

  .mision_img {
    width: 60%;
    padding-left: 12%;
  }

  .mision_txt h2 {
    font-size: 53px;
  }

  .mision_txt p {
    font-size: 17px;
  }

  .mision_txt {
    width: 20%;
  }

  .timeline_title h2 {
    font-size: 53px;
  }

  .timeline_title .star {
    top: -27%;
    right: 2%;
  }

  .timeline_title .star img {
    width: 54px;
  }

  .carousel-dots {
    height: 170px;
  }

  .socios_head ul li {
    font-size: 58px;
  }

  .socios_head ul li:last-child {
    margin-top: -10px;
  }

  .socios_head {
    width: 92%;
  }

  .socio_cont {
    width: 70%;
  }

  .socios_head ul {
    width: 68%;
  }

  #como_somos {
    height: 90vh;
  }

  #simulation-container {
    height: 90vh;
  }

  .como_titulo h2 {
    font-size: 73px;
  }

  .antecedentes_cont_left {
    width: 70%;
  }

  .antecedentes_cont_left h2 {
    font-size: 50px;
  }

  .problema_cont {
    width: 85%;
  }

  #socios_slider .owl-prev {
    top: 140px;
  }

  #socios_slider .owl-next {
    top: 140px;
  }

  .problema_cont_left img {
    margin-top: -50px;
  }

  .texto_problema {
    margin-top: 0px;
  }

  .result_container .entry-summary p {
    font-size: 15px;
    line-height: 1em;
  }

  .resulta_ti h2 {
    line-height: 1em;
  }

  .resulta_ti h2 a {
    font-size: 20px;
  }

  .contacto_cont_rgt {
    padding: 2% 5% !important;
  }

  .portfolio_content {
    width: 60%;
  }

}









@media (min-width: 1501px) and (max-width: 1599px) {
  .aliados_cont {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .aliados_rigth {
    width: 100%;
  }

  .casos_home_cont {
    flex-direction: row;
    flex-wrap: wrap;
  }



  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: row;
    gap: 25px;
    width: 80%;
  }

  .aliados_rigth {
    width: 70%;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 33px;
  }

  .socio_info h2 {
    font-size: 23px;
  }

  .contacto_home_cont {
    flex-direction: row;
    width: 75%;
    padding: 100px 0 50px;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 40%;
  }

  .efect .col_iz {
    width: 60%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 4em;
  }

  .efect h2 {
    font-size: 1.9em;
  }

  .efect h3 {
    font-size: 2.5em;
  }

  .titulofl {
    font-size: 2.5em;
  }

  .col_der_img {
    height: 30vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: auto !important;
    height: 66vh;
  }

  .efect {
    padding: 150px 20px 60px;
    margin-bottom: 0;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 50px 0;
  }

  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 100px 0;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.6em;
    font-weight: 600;
    line-height: 1em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 70px 5%;
  }

  .footer-navigation {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .info_con {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_container {
    gap: 18px;
  }

  .redes_footer {
    align-items: center;
  }

  .redes_footer ul {
    gap: 15px;
  }

  .footer_icono {
    position: absolute;
    top: -1px;
    left: -22px;
    color: #fff;
    font-size: 17px;
  }

  .imagen_acc {
    height: 210%;
    position: absolute;
    top: -77%;
    right: 5%;
    width: 30%;
  }

  .acc_content p {
    font-size: 1.2em !important;
    width: 63%;
  }

  .why_container {
    display: flex;
    align-items: center;
  }

  .why_left {
    width: 55%;
    padding-right: 8%;
    padding-left: 5%;
  }

  .main-post .FBG_blog_item_cont {
    height: 100lvh;
    height: 100vh;
  }

  .secondary-post .FBG_blog_item_cont {
    height: 50lvh;
    height: 50vh;
  }

  .aliados_left {
    flex-basis: calc(30% - 0px);
    padding-right: 0%;
  }

  .text_form p {
    font-size: 1.3em;
  }

  .acc_titulo h2 {
    font-size: 2.1em !important;
  }

  .why_left p {
    font-size: 1.32em;
  }

  .container_1 h2 {
    font-size: 2.7em;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
    width: 54%;
  }

  .container_1 h1 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
    width: 70%;
  }

  .cont_form label {
    font-size: 1em !important;

  }

  .FBG_blog_info_cont {
    width: 50%;
  }

  .aliados_rigth_1 {
    padding: 40px 15px 40px;
  }


  .textoCta .container-cta {
    display: flex;
    justify-content: flex-start;
  }

  .accordion.first .acc_titulo {
    border: none !important;
  }

  .accordion.last {
    border-bottom: 1px solid #949494 !important;
  }

  .acc_numero {
    color: #949494;
    font-size: 1.3em;
    font-weight: 900;
  }

  .why_left h2 {
    font-size: 3em !important;
  }

  .menuFooter nav ul {
    width: 80%;
    display: flex;
    justify-content: space-between;
  }

  #clientes_home {
    padding: 100px 0;
  }

  #servicios .servicios_container {
    height: 70vh;
  }

  .text_acom h1 {
    font-size: 65px;
    line-height: 1.1em;
    margin: 0;
  }

  #sect_contacto_home .contacto_col {
    padding-right: 5%;
  }

  .serv_intro h1 {
    font-size: 60px;
  }

  .intro_txt_cont {
    font-size: 18px;
  }

  .why_right {
    width: 45%;
  }

  .dynamic-txts-RC li p {
    font-size: 0.7em !important;
  }


  /**nosotros interna*/
  #especiales h1 {
    font-size: 53px;
    line-height: 1.1em;
  }

  .especiales_cont_txt .rueda {
    top: -100%;
    width: 50%;
  }

  .intro_nos .titulo h1 {
    font-size: 90px;
    margin-top: 180px;
  }

  .intro_nos .intro {
    font-size: 28px;
    line-height: 1.1em;
  }

  .especiales_cont_txt .star {
    top: -79%;
    left: 57%;
  }

  .especiales_cont_txt .star img {
    width: 70px;
  }

  .especiales_cont::after {
    top: 28%;
  }

  #especiales h2 span {
    font-size: 53px !important;
    line-height: 1.1em;
  }

  .mision_cont {
    width: 100%;
    gap: 70px;
    padding-bottom: 30px;
  }

  .mision_img {
    width: 60%;
    padding-left: 12%;
  }

  .mision_txt h2 {
    font-size: 53px;
  }

  .mision_txt p {
    font-size: 17px;
  }

  .mision_txt {
    width: 20%;
  }

  .timeline_title h2 {
    font-size: 53px;
  }

  .timeline_title .star {
    top: -27%;
    right: 2%;
  }

  .timeline_title .star img {
    width: 54px;
  }

  .carousel-dots {
    height: 170px;
  }

  .socios_head ul li {
    font-size: 58px;
  }

  .socios_head ul li:last-child {
    margin-top: -10px;
  }

  .socios_head {
    width: 92%;
  }

  .socio_cont {
    width: 70%;
  }

  .socios_head ul {
    width: 68%;
  }

  #como_somos {
    height: 90vh;
  }

  #simulation-container {
    height: 90vh;
  }

  .como_titulo h2 {
    font-size: 73px;
  }

  .antecedentes_cont_left {
    width: 70%;
  }

  .antecedentes_cont_left h2 {
    font-size: 50px;
  }

  .problema_cont {
    width: 85%;
  }

  #socios_slider .owl-prev {
    top: 140px;
  }

  #socios_slider .owl-next {
    top: 140px;
  }

  .problema_cont_left img {
    margin-top: -50px;
  }

  .texto_problema {
    margin-top: 0px;
  }

  .result_container .entry-summary p {
    font-size: 15px;
    line-height: 1em;
  }

  .resulta_ti h2 {
    line-height: 1em;
  }

  .resulta_ti h2 a {
    font-size: 20px;
  }
}







/**** punto de corte pantalla 1366 x 641*****/
@media (min-width: 1300px) and (max-width: 1600px) and (min-height: 641px) and (max-height: 720px) {
  .aliados_cont {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .aliados_rigth {
    width: 100%;
  }

  .casos_home_cont {
    flex-direction: row;
    flex-wrap: wrap;
  }



  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: row;
    gap: 25px;
    width: 80%;
  }

  .aliados_rigth {
    width: 70%;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 33px;
  }

  .socio_info h2 {
    font-size: 23px;
  }

  .contacto_home_cont {
    flex-direction: row;
    width: 75%;
    padding: 100px 0 50px;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 40%;
  }

  .efect .col_iz {
    width: 64%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 3em;
  }

  .efect h2 {
    font-size: 1.5em;
  }

  .efect h3 {
    font-size: 3.3em;
    padding-top: 50px;
  }

  .efect h4 {
    font-size: 2.9em;
  }

  .titulofl {
    font-size: 3.3em;
    padding: 40px 50px 30px;
  }

  .col_der_img {
    height: 40vh;
    margin-top: -23vh;
  }

  .col_der_img img {
    width: auto !important;
    height: 77vh;
  }

  .efect {
    padding: 150px 20px 50px;
    margin-bottom: 0;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 50px 0;
  }

  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 100px 0;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.6em;
    font-weight: 600;
    line-height: 1em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 70px 5%;
  }

  .footer-navigation {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .info_con {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_container {
    gap: 18px;
  }

  .redes_footer {
    align-items: center;
  }

  .redes_footer ul {
    gap: 15px;
  }

  .footer_icono {
    position: absolute;
    top: -1px;
    left: -22px;
    color: #fff;
    font-size: 17px;
  }

  .imagen_acc {
    height: 210%;
    position: absolute;
    top: -77%;
    right: 5%;
    width: 30%;
  }

  .acc_content p {
    font-size: 1.2em !important;
    width: 63%;
  }

  .why_container {
    display: flex;
    align-items: center;
  }

  .why_left {
    width: 55%;
    padding-right: 8%;
    padding-left: 5%;
  }

  .main-post .FBG_blog_item_cont {
    height: 100lvh;
    height: 100vh;
  }

  .secondary-post .FBG_blog_item_cont {
    height: 50lvh;
    height: 50vh;
  }

  .aliados_left {
    flex-basis: calc(30% - 0px);
    padding-right: 0%;
  }

  .text_form p {
    font-size: 1.13em;
  }

  #sect_contacto_home .contacto_col {
    padding-right: 11%;
  }

  .acc_titulo h2 {
    font-size: 2.1em !important;
  }

  .why_left p {
    font-size: 1.32em;
  }

  .container_1 h2 {
    font-size: 2.7em;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
    width: 77%;
  }

  .container_1 h1 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
    width: 70%;
  }

  .cont_form label {
    font-size: 1em !important;

  }

  .FBG_blog_info_cont {
    width: 50%;
  }

  .aliados_rigth_1 {
    padding: 28px 15px;
  }


  .textoCta .container-cta {
    display: flex;
    justify-content: flex-start;
  }

  .accordion.first .acc_titulo {
    border: none !important;
  }

  .accordion.last {
    border-bottom: 1px solid #949494 !important;
  }

  .acc_numero {
    color: #949494;
    font-size: 1.3em;
    font-weight: 900;
  }

  .why_left h2 {
    font-size: 3em !important;

  }

  .menuFooter nav ul {
    width: 80%;
    display: flex;
    justify-content: space-between;
  }

  #clientes_home {
    padding: 100px 0;
  }

  #servicios .servicios_container {
    height: 70vh;
  }

  .text_acom h1 {
    font-size: 51px;
    line-height: 1.1em;
    margin: 0;
  }

  .why_right {
    width: 45%;
  }

  .dynamic-txts-RC li p {
    font-size: 0.7em !important;
  }

  .project-content p {
    font-size: 1.3em;
  }

  .carousel-dots {
    height: 170px;
  }

  .socios_head ul li {
    font-size: 47px;
  }

  .brain img {
    width: 90px;
  }

  .socios_head ul li:last-child {
    margin-top: -10px;
  }

  .socio_cont {
    width: 70%;
  }

  #como_somos {
    height: 90vh;
  }

  #simulation-container {
    height: 100vh;
  }

  #timeline_section {
    margin-top: 100px;
  }

  .como_titulo h2 {
    font-size: 73px;
  }

  #simulation-container {
    background-size: 46%;
  }

  .antecedentes_cont_left {
    width: 80%;
  }

  .antecedentes_cont_left_p {
    width: 50%;
  }

  .antecedentes_cont_left_p p {
    margin-bottom: 15px !important;
  }

  .antecedentes_cont_left_tl {
    width: 50%;
  }

  .antecedentes_cont_left_tl h2 {
    font-size: 47px;
  }

  .problema_cont {
    width: 85%;
  }

  .problema_cont_left img {
    margin-top: -50px;
  }

  .texto_problema {
    margin-top: 0px;
  }

  .result_container .entry-summary p {
    font-size: 15px;
    line-height: 1em;
  }

  .resulta_ti h2 {
    line-height: 1em;
  }

  .resulta_ti h2 a {
    font-size: 18px;
  }

  .logo_caso {
    width: 9%;
    display: flex;
    justify-content: center;
    padding: 6% 0;
  }

  .aliados_rigth_1 {
    aspect-ratio: 72 / 100;
  }


  .contacto_cont_rgt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 3%;
  }
}















































@media (min-width: 1601px) {
  .aliados_cont {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .aliados_rigth {
    width: 100%;
  }

  .casos_home_cont {
    flex-direction: row;
    flex-wrap: wrap;
  }



  a.boton_standar {
    font-size: 2em;
  }

  .aliados_cont {
    flex-direction: row;
    gap: 25px;
    width: 76%;
  }

  .aliados_rigth {
    width: 70%;
  }

  .track .content {
    font-size: 70px;
  }

  .marquee {
    height: 115px;
  }

  .logo_hover img {
    width: 100%;
  }

  .clientes_slider .owl-item img {
    max-width: 150px;
  }

  .socio_info h1 {
    font-size: 35px;
  }

  .contacto_home_cont {
    flex-direction: row;
    width: 75%;
    padding: 80px 0 50px;
  }

  .cont_form .form_col {
    width: 100%;
  }

  .cont_form {
    flex-direction: column;
  }

  .body-wrap {
    width: 40%;
  }

  .efect .col_iz {
    width: 56%;
  }

  .efect .col_der {
    width: 100%;
  }

  .efect h1 {
    font-size: 3.9em;
  }

  .efect h2 {
    font-size: 1.3em;
  }

  .efect h3 {
    font-size: 3.3em;
  }

  .efect h4 {
    font-size: 2.5em;
  }

  .titulofl {
    font-size: 3.3em;
  }

  .project-content p {
    font-size: 1.3em;
  }

  .col_der_img {
    height: 30vh;
    margin-top: -19vh;
  }

  .col_der_img img {
    width: auto !important;
    height: 66vh;
  }

  .efect {
    padding: 6% 20px 0;
    margin-bottom: 0;
  }

  .CTA_cont {
    padding: 0px 0 0px;
  }

  #aliados_home {
    padding: 50px 0;
  }

  #boton-cta {
    padding: 15px 14px;
  }

  .blog_container_1 {
    padding: 0px 0;
  }

  .blog_container_1 {
    width: 85%;
    padding: 100px 0;
  }

  .aliados_left span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.7em;
    font-weight: 600;
    line-height: 1em;
  }

  .clientes_cont {
    width: 80%;
  }

  .clientes_slider .owl-nav {
    left: -10%;
    width: 120%;
  }

  .clientes_cont {
    width: 70%;
    padding: 30px 0;
  }

  #servicios {
    padding: 70px 5%;
  }

  .footer-navigation {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .info_con {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_container {
    gap: 18px;
  }

  .redes_footer {
    align-items: center;
  }

  .redes_footer ul {
    gap: 15px;
  }

  .footer_icono {
    position: absolute;
    top: -1px;
    left: -22px;
    color: #fff;
    font-size: 17px;
  }

  .imagen_acc {
    height: 210%;
    position: absolute;
    top: -77%;
    right: 5%;
    width: 30%;
  }

  .acc_content p {
    font-size: 1.2em !important;
    width: 63%;
  }

  .why_container {
    display: flex;
    align-items: center;
  }

  .why_left {
    width: 55%;
    padding-right: 20%;
    padding-left: 5%;
  }

  .main-post .FBG_blog_item_cont {
    height: 100lvh;
    height: 100vh;
  }

  .secondary-post .FBG_blog_item_cont {
    height: 50lvh;
    height: 50vh;
  }

  .aliados_left {
    flex-basis: calc(30% - 0px);
    padding-right: 0%;
  }

  .text_form p {
    font-size: 1.13em;
  }

  .acc_titulo h2 {
    font-size: 2.1em !important;
  }

  .why_left p {
    font-size: 1.14em;
  }

  .container_1 h2 {
    font-size: 2.7em;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: 0.76px;
    width: 54%;
  }

  .container_1 h1 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: 1.02px;
    width: 70%;
  }

  .cont_form label {
    font-size: 1em !important;

  }

  .FBG_blog_info_cont {
    width: 50%;
  }

  .aliados_rigth_1 {
    padding: 15px 15px;
  }


  .textoCta .container-cta {
    display: flex;
    justify-content: flex-start;
  }

  .accordion.first .acc_titulo {
    border: none !important;
  }

  .accordion.last {
    border-bottom: 1px solid #949494 !important;
  }

  .acc_numero {
    color: #949494;
    font-size: 1.3em;
    font-weight: 900;
  }

  .why_left h2 {
    font-size: 3.35em !important;
  }

  .menuFooter nav ul {
    width: 80%;
    display: flex;
    justify-content: space-between;
  }

  #clientes_home {
    padding: 100px 0;
  }



  .text_acom h1 {
    font-size: 65px;
    line-height: 1.1em;
    margin: 0;
  }

  .dynamic-txts-RC li p {
    font-size: 1em !important;
  }

  .carousel-dots {
    height: 130px;
  }
}



































/* Estilo predeterminado */
#logo a {
  opacity: 1;
  transition: all 0.3s ease;
}

#logo .logo_scroll {
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.logo_scroll img {
  max-width: 80px !important;
}

/* Estilo al hacer scroll */
#logo.scrolled a {
  opacity: 0;
}

#logo.scrolled .logo_scroll {
  opacity: 1;
}

#site-header.scrolled {
  padding: 0 5%;
  transition: all 0.3s ease;
  background-color: #ffffffe0;
}













.img_acomp {
  position: fixed !important;
  z-index: 9999999999999;
  display: none;
}


#sect_contacto_home {
  z-index: 9999;
  background-color: #fff;
}

.menuFooter {
  z-index: 9999;
}









#projects-gallery {
  padding: 0 5vw;
  margin-bottom: 5vh;
  margin-inline-start: auto;
  overflow: hidden;
  width: 100%;
  display: grid;
  transition: var(--transition);
  height: 600px;
  padding-top: 100px;
}







/****

menu negro

****/


.page-template-inicio .close_icon_scroll img {
  filter: invert(1);
}

.single-post .close_icon_scroll img {
  filter: invert(1);
}

.page-template-page-nosotros .ham_icon img {
  filter: invert(1);
}

.page-template-page-nosotros .lenguaje_container a {
  color: #000;
}

.page-template-page-nosotros .lenguaje_container .divider {
  color: #000;
}

.page-template-page-nosotros .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-nosotros .search_show img {
  opacity: 0;
}

.page-template-page-nosotros .feelingHeader_left img {
  opacity: 0;
}

.page-template-page-nosotros .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-nosotros .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page-nosotros .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page-nosotros .menu_span {
  right: 47px;
  color: #000000;
}









.page-template-page_contact .ham_icon img {
  filter: invert(1);
}

.page-template-page_contact .lenguaje_container a {
  color: #000;
}

.page-template-page_contact .lenguaje_container .divider {
  color: #000;
}

.page-template-page_contact .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page_contact .search_show img {
  opacity: 0;
}

.page-template-page_contact .feelingHeader_left img {
  opacity: 0;
}

.page-template-page_contact .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page_contact .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page_contact .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page_contact .menu_span {
  right: 47px;
  color: #000000;
}








.page-template-page-blog .ham_icon img {
  filter: invert(1);
}

.page-template-page-blog .lenguaje_container a {
  color: #000;
}

.page-template-page-blog .lenguaje_container .divider {
  color: #000;
}

.page-template-page-blog .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-blog .search_show img {
  opacity: 0;
}

.page-template-page-blog .feelingHeader_left img {
  opacity: 0;
}

.page-template-page-blog .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-blog .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page-blog .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page-blog .menu_span {
  right: 47px;
  color: #000000;
}






.page-template-page-casos .ham_icon img {
  filter: invert(1);
}

.page-template-page-casos .lenguaje_container a {
  color: #000;
}

.page-template-page-casos .lenguaje_container .divider {
  color: #000;
}

.page-template-page-casos .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-casos .search_show img {
  opacity: 0;
}

.page-template-page-casos .feelingHeader_left img {
  opacity: 0;
}

.page-template-page-casos .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-casos .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page-casos .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page-casos .menu_span {
  right: 47px;
  color: #000000;
}



















.single-casos_de_exito .ham_icon img {
  filter: invert(1);
}

.single-casos_de_exito .lenguaje_container a {
  color: #000;
}

.single-casos_de_exito .lenguaje_container .divider {
  color: #000;
}

.single-casos_de_exito .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.single-casos_de_exito .search_show img {
  opacity: 0;
}

.single-casos_de_exito .feelingHeader_left img {
  opacity: 0;
}

.single-casos_de_exito .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.single-casos_de_exito .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.single-casos_de_exito .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.single-casos_de_exito .menu_span {
  right: 47px;
  color: #000000;
}














.error404 .ham_icon img {
  filter: invert(1);
}

.error404 .lenguaje_container a {
  color: #000;
}

.error404 .lenguaje_container .divider {
  color: #000;
}

.error404 .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.error404 .search_show img {
  opacity: 0;
}

.error404 .feelingHeader_left img {
  opacity: 0;
}

.error404 .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.error404 .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.error404 .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.error404 .menu_span {
  right: 47px;
  color: #000000;
}











.page-template-page-servicios .ham_icon img {
  filter: invert(1);
}

.page-template-page-servicios .lenguaje_container a {
  color: #000;
}

.page-template-page-servicios .lenguaje_container .divider {
  color: #000;
}

.page-template-page-servicios .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-servicios .search_show img {
  opacity: 0;
}

.page-template-page-servicios .feelingHeader_left img {
  opacity: 0;
}

.page-template-page-servicios .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-servicios .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page-servicios .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page-servicios .menu_span {
  right: 47px;
  color: #000000;
}













.page-template-page-policies .ham_icon img {
  filter: invert(1);
}

.page-template-page-policies .lenguaje_container a {
  color: #000;
}

.page-template-page-policies .lenguaje_container .divider {
  color: #000;
}

.page-template-page-policies .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-policies .search_show img {
  opacity: 0;
}

.page-template-page-policies .feelingHeader_left img {
  opacity: 0;
}

.page-template-page-policies .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-policies .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page-policies .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page-policies .menu_span {
  right: 47px;
  color: #000000;
}













.search .ham_icon img {
  filter: invert(1);
}

.search .lenguaje_container a {
  color: #000;
}

.search .lenguaje_container .divider {
  color: #000;
}

.search .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.search .search_show img {
  opacity: 0;
}

.search .feelingHeader_left img {
  opacity: 0;
}

.search .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.search .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.search .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.search .menu_span {
  right: 47px;
  color: #000000;
}






















.page-template-page-politicasInternas .ham_icon img {
  filter: invert(1);
}

.page-template-page-politicasInternas .lenguaje_container a {
  color: #000;
}

.page-template-page-politicasInternas .lenguaje_container .divider {
  color: #000;
}

.page-template-page-politicasInternas .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-politicasInternas .search_show img {
  opacity: 0;
}

.page-template-page-politicasInternas .feelingHeader_left img {
  opacity: 0;
}

.page-template-page-politicasInternas .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-politicasInternas .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page-politicasInternas .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page-politicasInternas .menu_span {
  right: 47px;
  color: #000000;
}















.page-template-page-landing .ham_icon img {
  filter: invert(1);
}

.page-template-page-landing .lenguaje_container a {
  color: #000;
}

.page-template-page-landing .lenguaje_container .divider {
  color: #000;
}

.page-template-page-landing .search_show {
  background-image: url(../img/lupa_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-landing .search_show img {
  opacity: 0;
}

.page-template-page-landing .feelingHeader_left img {
  opacity: 0;
}

.page-template-page-landing .feelingHeader_left {
  background-image: url(../img/logo_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-page-landing .feeling_toggle.menu_fondo {
  background-color: #fff;
  width: 100px;
}

.page-template-page-landing .feeling_toggle_wrap {
  width: 30px;
  margin-right: 12px;
  margin-bottom: 5px;
}

.page-template-page-landing .menu_span {
  right: 47px;
  color: #000000;
}





/****

menu negro

****/






.FS_block_T_1 h2 {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.FS_block_T_2 p {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}











/*****

seccion contacto

******/



@media screen and (max-width: 767px) {
  #sect_contacto_home .contacto_col {
    top: 30px;
  }

  #banner_contact .titulo h1 {
    font-size: 65px;
  }

  #banner_contact .intro h2 span {
    font-size: 32px !important;
    line-height: 1.3em;
  }

  #banner_contact .intro p span {
    font-size: 28px !important;
    line-height: 1.3em;
  }

  #banner_contact .introPga .text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #banner_contact .intro {
    width: 100%;
  }

  #banner_contact .introPga .image-container {
    width: 100%;
  }

  #banner_contact .introPga .image-container {
    width: auto;
    top: 4;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    width: 360px;
    height: auto;
    left: 5rem;
  }

  #sect_contacto_home {
    margin-top: 10%;
  }
}

@media screen and (min-width: 767px) and (max-width: 992px) {
  .contacto_home_cont {
    flex-direction: column;
    width: 52%;
  }

  #banner_contact .titulo h1 {
    font-size: 80px;
  }

  #banner_contact .intro h2 span {
    font-size: 22px !important;
    line-height: 1.3em;
  }

  #banner_contact .intro p span {
    font-size: 20px !important;
    line-height: 1.3em;
  }

  #banner_contact .titulo_wrap {
    display: flex;
  }

  #banner_contact .introPga .image-container {
    width: auto;
    position: relative;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: -20rem;
    width: 340px;
    height: auto;
    left: 23rem;
  }

  #sect_contacto_home {
    margin-top: 5%;
  }
}

@media (min-width: 993px) and (max-width: 1024px) {
  #banner_contact .titulo h1 {
    font-size: 100px;
  }

  #banner_contact .intro h2 span {
    font-size: 28px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro p span {
    font-size: 25px !important;
    line-height: 1.1em;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: 10%;
    width: 390px;
    height: auto;
  }

  .contacto_home_cont {
    width: 100%;
  }
}

@media (min-width: 1025px) and (max-width: 1299px) {
  #banner_contact .titulo h1 {
    font-size: 120px;
  }

  #banner_contact .intro h2 span {
    font-size: 28px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro p span {
    font-size: 25px !important;
    line-height: 1.1em;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: 10%;
    width: 390px;
    height: auto;
  }

  .contacto_home_cont {
    width: 100%;
  }
}

@media (min-width: 1300px) and (max-width: 1366px) {
  #banner_contact .titulo h1 {
    font-size: 120px;
  }

  #banner_contact .intro h2 span {
    font-size: 28px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro p span {
    font-size: 25px !important;
    line-height: 1.1em;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: 10%;
    width: 390px;
    height: auto;
  }

  .contacto_home_cont {
    width: 100%;
  }

  #Home_slider .FS_block_T_1 h2 {
    font-size: 40px;
  }
}

@media (min-width: 1366px) and (max-width: 1500px) {
  #banner_contact .titulo h1 {
    font-size: 120px;
  }

  #banner_contact .intro h2 span {
    font-size: 28px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro p span {
    font-size: 25px !important;
    line-height: 1.1em;
  }

  #banner_contact .rueda.rueda_cont {
    position: absolute;
    top: 10%;
    width: 390px;
    height: auto;
  }

  #contacto_home .contacto_home_cont {
    width: 80%;
  }

  #Home_slider .FS_block_T_1 h2 {
    font-size: 40px;
  }

}

@media screen and (min-width: 300px) and (max-width: 480px) {
  #banner_contact .titulo h1 {
    font-size: 38px;
  }

  #banner_contact .intro h2 span {
    font-size: 28px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro p span {
    font-size: 18px !important;
    line-height: 1.1em;
  }

  #banner_contact .intro {
    margin-top: 7%;
  }

  #banner_contact .introPga .image-container {
    width: auto;
    top: 20%;

  }

  #banner_contact .rueda.rueda_cont {
    left: 0;
    width: 280px;
    height: auto;

  }

  #sect_contacto_home {
    margin-top: 15%;
  }

  #sect_contacto_home .contacto_col {
    flex-basis: calc(75%);

  }
}

@media (min-width: 1601px) {
  .contacto_home_cont {
    width: 100%;
  }

  .first-post {
    height: 100vh;
  }

  .masonry .segundo {
    height: 49.6vh;
  }

  .masonry .tercero {
    height: 49.6vh;
  }
}



.page-template-page-politicasInternas #banner_blog .titulo h1 {
  opacity: 1;
  line-height: 1em;
}

.page-template-page-politicasInternas .titulo_wrap p {
  opacity: 1;
}
























/****************************

estilos landing page

***************/





#banner_landing {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100vh;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  overflow: hidden;
}

.banner_landing_cont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4% 0% 0% 8%;
  height: 100vh;
}



.banner_landing_iz {
  width: calc(50% - 1%);
  padding-right: 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner_landing_txt {
  color: #555366;
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 30px;
  font-size: 22px;
}

.banner_landing_txt p {
  opacity: 0;
}


.banner_landing_txt p span {
  line-height: 1.5em;
}

.banner_landing_tit h2 {
  font-size: 78px;
  color: #ff0074;
  line-height: 0.9em;
  font-weight: 700;
  margin: 5px 0;
  letter-spacing: 0px;
}

.banner_landing_tit .tit_img {
  display: flex;
  gap: 0;
  justify-content: flex-start;
}

.banner_landing_tit .tit_img img {
  width: 10%;
  opacity: 0;
  /* Ocultas inicialmente */
}



.banner_landing_btns {
  display: flex;
  justify-content: space-between;
}

.divisor_cont {
  display: flex;
  align-items: center;
  gap: 20px;
}

.divisor {
  background: linear-gradient(to right, #ffffff00 0%, #ffffff00 0%, #f15a24 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 15%;
  height: 6.5px;
  margin: 5% 0;
}

.texto_linea {
  color: #ff0074;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.banner_landing_btn {
  width: calc(50% - 2%);
  display: flex;
}

.banner_landing_btn a {
  background-color: #f15a24;
  font-family: "Poppins", Sans-serif;
  font-size: 17px;
  font-weight: 300;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #f15a24;
  border-radius: 60px;
  text-align: center;
  width: 100%;
  display: flex;
  padding: 15px;
  justify-content: center;
  flex-direction: row;
  position: relative;
  gap: 5px;
  align-items: center;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

.banner_landing_btn:hover a {
  background-color: #FF0074;
  border-color: #f15a24;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.banner_landing_btn:nth-child(1) a::after {
  content: '\f259';
  font: normal normal normal 16px / 1 FontAwesome;
  position: relative;
}

.banner_landing_btn:nth-child(2) a::before {
  content: '\f135';
  font: normal normal normal 16px / 1 FontAwesome;
  position: relative;
}

.banner_img_acomp {
  position: absolute;
  bottom: -72%;
  margin: 0 auto;
  width: 50%;
}

.banner_img_acomp img {
  width: 100%;
}

.banner_landing_der {
  width: calc(50% - 1%);
  padding: 0% 10% 0% 0%;
}

.banner_landing_img_cont {
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
}

.banner_logo {
  position: absolute;
  width: 100px;
  z-index: 2;
  opacity: 0;
}

.banner_logo img {
  width: 100%;
}

.banner_logo_1 {
  top: 52%;
  left: -5%;
}

.banner_logo_2 {
  top: 22%;
  left: -1%;
}

.banner_logo_3 {
  top: -5%;
  left: 36%;
}

.banner_logo_4 {
  top: 5%;
  left: 75%;
}

.banner_logo_5 {
  top: 39%;
  left: 91%;
}


.imagen_acompa_banner {
  width: 100%;
  display: flex;
  justify-content: center;
}




.banner_landing_btn img {
  max-width: 50px;
  display: none;
}

.titulo_seccion h2 {
  font-size: 50px;
  color: #555366;
  font-weight: 400;
}

.titulo_seccion .divisor {
  width: 25%;
  height: 6.5px;
  margin: 1% 0;
}

#cta_landing {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 5% 0 0;
}

.cta_landing_cont {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 0%;
}

.cta_landing_cont_lft {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10% 0 5%;
}

.cta_landing_cont_rgt {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.entramado {
  width: 100%;
}

.cta_landing_tit h2 {
  font-size: 40px;
  line-height: 1em;
  color: #555366;
  font-weight: 400;
}

.cta_landing_tit h2 span {
  color: #fff;
  transition: all 0.5s ease-in-out;
}

#cta_landing:hover .cta_landing_tit h2 span {
  color: #17212C;
  transition: all 0.5s ease-in-out;
}


.cta_landing_txt {
  padding-left: 8%;
}

.cta_landing_txt p {
  font-size: 22px;
  line-height: 1.2em;
  color: #555366;
}

.cta_landing_img {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta_landing_img ul {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 40px;
  list-style: none;
}

.cta_landing_img ul li {
  width: 23%;
  height: auto;
}

.landing_form_tit {
  padding-bottom: 20px;
}


.landing_form_tit p {
  font-size: 17px;
  line-height: 1em;
  color: #fff;
}

.cta_landing_btns {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}


.cta_landing_btns a {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  line-height: 1em;
  font-weight: 300;
  padding: 9px 15px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  position: relative;
  color: #fff;
  border-radius: 7px 7px 7px 7px;
  gap: 3px;
  transition: all 0.5s ease-in-out;
  margin-top: 40px;
  align-items: center;
  background-color: #F77826;
}


.cta_landing_btns a img {
  width: 8px !important;
  height: auto;
  transition: all 0.5s ease-in-out;
  margin-top: 4px;
}

#cta_landing:hover .cta_landing_btns a {
  background-color: #ffffff00;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-color: #17212C;
  transition: all 0.5s ease-in-out;
}

#cta_landing:hover .cta_landing_btns a img {
  filter: invert(1);
}

#cta_landing_2 {
  width: 100%;
  display: flex;
  padding: 5% 0;
  background-color: #d62a2a;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.form_cta_landing_2_cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta_landing_2_tit h2 {
  color: #fff;
  text-align: center;
  font-size: 40px;
}

.cta_landing_2_txt {
  color: #fff;
  text-align: center;
  font-size: 35px;
}

.cta_landing_2_btn {
  display: flex;
  justify-content: center;
}

.cta_landing_2_btn a {
  background-color: #fff;
  color: #d74b78;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
  font-weight: 500;
}

.cta_landing_2_btn a:hover {
  color: #fff;
  transition: all 0.5s ease-in-out;
  background-color: #ff0074;
}




.entramado img {
  width: 100%;
  height: auto;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ajusta la imagen */
}

.overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




#porque_elegirnos {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5% 0;
}

.porque_elegirnos_cont {
  width: 100%;
  display: flex;
  padding-left: 10%;
}

.porque_elegirnos_cont_lft {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.titulo_seccion {
  width: 100%;

}

.porque_elegirnos_razones {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 30px;
}

.porque_elegirnos_razon {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
}

.porque_elegirnos_razon_icon {
  width: 120px;
}

.porque_elegirnos_razon_icon img {
  width: 100%;
}

.porque_elegirnos_razon_txt {
  width: 90%;
  font-size: 22px;
  line-height: 1.2em;
  color: #555366;
}


#servicios {
  width: 100%;
  padding: 5% 0;
  display: flex;
  justify-content: center;
}

.servicios_cnt {
  width: 80%;
  display: flex;
  gap: 40px;
  flex-direction: column;
}

#servicios .titulo_seccion h2 {
  font-size: 50px;
  color: #555366;
  font-weight: 400;
  text-align: left;
}

#servicios .titulo_seccion {
  width: 30%;
}

.servicios_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.servicio {
  width: calc(30% - 1%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.servicio_numero {
  font-size: 30px;
  color: #ff0074;
}

.servicio_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.servicio_content h2 {
  color: #555366;
  font-size: 30px;
  font-weight: 500;
}

.servicio_content h3 {
  color: #555366;
  font-size: 20px;
  font-weight: 400;
}

.servicio_boton {
  margin-top: 15px;
}

.servicio_boton a {
  background-color: #f15a24;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}

#planes {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #faf5ff;
  padding: 5% 0;
}

.planes_cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 80px;

}

.planes_head {
  width: 100%;
}

.titulo_sub h3 {
  font-size: 60px;
  color: #ff0074;
}

.planes_body {
  position: relative;
}

.imagen_acomp {
  position: absolute;
  bottom: 0%;
  right: 0;
  z-index: 9;
  width: 22%;
}

.planes_body_cont {
  display: flex;
  justify-content: center;
}

.planes_body_cont .plan {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.plan_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 30px;
  color: #fff;
}

.plan_card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan_boton {
  width: 80%;
  display: flex;
  justify-content: center;
}

.plan_boton a {
  width: 80%;
  padding: 10px 20px;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-weight: bold;
  box-shadow: 0px 0px 5px #0000003b;
}

#portfolio {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5% 0;
  background-size: cover;
}

.portfolio_cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio_titulo {
  width: 100%;
  display: flex;
  justify-content: left;
  margin-bottom: 50px;
}

.portfolio_titulo h2 {
  font-size: 60px;
  color: #fff;
}

.portfolio_boton {
  margin-top: 20px;
}

.portfolio_boton a {
  width: 100%;
  padding: 15px 25px;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 20px;
  line-height: 20px;
  color: #ec2075;
  font-weight: bold;
}

#team {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5% 0;
}

.team_containter {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media(min-width: 1300px) and (max-width: 1400px) {
	.team_containter {
		width: 100%;
	}

	.titulo_seccion {
		width: 100%;
		padding-left: 10%;
		padding-right: 10%;
	}
}

.staff {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.member {
  width: calc(27% - 1%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member_img {
  width: 100%;
  display: flex;
  justify-content: center;
  background-size: cover;
}

.member_img img {
  width: 100%;
  opacity: 0;
}

.member_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 40px;
}

.member_info h3 {
  font-size: 34px;
  color: #f0542b;
  letter-spacing: -2px;
  font-weight: 700;
}

.member_info h4 {
  font-size: 22px;
  color: #f0542b;
  text-transform: uppercase;
  font-weight: 500;
}

.member_info p {
  font-size: 16px;
  color: #555366;
}


#contacto {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contacto_container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contacto_cont_lft {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 8%;
}

.contacto_cont_lft img {
  opacity: 0;
  width: 100%;
}

.contacto_cont_rgt {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8%;
}

.contacto_titulo h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 400;
}

.contacto_cont_rgt h2 {
  color: #2f2b5b;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 15px;
}


.contacto_cont_rgt p {
  color: #2f2b5b;
  font-size: 20px;
  font-weight: 300;
}

.contacto_cont_rgt form p label {
  color: #ff0074;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
}

.contacto_cont_rgt form p label span {
  margin-top: 7px;
  display: block;
}

.contacto_cont_rgt form p label span input {
  background-color: #dfdeeb;
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  width: 100%;
}

.contacto_cont_rgt form p label span textarea {
  background-color: #dfdeeb;
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  width: 100%;
  height: 100px;
}

.contacto_cont_rgt form .wpcf7-submit {
  padding: 10px 20px;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  background-color: #ec2075;
  border: none;
  color: #fff;
}




@media(max-width:767px) {
  .servicio_landing_cont {
    width: calc(100% - 1%);
    background-color: #fff;
    border-radius: 20px;
  }

  .banner_landing_iz {
    width: calc(100% - 1%);
    padding-right: 4%;
    padding-left: 4%;
  }

  .banner_landing_der {
    width: calc(100% - 1%);
    padding: 0% 0% 0% 0%;
    display: flex;
    justify-content: flex-end;
  }

  .banner_landing_tit h2 {
    font-size: 25px;
    margin-bottom: 0px;
    letter-spacing: 0px;
  }

  .banner_landing_txt {
    font-size: 15px;
  }

  .banner_landing_cont {
    padding: 0% 5% 0% 5%;
    flex-direction: column;
  }

  .banner_landing_btns {
    flex-wrap: wrap;
    justify-content: center;
  }

  .banner_landing_btn {
    width: calc(70% - 1%);
    margin-bottom: 5px;
  }


  .banner_landing_img_cont {
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
  }

  .banner_landing_txt p span {
    line-height: 1em;
    font-size: 15px !important;
  }

  .banner_logo {
    width: 50px;
  }

  .banner_logo_1 {
    left: -3%;
    top: 53%;
  }

  .banner_logo_2 {
    top: 23%;
    left: -7%;
  }

  .banner_logo_3 {
    top: 0%;
    left: 13%;
  }


  .banner_logo_4 {
    top: -6%;
    left: 61%;
  }

  .banner_logo_5 {
    top: 26%;
    left: 77%;
  }

  .entramado {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .cta_landing_cont_lft {
    width: 100%;
    padding-bottom: 20px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .cta_landing_cont_rgt {
    width: 90%;
  }

  .cta_landing_tit h2 {
    font-size: 25px;
  }

  .cta_landing_txt p {
    font-size: 16px;
  }

  .cta_landing_cont {
    width: 100%;
    padding-right: 0%;
    flex-direction: column;
  }

  #cta_landing {
    flex-direction: column;
    padding: 5% 0px 5%;
  }

  .cta_landing_btns a {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
  }

  .cta_landing_btns {
    justify-content: flex-start;
  }


  .banner_landing_tit .tit_img {
    margin-top: -7px;
  }

  .cta_landing_btns .banner_landing_tit .tit_img {
    margin-top: 0px;
  }

  .cta_landing_btns a img {
    margin-top: 1px;
  }

  .form_cta_landing_cont {
    width: 100%;
    flex-direction: column;
  }

  .form_cta_landing_cont_lft {
    width: 100%;
    padding: 0 30px;
  }

  .form_cta_landing_cont_rgt {
    width: 100%;
    padding: 0 30px;
  }

  .cta_landing_img ul {
    width: 80%;
  }

  .cta_landing_img ul li {
    width: 37%;
    height: auto;
  }

  #logo img {
    max-width: 110px;
  }

  #banner_landing {
    padding-top: 100px;
  }

  .banner_landing_cont {
    padding: 2% 0% 0% 0%;
    box-sizing: border-box;
  }

  #site-header {
    padding: 0 25px;
    width: 100%;
    margin: 0 auto;
    float: none;
    left: 0;
    right: 0;
  }

  .logo_scroll img {
    max-width: 27% !important;
  }

  #site-header.scrolled {
    padding: 0 25px;
    transition: all 0.3s ease;
  }

  #servicios_section section {
    height: 63vh;
  }

  .porque_elegirnos_cont_lft {
    width: 100%;
  }

  #porque_elegirnos {
    padding: 60px 25px;
  }

  .porque_elegirnos_razones {
    padding-right: 0px;
  }

  .contacto_cont_lft {
    width: 100%;
    padding: 8%;
  }

  .contacto_cont_rgt {
    width: 100%;
    padding: 8%;
  }

  .contacto_titulo h2 {
    font-size: 40px;
  }

  .cta_landing_2_btn a {
    font-size: 13px;
    text-align: center;
    font-weight: bold;
  }

  .cta_landing_2_txt {
    font-size: 22px;
  }

  .porque_elegirnos_razon_icon {
    width: 80px;
  }

  .porque_elegirnos_razon_txt {
    font-size: 15px;
  }

  .servicio_content h2 {
    font-size: 20px;
  }

  .servicio_content h3 {
    font-size: 16px;
  }

  .banner_landing_btn a {
    font-size: 15px;
    padding: 10px 15px;
    gap: 5px;
  }

  .entramado img {
    width: 60%;
  }

  #servicios .titulo_seccion {
    width: 100%;
  }

  .servicios_cnt {
    width: 100%;
  }

  #planes {
    padding: 40px 25px;
  }

  .titulo_sub {
    padding-top: 20px;
  }

}


@media(min-width:768px) and (max-width:1023px) {
  .servicio_landing_cont {
    width: calc(47% - 1%);
    background-color: #fff;
    border-radius: 20px;
  }

  .banner_landing_tit h2 {
    font-size: 32px;
  }

  .banner_landing_txt p span {
    line-height: 1em;
    font-size: 18px !important;
  }

  .banner_logo {
    width: 50px;
  }

  .banner_landing_btn a {
    font-size: 12px;
  }

  .entramado {
    width: 100%;
  }

  .cta_landing_cont_lft {
    width: 50%;
  }

  .cta_landing_cont_rgt {
    width: 50%;
  }

  .cta_landing_tit h2 {
    font-size: 20px;
  }

  .cta_landing_txt p {
    font-size: 18px;
  }

  #cta_landing {
    flex-direction: column;
  }

  .cta_landing_btns a {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
  }

  .cta_landing_btns {
    justify-content: flex-start;
  }

  .cta_landing_cont {
    width: 95%;
    padding-right: 0%;
  }

  .cta_landing_btns a img {
    margin-top: 2px;
  }

  .form_cta_landing_cont {
    width: 100%;
    flex-direction: column;
  }

  .form_cta_landing_cont_lft {
    width: 100%;
    padding: 0 30px;
  }

  .form_cta_landing_cont_rgt {
    width: 100%;
    padding: 0 30px;
  }

  .cta_landing_img ul {
    width: 80%;
  }

  .cta_landing_img ul li {
    width: 37%;
    height: auto;
  }

  .banner_landing_cont {
    padding: 4% 0% 0% 1%;
    height: 60vh;
  }

  .banner_img_acomp {
    bottom: -52%;
  }

  #banner_landing {
    height: 60vh;
  }

  .porque_elegirnos_cont {
    width: 90%;
    flex-direction: column;
  }

  .porque_elegirnos_cont_lft {
    width: 100%;
  }

  .servicios_cnt {
    width: 90%;
  }

  .servicio_content h3 {
    font-size: 16px;
  }

  .servicio_content h2 {
    font-size: 20px;
  }

  .servicio_boton a {
    font-size: 13px;
  }

  .titulo_sub h3 {
    font-size: 40px;
  }

  .planes_cont {
    width: 90%;
  }

  .planes_body_cont .plan {
    width: 33%;
  }

  .plan_card {
    padding: 0px;
  }

  .team_containter {
    width: 90%;
  }

  .member {
    width: calc(47% - 1%);
    gap: 20px;
  }

  .contacto_container {
    flex-direction: column;
    width: 100%;
  }

  .contacto_cont_lft {
    width: 100%;
  }

  .contacto_cont_rgt {
    width: 100%;
  }
}


@media(min-width:1024px) and (max-width:1279px) {
  .servicio_landing_cont {
    width: calc(47% - 1%);
    background-color: #fff;
    border-radius: 20px;
  }

  .banner_landing_tit h2 {
    font-size: 39px;
    line-height: 1.1em;
  }

  .banner_logo {
    width: 54px;
  }

  .cta_landing_btns a {
    font-size: 16px;
  }

  .form_cta_landing_cont_rgt {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
  }

  .porque_elegirnos_cont {
    width: 90%;
    padding-left: 0%;
  }

  .porque_elegirnos_razon_icon {
    width: 80px;
  }

  .porque_elegirnos_razon_txt {
    font-size: 16px;
  }

  .titulo_seccion h2 {
    font-size: 40px !important;
  }

  .servicio_content h2 {
    font-size: 20px;
  }

  .servicio_content h3 {
    font-size: 16px;
  }

  .titulo_sub h3 {
    font-size: 40px;
  }

  .planes_cont {
    width: 90%;
  }

  .plan_card {
    padding: 0px;
  }

  .member {
    width: calc(40% - 1%);
    gap: 20px;
  }

  .contacto_cont_rgt {
    padding: 2% 4%;
  }

  .contacto_cont_rgt h2 {
    font-size: 25px;
  }

  .contacto_cont_rgt form p label span input {
    padding: 5px 20px;
  }

  .contacto_cont_rgt form p label {
    font-size: 13px;
  }
}



@media(min-width:1280px) and (max-width:1369px) {
  .servicios_landing_cont {
    gap: 10px;
  }

  .servicio_landing_cont {
    width: calc(24% - 1%);
    background-color: #fff;
    border-radius: 20px;
  }

  .banner_landing_tit h2 {
    font-size: 50px;
  }

  .cta_landing_tit h2 {
    font-size: 35px;
  }



}

@media(min-width:1370px) and (max-width:1500px) {
  .servicios_landing_cont {
    gap: 10px;
  }

  .servicio_landing_cont {
    width: calc(24% - 1%);
    background-color: #fff;
    border-radius: 20px;
  }

  .banner_landing_tit h2 {
    font-size: 50px;
  }

  .cta_landing_tit h2 {
    font-size: 35px;
  }

  .banner_logo_3 {
    left: -4%;
  }

  .banner_logo_2 {
    left: -10%;
  }

  .banner_logo_4 {
    top: -16%;
  }

  .banner_logo_5 {
    top: -2%;
    left: 72%;
  }
}


















#proyectos_sect {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.proyectos_car {
  display: flex;
  white-space: nowrap;
  /* Impide que los elementos se quiebren en varias líneas */
}

.slide {
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
  background: #ddd;
  margin: 0 5px;
  border-radius: 8px;
  padding: 20px;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .slide {
    width: calc(100% - 10px);
    /* 1 slide visible */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .slide {
    width: calc(33.33% - 10px);
    /* 3 slides visibles */
  }
}

@media (min-width: 1025px) {
  .slide {
    width: calc(20% - 10px);
    /* 5 slides visibles */
  }
}











.slide {
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
  background: #ddd;
  margin: 0 5px;
  border-radius: 8px;
  padding: 20px;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .slide {
    width: calc(100% - 10px);
    /* 1 slide visible */
    animation-duration: 7.67s;
    /* Duración para pantallas pequeñas */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .slide {
    width: calc(33.33% - 10px);
    /* 3 slides visibles */
    animation-duration: 30.72s;
    /* Duración para pantallas medianas */
  }
}

@media (min-width: 1025px) {
  .slide {
    width: calc(20% - 10px);
    /* 5 slides visibles */
    animation-duration: 51.2s;
    /* Duración para pantallas grandes */
  }
}




#site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5% 0;
  flex-direction: column;
  align-items: center;
}

.footer_container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
}

.footer-social {
  align-self: center;
}






/* Estilos para pantallas pequeñas */
@media (max-width: 767px) {
  .menu-principal {
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 13px;
    border-radius: 10px;
  }

  .servicio_cont {
    width: 90%;
  }

  #menu-toggle {
    display: flex;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ff0074;
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #ff0074;
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -8px;
  }

  .menu-icon::after {
    top: 8px;
  }

  .main-navigation {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 8%;
    right: 0;
    width: 80%;
  }

  .main-navigation.active {
    display: flex;
  }

  .porque_elegirnos_cont {
    padding-left: 0%;
    flex-direction: column;
  }

  .servicio {
    width: calc(100% - 1%) !important;
  }

  .servicios_container {
    flex-wrap: wrap;
    gap: 35px;
  }

  .planes_body_cont {
    flex-wrap: wrap;
  }

  .planes_body_cont .plan {
    width: 100% !important;
  }

  .portfolio_titulo h2 {
    font-size: 46px;
  }

  .staff {
    flex-wrap: wrap;
  }

  .member {
    width: calc(100% - 1%);

  }

  .contacto_container {
    flex-direction: column;
  }

  .footer_container {
    flex-direction: column;
    width: 80%;
  }

  .titulo_sub h3 {
    font-size: 30px;
  }

  .plan_card {
    padding: 0px;
  }

  .imagen_acomp {
    display: none;
  }

  .member_info {
    padding: 0;
  }

  .titulo_seccion h2 {
    font-size: 40px !important;
  }

  .portfolio_cont {
    width: 90%;
  }

  .portfolio_boton a {
    width: 100%;
    font-size: 16px;
  }

  .plan_boton a {
    width: 100%;
  }

  .planes_cont {
    width: 90%;
    gap: 10px;
  }

  .titulo_seccion .divisor {
    width: 100%;
  }

  #cta_landing_2 {
    padding: 10% 0;
  }

  .footer_container .footer_col {
    width: 100%;
  }


}


/* Estilos para pantallas medianas */
@media (min-width: 768px) and (max-width: 967px) {
  .menu-principal {
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 13px;
    border-radius: 10px;
  }

  .servicio_cont {
    width: 90%;
  }

  #menu-toggle {
    display: flex;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ff0074;
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #ff0074;
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -8px;
  }

  .menu-icon::after {
    top: 8px;
  }

  .main-navigation {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 8%;
    right: 0;
    width: 80%;
  }

  .main-navigation.active {
    display: flex;
  }

  .porque_elegirnos_cont {
    padding-left: 0%;
    flex-direction: column;
  }

  .servicio {
    width: calc(30% - 1%) !important;
  }

  .servicios_container {
    flex-wrap: wrap;
    gap: 35px;
  }

  .planes_body_cont {
    flex-wrap: wrap;
  }

  .planes_body_cont .plan {
    width: 33% !important;
  }

  .portfolio_titulo h2 {
    font-size: 46px;
  }

  .staff {
    flex-wrap: wrap;
  }

  .member {
    width: calc(47% - 1%);

  }

  .contacto_container {
    flex-direction: column;
  }

  .titulo_sub h3 {
    font-size: 30px;
  }

  .plan_card {
    padding: 0px;
  }

  .imagen_acomp {
    display: none;
  }

  .member_info {
    padding: 0;
  }

  .titulo_seccion h2 {
    font-size: 40px !important;
  }

  .portfolio_cont {
    width: 90%;
  }

  .portfolio_boton a {
    width: 100%;
    font-size: 16px;
  }

  .plan_boton a {
    width: 100%;
  }

  .planes_cont {
    width: 90%;
    gap: 10px;
  }

  .titulo_seccion .divisor {
    width: 100%;
  }

  #cta_landing_2 {
    padding: 10% 0;
  }

  .footer_container .footer_col {
    width: 50%;
  }

  .footer_container {
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
    align-items: center;
    gap: 35px 0;
  }

  .footer_container .footer_col.logo_footer {
    width: 100%;
  }

}



/* Estilos para pantallas medianas */
@media (min-width: 968px) and (max-width: 1024px) {
  .menu-principal {
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 13px;
    border-radius: 10px;
  }

  .servicio_cont {
    width: 90%;
  }

  #menu-toggle {
    display: flex;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ff0074;
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #ff0074;
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -8px;
  }

  .menu-icon::after {
    top: 8px;
  }

  .main-navigation {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 8%;
    right: 0;
    width: 80%;
  }

  .main-navigation.active {
    display: flex;
  }

  .porque_elegirnos_cont {
    padding-left: 0%;
    flex-direction: column;
  }

  .servicio {
    width: calc(100% - 1%) !important;
  }

  .servicios_container {
    flex-wrap: wrap;
    gap: 35px;
  }

  .planes_body_cont {
    flex-wrap: wrap;
  }

  .planes_body_cont .plan {
    width: 100% !important;
  }

  .portfolio_titulo h2 {
    font-size: 46px;
  }

  .staff {
    flex-wrap: wrap;
  }

  .member {
    width: calc(100% - 1%);

  }

  .contacto_container {
    flex-direction: column;
  }

  .titulo_sub h3 {
    font-size: 30px;
  }

  .plan_card {
    padding: 0px;
  }

  .imagen_acomp {
    display: none;
  }

  .member_info {
    padding: 0;
  }

  .titulo_seccion h2 {
    font-size: 40px !important;
  }

  .portfolio_cont {
    width: 90%;
  }

  .portfolio_boton a {
    width: 100%;
    font-size: 16px;
  }

  .plan_boton a {
    width: 100%;
  }

  .planes_cont {
    width: 90%;
    gap: 10px;
  }

  .titulo_seccion .divisor {
    width: 100%;
  }

  #cta_landing_2 {
    padding: 10% 0;
  }

  .footer_container .footer_col {
    width: 50%;
  }

  .footer_container {
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
    align-items: center;
    gap: 35px 0;
  }

  .footer_container .footer_col.logo_footer {
    width: 100%;
  }

}