<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.custom-multi-accordion-widget {
  width: 100%;
  height: fit-content;
  border-radius: 15px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  @media (max-width: 1024px) {
    padding: 30px 40px;
  }
  @media (max-width: 768px) {
    padding: 40px 13px 20px;
  }
  .accordion-container {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 50px;

    @media (max-width: 1280px) {
      width: 30%;
    }
    @media (max-width: 1024px) {
      width: 100%;
      gap: 42px;
    }
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 20px;
      h3 {
        font-family: "Noir Pro", sans-serif;
        font-size: 52px;
        color: #000;
        font-weight: 300;
        margin: 0;

        @media (max-width: 1440px) {
          font-size: 52px;
        }
        @media (max-width: 1024px) {
          font-size: 42px;
        }
        @media (max-width: 768px) {
          font-size: 32px;
        }
      }
      h3 p {
        padding: 0;
        margin: 0;
      }

      .accordion-block {
        display: flex;
        flex-direction: column;

        @media (max-width: 1024px) {
          gap: 15px;
        }

        .accordion-head {
          display: flex;
          gap: 6px;
          cursor: pointer;

          .number-block {
            width: 70px;
            height: 70px;
            border-radius: 5px;
            background-color: hsla(0, 0%, 100%, 1);
            color: hsla(0, 0%, 5%, 1);
            font-size: 24px;
            font-family: "AzeretMono", sans-serif;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease-in-out;
            @media (max-width: 1440px) {
              font-size: 26px;
              width: 60px;
              height: 60px;
            }
            @media (max-width: 768px) {
              font-size: 22px;
              width: 47px;
              height: 47px;
            }
          }

          .active-number-block {
            background-color: hsla(47, 94%, 53%, 1) !important;
          }

          .drop_title {
            width: calc(100% - 76px);
            height: 70px;
            border-radius: 5px;
            background: linear-gradient(
              90deg,
              hsla(0, 0%, 92%, 1) 0%,
              hsla(0, 0%, 92%, 1) 100%
            );
            color: hsla(0, 0%, 0%, 1);
            font-size: 18px;
            font-weight: 400;
            font-family: "Noir Pro", sans-serif;
            line-height: 1.1;
            /* padding: 23px 50px 15px 50px; */
            display: flex;
            align-items: center;
            padding-left: 20px;
            transition: 0.3s ease-in-out;
            @media (max-width: 1440px) {
              font-size: 18px;
              height: 60px;
              padding-left: 32px;
              width: calc(100% - 66px);
            }
            @media (max-width: 1280px) {
              font-size: 16px;
            }
            @media (max-width: 1024px) {
              padding-left: 20px;
            }
            @media (max-width: 768px) {
              font-size: 14px;
              height: 47px;
              width: calc(100% - 53px);
              padding-left: 20px;
            }
          }

          .active-drop-title {
            background: linear-gradient(
              90deg,
              hsla(220, 100%, 55%, 1) 0%,
              hsla(238, 41%, 14%, 1) 100%
            ) !important;
            color: hsla(0, 0%, 100%, 1) !important;
          }
        }

        .accordion-body {
          width: 100%;
          padding-inline: 82px 0px;
          padding-block: 0;
          color: hsla(245, 100%, 11%, 1);
          font-size: 20px;
          font-weight: 300;
          font-family: "Noir Pro", sans-serif;
          height: 0;
          overflow: hidden;
          transition: 0.3s ease-in-out;
          @media (max-width: 1440px) {
            font-size: 18px;
            padding-inline: 70px 0px;
          }
          @media (max-width: 768px) {
            font-size: 14px;
          }
        }

        .active-accordion-body {
          width: 100% !important;
          height: fit-content !important;
          padding-inline: 82px 0px !important;
          padding-block: 0px !important;
          margin-bottom: 0 !important;
          @media (max-width: 1440px) {
            padding-inline: 70px 0px !important;
          }
        }

        @media (max-width: 1024px) {
          .active-accordion-body {
            display: none;
          }
          .accordion-body {
            display: none;
          }
        }
      }
    }
  }

  .multi-repeater-side-block {
    width: 75%;
    height: fit-content;
    transition: 0.3s ease-in-out;
    display: none;
    gap: 5%;

    @media (max-width: 1440px) {
      width: 75%;
    }

    @media (max-width: 1280px) {
      width: 65%;
    }

    @media (max-width: 1024px) {
      display: none;
    }

    .explore-items-block {
      display: flex;
      flex-direction: column;
      gap: 10px;
      background-color: hsla(0, 0%, 92%, 1);
      border-radius: 10px;
      padding: 30px 20px;
      width: 40%;

      .item {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        cursor: pointer;
        padding: 12px;
        border-radius: 6px;
        background-color: hsla(0, 0%, 92%, 1);
        transition: 0.3s ease-in-out;

        .icon-wrapper {
          width: 52px !important;
          height: 52px !important;
          border-radius: 6px;

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

        .short-description {
          font-size: 20px;
          color: #000;
          font-family: "Noir Pro", sans-serif;
          width: calc(100% - 62px);
          margin: 0;

          @media (max-width: 1440px) {
            font-size: 16px;
          }
        }
      }

      .active-item {
        background-color: #fff;
      }
    }

    .second-side-block {
      display: flex;
      flex-direction: column;
      gap: 20px;
      background-color: hsla(0, 0%, 92%, 1);
      width: 55%;
      border-radius: 12px;
      padding: 20px;

      .image-wrapper {
        width: 100%;
        height: auto;

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

      .description {
        font-size: 20px;
        color: #000;
        font-family: "Noir Pro", sans-serif;
        margin: 0;
      }

      .elementor-repeater-button-label {
        color: #fff;
        background-color: #1b66ff;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 400;
        padding: 10px 25px;
        font-family: "Noir Pro", sans-serif;
        text-transform: capitalize;
      }
    }

    h3.heading-title {
      color: hsla(0, 0%, 100%, 1);
      font-size: 42px;
      font-weight: 400;
      font-family: "Noir Pro", sans-serif;
      line-height: 1.2;
      margin: 0;
      margin-bottom: 35px;
      @media (max-width: 1440px) {
        font-size: 40px;
        line-height: 50px;
      }
      @media (max-width: 768px) {
        font-size: 24px;
        line-height: 28px;
        padding-inline: 13px;
        margin-bottom: 15px;
      }
    }

    .elementor-repeater-button-label {
      color: hsla(0, 0%, 0%, 1);
      font-size: 18px;
      font-weight: 400;
      font-family: "Noir Pro", sans-serif;
      text-transform: uppercase;
      padding: 12px 30px;
      border-radius: 6px;
      margin-bottom: 70px;
      background-color: hsla(47, 94%, 53%, 1);
      display: flex;
      width: fit-content;
      @media (max-width: 1440px) {
        font-size: 16px;
      }
      @media (max-width: 768px) {
        font-size: 14px;
        margin-left: 13px;
        margin-bottom: 50px;
      }
    }
  }

  .elementor-repeater-side-block:first-of-type {
    display: block !important;
    @media (max-width: 1024px) {
      display: none;
    }
  }

  .side-block-mobile {
    background: #fff;
    width: 100%;
    padding-inline: 10px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    display: none;
    overflow: hidden;
    padding-block: 0;
    height: 0;

    @media (max-width: 1024px) {
      display: block;
      /* padding: 26px 10px 14px; */
    }

    .itemMobile {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      cursor: pointer;
      padding: 12px;
      border-radius: 6px;
      /* background-color: hsla(0, 0%, 92%, 1); */
      transition: 0.3s ease-in-out;

      .item-head {
        display: flex;
        align-items: center;
        gap: 10px;
        .icon-wrapper {
          width: 52px !important;
          height: 52px !important;
          border-radius: 6px;

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

        .short-description {
          font-size: 20px;
          color: #000;
          font-family: "Noir Pro", sans-serif;
          width: calc(100% - 62px);
          margin: 0;
        }
      }

      .image-wrapper {
        width: 100%;
        height: auto;

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

      .description {
        font-size: 20px;
        color: #000;
        font-family: "Noir Pro", sans-serif;
        margin: 0;
      }

      .elementor-repeater-button-label {
        color: #fff;
        background-color: #1b66ff;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 400;
        padding: 10px 25px;
        font-family: "Noir Pro", sans-serif;
        text-transform: capitalize;
      }
    }
  }

  .active-side-block {
    padding-block: 26px 14px !important;
    height: fit-content !important;
  }

  .side-block-mobile h3.heading-title {
    color: hsla(0, 0%, 100%, 1);
    font-size: 54px;
    font-weight: 400;
    font-family: "Noir Pro", sans-serif;
    line-height: 76px;
    margin: 0;
    margin-bottom: 45px;
    @media (max-width: 768px) {
      font-size: 24px;
      line-height: 28px;
      padding-inline: 13px;
      margin-bottom: 15px;
    }
  }
}

/* Side Block Mobile--------------------------------------------------- */
</pre></body></html>