@charset "UTF-8";
@font-face {
  font-family: "DIN-Bold";
  /* src: url("../../fonts/DINBold.woff") format("woff"); */
  /* src: url("../../fonts/fonts2/DIN-Bold.woff") format("woff"); */
  src: url("../../fonts/finador/Finador-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINAlternate-Bold";
  /* src: url("./assets/fonts/DIN-Alternate-Bold.woff") format("woff"); */
  /* src: url("../../fonts/DINAlternate-Bold.woff") format("woff"); */
  /* src: url("../../fonts/fonts2/DIN-Alternate-Bold.woff") format("woff"); */
  src: url("../../fonts/finador/Finador-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro-Bold";
  /* src: url("../../fonts/DINPro-Bold.woff") format("woff"); */
  /*src: url("../../fonts/fonts2/DINPro-Bold.woff") format("woff");*/
  src: url("../../fonts/finador/Finador-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Medium";
  /* src: url("../../fonts/DIN-Medium.woff") format("woff"); */
  /* src: url("../../fonts/fonts2/DIN-Medium.woff") format("woff"); */
  src: url("../../fonts/finador/Finador-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Regular";
  /* src: url("../../fonts/DIN-Regular.woff") format("woff"); */
  /* src: url("../../fonts/fonts2/DIN-Regular.woff") format("woff"); */
  src: url("../../fonts/finador/Finador-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro-Regular";
  /* src: url("../../fonts/DINPro-Regular.woff") format("woff"); */
  /*src: url("../../fonts/fonts2/DINPro-Regular.woff") format("woff");*/
  src: url("../../fonts/finador/Finador-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Light";
  /* src: url("../../fonts/DIN-Light.woff") format("woff"); */
  /* src: url("../../fonts/fonts2/DIN-Light.woff") format("woff"); */
  src: url("../../fonts/finador/Finador-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-color-orange: #f47e24;
  --bg-color-orange-2: #f89d4b;
  --bg-color-grey: #3b3a3c;
  --bg-color-grey-2: #4c4c4e;
  --bg-color-white: #fff;
}

/*Estilos generales*/
body {
  margin: 0;
  padding: 0;
  height: calc(100vh- 5.625rem);
}

main {
  overflow: hidden;
}

hr,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--bg-color-black);
}

a,
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

hr {
  border: none;
}

input,
textarea {
  border: none;
  outline: 0;
}

.text-center {
  text-align: center;
}

.container {
  width: 85%;
  margin: 0 auto;
  max-width: 1920px;
}

/** flexbox **/
.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

/*X*/
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-start {
  justify-content: start;
}
.justify-content-space-between {
  justify-content: space-between;
}
.justify-content-space-around {
  justify-content: space-around;
}
.justify-content-space-evenly {
  justify-content: space-evenly;
}

/*Y*/
.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: end;
}

.align-items-stretch {
  align-items: stretch;
}

/*flex items*/
.flex-grow-1 {
  flex-grow: 1;
}

.align-content-center {
  align-content: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.d-none {
  display: none;
}

/*************   estilos  Contact Form *************/
.wpcf7-not-valid-tip{
  background: white !important;
  color: red !important;
  border-radius: unset !important;
  position: absolute !important;
  font-family: "DIN-Regular",sans-serif !important;
  font-size: 12px !important;
  line-height: normal;
}
div.custom-select .wpcf7-not-valid-tip{
  background: white !important;
  color: red !important;
  border-radius: unset !important;
  position: relative !important;
  font-family: "DIN-Regular",sans-serif !important;
  font-size: 12px !important;
  line-height: normal;
}

.wpcf7-response-output{
  display: none;
}
/**************  HEADER ************/
header {
  position: fixed;
  z-index: 10;
  width: 100%;
  /* display: none; */
  nav {
    padding: 1rem 0;
    background: white;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    .d-flex {
      align-items: center;
      gap: 106px;
      position: relative;
      .container-img {
        width: 185px;
        height: 48px;
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          object-position: center;
        }
      }
      ul.header-menu {
        flex-grow: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        li {
          color: var(--bg-color-grey-2);
          text-align: center;
          font-family: "DIN-Medium", sans-serif;
          font-size: 16px;
          line-height: 16px; /* 100% */

          position: relative;
          .item-separador {
            hr {
              transition: all 0.5s ease;
              width: 0%;
              visibility: hidden;
              position: absolute;
              transform: translate(0%, 100%);
              margin: 0;
              bottom: 0;
              left: 0;

              border: none;
              height: 3px; /* Altura del hr */
              background-color: transparent;
            }
          }
          &:hover {
            color: var(--bg-color-orange);
            .item-separador {
              hr {
                background-color: var(--bg-color-orange);
                visibility: visible;
                width: 100%;
              }
            }
          }
        }
        li.contactanos {
          background-color: var(--bg-color-orange);
          border-radius: 20px;
          color: var(--bg-color-grey-2);
          padding: 12px 11px;
          &:hover {
            color: var(--bg-color-white);
            background: #ea761e;
            .item-separador {
              hr {display: none;}}
          }
        }
      }
      button.container-img {
        width: 25px;
        height: 14px;
        display: none;
        img {
          height: 100%;
          width: 100%;
          object-fit: contain;
          object-position: center;
        }
      }
    }
  }
  nav.bg-transparent {
    background: transparent;
    box-shadow: unset;
    ul.header-menu {
      flex-grow: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      li {
        color: var(--bg-color-white);
        text-align: center;
        font-family: "DIN-Medium";
        font-size: 16px;
        line-height: 16px; /* 100% */
      }
      li.contactanos {
        color: var(--bg-color-white);
        &:hover {
        }
      }
    }
  }
}

/********************* ASIDE   ***************************/
aside,
div.aside-blog {
  display: flex;
  flex-direction: column;
  border-radius: 50px 0px 0px 50px;
  background: linear-gradient(rgba(59, 58, 60, 1), rgba(0, 0, 0, 1));

  box-sizing: border-box;
  height: 100vh;
  top: 0;
  width: 38%;
  position: fixed;
  right: -100%;
  transition: all 0.5s ease;
  z-index: 11;
  .container-aside {
    width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    .container-close-aside {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 7rem;
      .close-aside.container-img {
        background: none;
        position: relative;
        width: 31px;
        height: 35px;
        cursor: pointer;
        img {
          height: 100%;
          width: 100%;
          object-fit: cover;
          object-position: center;
        }
      }
    }
    .container-menu-aside {
      flex-grow: 1;
      display: flex;
      align-items: center;
      ul.menu-principal {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        li {
          display: flex;
          flex-direction: row;
          gap: 2px;
          position: relative;
          align-items: center;

          color: var(--bg-color-white);
          font-family: "DIN-Medium", sans-serif;
          font-size: 20px;
          line-height: 20px; /* 100% */
          .item-separador {
            display: flex;
            flex-direction: column;
            a {
              color: var(--bg-color-purple);
              font-family: "Poppins-Regular", sans-serif;
              font-size: 20px;
              line-height: 20px; /* 125% */
            }
            hr {
              width: 30px;

              background-color: var(--bg-color-blue-light);
              border: none;
              border-radius: 3px;
              height: 3px; /* Altura del hr */
              margin: 2px 0 0 0;
              width: 30px;
              transition: all ease 0.5s;
            }
          }
        }
        li.contactanos {
          border-radius: 20px;
          color: var(--bg-color-white);
          text-align: center;
          font-family: "DINAlternate-Bold", sans-serif;
          font-size: 20px;
          line-height: 16px; /* 80% */
          background: #f47e24;
          padding: 12px 19px;
        }
      }
    }
    .contacto {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 4.5rem;
      width: 50%;
      ul {
        display: flex;
        gap: 1.5rem;
        li {
          .container-img {
            height: 36px;
            width: 36px;
            img {
              object-fit: contain;
              object-position: center;
              width: 100%;
              height: 100%;
            }
          }
        }
      }
    }
  }
  &::before {
    content: "";
    background: url("../../images/logo-transparent-omnisys.webp");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    bottom: 0;
    right: 0;
    width: 311px;
    height: 311px;
    position: absolute;
    transform: translate(50%, 50%);
  }
}

aside.open-aside,
div.aside-blog.open-aside {
  right: 0%;
}

#container-modal-categories {
  display: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  background: black;
}

#container-modal-categories.opacity {
  opacity: 0.5;
  display: unset;
}

/************** FOOTER *************/
footer {
  padding: 42px 0;
  box-sizing: border-box;
  .container {
    background: linear-gradient(rgba(76, 76, 78, 1), rgba(0, 0, 0, 1));
    border-radius: 20px;
    padding: 48px 51px 27px 53px;
    box-sizing: border-box;
    .menus-footer {
      display: flex;
      gap: 43px;
      .logo-descripcion {
        display: flex;
        gap: 22px;
        flex-direction: column;
        width: 25%;
        .container-img {
          width: 100%;
          height: 85px;
          img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
          }
        }
        .texto-adm {
          p {
            color: var(--bg-color-white);
            font-family: "DIN-Light", sans-serif;
            font-size: 18px;
            line-height: 19px; /* 130.769% */
          }
        }
      }
      .submenu-footer {
        display: flex;
        flex-direction: column;
        gap: 13px;
        max-width: 185px;
        .item-separador {
          span {
            color: var(--2, #f89d4b);
            font-family: "DIN-Bold", sans-serif;
            font-size: 21px;
            line-height: 21px; /* 100% */
          }
          hr {
            border: none;
            height: 2px; /* Altura del hr */
            background-color: var(--bg-color-orange);
            width: 90%;
          }
        }
        ul {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          li {
            color: var(--5, #fff);
            font-family: "DIN-Light", sans-serif;
            font-size: 18px;
            line-height: 23px; /* 127.778% */
          }
        }
      }
      .submenu-footer.soluciones {
        min-width: 172px;
      }
    }
    .redes {
      display: flex;
      flex-direction: column;
      margin-top: 24px;
      hr {
        border: none;
        height: 3px; /* Altura del hr */
        background-color: var(--bg-color-white);
        width: 100%;
      }
      .icons {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        ul {
          display: flex;
          gap: 2rem;
          li {
            .container-img {
              width: 32px;
              height: 32px;
              img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
              }
            }
          }
        }
      }
    }
  }
}

/********************** Wsp - bubble **********************/
main {
  position: relative;
  .bubble {
    position: fixed;
    right: 0;
    top: 70%;
    z-index: 10;
    a {
      display: flex;
      align-items: center;
      padding: 0.5rem;
      border-radius: 41px;
      background: transparent;
      gap: 11px;
      .container-img-wsp {
        width: 4rem;
        height: 4rem;
        img {
          height: 100%;
          width: 100%;
          object-fit: contain;
          object-position: center;
        }
      }

      .escribenos-img {
        /* display: flex; */
        display: none;
        flex-direction: row;
        transition: all ease 1.5s;
        width: 0;
        gap: 1rem;
        .escribenos {
          p {
            color: var(--bg-color-grey);
            font-family: "DIN-Medium", sans-serif;
            font-size: 15px;
            line-height: 20px; /* 133.333% */
            display: none;
          }
        }
        .container-img {
          width: 0;
          transition: all ease 1.5s;
          img {
            height: 100%;
            width: 100%;
            object-fit: contain;
            object-position: center;
          }
        }
      }
      &:hover {
        background: #fff;
        .escribenos-img {
          display: flex;
          width: 100%;
          .escribenos {
            p {
              display: block;
            }
          }
          .container-img {
            height: 36px;
            width: 36px;
          }
        }
      }
    }
  }
}

/********************* Banner - Page **********************/
section.banner-page {
  padding: 214px 0 134px 0;
  position: relative;
  transform: translate3d(0,0,0);
  .asset-banner {
    transform: translate3d(0,0,0);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    video {
      transform: translate3d(0,0,0);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.1;
      transform: translate3d(0,0,0);
    }

    &::before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      background: linear-gradient(180deg, #181818 0%, #ff7409 184.83%);
      z-index: -1;
      transform: translate3d(0,0,0);
    }
  }
  /*
  &::after {
    content: "";
    position: absolute;
    opacity: 0.8;
    background: linear-gradient(180deg, #FF7409 0%, #F59F42 100%);
    transform: translate3d(0,0,0);
    mix-blend-mode: normal;
    height: 100%;
    width: 100%;
    top: 0;
    will-change: opacity;
  }
  */
  &::before {
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    width: 100%;
    height: 20%;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    will-change: background; /* Optimiza cambios en el fondo */
  }

  .container {
    position: relative;
    z-index: 1;
    transform: translate3d(0,0,0);
    .page-title {
      display: flex;
      justify-content: start;
      align-items: center;

      h1 {
        color: var(--5, #fff);
        text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
        font-family: "DIN-Bold", sans-serif;
        font-size: 30px;
        line-height: 30px; /* 100% */
      }
    }
  }
}

/******************** Novedades - Cuadro *******************/
.filter-selects {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  .custom-select.select-articulos,
  .custom-select.select-categorias,
  .custom-select.select-anio {
    /*the container must be positioned relative:*/
    position: relative;
    width: fit-content;
    select {
      display: none; /*hide original SELECT element:*/
    }
    /*hide the items when the select box is closed:*/
    .select-hide {
      display: none;
    }
    .select-selected {
      border-radius: 22.393px;
      background: var(--bg-color-white);

      color: var(--bg-color-orange-2);
      display: flex;
      align-items: center;
      gap: 40px;
      font-family: "DINAlternate-Bold", sans-serif;
      font-size: 20.288px;
      line-height: 20.288px;

      width: fit-content;
      min-width: 160px;
      cursor: pointer;
      padding: 9px 16px 9px 13px;
      &::after {
        content: "";
        background: url("../../images/arrow-down-orange.svg");
        background-position: center right; /* Alinear la imagen a la derecha */
        background-repeat: no-repeat;
        background-size: contain;
        width: 13px;
        height: 8px;
        display: inline-block;
        z-index: 1;
        transition: all ease 0.5s;
      }
    }
    .select-selected.open-select {
      &::after {
        transform: rotate(90deg);
      }
    }

    /*style the items (options), including the selected item:*/
    .select-items {
      position: absolute;
      top: 100%;
      bottom: 0;
      box-sizing: border-box;
      z-index: 2;

      border-radius: 20px;
      border: 1px #000;
      background: var(--bg-color-grey-2);
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

      color: var(--bg-color-white);
      font-family: "DIN-Medium", sans-serif;
      font-size: 18px;
      height: fit-content;
      line-height: 18px; /* 100% */
      padding: 1rem 13px;
      width: 100%;

      div {
        color: var(--bg-color-white);
        border: 1px solid transparent;
        border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
        cursor: pointer;
        user-select: none;
        padding: 9px 0;
      }
      div.escogido {
        pointer-events: none; /* Evita eventos de puntero (clics, hover, etc.) */
        color: #ccc; /* Color de texto gris */
        background: #ccc;
        cursor: not-allowed; /* Cambia el cursor a 'no permitido' */
      }
    }

    .select-items div:hover{
      background-color: rgba(0, 0, 0, 0.1);
    }
  }
}

/**************** Secciones Inicio *********/
section.main-banner {
  height: 100vh;
  position: relative;
  .container-video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .container {
    height: 100%;

    .main-info {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 50%;
      h2 {
        color: var(--bg-color-white);
        font-family: "DIN-Bold";
        font-size: 69.763px;
        line-height: 87.203px; /* 125% */
      }
      p {
        color: var(--bg-color-white);
        font-family: "DIN-Regular", sans-serif;
        font-size: 30px;
        line-height: 35px; /* 116.667% */
        margin-top: 0.5rem;
      }
      .call-to-solutions-services {
        display: flex;
        flex-direction: row;
        gap: 30px;
        margin-top: 33px;
        a {
          border: 2px solid transparent;
          color: var(--bg-color-orange);
          background: var(--bg-color-white);
          border-radius: 20.87px;
          text-align: center;
          font-family: "DIN-Regular", sans-serif;
          font-size: 19.324px;
          line-height: 19.324px; /* 100% */
          padding: 11px 23px;
          min-width: 170px;
          text-align: center;
          transition: all ease 0.5s;
          &:hover {
            color: var(--bg-color-white);
            border: 2px solid var(--bg-color-white);
            background: transparent;
          }
        }
        a:first-child {
          color: var(--bg-color-white);
          background: var(--bg-color-orange);
          transition: all ease 0.5s;
          &:hover {
            color: var(--bg-color-white);
            border: 2px solid var(--bg-color-orange);
            background: transparent;
          }
        }
      }
    }
  }
}

section.nuestras-soluciones {
  .container {
    margin-top: 2rem;
    position: relative;
    h2 {
      color: var(--bg-color-white);
      font-family: "DIN-Bold", sans-serif;
      font-size: 45px;
      line-height: 45px; /* 100% */
    }
    #splide_soluciones {
      margin-top: 46px;
      .splide__arrows {
        background: transparent;
        position: absolute;
        bottom: 50px;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: fit-content;
        justify-content: space-between;
        top: 50%;
        width: 100%;
        transform: translate3d(0, -50%, 0);
        -webkit-transform:translate3d(0, -50%, 0);
        z-index: 0;
        button {
          .arrow-banner {
            height: 61px;
            width: 61px;
            img {
              height: 100%;
              width: 100%;
              object-fit: contain;
              object-position: center;
            }
          }
        }
        button.custom-prev {
          transform: translate3d(-100%, 0, 0) rotate(-180deg);
          -webkit-transform:translate3d(-100%, 0, 0) rotate(-180deg);
        }
        button.custom-next {
          transform: translate3d(100%, 0, 0);
          -webkit-transform: translate3d(100%, 0, 0);
        }
      }
      .splide__track {
        position: relative;

        --displayBefore:none;
        --displayAfeter:block;
        &::before,
        &::after {
          content: "";
          position: absolute;
          top: 0;
          bottom: 0;
          width: 100px; /* Ajusta el ancho del sombreado */
          z-index: 2;
        }

        &::before {
          display: var(--displayBefore);
          left: 0;
          /* box-shadow: 100px 0 80px 40px rgba(0,0,0,0.5); /* Sombra a la izquierda */
          background: linear-gradient(
            90deg,
            var(--bg-color-orange) 0%,
            rgba(0, 0, 0, 0) 100%
          );
        }

        &::after {
          display: var(--displayAfeter);
          right: 0;
          /* box-shadow: -100px 0 80px 40px rgba(0,0,0,0.5); Sombra a la derecha */
          background: linear-gradient(
            270deg,
            var(--bg-color-orange) 0%,
            rgba(0, 0, 0, 0) 100%
          );
        }
        ul {
          display: flex;

          li.splide__slide {
            flex-grow: 1; /* Ocupan el espacio disponible */
            transition: all 1.5s ease; /* Transición suave para el cambio de ancho */
            -webkit-transition:all 1.5s ease;
            max-width: 18rem;
            position: relative;
            /*
            &:last-child {
              transform-origin: right;
              transform: translateX(100%);
              &:hover {
                  width: 120%;
                  max-width: 409px;
              }
            }
            */
                  
            /*
            &:last-child{
              transform-origin: right;
              a{
                transform-origin: right;
                .nuestra-solucion-card {
                  transform-origin: right;
                }
              }
            }
            */

            a {
              transition: all 1.5s ease; /* Transición suave en el enlace */
              -webkit-transition:all 1.5s ease;
              .nuestra-solucion-card {
                /* border-radius: 20px; */
                position: relative;
                height: 100%;
                min-width: 282px;
                max-width: 376px; /* Tamaño base */
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                overflow: hidden;
                transition: all 1.5s ease; /* Transición suave para el ancho */
                -webkit-transition:all 1.5s ease;
                .container-img-solucion {
                  position: absolute;
                  height: 100%;
                  width: 100%;
                  top: 0;
                  left: 0;
                  z-index: -1;
                  filter: url("#svg-rounded");
                  transform: translateZ(0);
                  img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    /*clip-path: polygon(
                      0% 100%,
                      0% 0%,
                      calc(100% - 47px - 12px) 0%,
                      calc(100% - 47px - 12px) calc(47px + 12px),
                      100% calc(47px + 12px),
                      100% 100%
                    );*/
                  }
                }

                .go-to-solution {
                  display: flex;
                  justify-content: end;
                  .container-img {
                    width: 59px;
                    height: 59px;
                    padding: 8px;
                    box-sizing: border-box;
                    img {
                      opacity: 0;
                      transition: all 1.5s ease;
                      -webkit-transition:all 1.5s ease;
                      height: 100%;
                      width: 100%;
                      object-fit: contain;
                      object-position: center;
                    }
                  }
                }

                .solution-info {
                  padding: 0 23px 17px 23px;
                  box-sizing: border-box;

                  h3 {
                    color: var(--bg-color-white);
                    font-family: "DINAlternate-Bold", sans-serif;
                    font-size: 22.632px;
                    line-height: 27.158px;
                  }

                  p {
                    color: var(--bg-color-orange-2);
                    font-family: "DIN-Medium", sans-serif;
                    font-size: 15px;
                    line-height: 15px;
                    border-radius: 23px;
                    background: var(--bg-color-white);
                    display: flex;
                    justify-content: space-between;
                    padding: 7px 12px;
                    box-sizing: border-box;
                    margin-top: 12px;

                    &::after {
                      content: "";
                      display: inline-block;
                      background: url("../../images/arrow-orange-right.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                      right: 0;
                      width: 17px;
                      height: 11px;
                    }
                  }
                }
              }
            }

            &:hover {
              width: 120%; /* Aumenta el ancho al 120% */
              max-width: 409px; /* Limita el ancho máximo */
              transform-origin: 0 50% 0;
              &:last-child{
                transform: translate3d(0, 0, 0);
                -webkit-transform:translate3d(0, 0, 0);
              }
              a {
                width: 100%;

                .nuestra-solucion-card {
                  width: 100%;
                  max-width: 409px; /* Aplica el ancho máximo */
                  .container-img-solucion {
                    img {
                      clip-path: polygon(
                        0% 100%,
                        0% 0%,
                        calc(100% - 47px - 12px) 0%,
                        calc(100% - 47px - 12px) calc(47px + 12px),
                        100% calc(47px + 12px),
                        100% 100%
                      );
                    }
                  }
                  .go-to-solution {
                    .container-img {
                      img {
                        opacity: 1;
                        transform: rotate3d(0, 0, 1, -45deg);
                        -webkit-transform:rotate3d(0, 0, 1, -45deg);
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
      ul.splide__pagination {
        position: unset;
        margin-top: 12px;
        li {
          button {
            background: transparent;
            border: 1px solid var(--bg-color-white);
            height: 1rem;
            width: 1rem;
          }
          button.is-active {
            background: var(--bg-color-white);
            transform: unset;
            -webkit-transform:unset;
          }
        }
      }
      /*
      .splide__track{
        ul{
          display: flex;
          li.splide__slide{
            flex-grow: 1; 
            transition: all 1.5s ease;
            a{
              transition: all 1.5s ease;
              .nuestra-solucion-card{
                border-radius: 20px;
                position: relative;
                height: 100%;
                min-width: 282px;
                max-width: 376px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                overflow: hidden;

                transition: all 1.5s ease;
  
                .container-img-solucion{
                  position: absolute;
                  height: 100%;
                  width: 100%;
                  top: 0;
                  left: 0;
                  z-index: -1;
                  img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                  }
                }
                .go-to-solution{
                  display: flex;
                  justify-content: end;
                  .container-img{
                    width: 47px;
                    height: 47px;
                    img{
                      height: 100%;
                      width: 100%;
                      object-fit: contain;
                      object-position: center;
                    }
                  }
                }
                .solution-info{
                  padding: 0 23px 17px 23px;
                  box-sizing: border-box;
                  h3{
                    color: var(--bg-color-white);
                    font-family: "DINAlternate-Bold",sans-serif;
                    font-size: 22.632px;
                    line-height: 27.158px; 
                  }
                  span{
                    color: var(--bg-color-orange-2);
                    font-family: "DIN-Medium",sans-serif;
                    font-size: 15px;
                    line-height: 15px;
  
                    border-radius: 23px;
                    background: var(--bg-color-white);
  
                    display: flex;
                    justify-content: space-between;
  
                    padding: 7px 12px;
                    box-sizing: border-box;
                    margin-top: 12px;
                    &::after{
                      content: "";
                      display: inline-block;
                      background: url("./assets/images/img.webp");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                      right: 0;
                      width: 17px;
                      height: 11px;
                    }
                  }
                }
              }
            }
            &:hover{
              width: 100%;
              max-width: 409px;
              a{
                width: 100%;
                .nuestra-solucion-card{
                  width: 100%;
                  max-width: unset;
                }
              }
            }
          }
        }
      }
      */
    }
  }
}
section.nuestras-soluciones.choose {
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* min-height: 150vh; */
  background: #000;
  padding-top: 7rem;
  padding-bottom: 100px;
  .ellipse_container {
    position: relative;
    width: 100%;
    /* height: 100px; */
    height: 150px;
    z-index: 0;
    .abs {
      position: absolute;
      left: 50%;
      top: 0;
      -webkit-transform: scale(1) translateX(-50%);
      transform: scale(1) translateX(-50%);
      -webkit-transform-origin: center center;
      transform-origin: center center;
    }
    .ellipse {
      /* width: 100%; */
      width: 140%;
      height: 100vw;
      background: var(--bg-color-orange);
      border-top-right-radius: 50%;
      border-top-left-radius: 50%;
      z-index: 2;
      &::before {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        background: url("../../images/bg-splide-soluciones.webp");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;

        border-top-right-radius: 50%;
        border-top-left-radius: 50%;
        opacity: 0.2;
        mix-blend-mode: soft-light;
      }
    }
  }
  .contenedor {
    margin-top: 120px;
    z-index: 3;
    position: inherit;
  }
}

section.nuestros-servicios {
  margin: 105px 0 84px 0;
  background: url("../../images/Vector-bg-nuestros-servicios.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  .container {
    display: flex;
    flex-direction: column;
    gap: 166px;
    .info-scroll {
      display: flex;
      gap: 60px;
      align-items: center;
      .description-adm {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 50%;
        h2 {
          color: var(--bg-color-orange);
          font-family: "DIN-Bold", sans-serif;
          font-size: 45px;
          line-height: 50px; /* 111.111% */
        }
        .info-card {
          display: flex;
          flex-direction: column;

          border-radius: 20px;
          position: relative;
          .container-info-card {
            filter: url("#svg-rounded");
            .info-adm-card {
              background: var(--bg-color-grey);
              padding: 39px 70px 38px 32px;
              box-sizing: border-box;
              clip-path: polygon(
                0% 100%,
                0% 0%,
                100% 0%,
                100% calc(100% - 63px),
                calc(100% - 63px) calc(100% - 63px),
                calc(100% - 63px) 100%
              );
              p {
                color: var(--bg-color-white);
                font-family: "DIN-Regular", sans-serif;
                font-size: 20px;
                line-height: 25px; /* 125% */
                strong {
                  font-family: "DINAlternate-Bold";
                  font-size: 20px;
                  line-height: 25px;
                }
              }
            }
          }
          .go-to-services {
            display: flex;
            justify-content: end;
            position: absolute;
            right: 0;
            bottom: 0;
            .container-img {
              height: 61px;
              width: 61px;
              img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
                transform: rotate(-45deg);
              }
            }
          }
        }
      }
      .scroll-services {
        width: 50%;
        display: flex;
        overflow-y: scroll; /* Permite el scroll vertical */
        scrollbar-width: none; /* Firefox */
        /* gap: 0.3rem; */
        max-height: 575px;
        justify-content: space-between;
        &::-webkit-scrollbar {
          display: none; /* Chrome, Safari, Edge */
        }
        .scroll-col {
          display: flex;
          flex-direction: column;
          gap: 120px;
        }
        .col-1 {
          width: 48%;
        }
        .col-2 {
          width: 48%;
          margin-top: 171px;
        }
        .card-our-services {
          padding: 12px 20px 8px 20px;
          box-sizing: border-box;
          position: relative;
          transition: all ease 1.5s;
          .cut {
            filter: url("#svg-rounded");
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            transition: all ease 1.5s;
            .bg {
              background: #feebdb;
              height: 100%;
              width: 100%;

              transition: all ease 1.5s;
              clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%);
            }
          }
          .container-img {
            height: 140px;
            width: 100%;
            img {
              border-radius: 20px;
              height: 100%;
              width: 100%;
              object-fit: cover;
              object-position: center;
            }
          }
          .subtitle-arrow {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            h3 {
              width: 85%;
              color: var(--bg-color-orange);
              font-family: "DINAlternate-Bold", sans-serif;
              font-size: 25px;
              line-height: 25px; /* 100% */
            }
            .container-arrow-image {
              height: 42px;
              width: 15%;
              margin-top: 1rem;
              position: relative;
              right: -20px;

              padding: 2px;
              box-sizing: border-box;
              transform: rotate(45deg);

              transition: all ease .5s;
              opacity: 0;
              img {
                transition: all ease 0.5s;
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
              }
            }
          }
          &:hover {
            .cut {
              .bg {
                clip-path: polygon(
                  0% 100%,
                  0% 0%,
                  100% 0%,
                  100% calc(100% - 50px),
                  85% calc(100% - 50px),
                  85% 100%
                );
              }
            }
            .subtitle-arrow {
              .container-arrow-image {
                opacity: 1;
                img {
                  transform: rotate(-45deg);
                }
              }
            }
          }
        }
      }
    }
    .cifras {
      display: flex;
      flex-direction: column;
      gap: 60px;
      h3 {
        color: var(--bg-color-grey);
        text-align: center;
        font-family: "DINAlternate-Bold", sans-serif;
        font-size: 45px;
        line-height: 50px; /* 111.111% */
      }
      .estadisticas {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        .estadisticas-adm {
          display: flex;
          flex-direction: column;
          width: 25%;
          padding: 0 1rem;
          box-sizing: border-box;
          gap: 1rem;
          p {
            color: var(--bg-color-orange-2);
            text-align: center;
            font-family: "DINAlternate-Bold", sans-serif;
            font-size: 75px;
            line-height: 75px; /* 100% */
          }
          h4 {
            color: var(--bg-color-grey);
            text-align: center;
            font-family: "DIN-Medium", sans-serif;
            font-size: 25px;
            line-height: 31.25px; /* 125% */
          }
        }
      }
    }
  }
}
section.proyectos {
  border-radius: 0px 0px 30px 30px;
  background: #000;
  display: flex;
  flex-direction: column;
  padding-bottom: 91px;
  .subtitle-map {
    display: flex;
    flex-direction: row;
    position: relative;

    margin: unset;
    padding: 0 8% 0 8%;
    &::before {
      content: "";
      top: 0;
      left: 0;
      position: absolute;
      background: url("../../images/inicio/bg-map.png");
      background-repeat: no-repeat;
      background-position: top center;
      background-size: cover;
      opacity: 1;
      height: 100%;
      width: 100%;
      opacity: 0.03;
    }
    .subtitle-adm {
      width: 75%;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: end;
      padding-top: 22rem;
      h3 {
        color: var(--bg-color-orange-2);
        font-family: "DIN-Bold", sans-serif;
        font-size: 70px;
        line-height: 70px; /* 100% */
      }
      h2 {
        color: var(--bg-color-white);
        font-family: "DIN-Bold", sans-serif;
        font-size: 81.138px;
        line-height: 92.73px; /* 114.286% */
      }
      p {
        color: var(--bg-color-white);
        font-family: "DIN-Regular", sans-serif;
        font-size: 57.956px;
        line-height: 69.547px; /* 120% */
      }
    }
    .map {
      width: 25%;
      padding-top: 2rem;
    
      .container-img {
        width: 150%;
        aspect-ratio: 440/647;
        position: relative;
        right: 50%;
        img {
          height: 100%;
          width: 100%;
          object-fit: contain;
          object-position: center;
          aspect-ratio: 440/647;
        }
    
        .marker {
          width: 10px;
          height: 10px;
          background-color: white;
          border-radius: 50%;
          position: absolute;
          transform: translate(-50%, -50%);
    
          &:hover {
            z-index: 1;
            .container-relative {
              /* display: block; */
              visibility: visible;
              .container-img-departamento {
              }
            }
          }
          
          .container-relative {
            position: relative;
            /* display: none; */
            visibility: hidden;

            &::before{
              content: '';
              width: 15px;
              height: 15px;
              position: absolute;
              top: 0;
              left: 0;
              border: 1px solid white;
              border-radius: 50%;
              transform: translate(-30%,-30%);
            }

            .container-img-departamento {
              border-radius: 20px;
              /* display: none; */
              height: 188px;
              width: 274px;
              position: absolute;
              top: 0;
              left: 0;              
              img {
                border-radius: 20px;
                height: 100%;
                width: 100%;
                object-fit: cover;
                object-position: center;
              }
              .departamento-nombre{
                width: 100%;
                height: 100%;
                position: relative;
                z-index: 0;
                span.name{
                  position: absolute;
                  color: var(--bg-color-white);
                  text-align: center;
                  font-family: "DINAlternate-Bold",sans-serif;
                  font-size: 15.613px;
                  line-height: 19.516px; /* 125% */

                  top: -50%;
                  left: 50%;
                  transform: translate(-50%, -50%);
                }
              }
            }
            .container-img-departamento.down{
              
            }
            /* Ajuste del canvas */
            canvas {
              position: absolute;
              top: 0;
              left: 0;
              width: 200px;
              height: 100px;
              /* Establecemos un tamaño fijo o relativo al contenedor del mapa */
              /* width: 647px; */ /* o el tamaño exacto de tu mapa */
              /* height: 647px; */ /* Ajuste proporcional al tamaño del mapa */
              pointer-events: none; /* Para evitar que el hover interfiera con el canvas */
            }
          }
        }
      }
    }
    
  }
  .partners {
    display: flex;
    flex-direction: row;
    margin-top: 200px;
    align-items: center;
    gap: 46px;
    margin-right: 7.5%;
    #splide_partners {
      width: 50%;
      overflow: hidden;
      .splide__track {
        width: 80%;
        overflow: unset;
        ul {
          li.splide__slide {
            .container-img-partner {
              border-radius: 20px;
              background: var(--bg-color-white);
              height: 100%;
              width: 100%;
              padding: 8px 8px;
              box-sizing: border-box;
              img {
                object-fit: contain;
                object-position: center;
                height: 100%;
                width: 100%;
              }
            }
          }
        }
      }
    }
    .arrows-info {
      display: flex;
      flex-direction: column;
      width: 50%;
      gap: 25px;
      .info-adm {
        h3 {
          color: var(--bg-color-orange-2);
          font-family: "DIN-Bold", sans-serif;
          font-size: 45px;
          line-height: 50px; /* 111.111% */
        }
        p {
          color: var(--bg-color-white);
          font-family: "DIN-Regular", sans-serif;
          font-size: 20px;
          line-height: 25px;
          strong {
            color: var(--bg-color-white);
            font-family: "DIN-Bold", sans-serif;
            font-size: 20px;
            line-height: 25px; /* 125% */
          }
        }
      }
      .splide__arrows {
        display: flex;
        flex-direction: row;
        gap: 9px;
        button {
          border-radius: 38.759px;
          /* border: 1px solid #fff;
          background: rgba(255, 255, 255, 0.5); */
          /* padding: 0.5rem; */
          .container-img {
            width: 39px;
            height: 39px;
            img {
              height: 100%;
              width: 100%;
              object-fit: contain;
              object-position: center;
            }
          }
        }
        button.custom-prev {
          transform: rotate(-180deg);
        }
      }
    }
  }
  .experiencia {
    margin-top: 140px;
    .info-adm {
      display: flex;
      flex-direction: row;
      align-items: center;
      h3 {
        width: 40%;
        color: var(--bg-color-orange-2);
        font-family: "DIN-Bold", sans-serif;
        font-size: 45px;
        line-height: 50px; /* 111.111% */
        text-align: center;
      }
      p {
        width: 60%;
        color: var(--bg-color-white);
        font-family: "DIN-Regular", sans-serif;
        font-size: 20px;
        line-height: 25px; /* 125% */
        max-width: 580px;
        justify-content: center;
        margin: 0 auto;
        strong {
          color: var(--bg-color-orange-2);
          font-family: "DIN-Bold";
          font-size: 20px;
          line-height: 25px;
        }
      }
    }
  }
  .splide-clients {
    margin-bottom: 40px;
    .carruseles {
      display: flex;
      flex-direction: column;
      margin-top: 58px;
      gap: 40px;
      .splide {
        position: relative;
        .splide__arrows {
          position: absolute;
          bottom: 50px;
          right: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          height: fit-content;
          justify-content: space-between;
          top: 50%;
          width: 100%;
          transform: translateY(-50%);
          z-index: 0;
          button {
            .arrow-banner {
              height: 38px;
              width: 38px;
              img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
              }
            }
          }
          button.custom-prev {
            transform: translate(-100%, 0);
          }
          button.custom-next {
            transform: translate(100%, 0);
          }
        }
        .splide__track {
          ul {
            li.splide__slide {
              height: 100%;
              transition: all ease 0.5s;
              position: relative;
              .container-img {
                background: var(--bg-color-white);
                border-radius: 20px;
                padding: 0.5rem 1rem;
                box-sizing: border-box;
                height: 100%;
                transition: all ease 0.5s;
                img {
                  width: 100%;
                  height: 100%;
                  object-fit: contain;
                  object-position: center;
                }
                /* &:hover{
                  transform: scale(0.8);
                } */
              }
            }
          }
        }
      }
      position: relative;
      &::before,
      &::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px; /* Ajusta el ancho del sombreado */
        z-index: 2;
      }

      &::before {
        left: 0;
        /* box-shadow: 100px 0 80px 40px rgba(0,0,0,0.5); /* Sombra a la izquierda */
        background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
      }

      &::after {
        right: 0;
        /* box-shadow: -100px 0 80px 40px rgba(0,0,0,0.5); Sombra a la derecha */
        background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
      }
    }
  }
  a {
    margin: 0 auto;

    color: var(--bg-color-white);
    font-family: "DIN-Medium", sans-serif;
    font-size: 20.288px;
    line-height: 20.288px; /* 100% */
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all ease 0.5s;

    border-radius: 29px;
    background: linear-gradient(90deg, #ff7409 0%, #f6a033 100%);
    padding: 13px 20px;
    align-items: center;

    &::after {
      content: "";
      display: inline-block;
      background: url("../../images/arrow-white-right.svg");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      right: 0;
      width: 22px;
      height: 15px;
    }
    &:hover {
      gap: 1rem;
    }
  }
}
section.trabajemos-juntos {
  height: 448px;
  margin-bottom: 40px;
  margin-top: 10px;
  .container-trabajemos {
    width: 80%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    z-index: 0;
    .h-80 {
      height: 80%;
      padding: 42px 0px 42px 117px;
      box-sizing: border-box;
      width: 60%;
      .descripcion-btn {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        .descripcion-adm {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          h2 {
            color: var(--bg-color-grey);
            font-family: "DIN-Medium", sans-serif;
            font-size: 35px;
            line-height: 40px; /* 114.286% */
            strong {
              color: var(--bg-color-grey);
              font-family: "DIN-Bold", sans-serif;
              font-size: 35px;
              line-height: 40px;
            }
          }
          p {
            color: var(--bg-color-white);
            font-family: "DIN-Regular", sans-serif;
            font-size: 25px;
            line-height: 30px; /* 120% */
          }
        }
      }
      a {
        border-radius: 29px;
        background: var(--bg-color-white);
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);

        color: var(--bg-color-orange);
        font-family: "DIN-Medium";
        font-size: 20.288px;
        line-height: 20.288px; /* 100% */

        padding: 13px 17px 13px 20px;
        width: fit-content;

        justify-content: center;
        align-items: center;
        display: flex;
        gap: 0.5rem;
        &::after {
          content: "";
          display: inline-block;
          background: url("../../images/arrow-orange-right.svg");
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center;
          right: 0;
          width: 22px;
          height: 15px;
        }
      }
    }
    .container-img {
      width: 40%;
      height: 100%;
      padding-right: 2rem;
      z-index: 1;
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
      }
    }
    &::before {
      content: "";
      opacity: 0.05;
      background: url("../../images/img-card-novedades.webp") lightgray 50% /
        cover no-repeat;
      mix-blend-mode: soft-light;
      box-shadow: 0px 0px 10px 0px #000;
      bottom: 0;
      border-radius: 30px;
      height: 80%;
      width: 100%;
      position: absolute;
      left: 0;
      z-index: -2;
    }
    &::after {
      content: "";
      background: var(--bg-color-orange);
      bottom: 0;
      border-radius: 30px;
      height: 80%;
      width: 100%;
      position: absolute;
      mix-blend-mode: soft-light;
      left: 0;
      z-index: -2;
    }
  }
}
section.table-categorys,
section.novedades {
  margin-top: 85px;
  .container {
    position: relative;
    /* filter: blur(6px); */
    .category-name {
      padding: 0 45px;
      background: white;
      position: absolute;
      top: 0;
      left: 0;
      h3 {
        color: var(--bg-color-orange);
        font-family: "DIN-Medium", sans-serif;
        font-size: 40px;
        line-height: 40px; /* 100% */
      }
    }
    .filter-cards {
      filter: url("#svg-rounded");
      .container-filter {
        display: flex;
        justify-content: end;
        .filter {
          padding: 0 143px;
          box-sizing: border-box;
          .body-filter {
            cursor: pointer;
            padding: 21px 41px 16px 39px;
            box-sizing: border-box;
            background: #feebdb;
            display: flex;
            gap: 8px;
            align-items: center;
            button {
              position: relative;
              width: 19px;
              height: 11px;
              transform: translate(0%, -50%);
              &::before,
              &::after {
                background: var(--bg-color-grey);
                border-radius: 141.029px;
                content: "";
                position: absolute;
                width: 100%;
                height: 1px;
                transition: all 0.5s ease;
                left: 50%;
                top: calc(50%);
                transform: translate(-50%, -50%);
              }
              &::after {
                transform: translate(-50%, -50%) rotate(0deg);
                top: calc(50% + 0.5rem);
              }
            }
            span {
              color: var(--bg-color-grey);
              font-family: "DIN-Regular", sans-serif;
              font-size: 20px;
              line-height: 20px; /* 100% */
            }
          }
        }
      }
      .body-cards {
        position: relative;
        padding: 36px 36px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        &::before {
          background: #feebdb;
          content: "";
          height: 100%;
          width: 100%;
          position: absolute;
          top: 0;
          left: 0;

          z-index: -1;
        }
        .filter-selects {
          transition: all ease 1s;
          max-height: 0;
          visibility: hidden;
          /* line-height:0; */
          opacity: 0;
        }
        .filter-selects.displayed {
          /* line-height: 14.792px; */
          max-height: 10rem;
          visibility: visible;
          /* padding: 9.478px 14.582px; */
          padding-bottom: 40px;
          opacity: 1;
        }
        .cards-per-category {
          /* flex-direction: row;
          flex-wrap: wrap; */
          /* grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); */
          grid-template-columns: repeat(3, 1fr);
          justify-items: center;
          gap: 53px;
          position: relative;
          /* margin-top: 40px; */
          display: none;

          justify-content: flex-start;
          a.links-articles {
            /* width: 28%; */
            /*flex-basis: 28%;
            flex-grow: 1;*/
            /* max-height: 380px; */
            width:100%;
            max-width: 380px;
            &:last-child{
              /* margin-right:auto; */
            }
            .card-per-category.articles {
              position: relative;
              width: 100%;
              transition: all ease 0.5s;
              .container-card {
                display: flex;
                flex-direction: column;
                height: 100%;
                width: 100%;
                padding: 12px 20px 68px 20px;
                box-sizing: border-box;
                position: relative;

                transition: all ease 0.5s;
                filter: url("#svg-rounded");
                &::before {
                  content: "";
                  height: 100%;
                  width: 100%;
                  position: absolute;
                  background: var(--bg-color-white);

                  transition: all ease 0.5s;
                  /* clip-path: polygon(0% 100%, 1% 0%, 99% 0%, 100% 84%, 72% 83%, 72% 100%); */
                  z-index: -1;
                  top: 0;
                  left: 0;
                  border-radius: 20px;
                }
                .container-img {
                  width: 100%;
                  aspect-ratio: 249/158;
                  img {
                    aspect-ratio: 249 / 158;
                    border-radius: 10px;
                    height: 100%;
                    width: 100%;
                    object-position: center;
                    object-fit: cover;
                  }
                }
                span {
                  color: var(--bg-color-orange);
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 15px;
                  line-height: 18px; /* 120% */
                  margin-top: 11px;
                }
                .resume-adm {
                  margin-top: 4px;
                  h4 {
                    color: var(--bg-color-orange-2);
                    font-family: "DINAlternate-Bold", sans-serif;
                    font-size: 20px;
                    line-height: 25px; /* 125% */
                  }
                  p {
                    color: var(--bg-color-grey);
                    font-family: "DIN-Regular", sans-serif;
                    font-size: 18px;
                    line-height: 23px; /* 127.778% */

                    /*overflow texto*/
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 5;
                    text-overflow: ellipsis;
                    white-space: normal;

                    max-height: 100%;
                  }
                }
              }
              .container-img-arrow {
                height: 63px;
                width: 63px;
                position: absolute;
                bottom: 0;
                right: 0;

                transition: all ease 0.5s;
                opacity: 0;

                padding: 10px 12px;
                box-sizing: border-box;
                img {
                  height: 100%;
                  width: 100%;
                  object-fit: contain;
                  object-position: center;
                }
              }
              &:hover {
                .container-card {
                  /* filter: url('#svg-rounded'); */
                  &::before {
                    clip-path: polygon(
                      0% 100%,
                      0% 0%,
                      100% 0%,
                      100% calc(100% - 63px),
                      calc(100% - 63px) calc(100% - 63px),
                      calc(100% - 63px) 100%
                    );
                  }
                }
                .container-img-arrow {
                  opacity: 1;
                  img {
                  }
                }
              }
            }
          }
          .card-per-category.event {
            background: var(--bg-color-white);
            border-radius: 20px;
            width: 100%;
            max-width: 380px;
            overflow: hidden;
            position: relative;
            &:last-child{
              margin-right:auto;
            }
            .container-card {
              display: flex;
              flex-direction: column;
              height: 100%;
              &::before {
                /*
                content: '';
                height: 100%;
                width: 100%;
                position: absolute;
                background:var(--bg-color-white);
                
                transition: all ease 0.5s;
                z-index: -1;
                top: 0;
                left: 0;
                border-radius: 20px;
                */
              }
              .container-img {
                width: 100%;
                aspect-ratio: 271/169;
                img {
                  aspect-ratio: 271/169;
                  height: 100%;
                  width: 100%;
                  object-position: center;
                  object-fit: cover;
                }
              }
              .container-event-info {
                width: 90%;
                margin: 11px auto 13px auto;
                display: flex;
                flex-direction: column;
                gap: 5px;
                flex-grow: 1;
                & > span {
                  color: #8f8f8f;
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 15px;
                  line-height: normal;
                  margin-top: 11px;
                }
                h4 {
                  color: var(--bg-color-orange-2);
                  font-family: "DINAlternate-Bold", sans-serif;
                  font-size: 17.818px;
                  line-height: normal;
                }
                .event-info {
                  display: flex;
                  flex-wrap: wrap;
                  row-gap: 0.5rem;
                  .info {
                    align-items: center;
                    width: 50%;
                    padding: 0 4px;
                    box-sizing: border-box;
                    display: flex;
                    flex-direction: row;
                    gap: 3px;
                    &::before {
                      content: "";
                      display: inline-block;
                      width: 28px;
                    }
                    span {
                      color: var(--bg-color-grey);
                      font-family: "DINPro-Regular", sans-serif;
                      font-size: 12px;
                      line-height: normal;
                    }
                  }
                  .info.date {
                    &::before {
                      height: 25px;
                      background: url("../../images/novedad-calendar-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                  .info.hour {
                    &::before {
                      height: 25px;
                      background: url("../../images/novedad-hour-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                  .info.time {
                    &::before {
                      height: 24px;
                      background: url("../../images/novedad-time-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                  .info.mode {
                    &::before {
                      height: 25px;
                      background: url("../../images/novedad-modalidad-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                }
              }
              a {
                color: var(--bg-color-white);
                font-family: "DIN-Bold", sans-serif;
                font-size: 18.658px;
                line-height: normal;

                background: var(--bg-color-orange);
                border-radius: 0px 0px 20px 20px;
                text-align: center;
                padding: 17px 0;

                transition: all ease 0.5s;

                border: 1px solid transparent;
              }
            }
            &:hover {
              .container-card {
                a {
                  color: var(--bg-color-orange);
                  background: var(--bg-color-white);
                  border: 1px solid var(--bg-color-orange);
                }
              }
            }
          }
          .card-per-category.webinar {
            background: var(--bg-color-white);
            border-radius: 20px;
            width: 100%;
            max-width: 380px;
            overflow: hidden;
            position: relative;
            &:last-child{
              margin-right:auto;
            }
            .container-card {
              height: 100%;
              display: flex;
              flex-direction: column;
              &::before {
                /*
                content: '';
                height: 100%;
                width: 100%;
                position: absolute;
                background:var(--bg-color-white);
                
                transition: all ease 0.5s;
                z-index: -1;
                top: 0;
                left: 0;
                border-radius: 20px;
                */
              }
              .container-img {
                width: 100%;
                aspect-ratio: 271/169;
                flex-grow: 1;
                img {
                  aspect-ratio: 271/169;
                  height: 100%;
                  width: 100%;
                  object-position: center;
                  object-fit: cover;
                }
              }
              .container-event-info {
                width: 90%;
                margin: 11px auto 13px auto;
                display: flex;
                flex-direction: column;
                gap: 5px;
                & > span {
                  color: #8f8f8f;
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 15px;
                  line-height: normal;
                  margin-top: 11px;
                }
                h4 {
                  color: var(--bg-color-orange-2);
                  font-family: "DINAlternate-Bold", sans-serif;
                  font-size: 17.818px;
                  line-height: normal;
                }
                .event-info {
                  display: flex;
                  flex-wrap: wrap;
                  row-gap: 0.5rem;
                  .info {
                    align-items: center;
                    width: 100%;
                    padding: 0 4px;
                    box-sizing: border-box;
                    display: flex;
                    flex-direction: row;
                    gap: 3px;
                    &::before {
                      content: "";
                      display: inline-block;
                      width: 30px;
                      height: 30px;
                    }
                    span {
                      color: var(--bg-color-grey);
                      font-family: "DINPro-Bold", sans-serif;
                      font-size: 16px;
                      line-height: normal;
                    }
                  }
                  .info.date {
                    &::before {
                      background: url("../../images/novedad-calendar-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                  .info.hour {
                    &::before {
                      background: url("../../images/novedad-hour-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                  .info.time {
                    &::before {
                      background: url("../../images/novedad-time-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                  .info.mode {
                    &::before {
                      background: url("../../images/novedad-modalidad-icon.svg");
                      background-repeat: no-repeat;
                      background-size: contain;
                      background-position: center;
                    }
                  }
                }
              }
              a {
                color: var(--bg-color-white);
                font-family: "DIN-Bold", sans-serif;
                font-size: 18.658px;
                line-height: normal;

                background: var(--bg-color-orange);
                border-radius: 0px 0px 20px 20px;
                text-align: center;
                padding: 17px 0;

                transition: all ease 0.5s;

                border: 1px solid transparent;
              }
            }
            &:hover {
              .container-card {
                a {
                  color: var(--bg-color-orange);
                  background: var(--bg-color-white);
                  border: 1px solid var(--bg-color-orange);
                }
              }
            }
          }
        }
        .cards-per-category.active {
          display: grid;
        }
      }
    }
    a.ver-mas {
      color: var(--bg-color-white);
      font-family: "DIN-Medium", sans-serif;
      font-size: 20.288px;
      line-height: 20.288px; /* 100% */

      border-radius: 29px;
      background: linear-gradient(90deg, #ff7409 0%, #f6a033 100%);
      padding: 20px 13px;
      display: inline-block;
      margin: 37px auto 0 auto;

      &::after {
        content: "";
        background: url("../../images/arrow-white-right.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 23px;
        height: 16px;
        display: inline-block;
      }
    }
  }
}

/****************  Estilos generales para Custom Selects **************/
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  width: 100%;
  select {
    display: none; /*hide original SELECT element:*/
  }
  .select-selected {
    border-radius: 16.393px;
    background: #fff;

    color: var(--bg-color-purple);
    padding: 8px 20px 8px 8px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;

    font-family: "Poppins-Light", sans-serif;
    font-size: 17.595px;
    line-height: 21.994px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    /*style the arrow inside the select element:*/
    &:after {
      content: "";
      background: url("../../images/arrow-down-orange-forms.svg");
      background-position: center center; /* Alinear la imagen a la derecha */
      background-repeat: no-repeat;
      background-size: contain;
      display: inline-block;
      width: 12px;
      height: 7px;
    }
  }
  .container-select-items {
    /*style items (options):*/
    .select-items {
      position: absolute;
      border-radius: 26.393px;
      background: var(--3, #2e3091);
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;

      display: flex;
      flex-direction: column;
      overflow: hidden;
      /*style the items (options), including the selected item:*/
      & > div {
        color: var(--bg-color-white);
        padding: 16px 16px;
        border-bottom: 1px solid #f89d4b;
        cursor: pointer;
        user-select: none;
      }
    }
  }
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
}

/*************************** Estilos Date picker *****************/
#ui-datepicker-div {
  background: var(#fff6ee);
  border-radius: 20px;
  border: none;
  transform: translateY(2rem);
  #ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
  }
  table {
    padding: 2rem;
    thead {
      tr {
        border-bottom: 1px solid;
      }
    }
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 20px;
    background: #fff6ee;
  }
  .ui-datepicker-calendar thead th {
    padding: 0.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--bg-color-purple);
    span[title="Sunday"] {
      color: var(--bg-color-red);
    }
  }
  .ui-datepicker-calendar tbody {
    .ui-state-default,
    .ui-widget-content .ui-state-default,
    .ui-widget-header .ui-state-default,
    .ui-button,
    html .ui-button.ui-state-disabled:hover,
    html .ui-button.ui-state-disabled:active {
      border: none;
      background: none;
    }
  }
  .ui-datepicker-calendar tbody td {
    width: 2.5rem;
    text-align: center;
    padding: 0;
    span.ui-state-default {
      color: var(--bg-color-red);
    }
  }
  .ui-datepicker-calendar tbody td a {
    display: block;
    border-radius: 0.25rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: var(--bg-color-purple);
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
  }
  .ui-datepicker-calendar tbody td a:hover {
    background-color: var(--bg-color-orange-2);
  }
  .ui-datepicker-calendar tbody td a.ui-state-active {
    background-color: var(--bg-color-orange-2);
    color: white;
  }

  .ui-datepicker-header {
    background: var(--bg-color-yellow);
    border-radius: 10px;
    width: 70%;
    margin: 0 auto;
    padding: 7px 10px;

    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
  }

  .ui-datepicker-header a.ui-corner-all {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 1rem;
    height: 1rem;
    /* margin: 0.5rem; */
    border-radius: 0.25rem;
    transition: 0.3s all;
  }
  .ui-datepicker-header a.ui-corner-all:hover {
    background-color: #eceff1;
  }
  .ui-datepicker-header a.ui-datepicker-prev {
    left: 0.5rem;
    background: url("../../images/arrow-orange-right.svg");
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: 50%;

    top: 50%;
    transform: translate(0, -50%) rotate(180deg);
  }
  .ui-datepicker-header a.ui-datepicker-next {
    right: 0.5rem;
    background: url("../../images/arrow-orange-right.svg");
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: 50%;
  }
  .ui-datepicker-header a > span {
    display: none;
  }
  .ui-datepicker-title {
    /* text-align: center;
      line-height: 2rem;
      margin-bottom: 0.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      padding-bottom: 0.25rem; */
    color: var(--bg-color-purple);
    text-align: center;
    font-family: "Poppins-SemiBold", sans-serif;
    font-size: 15.036px;
    line-height: 15.036px; /* 100% */
  }
  .ui-datepicker-week-col {
    color: #78909c;
    font-weight: 400;
    font-size: 0.75rem;
  }
}

/***********************************************************************/

@media (max-width: 1250px) {
  header {
    nav {
      .container {
        .d-flex {
          justify-content: space-between;
          ul.header-menu {
            display: none;
          }
          button.container-img {
            display: block;
            padding: 0;
          }
        }
      }
    }
  }

  aside,
  div.aside-blog {
    width: 35%;
    .container-aside {
      margin: 11% auto 18% auto;
      /* justify-content: unset; */
      .container-close-aside {
        height: auto;
        margin: 0;
        .close-aside {
          padding: 0;
          transition: all ease 0.5s;
          &::before,
          &::after {
          }
          &::before {
          }
          &::after {
          }
        }
        .close-aside.change-form {
          &::before,
          &::after {
            width: 15px;
          }
          &::before {
            transform: translate(0, 10px) rotate(45deg);
          }
          &::after {
          }
        }
      }
      .menu-principal {
        display: block;
        transition: all ease 0.5s;
        ul {
          gap: 1.1rem;
          li {
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            gap: 1rem;
            a {
              color: var(--bg-color-purple);
              font-family: "Poppins-Light", sans-serif;
              font-size: 18px;
              line-height: 20px; /* 111.111% */
            }
            hr.full-width {
              width: 100%;
            }
          }
          .enlace-admision {
            display: block;
            button {
            }
          }
        }
      }
      .menu-principal.change-position {
        flex-grow: 1;
        margin-top: 3rem;
      }

      .contacto {
        padding: 0px;
        p {
        }
        .redes-icons ul {
        }
      }
    }
  }
}

/********* RESPONSIVE **********/
@media (max-width: 1250px) {
  header {
    nav {
      .d-flex {
        gap: 0;
        .container-img {
          img {
          }
        }
        button.container-img {
          img {
          }
        }
      }
    }
    nav.bg-transparent {
      ul.header-menu {
        li {
        }
        li.contactanos {
          &:hover {
          }
        }
      }
    }
  }

  aside,
  div.aside-blog {
    width: 35%;
    .container-aside {
      margin: 11% auto 18% auto;
      .container-close-aside {
        height: auto;
        margin: 0;
        .close-aside {
        }
      }
      .menu-principal {
        ul {
          gap: 1.1rem;
          li {

          }
        }
      }
    }
  }

  section.banner-page {
    .container {
      .page-title {
        h1 {
        }
      }
    }
  }

  section.trabajemos-juntos {

    .container-trabajemos {

      .h-80 {
        padding: 42px 21px 0 60px;
        .descripcion-btn {

          .descripcion-adm {
            h2 {
              
              strong {

              }
            }
            p {

            }
          }
        }
        a {
        }
      }
      .container-img {

        img {
        }
      }
      &::before {

      }
      &::after {

      }
    }
  }

  section.table-categorys,
  section.novedades {
    .container{
      .filter-cards {
        .body-cards{
          .cards-per-category {
            gap: 25px;
          }
        }
      }

    }
  }
}

@media (max-width: 1150px) {
  footer {
    .container {
      .menus-footer {
        flex-wrap: wrap;
        justify-content: space-between;
        .logo-descripcion {
          align-items: center;
          width: 100%;
          .container-img {
            width: 50%;
            img {

            }
          }
          .texto-adm {
            width: 50%;
            p {
            }
          }
        }
        .submenu-footer {
          width: 40%;
          max-width: unset;
          .item-separador {
            span {
              
            }
            hr {
              
            }
          }
          ul {

            li {
              
            }
          }
        }
      }
      .redes {

        hr {

        }
        .icons {

          ul {

            li {
              .container-img {

                img {

                }
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 992px) {
  aside,div.aside-blog{
    width: 50%;
  }
  section.nuestros-servicios {
    .container {
      .info-scroll {
        display: flex;
        /* flex-direction: column; */
        .description-adm {
          h2 {
            font-size: 30px;
            line-height: 30px;
          }
          .info-card {
            .container-info-card {
              filter: url("#svg-rounded");
              .info-adm-card {
                padding: 33px 22px;
                clip-path: polygon(
                  0% 100%,
                  0% 0%,
                  100% 0%,
                  100% calc(100% - 42px),
                  calc(100% - 42px) calc(100% - 42px),
                  calc(100% - 42px) 100%
                );
                p {
                  font-size:15px;
                  line-height: 18px;
                  strong {
                    font-size: 15px;
                    line-height: 18px;
                  }
                }
              }
            }
            .go-to-services {
              .container-img {
                height: 40px;
                width: 40px;
              }
            }
          }
        }
        .scroll-services {
          display: flex;
          overflow-y: unset; /* Permite el scroll vertical */
          scrollbar-width: none;
          flex-direction: column;
          gap: 19px;
          &::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Edge */
          }
          .scroll-col {
            gap: 19px;
          }
          .col-1 {
            margin: 0 auto;
            width: 100%;
          }
          .col-2 {
            /* display: none; */
            width: 100%;
            margin-top: 0;
          }
          .card-our-services {
            padding: 7px 12px;
            .cut {
              .bg {
                clip-path: polygon(
                  0% 100%,
                  0% 0%,
                  100% 0%,
                  100% calc(100% - 50px),
                  85% calc(100% - 50px),
                  85% 100%
                );
              }
            }
            .container-img {
              img {
              }
            }
            .subtitle-arrow {
              h3 {
                font-size: 25px;
                line-height: 25px; /* 100% */
                width: 78%;
              }
              .container-arrow-image {
                width: 22%;
                opacity: 1;
                img {
                  transform: rotate(-45deg);
                }
              }
            }
            &:hover {
              .cut {
                .bg {
                  clip-path: polygon(
                    0% 100%,
                    0% 0%,
                    100% 0%,
                    100% calc(100% - 50px),
                    calc(100% - 50px) calc(100% - 50px),
                    calc(100% - 50px) 100%
                  );
                }
              }
              .subtitle-arrow {
                .container-arrow-image {
                  img {
                  }
                }
              }
            }
          }
        }
      }
      .cifras {
        gap: 30px;
        h3 {
          font-size: 30px;
          line-height: 30px;
        }
        .estadisticas {
          row-gap: 28px;
          .estadisticas-adm {
            width: 50%;
            padding: 0;
            p {
              font-size: 55px;
              line-height: 55px; /* 100% */
            }
            h4 {
              font-size: 15px;
              line-height: 18px; /* 125% */
              width: 70%;
              margin: 0 auto;
            }
          }
        }
      }
    }
  }

  section.proyectos {
    .subtitle-map {
      flex-wrap: wrap;
      gap: 10px;
      &::before {
      }
      .subtitle-adm {
        width: 100%;
        order: 2;
        padding-top: unset;
        h3 {
          font-size: 40px;
          line-height: 40px; /* 100% */
        }
        h2 {
          color: var(--bg-color-white);
          font-family: "DIN-Bold", sans-serif;
          font-size: 50px;
          line-height: 50px; /* 114.286% */
        }
        p {
          color: var(--bg-color-white);
          font-family: "DIN-Regular", sans-serif;
          font-size: 30px;
          line-height: 35px; /* 120% */
        }
      }
      .map {
        width: 100%;
        margin-top: 0rem;
        order: 1;
        display: flex;
        justify-content: end;
        align-items: end;
        .container-img {
          width: 60%;
          right: unset;
          /* height: 647px; */
          img {
            height: 100%;
            width: 100%;
            object-fit: contain;
            object-position: center;
          }
          .marker {      
            &:hover {
              .container-relative {
                .container-img-departamento {
                }
              }
            }
            
            .container-relative {
              .container-img-departamento {
                height: 150px;
                width: 240px;
                img {

                }
                .departamento-nombre{

                  span.name{
                   
                  }
                }
              }
              .container-img-departamento.down{
                
              }
              canvas {
                width: 150px;
                height: 50px;
              }
            }
          }
        }
      }
    }
    .partners {
      flex-direction: column;
      gap: 31px;
      margin: 130px 0 0 0;

      #splide_partners {
        width: 100%;
        order: 2;
        position: relative;
        &::before,
        &::after {
          content: "";
          position: absolute;
          top: 0;
          bottom: 0;
          width: 50px; /* Ajusta el ancho del sombreado */
          z-index: 2;
        }
  
        &::before {
          left: 0;
          background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
        }
  
        &::after {
          right: 0;
          background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
        }
        .splide__track {
          width: 80%;
          overflow: unset;
          ul {
            li.splide__slide {
              .container-img-partner {
                border-radius: 20px;
                background: var(--bg-color-white);
                height: 100%;
                width: 100%;
                padding: 8px 8px;
                box-sizing: border-box;
                img {
                  object-fit: contain;
                  object-position: center;
                  height: 100%;
                  width: 100%;
                }
              }
            }
          }
        }
      }
      .arrows-info {
        width: 85%;
        gap: 21px;
        order: 1;
        .info-adm {
          h3 {
            font-size: 30px;
            line-height: 35px; /* 111.111% */
          }
          p {
            font-size: 15px;
            line-height: 18px;
            strong {
              font-size: 15px;
              line-height: 18px; /* 125% */
            }
          }
        }
        .splide__arrows {
          display: flex;
          flex-direction: row;
          gap: 9px;
          button {
            border-radius: 38.759px;
            .container-img {
              width: 39px;
              height: 39px;
              img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
              }
            }
          }
          button.custom-prev {
            transform: rotate(-180deg);
          }
        }
      }
    }
    .experiencia {
      margin-top: 83px;
      .info-adm {
        flex-direction: column;
        h3 {
          width: 100%;
          font-size: 30px;
          line-height: 35px; /* 111.111% */
        }
        p {
          width: 100%;
          font-size: 15px;
          line-height: 18px; /* 125% */
          strong {
            font-size: 15px;
            line-height: 18px;
          }
        }
      }
    }
    .splide-clients {
      margin-bottom: 40px;
      margin-top: 40px;
      .carruseles {
        width: 90%;
        gap: 28px;
        margin: 0 auto;
        .splide {
          .splide__arrows {
            button {
              .arrow-banner {
                height: 30px;
                width: 30px;
                img {
                  height: 100%;
                  width: 100%;
                  object-fit: contain;
                  object-position: center;
                }
              }
            }
            button.custom-prev {
              transform: translate(-100%, 0) rotate(-180deg);
            }
            button.custom-next {
              transform: translate(100%, 0);
            }
          }
          .splide__track {
            ul {
              li.splide__slide {
                .container-img {
                  img {
                  }
                }
              }
            }
          }
        }
        position: relative;
        &::before,
        &::after {
          width: 50px;
        }
  
      }
    }
    a {
      &::after {

      }
      &:hover {
      }
    }
  }

  section.trabajemos-juntos {

    .container-trabajemos {

      .h-80 {
        padding: unset;
        .descripcion-btn {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          padding: 33px 23px 0 23px;
          .descripcion-adm {
            h2 {
              font-family: "DINAlternate-Bold",sans-serif;
              font-size: 28px;
              line-height: 40px; /* 114.286% */
              strong {
                font-family: "DINAlternate-Bold",sans-serif;
                font-size: 28px;
                line-height: 40px;
              }
            }
            p {
              font-family: "DIN-Light",sans-serif;
              font-size: 18px;
              line-height: 20px; /* 120% */
            }
          }
        }
        a {
        }
      }
      .container-img {
        /* width: 100%;
        height: 350px;
        padding-right: 0rem; */
        img {
        }
      }
      &::before {
        height: 100%;
      }
      &::after {
        height: 100%;
      }
    }
  }

  section.table-categorys,
  section.novedades {
    .container{
      .filter-cards {
        .body-cards{
          .cards-per-category {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
          }
        }
      }

    }
  }
}

@media (max-width: 800px) {
  section.trabajemos-juntos {
    height: unset;
    margin-bottom: 80px;
    margin-top: 100px;
    .container-trabajemos {
      flex-direction: column;
      padding: 0;
      box-sizing: border-box;
      width: 60%;
      .h-80 {
        height: 100%;
        width: 100%;
        padding:0;
        .descripcion-btn {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          padding: 33px 23px 0 23px;
          .descripcion-adm {
            h2 {
              font-family: "DINAlternate-Bold",sans-serif;
              font-size: 28px;
              line-height: 40px; /* 114.286% */
              strong {
                font-family: "DINAlternate-Bold",sans-serif;
                font-size: 28px;
                line-height: 40px;
              }
            }
            p {
              font-family: "DIN-Light",sans-serif;
              font-size: 18px;
              line-height: 20px; /* 120% */
            }
          }
        }
        a {
        }
      }
      .container-img {
        width: 100%;
        height: 350px;
        padding-right: 0rem;
        img {
        }
      }
      &::before {
        height: 100%;
      }
      &::after {
        height: 100%;
      }
    }
  }
}


@media (max-width: 700px) {
  aside,div.aside-blog{
    width: 70%;
  }

  main {
    .bubble {
      a {
        .container-img-wsp {
          width: 2.5rem;
          height: 2.5rem;
          img {

          }
        }
  
        .escribenos-img {
          .escribenos {
            p {

            }
          }
          .container-img {
            img {

            }
          }
        }
      }
    }
  }

  section.main-banner {
    .container-video {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      video {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }
    .container {
      height: 100%;
      display: flex;
      justify-content: center;
      .main-info {
        width: 90%;
        h2 {
          color: var(--bg-color-white);
          font-family: "DIN-Bold";
          font-size: 35px;
          line-height: 40px; /* 125% */
          text-align: center;
        }
        p {
          font-size: 20px;
          line-height: 25px;
          text-align: center;
        }
        .call-to-solutions-services {
          flex-direction: column;
          gap: 1rem;
          margin-top: 27px;
          a {
            margin: 0 auto;
            width: 60%;
            padding: 10px 22px;
            &:hover {
            }
          }
          a:first-child {
            &:hover {
            }
          }
        }
      }
    }
  }

  section.nuestras-soluciones {
    .container {
      h2 {
        font-size: 30px;
        line-height: 30px; /* 100% */
      }
      #splide_soluciones {
        margin-top: 20px;
        .splide__arrows {
          button {
            .arrow-banner {
              height: 45px;
              width: 45px;
              transform: translate(-5px, 0px);
              img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
              }
            }
          }
          button.custom-prev {
            transform: translate(-100%, 0) rotate(-180deg);
          }
          button.custom-next {
            transform: translate(100%, 0);
          }
        }
        .splide__track {
          position: relative;
          &::before,
          &::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px; /* Ajusta el ancho del sombreado */
            z-index: 2;
            display: none;
          }
  
          &::before {
            left: 0;
            /* box-shadow: 100px 0 80px 40px rgba(0,0,0,0.5); /* Sombra a la izquierda */
            background: linear-gradient(
              90deg,
              var(--bg-color-orange) 0%,
              rgba(0, 0, 0, 0) 100%
            );
          }
  
          &::after {
            right: 0;
            /* box-shadow: -100px 0 80px 40px rgba(0,0,0,0.5); Sombra a la derecha */
            background: linear-gradient(
              270deg,
              var(--bg-color-orange) 0%,
              rgba(0, 0, 0, 0) 100%
            );
          }
          ul {
            display: flex;
  
            li.splide__slide {
              flex-grow: unset; /* Ocupan el espacio disponible */
              transition: none; /* Transición suave para el cambio de ancho */
              max-width: none;
              position: relative;
              &:last-child{
                transform: translateX(0%);
              }
              a {
                transition: none;
  
                .nuestra-solucion-card {
                  /* border-radius: 20px; */
                  position: relative;
                  height: 100%;
                  min-width: 282px;
                  max-width: unset; /* Tamaño base */
                  display: flex;
                  flex-direction: column;
                  justify-content: space-between;
                  overflow: hidden;
                  transition: unset; /* Transición suave para el ancho */
                  .container-img-solucion {
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    top: 0;
                    left: 0;
                    z-index: -1;
                    filter: url("#svg-rounded");
                    img {
                      width: 100%;
                      height: 100%;
                      object-fit: cover;
                      object-position: center;
                      clip-path: polygon(
                        0% 100%,
                        0% 0%,
                        calc(100% - 47px - 12px) 0%,
                        calc(100% - 47px - 12px) calc(47px + 12px),
                        100% calc(47px + 12px),
                        100% 100%
                      );
                    }
                  }
  
                  .go-to-solution {
                    display: flex;
                    justify-content: end;
                    .container-img {
                      width: 59px;
                      height: 59px;
                      padding: 8px;
                      box-sizing: border-box;
                      img {
                        opacity: 1;
                        transform: rotate3d(0, 0, 1, -45deg);
                        transition: all 1.5s ease;
                        height: 100%;
                        width: 100%;
                        object-fit: contain;
                        object-position: center;
                      }
                    }
                  }
  
                  .solution-info {
                    padding: 0 23px 17px 23px;
                    box-sizing: border-box;
  
                    h3 {
                      color: var(--bg-color-white);
                      font-family: "DINAlternate-Bold", sans-serif;
                      font-size: 22.632px;
                      line-height: 27.158px;
                    }
  
                    span {
                      color: var(--bg-color-orange-2);
                      font-family: "DIN-Medium", sans-serif;
                      font-size: 15px;
                      line-height: 15px;
                      border-radius: 23px;
                      background: var(--bg-color-white);
                      display: flex;
                      justify-content: space-between;
                      padding: 7px 12px;
                      box-sizing: border-box;
                      margin-top: 12px;
  
                      &::after {
                        content: "";
                        display: inline-block;
                        background: url("../../images/arrow-orange-right.svg");
                        background-repeat: no-repeat;
                        background-size: contain;
                        background-position: center;
                        right: 0;
                        width: 17px;
                        height: 11px;
                      }
                    }
                  }
                }
              }
  
              &:hover {
                width: unset; /* Aumenta el ancho al 120% */
                max-width: unset; /* Limita el ancho máximo */
                &:last-child{
                  transform: translateX(0%);
                }
                a {
                  width: 100%;
  
                  .nuestra-solucion-card {
                    width: 100%;
                    max-width: 409px; /* Aplica el ancho máximo */
                    .container-img-solucion {
                      img {
                        opacity: 1;
                      }
                    }
                    .go-to-solution {
                      .container-img {
                        img {
                          opacity: 1;
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
        ul.splide__pagination {
          position: unset;
          margin-top: 12px;
          li {
            button {
              background: transparent;
              border: 1px solid var(--bg-color-white);
              height: 1rem;
              width: 1rem;
            }
            button.is-active {
              background: var(--bg-color-white);
              transform: unset;
            }
          }
        }
      }
    }
  }
  section.nuestras-soluciones.choose {
    min-height: 150vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
    .ellipse_container {
      height: 100px;
      .abs {
      }
      .ellipse {
        /* width: 100%; */
        width: 120%;
        height: 200vw;
        &::before {
        }
      }
    }
  }

  section.nuestros-servicios {
    .container {
      width: 60%;
      .info-scroll {
        flex-direction: column;
        .description-adm{
          width: 100%;
        }
        .scroll-services{
          width: 100%;
        }
      }
      .cifras{
        .estadisticas {
          justify-content: space-between;
          column-gap: 0.5rem;
          .estadisticas-adm {
            width: 45%;
            
          }
        }
      }
      
    }
  }

  section.proyectos {
    padding-top: 100px;
    .subtitle-map {
      flex-wrap: wrap;
      gap: 10px;
      &::before {
      }
      .subtitle-adm {
        width: 100%;
        order: 2;
        h3 {
          font-size: 40px;
          line-height: 40px; /* 100% */
        }
        h2 {
          color: var(--bg-color-white);
          font-family: "DIN-Bold", sans-serif;
          font-size: 50px;
          line-height: 50px; /* 114.286% */
        }
        p {
          color: var(--bg-color-white);
          font-family: "DIN-Regular", sans-serif;
          font-size: 30px;
          line-height: 35px; /* 120% */
        }
      }
      .map {
        .container-img {

          img {

          }
          .marker {      
            &:hover {
              width: 6px;
              height: 6px;
              .container-relative {
                .container-img-departamento {
                }
              }
            }
            
            .container-relative {
              .container-img-departamento {
                /* height: 60px; */
                /* height: 150px; */
                height: auto;
                width: 110px;

                display: flex;
                flex-direction: column;
                background: white;
                border-radius: 12px;
                img {
                  border-radius: 12px;
                  height: 75px;
                  aspect-ratio: unset;
                }
                .departamento-nombre{
                  height: auto;
                  padding: 5px 10px 10px 10px;
                  box-sizing: border-box;
                  span.name{
                    top: unset;
                    left: unset;
                    transform: unset;
                    display: contents;

                    color: var(--1, #F47E24);
                    font-family: "DINAlternate-Bold",sans-serif;
                    font-size: 14.847px;
                    line-height: 18.558px; /* 125% */
                  }
                }
              }
              .container-img-departamento.down{
                border-radius: 12px;
              }
              canvas {
                width: 30px;
                height: 60px;
              }
            }
          }
        }
      }
    }
    .partners {
      flex-direction: column;
      gap: 31px;
      margin: 130px 0 0 0;

      #splide_partners {
        width: 100%;
        order: 2;
        position: relative;
        &::before,
        &::after {
          content: "";
          position: absolute;
          top: 0;
          bottom: 0;
          width: 50px; /* Ajusta el ancho del sombreado */
          z-index: 2;
        }
  
        &::before {
          left: 0;
          background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
        }
  
        &::after {
          right: 0;
          background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
        }
        .splide__track {
          width: 80%;
          overflow: unset;
          ul {
            li.splide__slide {
              .container-img-partner {
                border-radius: 20px;
                background: var(--bg-color-white);
                height: 100%;
                width: 100%;
                padding: 8px 8px;
                box-sizing: border-box;
                img {
                  object-fit: contain;
                  object-position: center;
                  height: 100%;
                  width: 100%;
                }
              }
            }
          }
        }
      }
      .arrows-info {
        width: 80%;
        gap: 21px;
        order: 1;
        .info-adm {
          h3 {
            font-size: 30px;
            line-height: 35px; /* 111.111% */
          }
          p {
            font-size: 15px;
            line-height: 18px;
            strong {
              font-size: 15px;
              line-height: 18px; /* 125% */
            }
          }
        }
        .splide__arrows {
          display: flex;
          flex-direction: row;
          gap: 9px;
          button {
            border-radius: 38.759px;
            .container-img {
              width: 39px;
              height: 39px;
              img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
              }
            }
          }
          button.custom-prev {
            transform: rotate(-180deg);
          }
        }
      }
    }
    .experiencia {
      margin-top: 83px;
      .info-adm {
        flex-direction: column;
        h3 {
          width: 100%;
          font-size: 30px;
          line-height: 35px; /* 111.111% */
        }
        p {
          width: 100%;
          font-size: 15px;
          line-height: 18px; /* 125% */
          strong {
            font-size: 15px;
            line-height: 18px;
          }
        }
      }
    }
    .splide-clients {
      margin-bottom: 40px;
      margin-top: 40px;
      .carruseles {
        width: 90%;
        gap: 28px;
        margin: 0 auto;
        .splide {
          .splide__arrows {
            button {
              .arrow-banner {
                height: 30px;
                width: 30px;
                img {
                  height: 100%;
                  width: 100%;
                  object-fit: contain;
                  object-position: center;
                }
              }
            }
            button.custom-prev {
              transform: translate(-100%, 0) rotate(-180deg);
            }
            button.custom-next {
              transform: translate(100%, 0);
            }
          }
          .splide__track {
            ul {
              li.splide__slide {
                .container-img {
                  img {
                  }
                }
              }
            }
          }
        }
        position: relative;
        &::before,
        &::after {
          width: 50px;
        }
  
      }
    }
    a {
      &::after {

      }
      &:hover {
      }
    }
  }
  section.table-categorys,
  section.novedades {
    margin-top: 63px;
    .container {
      width: 100%;
      .category-name {
        padding: 0 50px;
        h3 {
          font-size: 30px;
          line-height: 35px; /* 100% */
        }
      }
      .filter-cards {
        .container-filter {
          .filter {
            padding: 0;
            .body-filter {
              padding: 16px 24px 16px 24px;
              button {
                position: relative;
                &::before,
                &::after {
                  background: var(--bg-color-orange);
                }
                &::after {
                }
              }
              span {
                color: var(--bg-color-orange);
                font-size: 20px;
                line-height: 20px; /* 100% */
              }
            }
          }
        }
        .body-cards {
          padding: 16px 30px;
          &::before {
          }
          .filter-selects {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            row-gap: 1rem;
            .custom-select
            {
              .select-selected{
                padding: 7px 11px;

                font-size: 17px;
                line-height: 17px;
                gap: 40px;
              }
            }

          }
          .filter-selects.displayed {
          }
          .cards-per-category {
            display: none;
            row-gap: 32px;
            a.links-articles {
              width: 100%;
              .card-per-category.articles {
                width: 100%;
                .container-card {  
                  &::before {
                    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% calc(100% - 63px), calc(100% - 63px) calc(100% - 63px), calc(100% - 63px) 100%);
                  }
                  .container-img {
                    
                    img {

                    }
                  }
                  span {
                    
                  }
                  .resume-adm {
                    h4 {
                    }
                    p {
                    }
                  }
                }
                .container-img-arrow {
                  opacity: 1;
                  img {

                  }
                }
                
              }
            }
            .card-per-category.event {
              width: 100%;
              .container-card {
                
                &::before {
                }
                .container-img {
                  img {
                  }
                }
                .container-event-info {
                  & > span {
                  }
                  h4 {
                  }
                  .event-info {
                    .info {
                      &::before {
                        
                      }
                      span {
                      }
                    }
                    .info.date {
                      &::before {
                        
                      }
                    }
                    .info.hour {
                      &::before {
                        
                      }
                    }
                    .info.time {
                      &::before {
                       
                      }
                    }
                    .info.mode {
                      &::before {
                        
                      }
                    }
                  }
                }
                a {
                  
                }
              }
            }
            .card-per-category.webinar {
              width: 100%;
              .container-card {
                &::before {
                 
                }
                .container-img {
                  img {

                  }
                }
                .container-event-info {
                  
                  & > span {
                   
                  }
                  h4 {
                   
                  }
                  .event-info {
                   
                    .info {
                     
                      &::before {
                        
                      }
                      span {
                        
                      }
                    }
                    .info.date {
                      &::before {
                        
                      }
                    }
                    .info.hour {
                      &::before {
                        
                      }
                    }
                    .info.time {
                      &::before {
                        
                      }
                    }
                    .info.mode {
                      &::before {
                        
                      }
                    }
                  }
                }
                a {
                  
                }
              }
            }
          }
          .cards-per-category.active {
          }
        }
      }
      a.ver-mas {  
        &::after {
        }
      }
    }
  }

  
}

@media (max-width: 680px) {
  section.table-categorys,
  section.novedades {
    .container{
      .filter-cards {
        .body-cards{
          .cards-per-category {
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
          }
        }
      }

    }
  }
}
@media (max-width: 600px) {
  section.trabajemos-juntos {
    .container-trabajemos {
      width: 85%;
    }
  }

  footer {
    .container {
      padding: 45px 23px 27px 23px;
      box-sizing: border-box;
      .menus-footer {
        flex-direction: column;
        gap: 1rem;
        .logo-descripcion {
          width: 100%;
          .container-img {
            width: 100%;
            height: 64px;
            img {

            }
          }
          .texto-adm {
            width: 100%;
            p {
              font-size: 15px;
              line-height: 15px;
            }
          }
        }
        .submenu-footer {
          max-width: unset;
          .item-separador {
            span {
              font-size: 17px;
              line-height: 17px; /* 100% */
            }
            hr {
              width: 98px;
            }
          }
          ul {
            gap: 5px;
            li {
              font-size: 15px;
              line-height: 19px; /* 127.778% */
            }
          }
        }
      }
      .redes {
        display: flex;
        flex-direction: column;
        margin-top: 24px;
        hr {
          border: none;
          height: 3px; /* Altura del hr */
          background-color: var(--bg-color-white);
          width: 100%;
        }
        .icons {
          display: flex;
          justify-content: center;
          margin-top: 30px;
          ul {
            display: flex;
            gap: 2rem;
            li {
              .container-img {
                width: 32px;
                height: 32px;
                img {
                  height: 100%;
                  width: 100%;
                  object-fit: contain;
                  object-position: center;
                }
              }
            }
          }
        }
      }
    }
  }

}
@media (max-width: 420px) {
  aside,
  div.aside-blog {
    width: 80%;
  }

  section.nuestras-soluciones {
    .container {
      width: 80%;
      h2 {
      }
      #splide_soluciones {
        .splide__arrows {
          button {
            .arrow-banner {
              img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                object-position: center;
              }
            }
          }
          button.custom-prev {
            transform: translate(-100%, 0) rotate(-180deg);
          }
          button.custom-next {
            transform: translate(100%, 0);
          }
        }
        .splide__track {
          position: relative;
          &::before,
          &::after {
            content: "";
            display: none;
          }
          ul {
            display: flex;
  
            li.splide__slide {
              max-width: unset;

  
              a {
                transition: all 1.5s ease; /* Transición suave en el enlace */
  
                .nuestra-solucion-card {
                  /* border-radius: 20px; */
                  position: relative;
                  height: 100%;
                  min-width: 282px;
                  max-width: 376px; /* Tamaño base */
                  display: flex;
                  flex-direction: column;
                  justify-content: space-between;
                  overflow: hidden;
                  transition: all 1.5s ease; /* Transición suave para el ancho */
                  .container-img-solucion {
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    top: 0;
                    left: 0;
                    z-index: -1;
                    filter: url("#svg-rounded");
                    img {
                      width: 100%;
                      height: 100%;
                      object-fit: cover;
                      object-position: center;
                      clip-path: polygon(
                        0% 100%,
                        0% 0%,
                        calc(100% - 47px - 12px) 0%,
                        calc(100% - 47px - 12px) calc(47px + 12px),
                        100% calc(47px + 12px),
                        100% 100%
                      );
                    }
                  }
  
                  .go-to-solution {
                    display: flex;
                    justify-content: end;
                    .container-img {
                      width: 59px;
                      height: 59px;
                      padding: 8px;
                      box-sizing: border-box;
                      img {
                        transition: all 1.5s ease;
                        height: 100%;
                        width: 100%;
                        object-fit: contain;
                        object-position: center;
                      }
                    }
                  }
  
                  .solution-info {
                    padding: 0 23px 17px 23px;
                    box-sizing: border-box;
  
                    h3 {
                      color: var(--bg-color-white);
                      font-family: "DINAlternate-Bold", sans-serif;
                      font-size: 22.632px;
                      line-height: 27.158px;
                    }
  
                    span {
                      color: var(--bg-color-orange-2);
                      font-family: "DIN-Medium", sans-serif;
                      font-size: 15px;
                      line-height: 15px;
                      border-radius: 23px;
                      background: var(--bg-color-white);
                      display: flex;
                      justify-content: space-between;
                      padding: 7px 12px;
                      box-sizing: border-box;
                      margin-top: 12px;
  
                      &::after {
                        content: "";
                        display: inline-block;
                        background: url("../../images/arrow-orange-right.svg");
                        background-repeat: no-repeat;
                        background-size: contain;
                        background-position: center;
                        right: 0;
                        width: 17px;
                        height: 11px;
                      }
                    }
                  }
                }
              }
  
              &:hover {
                width: 120%; /* Aumenta el ancho al 120% */
                max-width: 409px; /* Limita el ancho máximo */
  
                a {
                  width: 100%;
  
                  .nuestra-solucion-card {
                    width: 100%;
                    max-width: 409px; /* Aplica el ancho máximo */
                    .container-img-solucion {
                      img {
                        clip-path: polygon(
                          0% 100%,
                          0% 0%,
                          calc(100% - 47px - 12px) 0%,
                          calc(100% - 47px - 12px) calc(47px + 12px),
                          100% calc(47px + 12px),
                          100% 100%
                        );
                      }
                    }
                    .go-to-solution {
                      .container-img {
                        img {
                          transform: rotate(-45deg);
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
        ul.splide__pagination {
          position: unset;
          margin-top: 12px;
          li {
            button {
              background: transparent;
              border: 1px solid var(--bg-color-white);
              height: 1rem;
              width: 1rem;
            }
            button.is-active {
              background: var(--bg-color-white);
              transform: unset;
            }
          }
        }
      }
    }
  }

  section.nuestras-soluciones.choose {
    min-height: 100vh;
    .ellipse_container {
      .abs {
      }
      .ellipse {
        width: 150%;
        height: 47rem;
        &::before {
        }
      }
    }
  }

  section.nuestros-servicios {
    .container {
      width: 80%;
      .info-scroll {
        flex-direction: column;
        .description-adm{
          width: 100%;
        }
        .scroll-services{
          width: 100%;
        }
      }
    }
  }
  
}
