.insight-banner-with-slider-wrapper {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 125px 135px 50px;

  @media (max-width: 1599px) { padding: 125px 35px 55px; }
  @media (max-width: 1140px) { padding: 115px 40px 50px; }
  @media (max-width: 1024px) { padding: 125px 35px 55px; }
  @media (max-width: 767px) { padding: 85px 15px 20px; }

  .insight-banner-with-slider-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;

    @media (max-width: 768px) {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  .insight-banner-with-slider-left {
    flex: 0 0 35%;
    max-width: 35%;

    @media (max-width: 768px) {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 30px;
      text-align: left;
    }

    .insight-banner-with-slider-subtitle {
      color: #fff;
      font-size: 17px;
      line-height: 25px;
      text-transform: uppercase;
      font-weight: 700;
      font-family: "proxima-nova";
      display: flex;
      margin-bottom: 10px;

      @media (max-width: 1599px) { font-size: 16px; }
      @media (max-width: 767px) {
        font-size: 12px;
        font-weight: 400;
        text-transform: capitalize;
        margin: 0;
      }
    }

    .insight-banner-with-slider-title {
      font-size: 50px;
      line-height: 61px;
      font-family: "proxima-nova", sans-serif;
      font-weight: bold;
      color: #fff;
      margin-bottom: 25px;

      @media (max-width: 1399px) {
        font-size: 42px;
        line-height: 50px;
      }

      @media (max-width: 767px) {
        font-size: 35px;
        line-height: 40px;
      }
    }

    .insight-banner-with-slider-desc {
      font-size: 18px;
      line-height: 27px;
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      color: #fff;
      margin: 0 0 35px;

      @media (max-width: 1399px) {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
      }

      @media (max-width: 1023px) {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 18px;
      }
    }
  }

  .insight-banner-with-slider-right {
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;

    @media (max-width: 768px) {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .insight-banner-with-slider-arrows {
      @media (max-width: 992px) {
        display: none;
      }
      .slick-arrow {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 2px solid #fff;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0px 3px 6px rgba(0,0,0,0.1607843137);
        @media (max-width: 992px) {
          display: none;
          &::before {
            content: '';
            display: none;
          }
        }
        svg path {
          width: 10px;
          height: 14px;
          cursor: pointer;
        }

        &::before {
          content: '';
          display: none;
        }
      }
    }

    .insight-banner-with-slick-slider {
      position: relative;
      width: 100%;

      .insight-banner-with-slick-slide {
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        cursor: pointer;
        position: relative;
        overflow: hidden;

        iframe,
        video,
        img {
          width: 100%;
          max-width: 100%;
          height: auto;
          aspect-ratio: 16 / 9;
          display: block;
          -o-object-fit: cover;
          object-fit: cover;
          border: none;
          background: #000;
        }
       
        img {
          -webkit-transform-origin: center;
          transform-origin: center;
          -webkit-transition: -webkit-transform .6s;
          transition: -webkit-transform .6s;
          transition: transform .6s;
          transition: transform .6s, -webkit-transform .6s;
          will-change: transform;
        }

        &.insight {
          .insight-details {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            border-radius: 0 0 8px 8px;
            box-sizing: border-box;
            z-index: 9;

            @media (max-width: 1023px) { padding: 20px; }
            @media (max-width: 767px) { padding: 15px; }
          }

          .insight-title {
            color: #fff;
            font-size: 20px;
            line-height: 28px;
            font-weight: 700;
            font-family: "proxima-nova", sans-serif;
            margin: 0 0 15px;
            max-width: 100%;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.3s ease;

            @media (max-width: 1599px) {
              font-size: 18px;
              line-height: 26px;
            }

            @media (max-width: 1023px) {
              font-size: 18px;
              line-height: 24px;
            }

            @media (max-width: 767px) {
              font-size: 16px;
              line-height: 22px;
              -webkit-line-clamp: 3;
            }

            @media (max-width: 480px) {
              font-size: 15px;
              line-height: 20px;
            }
          }

          .insight-button {
            font-size: 16px;
            line-height: 24px;
            margin-top: 10px;

            @media (max-width: 1023px) {
              a { font-size: 15px; }
            }

            @media (max-width: 767px) {
              margin-top: 10px;
              a { font-size: 14px; }
            }

            a {
              color: #fff;
              text-decoration: none;
              display: inline-block;
              transition: all 0.3s ease;
            }
          }
        }

        &:hover .insight-thumbnail {
          -webkit-transform: scale(1.3);
          transform: scale(1.3);
        }
      }

      .slick-slide {
        display: flex !important;
        justify-content: center;
        align-items: center;

        > div {
          width: 100%;
        }
      }

      .slide-insight.slick-slide {
        &:before{
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.45);
          z-index: 1;
        }
      }

      .slick-track {
        display: flex;
        align-items: stretch;
         @media (max-width: 480px) {
          width: 3250px !important;
         }
         @media (max-width: 768px) {
          width: 5584px !important;
         }
      }
      .slick-dots {
        li {
            margin: 2px;
            width: 14px;
            button {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgb(217 217 217 / 74%);
                border: none;
                transition: all 0.3s ease;
            }

            &.slick-active button {
                background-color: #fff;
                transform: scale(1.2);
                padding: 0px;
            }
            &.slick-active button:before {
                opacity: 0;
                color: rgba(0, 0, 0, 0);
            }
           
        }
    }
    .slick-dots li button {
        &::before {
            color: transparent;
            opacity: 0.1;
        }
    }
    }
  }
}

.site {
  .sutherland-header.site-header {
      @media only screen and (max-width: 1023px) {
          .breadcrumbs {
              padding: 20px 0px 15px 35px;
              margin-top: -15px;
          }
      }
      @media only screen and (max-width: 1139px) {
          .breadcrumbs {
              padding: 20px 0px 15px 35px;
              margin-top: -15px;
          }
      }
  }
}

.btn-main.btn-primary-new {
    backdrop-filter: blur(50px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    font-family: "proxima-nova", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    border-radius: 24px 4px 20px 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: background .2s, border-color .2s, opacity .2s, transform .2s;
    background: rgba(18, 172, 247, .4) !important;
    color: #fff !important;
    border: 1.4px solid hsla(0, 0%, 100%, .4) !important;
}
.btn-main.btn-primary-new a {
    color: #FFFFFF !important;
}


.new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: "proxima-nova", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  color: #ffffff;
  border: 1.4px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px 4px 20px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.25s ease;
}
.new-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.new-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.new-btn__text {
  position: relative;
  z-index: 1;
}
.new-btn:focus-visible {
  outline: 2px solid #12acf7;
  outline-offset: 2px;
}
.new-btn:disabled, .new-btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}
.new-btn--sm {
  gap: 8px;
  padding: 8px 16px;
  border-radius: 16px 2px 16px 16px;
}
.new-btn--sm::before {
  width: 7px;
  height: 7px;
  background: #12acf7;
}
.new-btn--no-dot {
  gap: 0;
}
.new-btn--no-dot::before {
  display: none;
}
.new-btn--primary-glass {
  background: rgba(244, 28, 92, 0.7);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
@media (hover: hover) {
  .new-btn--primary-glass:hover:not(:disabled):not(.new-btn--disabled) {
    background: rgba(244, 28, 92, 0.82);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 28, 92, 0.35), 0 2px 4px rgba(0, 0, 0, 0.12);
  }
  .new-btn--primary-glass:hover:not(:disabled):not(.new-btn--disabled)::after {
    opacity: 1;
  }
}
.new-btn--primary-glass:active:not(:disabled):not(.new-btn--disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.new-btn--secondary-glass {
  background: rgba(18, 172, 247, 0.4);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
@media (hover: hover) {
  .new-btn--secondary-glass:hover:not(:disabled):not(.new-btn--disabled) {
    background: rgba(18, 172, 247, 0.55);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(18, 172, 247, 0.28);
  }
  .new-btn--secondary-glass:hover:not(:disabled):not(.new-btn--disabled)::after {
    opacity: 1;
  }
}
.new-btn--secondary-glass:active:not(:disabled):not(.new-btn--disabled) {
  transform: translateY(0);
}
.new-btn--light-blue-glass {
  background: rgba(18, 172, 247, 0.4);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
@media (hover: hover) {
  .new-btn--light-blue-glass:hover:not(:disabled):not(.new-btn--disabled) {
    background: rgba(18, 172, 247, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
  }
  .new-btn--light-blue-glass:hover:not(:disabled):not(.new-btn--disabled)::after {
    opacity: 1;
  }
}
.new-btn--dark-blue {
  background: #26235d;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
@media (hover: hover) {
  .new-btn--dark-blue:hover:not(:disabled):not(.new-btn--disabled) {
    background: #091867;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
  }
  .new-btn--dark-blue:hover:not(:disabled):not(.new-btn--disabled)::after {
    opacity: 0.95;
  }
}
.new-btn--outline-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.4);
}
@media (hover: hover) {
  .new-btn--outline-glass:hover:not(:disabled):not(.new-btn--disabled) {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
  }
  .new-btn--outline-glass:hover:not(:disabled):not(.new-btn--disabled)::after {
    opacity: 1;
  }
}
.new-btn--ghost {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}
.new-btn--ghost::after {
  opacity: 0.35;
}
@media (hover: hover) {
  .new-btn--ghost:hover:not(:disabled):not(.new-btn--disabled) {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
  }
  .new-btn--ghost:hover:not(:disabled):not(.new-btn--disabled)::after {
    opacity: 0.7;
  }
}
.new-btn--primary-solid {
  background: #f41c5c;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (hover: hover) {
  .new-btn--primary-solid:hover:not(:disabled):not(.new-btn--disabled) {
    background: #e11554;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
  }
}
.new-btn--on-light {
  color: #26235d;
  border-color: rgba(38, 35, 93, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.new-btn--on-light::before {
  background: #12acf7;
}
.new-btn--on-light::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 250, 255, 0.35) 100%);
  opacity: 0.6;
}

.new-btn.new-btn--on-light.new-btn--primary-glass {
  background: rgba(244, 28, 92, 0.12);
  color: #f41c5c;
}
.new-btn.new-btn--on-light.new-btn--primary-glass::before {
  background: #f41c5c;
}
@media (hover: hover) {
  .new-btn.new-btn--on-light.new-btn--primary-glass:hover:not(:disabled):not(.new-btn--disabled) {
    background: rgba(244, 28, 92, 0.2);
    border-color: rgba(244, 28, 92, 0.45);
  }
}

.new-btn.new-btn--on-light.new-btn--secondary-glass {
  background: rgba(18, 172, 247, 0.15);
  color: #091867;
}
.new-btn.new-btn--on-light.new-btn--secondary-glass::before {
  background: #12acf7;
}
@media (hover: hover) {
  .new-btn.new-btn--on-light.new-btn--secondary-glass:hover:not(:disabled):not(.new-btn--disabled) {
    background: rgba(18, 172, 247, 0.28);
    border-color: rgba(9, 24, 103, 0.25);
  }
}
.new-btn a, .new-btn span {
    color: #FFFFFF;
    text-decoration: none;
}
