.section-dual {

  strong {
    color: var(--color-primary-20)
  }

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

  h2 {
    position: relative;
    font-weight: 600;

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

  ul {
    display: flex;
    flex-direction: column;
    gap: 2.5px;

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

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

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

    @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%;
    aspect-ratio: 1.2;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    height: 85%;
    height: 100%;
    display: flex;
    align-items: center;

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

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

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

  .owl-carousel .owl-stage::after {
    margin-bottom: 20px;
  }

  .owl-item {
    display: flex;
    justify-content: center;
  }

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

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

      & img {
        scale: 1.2;
      }

      svg {
        filter: unset;
      }

      & h4 {
        color: white !important;
      }
    }

    h4 {
      transition: 0.7s;
    }

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

    .cardImg {
      width: 200px;
      height: 200px;
      border-radius: 25px 89px 25px 25px;
      overflow: hidden;
      margin: 10px;

      svg {
        filter: invert(1);
      }

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

  .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;
      }

    }

  }
}