.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);
    } */
  }

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

    & 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;

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

    @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: 0;

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

    .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: 0;
    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: white !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;
      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: 0;
      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;
      }
    }
  }
}
