.section-dual {
  strong {
    color: var(--color-primary);
  }

  h3 {
    color: white !important;
    font-size: var(--font-size-title-small);
  }

  h2 {
    position: relative;

    /* &::after {
      content: "";
      height: 3px;
      width: 200%;
      position: absolute;
      display: flex;
      bottom: -1.5px;
      background: var(--color-primary);
    } */
  }

  #services-1 {
    position: relative;


    .page-width {
      @media(width>992px) {
        padding-right: 0px;
      }
    }

    .content-text-service {
      position: relative;
      z-index: 2;

      & p {
        color: white;
        text-wrap: balance;
        line-height: normal;

      }

      & ul li {
        color: white;
      }

      .description-service-1 {
        color: white !important;

        p {
          color: white !important;
        }
      }

      h2 {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);

        @media(width<768px) {
          text-shadow: 0px 1px 7px rgba(5, 5, 5, 0.88);
        }
      }


      .btn-primary {
        background: transparent;
        color: var(--color-primary);
        border: 1px solid var(--color-primary);

        &:hover {
          background: white;
        }
      }
    }

    .carousel-service {
      flex: 1;
      z-index: 1;
      margin-right: -8rem;

      & .item {
        position: relative;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        overflow: hidden;
        height: 537px;
        display: flex;

        @media(width<=992px) {
          border-radius: 25px;
          height: 300px;
          display: flex;
          justify-content: center;
        }



        & .content-image-service {
          position: absolute;
          width: 100%;
          top: 0;
          left: 0;
          height: 100%;
          margin: auto;

          & img {

            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: -3px;
          }
        }

        & .content-text-item {
          z-index: 2;
          position: relative;
          display: flex;
          flex-direction: column;
          justify-content: space-between;

          .num {
            font-size: 150px;
            font-weight: bold;
            line-height: 92px;
            opacity: 60%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1rem;

            @media (width<=992px) {
              font-size: 100px;
            }
          }

          p {
            max-width: 640px;

            @media (width<=992px) {
              overflow: auto;
              max-height: 341px;
            }

          }
        }
      }

      @media (width<=992px) {
        flex: 0 0 auto;
        width: 100%;
        margin-right: 0;
      }
    }
  }

  .container-info {
    order: -1;
  }

  .line {
    position: relative;
    overflow: hidden;

    &::after {
      position: absolute;
      content: "";
      width: 100%;
      height: 2px;
      background: var(--color-secondary);
      top: calc(50% - 2px);
      margin-left: 15px;
    }

    @media (width<=768px) {
      &::after {
        display: none;
      }
    }
  }

  ul {
    display: flex;
    padding-left: 0px;
    flex-direction: column;
    gap: 2.5px;
    text-align: left !important;
    list-style: none;
    margin-bottom: 0;

    & li::before {
      content: "✓";
      display: inline-block;
      width: 15px;
      margin-right: 5px;
      min-width: 15px;
      height: 15px;
      /* background-image: url("../img/dot.svg");
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateY(6px); */
    }

    @media (width<=768px) {
      list-style-position: inside;
      padding: 0;
    }

    p {
      margin: 0;
      display: none;
    }
  }

  .text-hidden {
    display: block !important;
  }

  .container-description {
    max-height: 510px;
    overflow: auto;
    padding-right: 16px;

    ul {
      list-style: none;
      margin: 10px 0px;
      gap: 10px;

      li {
        /* display: inline-flex; */
        justify-content: start !important;
        align-items: start;
      }
    }

    p {
      margin: 0;

      &:empty {
        display: none;
      }
    }

    @media (width<=768px) {
      padding-right: 0;
      max-height: unset;
    }
  }

  .btn-read-more,
  .btn-read-less {
    display: none;
    font-size: var(--font-size-content);
    font-family: var(--font-family-manrope);
    color: var(--color-secondary);
    transition: 0.4s;
    border: none;
    outline: none;
    padding: 0;
    background: transparent;

    &:hover {
      color: var(--color-primary);
    }
  }

  .container-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;

    img {
      width: 100%;
      height: 100%;
      max-height: 300px;
      object-fit: cover;
      object-position: center;
    }

    .image-cover {
      object-fit: cover;
    }

    .image-contain {
      object-fit: contain;
    }
  }

  /* .swiper .swiper-wrapper::after {
    margin-bottom: 20px;
  } */

  .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .serviceCard {
    display: flex;
    flex-direction: row;
    align-items: center;
    aspect-ratio: 1/1.5;
    background: #fff;
    transition: 0.7s;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    max-width: 320px;
    min-width: 90%;
    padding: 20px 15px !important;
    height: 290px;

    &:hover {
      background-color: var(--color-secondary);
      color: #fff !important;

      & img {
        scale: 1.2;
      }

      svg {
        filter: unset;
      }

      & h4 {
        color: var(--color-primary) !important;
      }

      & .icon-card {
        background: linear-gradient(270deg,
            #be871d 0%,
            #cea337 12.02%,
            #d6b247 22.12%,
            #e1c96f 31.73%,
            #ebda64 40.38%,
            #f9f39b 50%,
            #ffff96 58.17%,
            #fff980 68.75%,
            #eddc6c 75.48%,
            #e7d365 82.21%,
            #cfa742 92.79%,
            #cfa742 100%);

        & svg {
          fill: var(--color-secondary);
        }
      }
    }

    h4 {
      transition: 0.7s;
      height: 68px;
      font-size: var(--fs-subtitle-small);
      display: flex;
      align-items: center;
      margin-top: auto;
      margin-bottom: auto;
      font-weight: bold;
      text-transform: capitalize;
    }

    .btn-primary {
      margin-top: auto;
    }

    .icon-card {
      position: absolute;
      height: 50px;
      top: 26px;
      background: var(--color-secondary);
      left: 45%;
      transition: 200ms;
      padding: 7px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 5px solid white;

      & p {
        margin: 0;
      }

      & svg {
        width: 30px;
        transition: 300ms;
      }
    }

    .description {
      width: 100%;
      height: 75px;
      overflow: auto;
      margin-bottom: 20px;
      display: none;
    }

    .cardImg {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      overflow: hidden;
      margin: 0;

      svg {
        filter: invert(1);
      }

      img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
        transition: 0.7s;

        @media (width<=768px) {
          max-height: 175px;
        }
      }
    }

    @media (width<=768px) {
      flex-direction: column;
      height: 390px;

      .icon-card {
        top: 170px;
        left: unset;
        right: 37px;
      }
    }
  }

  .controls-carousel {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    height: 0;
    position: relative;
    transform: translateY(-16rem);
    z-index: 1;

    .item-control {
      background-color: var(--color-primary);
      color: white;
      font-weight: bold;
      padding: 15px;
      transition: 0.7s;
      position: absolute;
      cursor: pointer;
      border-radius: 100%;

      &:hover {
        background-color: var(--color-secondary);
      }

      &.prev-cat {
        transform: translateX(-3vw);
      }

      &.next-cat {
        right: 0;
        transform: translateX(3vw);
      }

      @media (width>=768px) {}
    }

    @media (width<=768px) {
      height: 60px;
      position: static;
      transform: unset;
      justify-content: center;

      .item-control {
        padding: 0;
        position: static;
        aspect-ratio: 1;
        transform: unset !important;
        right: unset;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }
  }
}