
.global-layout {
  .global-card {
    margin-bottom: 60px;

    > .title {
      margin-bottom: 20px;
    }
  }
}

.feature-list-box-01 {
  .title {
    margin-bottom: 24px;
    @media screen and (max-width: $screen-xs) {
      margin-bottom: 20px;
    }
  }

  ul.feature-list {
    &.item-gap-4 {
      li {
        &:not(:last-of-type) {
          margin-bottom: 4px;
        }
      }
    }

    li {
      display: block;
      position: relative;
      padding-left: 24px;

      &:not(:last-of-type) {
        margin-bottom: 8px;
      }

      &:hover {
        &:before {
          filter: $primary-filter;
        }

        a {
          color: $primary-01;
        }
      }

      &:before {
        content: "";
        background: url("../../assets/icons/arrows/right-short-arrow-black-icon.svg") no-repeat center;
        background-size: cover;
        width: 12px;
        height: 12px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: $transition-01;
      }

      a {
        transition: $transition-01;
        @media screen and (max-width: $screen-xs) {
          //@include font-size(16);
        }
      }
    }
  }
}

.talent-card-01 {
  padding: 32px 24px;
  border-radius: 16px;
  background: $bright-red-02;
  @media screen and (max-width: $screen-xs) {
    padding: 24px 16px;
  }

  > .title {
    margin-bottom: 18px;
    @media screen and (max-width: $screen-xs) {
      margin-bottom: 12px;
    }
  }

  .detail-grid {
    display: grid;
    grid-template-columns: 1fr 130px;
    column-gap: 24px;
    @media screen and (max-width: $screen-xs) {
      grid-template-columns: 1fr;
      column-gap: 0;
      row-gap: 16px;
    }

    &.no-grid {
      grid-template-columns: 1fr;
      column-gap: 0;
      row-gap: 20px;
    }

    > p {
      margin-bottom: 0;
    }

    .btn-wrapper {
      .btn-style {
      }
    }
  }

  ul.btn-list {
    margin: 30px 0 0;
    @media screen and (max-width: $screen-xs) {
      margin: 22px 0 0;
    }

    li {
      vertical-align: middle;
      display: inline-block;
      @media screen and (max-width: $screen-xs) {
        display: block;
      }

      &:not(:last-of-type) {
        margin: 0 16px 0 0;
        @media screen and (max-width: $screen-xs) {
          margin: 0 0 12px 0;
        }
      }

      .btn-style {
        @media screen and (max-width: $screen-xs) {
          min-width: 100%;
        }
      }
    }
  }
}

.dot-heading {
  .title {
    position: relative;
    display: inline-block;
    margin-bottom: 0;

    &:after {
      content: "";
      background: $primary-01;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      display: block;
      position: absolute;
      right: -6px;
      bottom: 5px;
    }
  }
}

.insights-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  @media screen and (max-width: $screen-xs) {
    grid-template-columns: 109px 1fr;
  }

  .img-wrapper {
    img {
      width: 100%;
      height: 130px;
      object-fit: cover;
      border-radius: 8px;
      object-position: top;
      @media screen and (max-width: $screen-xs) {
        height: 109px;
      }
    }
  }

  .content-wrapper {
    padding: 0 24px;
    @media screen and (max-width: $screen-xs) {
      padding: 0 12px;
    }

    .title {
      margin-bottom: 0;
    }

    p {
      margin: 12px 0;
      @media screen and (max-width: $screen-xs) {
        margin: 8px 0;
      }
    }

    .btn-style {
      @media screen and (max-width: $screen-xs) {
        @include font-size(16);
      }
    }
  }
}

.info-tag-content {
  position: relative;
  //padding: 0 48px;
  .tagline {
    display: flex;
    align-items: center;
    color: $cool-gray-09;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 0;

    &::before {
      content: "";
      width: 72px;
      height: 1px;
      background-color: $cool-gray-09;
      margin-right: 16px;
    }
  }

  h2 {
    margin: 32px 0 48px;
    @media screen and (max-width: 1199px) {
      margin: 22px 0 30px;
    }
  }

  p {
    margin-bottom: 0;
  }

  .btn-wrapper {
    margin-top: 64px;
    @media screen and (max-width: 1199px) {
      margin-top: 46px;
    }
  }
}

.info-card-01 {
  .img-wrapper {
    @media screen and (max-width: $screen-xs) {
      margin-bottom: 20px;
    }

    img {
      width: 100%;
      height: 558px;
      object-fit: cover;
      border-radius: 16px;
      object-position: top;
      @media screen and (max-width: 1199px) and (min-width: 768px) {
        height: 400px;
      }
      @media screen and (max-width: $screen-xs) {
        height: 342px;
      }
    }
  }

  .info-tag-content {
    padding: 0 48px;
    @media screen and (max-width: 991px) and (min-width: 768px) {
      padding: 0 12px;
    }
    @media screen and (max-width: $screen-xs) {
      padding: 12px 20px;
    }
  }
}

.md-6-zig-zag {
  .info-card-01 {
    &:not(:last-of-type) {
      margin-bottom: 64px;
      @media screen and (max-width: $screen-xs) {
        margin-bottom: 60px;
      }
    }

    &:nth-of-type(odd) {
      .col-md-6 {
        &:first-of-type {
          order: 1;
        }

        &:last-of-type {
          order: 2;
        }
      }
    }

    &:nth-of-type(even) {
      .col-md-6 {
        &:first-of-type {
          order: 2;
          @media screen and (max-width: $screen-xs) {
            order: 1;
          }
        }

        &:last-of-type {
          order: 1;
          @media screen and (max-width: $screen-xs) {
            order: 2;
          }
        }
      }
    }
  }
}

.who-we-card-01 {
  .img-wrapper {
    @media screen and (max-width: $screen-xs) {
      margin-bottom: 20px;
    }

    img {
      width: 100%;
      height: 558px;
      object-fit: cover;
      border-radius: 16px;
      object-position: top;
      @media screen and (max-width: 1199px) and (min-width: 768px) {
        height: 400px;
      }
      @media screen and (max-width: $screen-xs) {
        height: 342px;
      }
    }
  }

  .who-content {
  }
}

ul.brand-list-01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 42px;

  li {
    display: inline-block;
    text-align: center;
    vertical-align: middle;

    &:not(:last-of-type) {
      //margin-right: 48px;
    }

    .logo-card {
      display: inline-block;
      padding: 3px 10px;
    }
  }
}


ul.feature-icon-list-box-01 {
  &.mobile-center {
    @media screen and (max-width: $screen-xs) {
      text-align: center;
    }
  }

  li {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 28px;
    align-items: start;
    @media screen and (max-width: $screen-xs) {
      grid-template-columns: 1fr;
      row-gap: 14px;
      column-gap: 0;
    }

    &:not(:last-of-type) {
      margin-bottom: 72px;
      @media screen and (max-width: 1199px) and (min-width: 992px) {
        margin-bottom: 55px;
      }
      @media screen and (max-width: 991px) and (min-width: 768px) {
        margin-bottom: 45px;
      }
      @media screen and (max-width: $screen-xs) {
        margin-bottom: 36px;
      }
    }

    .icon-wrapper {
      img {
        width: 100%;
        //max-width: 40px;
        @media screen and (max-width: $screen-xs) {
          max-width: 26px;
        }
      }
    }

    .content-wrapper {
      h3 {
        margin-bottom: 20px;
      }

      p {
        margin-bottom: 0;
      }
    }
  }
}

ul.feature-list-01 {
  &.make-font-20 {
    li {
      @include font-size(20, 400);

      &:before {
        width: 7px;
        height: 7px;
      }
    }
  }

  li {
    position: relative;
    padding-left: 20px;
    display: block;
    @include font-size(18, 400);

    &:not(:last-of-type) {
      margin-bottom: 8px;
    }

    &:before {
      content: "";
      background: $primary-01;
      width: 6px;
      height: 6px;
      border-radius: 50px;
      position: absolute;
      left: 0;
      top: 11px;
    }
  }
}

ul.feature-list-02 {
  li {
    display: block;
    position: relative;
    padding-left: 23px;

    &:not(:last-of-type) {
      margin-bottom: 10px;
    }

    &:before {
      content: "";
      background: url("../../assets/icons/arrows/right-short-arrow-red-icon.svg") no-repeat center;
      background-size: cover;
      width: 12px;
      height: 12px;
      position: absolute;
      left: 0;
      top: 6px;
    }

    a {
      color: $primary-01;
      @include font-size(18, 500);
    }
  }
}

.candidate-card-01 {
  border-radius: 16px;
  box-shadow: $box-shadow-01;
  transition: $transition-01;
  overflow: hidden;

  &:hover {
    transform: translateY(-8px);
    box-shadow: $box-shadow-03;
  }

  .img-wrapper {
    img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      object-position: top;
      @media screen and (max-width: $screen-xs) {
        height: 184px;
      }
    }
  }

  .content-wrapper {
    padding: 32px 32px 84px;
    position: relative;
    @media screen and (max-width: $screen-xs) {
      padding: 24px 24px 78px;
    }

    .title {
      margin-bottom: 0;
    }

    p {
      margin: 18px 0;
    }

    ul.feature-list-01 {
      min-height: 98px;

      li {

      }
    }

    .btn-wrapper {
      position: absolute;
      left: 32px;
      bottom: 30px;
      @media screen and (max-width: $screen-xs) {
        bottom: 24px;
      }
    }
  }
}

.candidate-card-02 {
  border-radius: 16px;
  box-shadow: $box-shadow-01;
  transition: $transition-01;
  overflow: hidden;
  @media screen and (max-width: $screen-xs) {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
  }

  .img-wrapper {
    img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      object-position: top;
      @media screen and (max-width: $screen-xs) {
        height: 150px;
      }
    }
  }

  .content-wrapper {
    padding: 32px 32px 84px;
    position: relative;
    @media screen and (max-width: $screen-xs) {
      padding: 20px 20px 52px;
    }

    h4 {
      @media screen and (max-width: $screen-xs) {
        min-height: 78px;
      }
    }

    p {
      @include ellipsis(4);
      @media screen and (max-width: $screen-xs) {
        display: none;
      }
    }

    .btn-wrapper {
      position: absolute;
      left: 32px;
      bottom: 30px;
      @media screen and (max-width: $screen-xs) {
        left: 20px;
        bottom: 15px;
      }
    }
  }
}

.candidate-card-03 {
  border-radius: 16px;
  box-shadow: $box-shadow-01;
  transition: $transition-01;
  overflow: hidden;
  position: relative;

  .img-wrapper {
    img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      object-position: top;
      @media screen and (max-width: $screen-xs) {
        height: 184px;
      }
    }
  }

  .content-wrapper {
    padding: 32px 32px 84px;
    @media screen and (max-width: $screen-xs) {
      padding: 20px 20px 82px;
    }

    .date-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;

      a {
        text-decoration: underline;
        text-transform: uppercase;
        letter-spacing: 1.4px;
      }
    }

    .candidate-footer {
      width: 100%;
      padding: 0 32px;
      position: absolute;
      left: 0;
      bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      @media screen and (max-width: 991px) and (min-width: 768px) {
        padding: 0 24px;
      }
      @media screen and (max-width: $screen-xs) {
        padding: 0 20px;
        left: 0;
        bottom: 24px;
      }

      .author-wrapper {
        img {
          width: 48px;
          height: 48px;
          object-fit: contain;
          object-position: top;
          border-radius: 50%;
          @media screen and (max-width: $screen-xs) {
            display: none;
          }
        }
      }
    }
  }
}

.candidate-card-04 {
  border-radius: 16px;
  box-shadow: $box-shadow-01;
  transition: $transition-01;
  overflow: hidden;

  .video-wrapper {

  }

  .content-wrapper {
    padding: 32px;
    position: relative;
    @media screen and (max-width: $screen-xs) {
      padding: 20px;
    }

    h4 {
    }

    p {
    }
  }
}

.subtitle-01 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: $cool-gray-09;
}

.primary-tab-1 {
  ul.nav-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    gap: 0;
    border: none;
    margin-bottom: 0;
    border-radius: 32px 32px 0 0;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    @media screen and (max-width: $screen-xs) {
      display: grid;
      grid-template-columns: repeat(2, 50%);
    }

    li.nav-item {
      button {
        width: 100%;
        height: 60px;
        padding: 19px 80px 20px;
        color: $cool-gray-09;
        border-radius: 32px 32px 0 0;
        position: relative;
        border: unset !important;
        //background: transparent;
        border: unset;
        @include font-size(20, 700);
        @media screen and (max-width: $screen-xs) {
          padding: 19px 25px 20px;
          @include font-size(16, 700);
        }

        &.active {
          background: $white;
          color: $primary-01;
          box-shadow: $box-shadow-04;
        }
      }
    }
  }

  .tab-content {
    //padding: 24px 32px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: $box-shadow-04;
    border-radius: 0 32px 32px 32px;
    @media screen and (max-width: $screen-xs) {
      border-radius: 0 0 16px 16px;
    }
  }
}

.primary-tab-2 {
  ul.nav-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    gap: 0;
    border-bottom: unset;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    @media screen and (max-width: 1199px) {
      width: calc(100% + 24px);
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; // Firefox
      &::-webkit-scrollbar {
        display: none; // Chrome, Safari
      }
    }

    li.nav-item {
      @media screen and (max-width: 1199px) {
        flex: 0 0 auto;
      }

      button {
        width: 100%;
        height: 60px;
        padding: 20px 32px;
        margin: 0;
        color: $cool-gray-09;
        border-radius: 0;
        position: relative;
        border: unset;
        background: transparent;
        display: inline-flex;
        align-items: center;
        border: unset;
        border-bottom: 1px solid $cool-gray-03;
        @include font-size(20, 700);
        @media screen and (max-width: 991px) {
          padding: 20px 24px;
        }

        &:before {
          content: "";
          background: $primary-01;
          width: 0;
          height: 4px;
          position: absolute;
          bottom: -1px;
          left: 0;
          transition: $transition-01;
        }

        &.active {
          background: transparent;
          color: $primary-01;

          &:before {
            width: 100%;
          }
        }
      }
    }
  }
}

.primary-tab-3 {
  ul.nav-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    gap: 0;
    border-bottom: unset;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;

    li.nav-item {
      button {
        width: 100%;
        height: 60px;
        padding: 20px 64px;
        margin: 0;
        color: $cool-gray-09;
        border-radius: 0;
        position: relative;
        border: unset;
        background: transparent;
        display: inline-flex;
        align-items: center;
        border: unset;
        border-bottom: 1px solid $cool-gray-03;
        @include font-size(20, 700);
        @media screen and (max-width: $screen-xs) {
          height: 52px;
          padding: 16px 12px;
          @include font-size(20, 500);
        }

        &:before {
          content: "";
          background: $primary-01;
          width: 0;
          height: 4px;
          position: absolute;
          bottom: -1px;
          left: 0;
          transition: $transition-01;
        }

        &.active {
          background: transparent;
          color: $primary-01;

          &:before {
            width: 100%;
          }
        }
      }
    }
  }
}

.primary-tab-4 {
  .primary-tab-4-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-inline-end: 124px;
    min-width: calc((100vw - 1140px) / 2 + 1060px);
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none; // Firefox
    &::-webkit-scrollbar {
      display: none; // Chrome, Safari
    }

    &:active {
      cursor: grabbing;
    }

    ul.nav-tabs {
      align-items: center;
      justify-content: left;
      gap: 0;
      border-bottom: unset;
      margin-bottom: 0;
      border-radius: 0;
      width: calc(100%);
      display: flex;
      flex-wrap: nowrap;

      li.nav-item {
        flex: 0 0 auto;

        button {
          width: 100%;
          height: 60px;
          padding: 20px 32px;
          margin: 0;
          color: $cool-gray-09;
          border-radius: 0;
          position: relative;
          border: unset;
          background: transparent;
          display: inline-flex;
          align-items: center;
          border: unset;
          white-space: nowrap;
          border-bottom: 1px solid $cool-gray-03;
          @include font-size(20, 500);
          @media screen and (max-width: 991px) {
            padding: 20px 24px;
          }

          &:before {
            content: "";
            background: $primary-01;
            width: 0;
            height: 4px;
            position: absolute;
            bottom: -1px;
            left: 0;
            transition: $transition-01;
          }

          &.active {
            background: transparent;
            color: $primary-01;

            &:before {
              width: 100%;
            }
          }
        }
      }
    }
  }
}

.video-card-01 {
  position: relative;
  border-radius: 8px;
  overflow: hidden;

  &:before {
    content: "";
    background: $dark-red-gradient-04;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }

  .video-wrapper {
    video {
      width: 100%;
      object-fit: cover;
      object-position: top;
    }

    .video-action {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateY(-50%) translateX(-50%);
      z-index: 2;

      img {
        max-width: 80px;
        @media screen and (max-width: $screen-xs) {
          max-width: 72px;
        }
      }
    }

    .video-title {
      width: 100%;
      padding: 0 32px;
      position: absolute;
      left: 0;
      bottom: 68px;
      color: $white;
      @include ellipsis(2);
      z-index: 2;
      @media screen and (max-width: $screen-xs) {
        display: none;
      }
    }

    .video-progress {
      width: 100%;
      padding: 0 20px 0 14px;
      display: grid;
      grid-template-columns: 14px 1fr;
      align-items: center;
      column-gap: 14px;
      position: absolute;
      left: 0;
      bottom: 14px;
      z-index: 2;
      @media screen and (max-width: $screen-xs) {
        bottom: 13px;
      }

      .play-button {
        img {
          max-width: 14px;
        }
      }

      .progress-bar {
        width: 100%;
        height: 8px;
        border-radius: 4px;
        background: rgba(255, 255, 255, .30);
        position: relative;
        cursor: pointer;

        .progress {
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          background: $primary-01;
          cursor: pointer;
        }
      }
    }
  }
}

.video-card-02 {
  position: relative;
  border-radius: 8px;
  overflow: hidden;

  .video-wrapper {
    video {
      width: 100%;
      object-fit: cover;
      object-position: top;
    }

    .video-content {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      padding: 67px 48px;
      display: flex;
      align-items: self-end;
      @media screen and (max-width: $screen-xs) {
        padding: 20px;
      }

      &.active {
        &:before {
          display: none;
        }

        .video-progress {
          display: grid;
        }

        a.logo, .title-wrapper {
          display: none;
        }
      }

      &:before {
        content: "";
        background: linear-gradient(90deg, rgba(255, 69, 87, .70) 0%, rgba(91, 12, 74, .70) 100%);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
      }

      a.logo {
        position: absolute;
        top: 48px;
        right: 48px;
        z-index: 2;
        @media screen and (max-width: $screen-xs) {
          top: 20px;
          right: 25px;
        }

        img {
          @media screen and (max-width: $screen-xs) {
            max-width: 90px;
          }
        }
      }

      .video-action {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 3;

        img {
          max-width: 80px;
          @media screen and (max-width: $screen-xs) {
            max-width: 64px;
          }
        }
      }

      .title-wrapper {
        position: relative;
        z-index: 2;

        h3 {
          color: $white;
        }

        h4 {
          color: $white;
        }
      }

      .video-progress {
        display: none;
        width: 100%;
        padding: 0 20px 0 14px;
        //display: grid;
        grid-template-columns: 14px 1fr;
        align-items: center;
        column-gap: 14px;
        position: absolute;
        left: 0;
        bottom: 14px;
        z-index: 2;
        @media screen and (max-width: $screen-xs) {
          bottom: 13px;
        }

        .play-button {
          img {
            max-width: 14px;
          }
        }

        .progress-bar {
          width: 100%;
          height: 8px;
          border-radius: 4px;
          background: rgba(255, 255, 255, .30);
          position: relative;
          cursor: pointer;

          .progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: $primary-01;
            cursor: pointer;
          }
        }
      }
    }
  }
}

.video-card-03 {
  position: relative;
  border-radius: 8px;
  overflow: hidden;

  .video-wrapper {
    video {
      width: 100%;
      object-fit: cover;
      object-position: top;
    }

    .video-content {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      padding: 67px 48px;
      display: flex;
      align-items: self-end;
      @media screen and (max-width: $screen-xs) {
        padding: 20px;
      }

      &.active {
        &:before {
          display: none;
        }

        .video-progress {
          display: grid;
        }

        a.logo, .title-wrapper {
          display: none;
        }
      }

      &:before {
        content: "";
        background: linear-gradient(104.04deg, #FF4557 0%, #5B0C4A 100%);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        transition: $transition-01;
      }

      .video-action {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 3;

        &.w-64 {
          img {
            max-width: 64px;
            @media screen and (max-width: $screen-xs) {
              max-width: 64px;
            }
          }
        }

        img {
          max-width: 80px;
          @media screen and (max-width: $screen-xs) {
            max-width: 64px;
          }
        }
      }

      .video-progress {
        display: none;
        width: 100%;
        padding: 0 20px 0 14px;
        //display: grid;
        grid-template-columns: 14px 1fr;
        align-items: center;
        column-gap: 14px;
        position: absolute;
        left: 0;
        bottom: 14px;
        z-index: 2;
        @media screen and (max-width: $screen-xs) {
          bottom: 13px;
        }

        .play-button {
          img {
            max-width: 14px;
          }
        }

        .progress-bar {
          width: 100%;
          height: 8px;
          border-radius: 4px;
          background: rgba(255, 255, 255, .30);
          position: relative;
          cursor: pointer;

          .progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: $primary-01;
            cursor: pointer;
          }
        }
      }
    }
  }
}

ul.pages-breadcrumb {
  > li {
    height: 58px;
    //min-width: 97px;
    padding: 24px 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    @media screen and (max-width: $screen-xs) {
      height: 49px;
      padding: 16px 24px;
    }

    &:first-of-type {
      padding: 7px 12px;
      @media screen and (max-width: $screen-xs) {
        padding: 2.5px 8px;
      }
    }

    &:last-of-type {
      a.page-name {
        pointer-events: none;
        font-weight: 600;
      }
    }

    &:not(:last-of-type) {
      border-right: 1px solid $cool-gray-03;
    }

    @media screen and (max-width: $screen-xs) {
      display: none;
      &:first-of-type, &:last-of-type, &:nth-last-of-type(2) {
        display: inline-flex;
      }
    }

    > ul.action-list {
      > li {
        height: auto;
        vertical-align: middle;

        &:not(:last-of-type) {
          margin: 0 10px 0 0;
          @media screen and (max-width: $screen-xs) {
            display: none;
          }
        }

        .icon {
          width: 44px;
          height: 44px;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            max-width: 16px;
          }
        }
      }
    }

    a.page-name {
      color: $cool-gray-10;
      font-weight: 500;
      display: inline-block;

      &.color-primary {
        color: $primary-01;
      }
    }
  }
}

ul.social-list-01 {
  padding: 16px;
  width: 80px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: $box-shadow-03;
  backdrop-filter: blur(30px);
  border-radius: 200px;

  &.horizontal {
    width: auto;
    height: 80px;
    padding: 13px 28px;

    li {
      padding: 4px 0;
      display: inline-block;

      &:not(:last-of-type) {
        border-bottom: unset;
        border-right: 1px solid $cool-gray-03;
      }

      a {
        width: 72px;
        height: 48px;
      }
    }
  }

  li {
    padding: 8px 0;

    &:not(:last-of-type) {
      border-bottom: 1px solid $cool-gray-03;
    }

    a {
      width: 48px;
      height: 48px;
      display: flex;
      align-content: center;
      justify-content: center;

      &:hover {
        img {
          transform: scale(1.1);
        }
      }

      img {
        max-width: 24px;
        transition: $transition-01;
      }
    }
  }
}


.inner-banner-01 {
  position: relative;
  min-height: 640px;
  @media screen and (max-width: $screen-xs) {
    min-height: 320px;
  }

  .bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}


.inner-banner-02 {
  padding: 119px 0;
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: self-end;
  @media screen and (max-width: 991px) and (min-width: 768px) {
    min-height: 640px;
  }
  @media screen and (max-width: $screen-xs) {
    padding: 134px 0;
    min-height: 640px;
    align-items: self-start;
  }

  &.has-small-search-filter {
    align-items: self-start;
    padding: 300px 0 120px;
    @media screen and (max-width: $screen-xs) {
      padding: 145px 0 120px;
    }
  }

  &.has-large-search-filter {
    align-items: self-start;
    padding: 260px 0 120px;
    @media screen and (max-width: $screen-xs) {
      padding: 145px 0 120px;
    }
  }

  &:before {
    content: "";
    background: linear-gradient(253.26deg, rgba(255, 255, 255, 0) 52.49%, rgba(255, 255, 255, 0.6) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    @media screen and (max-width: $screen-xs) {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 49.35%, rgba(255, 255, 255, 0) 65.79%);
    }
  }

  .bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .content-wrapper {
    position: relative;
    z-index: 2;
  }
}

.inner-banner-03 {
  padding: 44px 0;
  min-height: 340px;
  display: flex;
  align-items: self-end;
  @media screen and (max-width: $screen-xs) {
    padding: 37px 0 32px;
    min-height: 211px;
  }

  &.bg-orange {
    background: $primary-01;
  }

  .content-wrapper {
    .user-card {
      display: grid;
      grid-template-columns: 128px 1fr;
      align-items: center;
      column-gap: 32px;
      @media screen and (max-width: $screen-xs) {
        grid-template-columns: 1fr;
      }

      .user-img {
        @media screen and (max-width: $screen-xs) {
          display: none;
        }

        img {
          width: 128px;
          height: 128px;
          border-radius: 50%;
          object-fit: cover;
          object-position: top;
        }
      }

      .content {
        h1 {

        }
      }
    }
  }
}

.card-style-01 {
  text-align: center;

  .icon-wrapper {
    img {
      max-width: 24px;
    }
  }

  .content-wrapper {

  }
}


.audio-card-01 {
  audio {
    display: none;
  }

  .audio-style-01 {
    display: grid;
    grid-template-columns: 200px 80px;
    align-items: center;
    justify-content: right;
    column-gap: 48px;

    .audio-wave {
      img {
        width: 100%;
        object-fit: contain;
      }
    }

    .audio-player {
      display: flex;
      align-items: center;
      gap: 8px;

      p {
        margin-bottom: 0;
      }
    }
  }
}

.quick-info-card-01 {
  padding: 48px;
  border-radius: 16px;
  //max-width: 1140px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 32px;
  align-items: center;
  @media screen and (max-width: 991px) {
    padding: 32px;
    column-gap: 0;
    row-gap: 30px;
    grid-template-columns: 1fr;
  }

  &.bg-light-red {
    background: $bright-red-02;
  }

  &.bg-orange {
    background: $primary-01;
  }

  &.bg-soft-pink {
    background: $bright-red-14;
  }

  &.bg-royal-purple {
    background: $purple-05;
  }

  &.bg-cool-gray {
    background: $cool-gray-15;
  }

  &.bg-midnight-blue {
    background: $blue-10;
  }

  &.bg-soft-rose {
    background: $bright-red-15;
  }

  &.bg-red {
    background: $dark-red-09;
  }

  &.bg-mint-gray {
    background: $warm-gray-15;
  }

  &.bg-deep-teal {
    background: $green-10;
  }

  .content-wrapper {
    h3 {

    }

    h4 {

    }
  }

  ul.btn-list {
    li {
      display: inline-block;
      @media screen and (max-width: 991px) {
        display: block;
      }

      &:not(:last-of-type) {
        margin: 0 12px 0 0;
        @media screen and (max-width: 991px) {
          margin: 0 0 12px 0;
        }
      }

      .btn-style {
        @media screen and (max-width: 991px) {
          min-width: 100%;
        }
      }
    }
  }
}

.quick-info-card-02 {
  width: 100%;
  padding: 48px;
  border-radius: 32px;
  @media screen and (max-width: $screen-xs) {
    padding: 36px;
  }

  &.bg-mint-green {
    background-color: $green-12;
  }
}

.number-card-01 {
  position: relative;
  padding-top: 40px;
  @media screen and (max-width: 1199px) {
    display: grid;
    grid-template-columns: 69px 1fr;
    column-gap: 12px;
    align-items: self-start;
    padding-top: 0;
  }

  &:before {
    content: "";
    background: $primary-01;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 24px;
    top: 0;
    @media screen and (max-width: 1199px) {
      display: none;
    }
  }

  strong.count {
    @media screen and (max-width: 1199px) {
      line-height: 80px !important;
    }
  }
}

.job-filter-card {
  width: 100%;
  //max-width: 913px;
  min-height: 468px;
  background-color: $purple-05;
  padding: 32px;
  border-radius: 32px;
  @media screen and (max-width: $screen-xs) {
    padding: 24px;
    min-height: auto;
    border-radius: 16px 16px 0 0;
  }

  &.bg-deep-red {
    background-color: $dark-red-10;
  }

  &.job-inner-banner {
    border-radius: 0;
    padding: 157px 0 49px;
    @media screen and (max-width: 991px) and (min-width: 768px) {
      padding: 137px 0 49px;
    }
    @media screen and (max-width: $screen-xs) {
      padding: 114px 0 48px;
    }

    .banner-wrapper {
      max-width: 913px;
    }
  }

  .tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    .tag-list {
      li {
        color: #DDC3DA;

        &:not(:last-of-type) {
          margin-right: 48px;
        }
      }
    }
  }

  h1 {
  }

  ul.travel-features {
    li {
      display: flex;
      align-items: center;
      gap: 16px;

      &:not(:last-of-type) {
        border-bottom: 1px solid $cool-gray-03;
      }

      .name-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 10px;

        &:first-of-type {
          min-width: 171px;
        }

        .icon {
          img {
            width: 18px;
          }
        }
      }
    }
  }

  .feature-card-wrapper {
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 33%);
      align-items: center;
      max-width: 849px;

      &.bg-deep-red {

      }

      .feature-card {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 12px;
        min-width: 120px;
        align-items: center;
        padding: 16px 12px;
        border-bottom: 1px solid $cool-gray-03;

        &:nth-last-child(-n + 2) {
          border-bottom: none;
        }

        .icon-wrapper {
          width: 24px;
          height: 24px;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            max-width: 22px;
          }
        }

        p {
          color: $white;
          margin-bottom: 0;
        }
      }
    }
  }

  .btn-wrapper {
  }
}

.tag-btn-1 {
  height: 36px;
  border-radius: 200px;
  padding: 9px 18px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: $white;

  &:hover {
    color: $white;
  }

  &.deep-purple {
    background-color: $purple-06;
  }

  &.deep-red {
    background-color: rgba(85, 0, 25, 0.5);
  }

  &.dark-red {
    background-color: $dark-red-05;
  }

  &.deep-blue {
    background-color: $blue-09;
  }
}

.tag-btn-2 {
  height: 29px;
  border-radius: 200px;
  padding: 9px 14px 9px 11px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  justify-content: center;

  &.bg-gray {
    background-color: $cool-gray-02;
  }
}

.tag-btn-3 {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  display: inline-block;

  &.text-color-primary {
    color: $primary-01;

    &:hover {
      color: $primary-01;
    }
  }
}

.features-list-card-01 {
  padding: 38px 32px;
  background-color: $white;
  border-radius: 16px;

  &.bg-light-gray {
    background-color: $cool-gray-16;
  }

  &.bg-light-red {
    background-color: $bright-red-16;
  }

  &.bg-soft-red {
    background-color: $bright-red-01;
  }

  &.bg-deep-purple {
    background-color: $purple-05;
  }

  h3 {
  }

  .feature-list {
    &.check-purple {
      li {
        &::before {
          background: url("../../assets/icons/others/check-deep-purple-icon.svg") no-repeat center;
          background-size: cover;
        }
      }
    }

    &.check-deep-red {
      li {
        &::before {
          background: url("../../assets/icons/others/check-deep-red-icon.svg") no-repeat center;
          background-size: cover;
        }
      }
    }

    &.check-light-red {
      li {
        &::before {
          background: url("../../assets/icons/others/check-light-red-icon.svg") no-repeat center;
          background-size: cover;
        }
      }
    }

    &.check-circle-light-red {
      li {
        &::before {
          background: url("../../assets/icons/others/circle-check-red-icon.svg") no-repeat center;
          background-size: cover;
          width: 20px;
          height: 20px;
          left: 0;
          top: 13px;
        }
      }
    }

    &.arrow-light-red {
      li {
        &::before {
          background: url("../../assets/icons/arrows/right-short-arrow-red-icon.svg") no-repeat center;
          background-size: cover;
          width: 14px;
          height: 14px;
        }
      }
    }

    &.arrow-light-pink {
      li {
        &::before {
          background: url("../../assets/icons/arrows/right-short-arrow-pink-icon.svg") no-repeat center;
          background-size: cover;
          width: 14px;
          height: 14px;
        }
      }
    }

    li {
      width: 100%;
      padding: 11px 0 13px 36px;
      position: relative;

      &:not(:last-of-type) {
        border-bottom: 1px solid $cool-gray-03;
      }

      &::before {
        content: "";
        //background: url("../../assets/icons/others/check-deep-purple-icon.svg") no-repeat center;
        //background-size: cover;
        width: 16px;
        height: 11px;
        position: absolute;
        left: 4px;
        top: 18px;
      }
    }
  }
}

.features-list-card-02 {
  width: 100%;
  background-color: $green-06;
  padding: 16px 24px 24px;
  border-radius: 16px;
  @media screen and (max-width: $screen-xs) {
    padding: 12px 20px 20px;
  }

  &.w-374 {
    max-width: 374px;
  }

  ul.feature-items {
    li {
      display: grid;
      align-items: start;
      grid-template-columns: 24px 1fr;
      column-gap: 12px;
      padding: 16px 8px 20px;
      @media screen and (max-width: $screen-xs) {
        padding: 12px 4px 16px;
      }

      &:not(:last-of-type) {
        border-bottom: 1px solid #E2E2E34D;
      }

      .icon-wrapper {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
          max-width: 24px;
        }
      }

      .content-wrapper {

      }
    }
  }

  .btn-wrapper {
    .btn-style {
      width: 100%;
    }
  }
}


.finance-card-01 {
  padding: 32px;
  border-radius: 16px;
  box-shadow: $box-shadow-01;
  transition: $transition-01;
  overflow: hidden;

  &:hover {
    transform: translateY(-8px);
    box-shadow: $box-shadow-03;
  }

  .tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    .wishlist-wrapper {
      display: flex;
      align-items: center;
      justify-content: right;
      gap: 25px;

      .heart-icon {
        display: none;

        &.is-visible {
          display: block;
        }

        img {
          max-width: 22px;
        }
      }
    }
  }

  .detail-wrapper {
    min-height: 130px;

    h4 {
      @include ellipsis(2);
    }

    p {
      @include ellipsis(3);
    }
  }

  ul.travel-features {
    li {
      padding: 12px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;

      &:not(:last-of-type) {
        border-bottom: 1px solid $cool-gray-03;
      }

      .name-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;

        .icon {
          img {
            width: 18px;
          }
        }
      }
    }
  }

  .btn-wrapper {
    text-align: center;

    .btn-style {
      min-width: 100%;
    }
  }
}


.info-banner-1 {
  min-height: 719px;
  display: flex;
  align-items: center;
  position: relative;
  @media screen and (max-width: 991px) and (min-width: 768px) {
    min-height: 600px;
  }
  @media screen and (max-width: $screen-xs) {
    padding-top: 55px;
    align-items: self-start;
    min-height: 961px;
  }

  .bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .content-wrapper {
    position: relative;
    z-index: 1;

    .btn-wrapper {
      .btn-style {
        @media screen and (max-width: $screen-xs) {
          min-width: 100%;
        }
      }
    }
  }
}

.info-banner-2 {
  min-height: 749px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  @media screen and (max-width: $screen-xs) {
    padding: 80px 0 30px;
    min-height: 974px;
    align-items: flex-start;
  }

  .bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .info-card-02 {
    width: 100%;
    max-width: 655px;
    margin-left: auto;
    padding: 48px;
    border-radius: 16px;
    background-color: $purple-05;
    position: relative;
    z-index: 2;
    @media screen and (max-width: $screen-xs) {
      padding: 30px;
      .btn-wrapper {
        justify-content: center;
      }
    }

    @media screen and (max-width: 991px) and (min-width: 768px) {
      max-width: 450px;
      padding: 32px;
    }

    @media screen and (max-width: 1199px) and (min-width: 992px) {
      max-width: 550px;
    }
  }
}

.team-card-1 {
  border-radius: 16px;
  background-color: $white;
  box-shadow: $box-shadow-01;
  transition: $transition-01;
  overflow: hidden;

  &:hover {
    transform: translateY(-8px);
    box-shadow: $box-shadow-03;

    .content-wrapper {
      //margin: 0;
      border-radius: 0 0 16px 16px;
    }
  }

  .img-wrapper {
    img {
      width: 100%;
      height: 242px;
      object-fit: cover;
      object-position: top;
    }
  }

  .content-wrapper {
    padding: 32px;
    margin-top: -20px;
    background: $white;
    border-radius: 16px 16px 0 0;
    transition: $transition-01;
    position: relative;
    z-index: 2;
    @media screen and (max-width: $screen-xs) {
      padding: 24px;
    }

    ul.contact-list {
      li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 12px;

        &:not(:last-of-type) {
          border-bottom: 1px solid $cool-gray-03;
        }

        @media screen and (max-width: $screen-xs) {
          gap: 8px;
          padding: 4px 8px;
        }

        .icon {
          width: 24px;
          height: 24px;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            width: 100%;
            max-width: 20px;
            @media screen and (max-width: $screen-xs) {
              max-width: 18px;
            }
          }
        }
      }
    }

    .btn-wrapper {
      @media screen and (max-width: $screen-xs) {
        margin-top: 20px;
      }
    }
  }
}

.contact-widget-1 {
  padding: 32px;
  width: 100%;
  max-width: 380px;
  background-color: $white;
  border-radius: 16px;
  box-shadow: $box-shadow-03;

  .widget-content {
    ul.contact-list {
      li {
        display: grid;
        grid-template-columns: 24px 1fr;
        align-items: center;
        gap: 8px;

        &:not(:last-of-type) {
          margin-bottom: 16px;
        }

        .icon {
          width: 24px;
          height: 24px;

          img {
            min-width: 19px;
          }
        }
      }
    }

    ul.social-list {
      li {
        display: inline-block;

        &:not(:last-of-type) {
          margin: 0 32px 0 0;
        }

        a {
          img {
            max-width: 32px;
          }
        }
      }
    }
  }
}

.content-card-1 {
  ul.btn-list {
    li {
      display: inline-block;
      vertical-align: middle;
      @media screen and (max-width: $screen-xs) {
        display: block;
      }

      &:not(:last-of-type) {
        margin: 0 24px 0 0;
        @media screen and (max-width: $screen-xs) {
          margin: 0 0 20px 0;
        }
      }

      .btn-style {
        @media screen and (max-width: $screen-xs) {
          min-width: 100%;
        }
      }
    }
  }

  ul.feature-list {
    &.right-arrow-icon {
      li {
        padding-left: 28px;

        &:before {
          background: url("../../assets/icons/arrows/right-short-arrow-black-icon.svg") no-repeat center;
          background-size: cover;
          width: 12px;
          height: 12px;
          position: absolute;
          top: 7px;
          left: 0;
        }
      }
    }

    li {
      display: block;
      padding-left: 22px;
      position: relative;
      @media screen and (max-width: $screen-xs) {
        padding-left: 18px;
      }

      &:not(:last-of-type) {
        margin: 0 0 16px 0;
        @media screen and (max-width: $screen-xs) {
          margin: 0 0 12px 0;
        }
      }

      &:before {
        content: "";
        background: $primary-01;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 8px;
      }
    }
  }

  ol.feature-list {
    padding-left: 16px;
    position: relative;

    li {
      list-style: decimal;
      display: list-item;

      &:not(:last-of-type) {
        margin: 0 0 6px 0;
        @media screen and (max-width: $screen-xs) {
          //margin: 0 0 16px 0;
        }
      }
    }
  }
}

.content-card-3 {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 24px;
  align-items: self-start;
  @media screen and (max-width: 991px) and (min-width: 768px) {
    grid-template-columns: 100px 1fr;
  }
  @media screen and (max-width: $screen-xs) {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .count-icon {
    text-align: center;
    @media screen and (max-width: $screen-xs) {
      text-align: left;
    }

    strong {
      color: $green-11;
      line-height: 120px;
      @media screen and (max-width: 991px) and (min-width: 768px) {
        line-height: 93px;
      }
      @media screen and (max-width: $screen-xs) {
        line-height: 60px;
      }

      &.color-red {
        color: $primary-01;
      }

      &.color-gradient {
        background: linear-gradient(180deg, #FF4557 0%, #BFC6D5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text; /* for Firefox */
        color: transparent;
      }
    }
  }

  .list-content {

  }

  ul.feature-list {
    li {
      display: block;
      padding-left: 22px;
      position: relative;
      @media screen and (max-width: $screen-xs) {
        padding-left: 18px;
      }

      &:not(:last-of-type) {
        margin: 0 0 16px 0;
        @media screen and (max-width: $screen-xs) {
          margin: 0 0 12px 0;
        }
      }

      &:before {
        content: "";
        background: $primary-01;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 8px;
      }
    }
  }
}


.content-card-2 {

  .detail-card {
    padding: 32px;
    border-radius: 16px;
    background: $cool-gray-16;
    margin: 0 0 0 -32px;
    @media screen and (max-width: 1199px) and (min-width: 768px) {
      margin: 0;
    }
    @media screen and (max-width: $screen-xs) {
      margin: 0;
      padding: 24px;
    }

    &.fade-purple {
      background: $bright-red-14;

      > h3 {
        color: $purple-05;
      }
    }

    ul.feature-list {
      &.no-grid {
        li {
          grid-template-columns: 1fr;
          row-gap: 8px;
          padding: 22px 0;

          .name-wrapper {
            display: block;
          }
        }
      }

      li {
        display: grid;
        grid-template-columns: 240px 1fr;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        min-height: 72px;
        position: relative;
        @media screen and (max-width: $screen-xs) {
          padding: 0 0 14px;
          grid-template-columns: 1fr;
          row-gap: 4px;
        }

        &:not(:last-of-type) {
          border-bottom: 1px solid $cool-gray-09;
        }

        .name-wrapper {
          display: grid;
          grid-template-columns: 48px 1fr;
          align-items: center;
          column-gap: 8px;
          @media screen and (max-width: $screen-xs) {
            column-gap: 4px;
          }

          .icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
              max-width: 20px;
            }
          }
        }
      }
    }
  }
}

.content-author-card-1 {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  column-gap: 32px;
  @media screen and (max-width: $screen-xs) {
    align-items: self-start;
    grid-template-columns: 64px 1fr;
  }

  .user-img {
    img {
      width: 128px;
      height: 128px;
      border-radius: 50%;
      object-fit: cover;
      @media screen and (max-width: $screen-xs) {
        width: 64px;
        height: 64px;
      }
    }
  }

  .user-content {

  }
}

.content-author-card-2 {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  column-gap: 48px;
  @media screen and (max-width: $screen-xs) {
    text-align: center;
    row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .user-img {
    img {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      object-fit: cover;
      @media screen and (max-width: $screen-xs) {
        width: 128px;
        height: 128px;
      }
    }
  }

  .user-content {
    .name-wrapper {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid $cool-gray-03;
      @media screen and (max-width: $screen-xs) {
        margin-top: 20px;
        padding-top: 20px;
      }
    }
  }
}

.table-content-sidebar-1 {
  .title {
    padding-left: 32px;
  }

  ul.link-list {
    padding-left: 30px;
    position: relative;

    &:before {
      content: "";
      background: $cool-gray-02;
      height: calc(100% + 18px);
      width: 6px;
      border-radius: 32px;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    &:after {
      content: "";
      background: $primary-01;
      height: 160px;
      width: 6px;
      border-radius: 32px;
      position: absolute;
      left: 0;
      top: -8px;
    }

    li {
      display: block;

      &:not(:last-of-type) {
        margin-bottom: 29px;
      }

      &.active {
        a {
          font-weight: 700;
          color: $primary-01;
        }
      }

      a {
        color: $cool-gray-12;
      }
    }
  }
}

.search-box-card-1 {
  padding: 24px 32px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: $box-shadow-04;
  border-radius: 32px;
  @media screen and (max-width: $screen-xs) {
    padding: 24px 12px 24px 16px;
    border-radius: 0 0 16px 16px;
  }

  &.w-914 {
    max-width: 914px;
  }

  &.search-box-tab-card {
    padding: 0;
    background: transparent;
    box-shadow: unset;
    border-radius: 0;
    backdrop-filter: unset;
  }

  .form-wrapper {
    .form {
      display: grid;
      grid-template-columns: 1fr 64px;
      align-items: self-end;
      column-gap: 32px;
      overflow: hidden;
      @media screen and (max-width: $screen-xs) {
        grid-template-columns: 1fr 48px;
        column-gap: 24px;
      }

      .form-card {
        .form-grid {
          display: grid;
          grid-template-columns: repeat(12, 1fr);
          column-gap: 24px;
          //row-gap: 24px;
          align-items: center;

          .form-group {
            grid-column: span 4;
            margin-bottom: 24px;
            @media screen and (max-width: $screen-xs) {
              grid-column: span 12;
            }

            &:nth-of-type(1), &:nth-of-type(2) {
              grid-column: span 6;
              @media screen and (max-width: $screen-xs) {
                grid-column: span 12;
              }
            }

            @for $i from 1 through 12 {
              &.span-#{$i} {
                grid-column: span #{$i};

                @media screen and (max-width: $screen-xs) {
                  grid-column: span 12;
                }
              }
            }
            @media screen and (max-width: 991px) and (min-width: 768px) {
              @for $i from 1 through 12 {
                &.span-md-#{$i} {
                  grid-column: span #{$i};

                  @media screen and (max-width: $screen-xs) {
                    grid-column: span 12;
                  }
                }
              }
            }

            &.range-group {
              margin-top: 30px;
              @media screen and (max-width: $screen-xs) {
                margin-top: 0;
              }
            }

            .range-label {
              label {
                font-weight: 400;
                display: flex;
                align-items: center;
                gap: 13px;
              }
            }
          }
        }
      }

      .form-btn {
        .form-group {
          .btn-circle {
            @media screen and (max-width: $screen-xs) {
              width: 48px;
              height: 48px;
            }
          }
        }
      }
    }

    ul.more-options {
      li {
        display: inline-block;
        vertical-align: middle;

        &:not(:last-of-type) {
          margin: 0 48px 0 0;
          @media screen and (max-width: $screen-xs) {
            margin: 0 24px 0 0;
          }
        }
      }
    }
  }
}

.faq-card-1 {
  .accordion {
    width: 100%;
    max-width: 845px;

    .accordion-item {
      border: none;
      border-bottom: 1px solid $cool-gray-09;

      &:last-child {
        border-bottom: none;
      }

      .accordion-button {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 32px 40px 32px 0;
        background: transparent;
        border: none;
        box-shadow: none;
        position: relative;
        @media screen and (max-width: $screen-xs) {
          padding: 20px 40px 20px 0;
        }

        &::after {
          content: "";
          background: url("../../assets/icons/others/minus-black-icon.svg") no-repeat center;
          background-size: contain;
          width: 12px;
          height: 20px;
          position: absolute;
          right: 18px;
          top: 50%;
          transform: translateY(-50%);
        }

        &:not(.collapsed)::after {
          background-image: url("../../assets/icons/others/minus-black-icon.svg");
        }

        &.collapsed::after {
          background-image: url("../../assets/icons/others/plus-black-icon.svg");
        }

        &:focus {
          box-shadow: none;
        }

        p {
          color: $cool-gray-09;
        }
      }

      .accordion-collapse {
        background: transparent;

        .accordion-body {
          padding: 0 0 28px;
        }

        a {
          display: grid;
          align-items: center;
          grid-template-columns: 20px 1fr;
          column-gap: 8px;
        }
      }
    }
  }
}

.profile-card-1 {
  .profile-card {
    width: 100%;
    max-width: 364px;
    box-shadow: $box-shadow-03;
    border-radius: 16px;
    padding: 24px 32px 32px;
    background: rgba(255, 255, 255, 0.9);

    .chat-header {
      display: grid;
      align-items: center;
      grid-template-columns: 272px 1fr;

      .icon-wrapper {
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }
    }

    .chat-body {
      .user-profile {
        display: grid;
        align-items: center;
        grid-template-columns: 64px 1fr;
        gap: 16px;

        .user-img {
          img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top;
          }
        }

        .user-content {
          a {
            color: $primary-01;
            text-decoration: underline;

            &:hover {
              color: $primary-01;
            }
          }
        }
      }

      ul.contact-list {
        li {
          display: grid;
          align-items: center;
          grid-template-columns: 24px 1fr;
          column-gap: 8px;

          &:not(:last-of-type) {
            margin-bottom: 16px;
          }

          .icon-wrapper {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
              max-width: 21px;
            }
          }
        }
      }

      .btn-wrapper {
        .btn-style {
          min-width: 100%;
        }
      }
    }

    .chat-footer {
      display: flex;
      align-items: center;

      ul.social-list {
        li {
          display: inline-block;
          margin-right: 32px;

        }
      }

      .card-wrapper {
        cursor: pointer;

        img {
          width: 20px;
          height: 20px;
        }

        display: flex;
        align-items: center;
        gap: 8px;
      }
    }
  }

  .quick-profile-card {
    width: 100%;
    max-width: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px;
    text-align: center;

    &.step-3 {
      display: none;
    }

    @media screen and (max-width: $screen-xs) {
      flex-direction: row;
      justify-content: space-between;
      max-width: 100%;
      padding: 6px 32px;
      border-radius: 0;
      gap: 16px;
    }

    .user-img {
      cursor: pointer;
      margin-bottom: 34px;
      @media screen and (max-width: $screen-xs) {
        margin-bottom: 0;
      }

      img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 50%;
      }
    }

    ul.icon-list {
      max-width: 42px;
      margin: auto;
      @media screen and (max-width: $screen-xs) {
        max-width: 100%;
      }

      li {
        cursor: pointer;
        display: block;
        padding: 12px 6px 12px 9px;
        @media screen and (max-width: $screen-xs) {
          display: inline-block;
          padding: 6px 22px;
        }

        &:not(:last-of-type) {
          border-bottom: 1px solid $cool-gray-03;
          @media screen and (max-width: $screen-xs) {
            border-bottom: unset;
            border-right: 1px solid $cool-gray-03;
          }
        }

        .icon-wrapper {
          width: 24px;
          height: 24px;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            max-width: 21px;
          }
        }
      }
    }
  }
}

.chat-widget-1 {
  .profile-card {
    width: 100%;
    max-width: 364px;
    box-shadow: $box-shadow-03;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 32px;
    @media screen and (max-width: $screen-xs) {
      padding: 24px;
      border-radius: 0;
    }

    &.step-1 {
      display: block;
    }

    .chat-header {
      display: grid;
      align-items: center;
      grid-template-columns: 1fr 40px;
      margin-bottom: 18px;

      .icon-wrapper {
        cursor: pointer;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }
    }

    .chat-body {
      .user-profile {
        display: grid;
        align-items: center;
        grid-template-columns: 64px 1fr;
        gap: 16px;

        .user-img {
          img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top;
          }
        }

        .user-content {
          a {
            text-decoration: underline;
          }
        }
      }
    }

    ul.contact-list {
      li {
        display: grid;
        align-items: center;
        grid-template-columns: 24px 1fr;
        column-gap: 8px;

        &:not(:last-of-type) {
          margin-bottom: 16px;
        }

        .icon-wrapper {
          width: 24px;
          height: 24px;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            max-width: 21px;
          }
        }
      }
    }

    .btn-wrapper {
      .btn-style {
        min-width: 100%;
      }
    }
  }

  .chat-card {
    width: 100%;
    max-width: 364px;
    box-shadow: $box-shadow-03;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 32px;
    @media screen and (max-width: $screen-xs) {
      padding: 24px;
      border-radius: 0;
    }

    &.step-2 {
      display: none;
    }

    .chat-header {
      display: grid;
      align-items: center;
      grid-template-columns: 13px 1fr 30px;
      column-gap: 26px;
      margin-bottom: 18px;

      .back-arrow {
        cursor: pointer;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: left;
      }

      .icon-wrapper {
        cursor: pointer;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }
    }

    .chat-body {
      .msg-wrapper {
        li {
          &:not(:last-of-type) {
            margin-bottom: 10px;
          }
        }
      }

      .message-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        align-items: center;
        column-gap: 12px;

        .user-img {
          img {
            width: 48px;
            height: 48px;
            object-fit: cover;
            object-position: top;
            border-radius: 50%;
          }
        }

        .msg-content {
          border-radius: 8px;
          padding: 16px 12px;
          background-color: #F5F5F4;
        }
      }

      .text-editor {
        textarea {
          width: 300px;
          height: 133px;
          padding: 12px 14px;
          border: 2px solid $warm-gray-14;
          resize: none;
          border-radius: 8px;

          &::placeholder {
            font-size: 18px;
            color: #8B8B8C;
          }
        }
      }

      .btn-wrapper {
        .btn-style {
          min-width: 100%;
        }
      }
    }
  }

  .quick-profile-card {
    width: 100%;
    max-width: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px;
    text-align: center;

    &.step-3 {
      display: none;
    }

    @media screen and (max-width: $screen-xs) {
      flex-direction: row;
      justify-content: space-between;
      max-width: 100%;
      padding: 6px 32px;
      border-radius: 0;
      gap: 16px;
    }

    .user-img {
      cursor: pointer;
      margin-bottom: 34px;
      @media screen and (max-width: $screen-xs) {
        margin-bottom: 0;
      }

      img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 50%;
      }
    }

    ul.icon-list {
      max-width: 42px;
      margin: auto;
      @media screen and (max-width: $screen-xs) {
        max-width: 100%;
      }

      li {
        cursor: pointer;
        display: block;
        padding: 12px 6px 12px 9px;
        @media screen and (max-width: $screen-xs) {
          display: inline-block;
          padding: 6px 22px;
        }

        &:not(:last-of-type) {
          border-bottom: 1px solid $cool-gray-03;
          @media screen and (max-width: $screen-xs) {
            border-bottom: unset;
            border-right: 1px solid $cool-gray-03;
          }
        }

        .icon-wrapper {
          width: 24px;
          height: 24px;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            max-width: 21px;
          }
        }
      }
    }
  }
}

.upload-widget-1 {
  .btn-upload {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: $box-shadow-03;
    background: rgba(255, 255, 255, 0.9);

    img {
      max-width: 20px;
    }
  }
}

.appointment-card-1 {
  width: 100%;
  max-width: 374px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: $box-shadow-03;
  backdrop-filter: blur(30px);
  padding: 32px;
  border-radius: 16px;

  a {
  }
}


.user-info-widget-1 {
  display: grid;
  align-items: center;
  grid-template-columns: 128px 1fr;
  column-gap: 32px;

  .img-wrapper {
    img {
      width: 128px;
      height: 128px;
      object-fit: cover;
      object-position: top;
      border-radius: 50%;
    }
  }
}


.user-info-widget-2 {
  .user-info-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 128px 1fr;
    column-gap: 32px;

    .img-wrapper {
      img {
        width: 128px;
        height: 128px;
        object-fit: cover;
        object-position: top;
        border-radius: 50%;
      }
    }
  }

  .brand-info-wrapper {
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid $cool-gray-03;

    > p {

    }

    .logo-wrapper {
      img {
        max-width: 260px;
      }
    }
  }
}

.progress-card-01 {
  padding: 32px;
  border-radius: 16px;
  box-shadow: $box-shadow-02;
  @media screen and (max-width: $screen-xs) {
    padding: 24px;
  }

  &.bg-dark-blue {
    background: $blue-10;
  }

  &.bg-dark-purple {
    background: $purple-05;
  }

  .date-wrapper {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid $white;
  }

  .progress-wrapper {
    .progress {
      height: 6px;
      background: rgba(0, 0, 0, .25);

      .progress-bar {
        background: $primary-01;
      }
    }
  }
}

.date-card-01 {
  padding: 32px;
  border-radius: 16px;
  box-shadow: $box-shadow-01;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  min-height: 459px;
  @media screen and (max-width: $screen-xs) {
    min-height: 290px;
  }

  .date-wrapper {
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255.5);

    .filter-icon {
      text-align: right;
    }
  }

  .btn-wrapper {
    .btn-style {
      color: $white !important;

      img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7302%) hue-rotate(344deg) brightness(101%) contrast(100%) !important;
      }
    }
  }
}

.scroll-card {
  //display: none;
  //width: 300px;
  //right: 24px;
  z-index: 2;
}

.scroll-card.fixed {
  //position: fixed;
  //top: 100px;
}

.scroll-card.absolute-bottom {
  //position: absolute;
}

.form-success-card-1 {
  padding: 24px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  column-gap: 12px;

  &.bg-green {
    background: #ECFDF3;

    .icon-wrapper {
      background: #98E1BF;
    }
  }

  .icon-wrapper {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      max-width: 12px;
    }
  }
}
