.explore-casos-hero {
  position: relative;

  .hero {
    padding: 4rem 1.5rem;
    display: flex;
    align-items: center;
    height: calc(100vw * 660 / 1440);
    max-height: 660px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: relative;
    overflow: hidden;

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;

      .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 4rem 1.5rem;

      .title {
        color: var(--white-color);
        font-family: var(--font-semibold-600);
        font-size: clamp(2.188rem, 5vw + 1rem, 3.75rem);
        font-style: normal;
        font-weight: 600;
        line-height: 64px;
      }

      .subtitle {
        color: var(--white-color);
        font-family: var(--font-regular-400);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
        text-wrap: balance;
        margin-bottom: 1.5rem;
      }
    }

  }

}

.explore-casos-column {

  .subtitle {
    color: var(--color-negro70);
    font-family: var(--font-regular-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }

  .title {
    color: var(--secondary-color);
    font-family: var(--font-semibold-600);
    font-size: clamp(2.438rem, 5vw + 0.75rem, 2.563rem);
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  p {
    color: var(--color-gris-oscuro);
    font-family: var(--font-regular-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
  }

  .container {
    img {
      border-radius: var(--border-radius24);
      overflow: hidden;
      margin-bottom: 4.5rem;
      margin-top: 1.5rem;
      width: 100%;
      height: auto;
    }

    ul li ul {
      padding-left: 25px;
      padding-top: 10px;
      text-indent: -25px;
      margin-left: 25px;
    }

    ul li ul li {
      margin-bottom: .5rem;
    }

  }

}

.explore-acordeon {
  margin-top: 2rem;
  margin-bottom: 4rem;

  .accordion-custom {
    border-radius: var(--border-radius24);
    background-color: var(--secondary-color);
    overflow: hidden;
    padding: 4rem;
  }

  .accordion-item {
    background-color: transparent;
    border: none;
  }

  .accordion-header {
    background-color: transparent;
  }

  .accordion-button {
    background-color: transparent;
    border: none;
    padding: 1rem 1.25rem;
    color: var(--white-color);
    font-family: var(--font-semibold-600);
    font-size: clamp(2rem, 3vw + 1rem, 2.563rem);
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
  }

  .accordion-button:focus,
  .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--white-color);
    box-shadow: none;
  }

  .accordion-body {
    padding: 1rem 1.25rem;
    color: var(--white-color);

    p {
      color: var(--white-color);
    }

    li {
      color: var(--white-color);
      margin-bottom: 1.8em;

      strong {
        font-family: var(--font-bold-700);
        font-weight: 700;
      }
    }

    .subtitleh3 {
      font-family: var(--font-medium-500);
      color: var(--white-color);
      font-size: clamp(1.25rem, 2vw + 0.75rem, 1.813rem);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 1rem;
      margin-top: 1.5rem;
    }

  }

  .accordion-button::after {
    display: none;
  }

  .accordion-button i {
    transition: transform 0.2s ease-in-out;

    &::before {
      font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
    }
  }

  .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
    transform-origin: center;
  }

}

.explore-casos-conclusion {

  position: relative;

  .container-fluid {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;

    .row {
      >div[class*="col-"] {
        width: 100%;
        max-width: 1420px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin: 0 auto;
      }
    }

    &.c-result {
      position: relative;
      z-index: 1;
    }

    &.c-conclusion {
      position: relative;
      z-index: 2;
    }

    &.c-result>.row {
      background: url('../img/explore/explore-casos-result.png') no-repeat center center;
      background-size: cover;
      text-align: center;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      align-items: center;
      border-radius: var(--border-radius24);
      height: auto;
      padding: 3rem 3rem 5rem 3rem;
    }

    &.c-conclusion>.row {
      margin-top: -80px;
      background-color: var(--primary-color);
      text-align: center;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      align-items: center;
      border-radius: var(--border-radius24);

      .title {
        margin-top: 2rem;
      }
    }

    &.c-conclusion ul li {
      list-style: none;
      color: var(--white-color);
      font-family: var(--font-regular-400);
      font-size: 18px;
      text-wrap: balance;
      margin-bottom: 10px;

      strong {
        font-family: var(--font-bold-700);
        font-size: 18px;
      }

    }

    .title {
      color: var(--white-color);
      font-family: var(--font-semibold-600);
      font-size: clamp(1.875rem, 3vw + 0.75rem, 2.5rem);
      font-style: normal;
      font-weight: 600;
      line-height: 56px;
      margin-bottom: 1.9rem;
    }

    .text1 {
      color: var(--white-color);
      font-family: var(--font-regular-400);
      font-size: clamp(1.725rem, 2vw + 1.75rem, 2.1rem);
      font-style: normal;
      font-weight: 400;
      line-height: 1.3;
      text-wrap: balance;
      margin-bottom: 1.5rem;
    }

    .text2,
    p {
      color: var(--white-color);
      font-family: var(--font-regular-400);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 32px;
      text-wrap: balance;
      margin-bottom: 1.5rem;

      span.color {
        font-family: var(--font-bold-700);
      }

    }

  }

}

.explore-casos-slider-projects {
  margin-top: 6rem;
  margin-bottom: 5rem;
  background-image: url('../img/simbolo-carrusel.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;

  .explore-casos-slider-projects__head {

    .title {
      padding-bottom: 1.5rem;
    }

    .titleh2 {
      color: var(--secondary-color);
      font-family: var(--font-semibold-600);
      font-size: clamp(1.875rem, 3vw + 0.75rem, 2.563rem);
      font-style: normal;
      font-weight: 600;
      line-height: 1.5;
    }

  }

  .explore-casos-slider-projects__body {
    margin-top: 3rem;
    margin-bottom: 5rem;

    .swiper-container {
      margin-bottom: 3rem;

      .swiper-slide {
        display: flex;
        width: 75%;
        border-radius: 16px;

        .imggroup {
          width: 100%;
          max-width: 40%;

          a {
            display: block;
            border-radius: var(--border-radius16);
            overflow: hidden;
            aspect-ratio: 15/10;

            img {
              width: 100%;
              height: auto;
              transition: ease .3s;
            }

            &:hover {
              img {
                transform: scale(1.05);
              }
            }

          }

        }

        .textgroup {
          width: 100%;
          min-width: 300px;
          margin-left: 20px;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          padding-top: 15%;
          padding-right: 5px;
          width: 55%;

          .subtitle {
            color: var(--tertiary-color);
            font-family: var(--font-regular-400);
            font-size: clamp(1.063rem, 5vw - 1.75rem, 1.25rem);
            font-style: normal;
            font-weight: 400;
            line-height: 40px;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
          }

          .title {
            color: var(--secondary-color);
            font-family: var(--font-medium-500);
            font-size: clamp(2rem, 2vw + 1.10rem, 2.15rem);
            font-style: normal;
            font-weight: 500;
            line-height: 1.25;
            text-wrap: balance;
          }

        }

      }

    }

  }

}


/* Responsive Styles */
@media (max-width: 1200px) {}

@media (max-width: 1024px) {

  .explore-casos-column {
    .title {
      &.tit {
        margin-bottom: 0;
      }

    }

  }

}

@media (max-width: 992px) {

  .explore-casos-slider-projects {
    .explore-casos-slider-projects__body {
      .swiper-container {
        .swiper-slide {
          width: 100%;
          display: flex;
          flex-direction: column;

          .textgroup {
            width: 100%;
            margin-left: 0;
            padding-top: 10px;
            padding-right: 0;

            .subtitle {
              margin-bottom: .5rem;
            }

          }

        }

      }

    }

  }

}

@media (max-width: 768px) {

  .ensure-casos-banner {
    .container {
      .card-custom {
        .coltext {
          padding: 2.5rem !important;
        }

        .image-column {
          min-height: 320px;
        }
      }
    }
  }

  .ensure-casos-conclusion {
    .container {
      .card-custom {
        margin-bottom: 2rem;

        .coltext {
          padding: 3rem 2.5rem !important;
        }

      }

    }

  }

  .explore-casos-conclusion {
    .container {

      &.c-result>.row {
        padding: 2rem 2rem 3rem 2rem;
      }

      &.c-conclusion>.row {
        padding: 2rem 2rem 3rem 2rem;
      }

    }

  }

  .explore-casos-slider-projects {

    .explore-casos-slider-projects__head {
      .titleh2 {
        line-height: 1.4;
      }

    }

    .explore-casos-slider-projects__body {
      .swiper-container {
        .swiper-slide {
          .imggroup {
            max-width: 100%;
          }

        }

      }

    }

  }

}


@media (max-width: 600px) {

  .explore-casos-hero {
    .hero {
      height: auto;
      max-height: inherit;

      .hero-content {
        .title {
          line-height: 1.2;
        }

      }

    }

  }

  .explore-casos-conclusion {
    .container-fluid {
      .row {
        >div[class*="col-"] {
          padding-left: 2.5rem;
          padding-right: 2.5rem;
        }

      }

    }

  }

}

@media (max-width: 560px) {}

@media (max-width: 480px) {

  .explore-acordeon {
    .accordion-custom {
      padding: 2rem 1.5rem;
    }

    .accordion-button {
      line-height: 1.3;
    }

  }

  .explore-casos-conclusion {
    .container-fluid {

      .row {
        >div[class*="col-"] {
          padding-left: 0;
          padding-right: 0;
        }

      }

      &.c-result>.row {
        padding: 2rem 3rem 5rem 2rem;
      }

      .title {
        line-height: 1.3;
        margin-bottom: 1.5rem !important;
      }

      .text1 {
        font-size: 30px;
      }

      .text2,
      p {
        max-width: 90%;
        margin: 0 auto;
      }

      &.c-conclusion>.row {

        padding: 40px 30px;

        .title {
          margin-top: 2rem;
          max-width: 90%;
          margin: 0 auto;
        }

      }

    }

  }

  .explore-casos-column {
    .title {
      margin-bottom: 1rem;
    }
  }

  .explore-casos-column {
    .container {
      img {
        margin-bottom: 1.5rem;
      }
    }
  }

  .explore-casos-slider-projects {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

}

@media (max-width: 320px) {}