@charset "UTF-8";
/*-----------------------------------------------------------------------------------

  Template Name: Accounting
  Author: Webstrot
  Version: 1.0.0
*/

/************ TABLE OF CONTENTS ***************

  01. blog Info

**********************************************/

// blog Info

.blog {
  margin-top: 100px;
}

.blogInfo {
  padding: 100px 0;

  .blogInfoOuter {
    .blogInfoInner {
      .blogInfoCardGroup {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;

        .blogInfoCardItem {
          padding: 40px;
          border-radius: 30px;

          &:hover {
            background-color: $whiteClr;
            box-shadow: 15px 15px 30px 0px #0000001A;

            .blogInfoHead {
              span {
                background-color: #FF4800;
              }

              h2 {
                color: #FF4800;

                a {
                  color: #FF4800;
                }
              }
            }
          }

          .blogInfoHead {
            display: flex;
            // align-items: center;
            gap: 25px;
            margin-bottom: 30px;

            span {
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 50%;
              background-color: #091723;
              width: 80px;
              height: 80px;
            }

            h2 {
              font-weight: 500;
              font-size: 26px;
              line-height: 36px;
              color: #091723;
              width: calc(100% - 100px);

              a {
                font-weight: 500;
                font-size: 26px;
                line-height: 36px;
                color: #091723;
              }
            }
          }

          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            color: #95A0AD;
          }
        }
      }
    }
  }
}

.blogInner {
  .commonHeading {
    margin-bottom: 40px;
    text-align: center;
  }
}

.blogCardGroup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;

  &.twoColumnBlog {
    grid-template-columns: repeat(2, 1fr);
  }

  &.threeColumnBlog {
    grid-template-columns: repeat(3, 1fr);
  }

  &.fourColumnBlog {
    grid-template-columns: repeat(4, 1fr);
  }

  &:after {
    content: "";
    background-image: url(../images/shape1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 140px;
    height: 140px;
    display: inline-block;
    position: absolute;
    top: -36px;
    right: -37px;
    z-index: -1;
  }

  .blogCardItem {

    &:hover {
      .blogCardImg {
        img {
          scale: 1.1;
        }
      }

      .blogCard {
        h2 {
          color: #FF4800;

          a {
            color: #FF4800;
          }
        }
      }
    }

    .blogCardImg {
      overflow: hidden;
      border-radius: 30px;

      img {
        width: 100%;
        transition: all 0.4s ease;
      }
    }

    .blogCard {
      h2 {
        font-weight: 500;
        font-size: 26px;
        line-height: 36px;
        color: #091723;
        transition: all 0.4s ease;

        a {
          color: #091723;
          transition: all 0.4s ease;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          line-clamp: 1;
          -webkit-box-orient: vertical;
        }
        &:hover{
          a{
            color: #f43b1c;
          }
        }
      }

      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #95A0AD;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
      }
    }
  }
}



.blogCard {
  padding: 25px;
  background-color: $whiteClr;
  border-radius: 20px;
  margin-top: 15px;
  box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1019607843);

  .blogCardHead {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;

    .blogListItem {
      display: flex;
      align-items: center;
      gap: 8px;

      img {
        width: 16px;
      }

      span {
        font-family: $poppinsFont;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #091723;
      }
    }
  }
}

// counter css start
.counterSec {
  background-color: #091723;
  padding: 80px 0;

  .counterOuter {
    .counterInner {
      .counterItemGroup {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;

        .counterItem {
          .counterIcon {
            text-align: center;
            margin-bottom: 8px;
          }

          .counterContent {
            h2 {
              font-weight: 500;
              font-size: 56px;
              line-height: 66px;
              text-align: center;
              color: $whiteClr;
              padding: 0;
            }

            span {
              font-weight: 500;
              font-size: 20px;
              line-height: 32px;
              text-align: center;
              color: $whiteClr;
              display: block;
            }
          }
        }
      }
    }
  }
}

// counter css end

.synergizeResources {
  padding: 100px 0;
  position: relative;

  .synergizeResourcesOuter {
    position: relative;
    z-index: 1;

    .commonHeading {
      margin-bottom: 40px;
    }

    &::after {
      content: "";
      background-image: url(../images/shape1.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      width: 140px;
      height: 140px;
      display: inline-block;
      position: absolute;
      bottom: -36px;
      left: 114px;
      z-index: -1;
    }
  }
}

.synergizeResourcesItem {
  box-shadow: 15px 15px 30px 0px #0000001A;

  &:hover {
    .synergizeResourcesImg {
      .synreSourHovr {
        display: flex;
        transform: scaleY(1);
      }
    }

    .synergizeResourcesContent {
      h2 {
        color: #FF4800;
      }
    }
  }

  .synergizeResourcesImg {
    position: relative;

    img {
      width: 100%;
    }

    .synreSourHovr {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-color: $whiteClr;
      display: flex;
      align-items: self-start;
      justify-content: space-between;
      gap: 10px;
      transform: scaleY(0);
      transition: all 0.4s ease-in-out;

      span {
        font-family: $robotoFont;
        font-weight: 800;
        font-size: 200px;
        line-height: 235px;
        text-align: center;
        color: #FFEDE5;
      }

      img.synreSourImg {
        width: 100px;
        height: 100px;
        box-shadow: -6px 14px 20px 13px #ffdecf;
        border-radius: 50px;
        position: relative;
        top: 28px;
        right: 28px;
        object-fit: cover;
      }
    }
  }

  .synergizeResourcesContent {
    h2 {
      font-weight: 500;
      font-size: 36px;
      line-height: 28px;
      color: #091723;
      a{
           color: #091723;
      }
      &:hover{
        a{
            color: #FF4800;
        }
      }
    }

    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      color: #95A0AD;
      margin-bottom: 6px;
    }
  }
}

.synergizeResourcesGroup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  .synergizeResourcesItem {
    background-color: $whiteClr;
    padding: 30px;
    border-radius: 30px;

    .synergizeResourcesImg {
      margin-bottom: 20px;

      img {
        border-radius: 20px;
      }

      border-radius: 50px;
    }

    .synergizeResourcesContent {
      h2 {
        margin-bottom: 20px;
      }
    }
  }
}

.ourTrustedPartner {
  padding: 100px 0;

  .ourTrustedPartnerOuter {
    .commonHeading {
      width: 50%;
      margin: 0 auto;
    }
  }

  &.ourTrustedPartnerMR {
     padding-top: 0px;
  }
}



.startConversation {
  margin-top: 100px;
  margin-bottom: 100px;

  .startConversationInner {
    display: flex;
    justify-content: space-between;
    background-color: #091723;
    background-image: url('../images/bg1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 30px;
    gap: 15px;

    .startConversationItem {
      .startConversationHeading {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 54px;
      }

      h2 {
        font-weight: 500;
        font-size: 36px;
        line-height: 46px;
        color: $whiteClr;

        span {
          color: #FF4800;
        }
      }

      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: $whiteClr;
        text-transform: uppercase;
        margin-bottom: 0;
      }
    }
  }
}

.startConversationImg {
  height: 100%;
  display: flex;
  align-items: self-end;
}

.startConversationBtn {
  padding: 20px 54px 20px 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.accordionGroup {
  .card {
    border: 0;
    background-color: transparent;
    margin-bottom: 50px;
    border-radius: 25px;
    padding: 0;
    transition: background-color 0.4s ease, padding 0.4s ease;

    &:has(.collapse.show) {
      background-color: $whiteClr;
      padding: 20px 30px;
      box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1019607843);
    }

    &:last-child {
      margin-bottom: 0;
    }
  }

  .card-header {
    background-color: transparent;
    border: 0;
    padding: 0;

    a {
      border: 0;
      position: relative;
      display: block;

      h2 {
        text-align: left;
        margin-bottom: 12px;
        padding-right: 32px;
        font-size: 18px;
      }

      &::after {
        content: '';
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 20px;
        height: 20px;
        display: inline-block;
        transform: translateY(-50%);
        right: 0;
        top: 50%;
        background-image: url('../images/icons/plus.png');
        position: absolute;
        transition: transform 0.3s ease;
      }

      &[aria-expanded="true"] {
        &::after {
          background-image: url('../images/icons/minus.png');
        }
      }

    }
  }

  .card-body {
    padding: 0;

    p {
      font-family: $poppinsFont;
      font-weight: 400;
      line-height: 26px;
      color: #95A0AD;
      margin-bottom: 0;
    }
  }
}


.brandLogo {
  padding: 0 60px;
}

.ourTrustedPartnerOuter {
  margin-top: 40px;
}

.weAreAccounting {
  padding-bottom: 100px;

  .weAreAccountingOuter {
    .weAreAccountingInner {
      .weAreAccountingImg {
        img {
          width: 100%;
          padding-right: 60px;
        }
      }

      .weAreAccountingContent {
        padding-right: 150px;
      }
    }
  }
}


.testimonialsContent {
  .testimonialsHeadingSlider {
    width: 50%;
    margin-bottom: 20px;

    span {
      font-weight: 400;
      font-size: 26px;
      color: #FF4800;
    }

    h2 {
      color: #091723;
      font-size: 40px;
      font-weight: 700;
    }
  }

  .testimonialSlide {
    .testimonialsSlider {
      position: relative;

      &::before {
        position: absolute;
        content: "";
        top: 0;
        right: 20px;
        height: 60px;
        width: 60px;
        background-image: url(../images/q.png);
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        background-position: bottom;
        z-index: 2;
      }

      .testimonialsSliderOuter {
        position: relative;
        min-height: 260px;
        padding: 40px;

        &::after {
          position: absolute;
          content: "";
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          background-image: url(../images/bg3.png);
          background-size: 100% 100%;
          background-repeat: no-repeat;
          display: inline-block;
          background-position: bottom;
        }

        .testimonialsSliderInner {
          position: relative;
          z-index: 2;

          .ratingGroup {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;

            .star {
              display: flex;
              align-items: center;
              gap: 4px;

              .starYellow {
                color: #FF4800;
              }

              .starGray {
                color: #666666;
              }
            }

            .ratingTxt {
              h2 {
                font-weight: 700;
                font-size: 16px;
                color: #FF4800;
                margin-bottom: 0;
              }
            }
          }

          .testimonialPara {
            p {
              font-weight: 400;
              font-size: 16px;
              color: #666666;
            }
          }
        }
      }

      .slideBottomContent {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .userProfile {
          display: flex;
          align-items: center;
          gap: 20px;

          .userProfileImg {
            img {
              background-color: #091723;
              padding: 4px;
              border-radius: 50px;
              width: 80px;
              height: 80px;
            }
          }

          .userInfo {
            h2 {
              margin-bottom: 0;
              font-weight: 700;
              font-size: 20px;
              color: #FF4800;
            }

            span {
              font-weight: 500;
              font-size: 16px;
              color: #95A0AD;
            }
          }
        }

        .slideCustomNav {
          .owlNavBtn {
            .btn-wrap {
              display: flex;
              align-items: center;
              gap: 12px;

              button {
                border: 0;
                background-color: unset;
                display: flex;
                align-items: center;
                gap: 6px;

                span {
                  color: #FF4800;
                  font-weight: 700;
                }
              }
            }
          }
        }
      }
    }

    .owl-nav {
      // display: flex;
      align-items: center;
      margin: 0 auto;
      margin-top: -56px;
      position: relative;
      z-index: 2;
      justify-content: end;

      .owl-prev {
        color: #FF4800;

        &:hover {
          background-color: $whiteClr;
        }
      }

      .owl-next {
        color: #FF4800;

        &:hover {
          background-color: $whiteClr;
        }
      }
    }
  }
}

.testimonialsInner {
  background: $whiteClr;
  box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 24px;
  padding: 64px;
  margin-top: -80px;
}

.testimonialSlide {
  .owl-dots {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    z-index: 6;

    .owl-dot {
      &.active {}
    }
  }
}

.testimonialSlide .owl-nav.disabled+.owl-dots {
  margin-top: -34px;
}

.testimonialSlide {
  .owl-dots {
    .owl-dot {
      span {
        width: 10px;
        height: 10px;
        background: #FF4800;
      }

      &.active,
      &:hover {
        span {
          background: transparent;
          border: 1px solid #FF4800;
          width: 20px;
          height: 20px;
        }
      }
    }
  }
}

.testimonialsImg {
  position: relative;
}

.clientsSatisfy {
  width: 160px;
  border: 1px solid $whiteClr;
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.1019607843);
  text-align: center;
  position: absolute;
  top: 8px;
  border-radius: 16px;
  left: 12px;
  padding: 20px;

  img {
    margin-bottom: 10px;
  }

  h2 {
    font-family: $poppinsFont;
    font-weight: 500;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #FF4800;
  }

  span {
    font-family: $robotoFont;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #FF4800;
    display: block;
  }
}

.watchOurExperts {
  padding: 0 0 80px;
  background-image: url(../images/bg2.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.watchOurExpertsInner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  .watchOurExpertsleft {
    text-align: center;
    padding-right: 200px;
    position: relative;

    &::after {
      content: "";
      background-image: url(../images/line.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      width: 100%;
      height: 100%;
      display: inline-block;
      position: absolute;
      top: 0;
      right: -100px;
      z-index: -1;
    }

    .watchExpertsInnerTxt {
      padding: 100px 0;

      h2 {
        font-family: $poppinsFont;
        font-weight: 500;
        font-size: 26px;
        line-height: 36px;
        color: #FF4800;
      }

      .watchOurExpertsImg {
        border-radius: 100px;
        position: relative;
        padding: 20px 0;

        .youtube {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
        }

        img {
          width: 100%;
        }
      }

      p {
        font-family: $poppinsFont;
        font-weight: 500;
        font-size: 26px;
        line-height: 36px;
        text-align: center;
        color: $whiteClr;
      }
    }
  }

  .watchOurExpertsRight {
    .watchOurExpertsContent {
      display: flex;
      align-items: center;
      height: 100%;

      .watchOurExpertGroup {
        display: flex;
        flex-direction: column;
        gap: 100px;

        .watchOurExpertItem {
          display: grid;
          grid-template-columns: 80px 1fr;
          align-items: center;
          gap: 15px;

          &:nth-child(2) {
            position: relative;
            left: 40px;
          }

          .watchOurExpertImg {
            width: 80px;
            height: 80px;
            border-radius: 50px;
            background-color: $whiteClr;
            display: flex;
            align-items: center;
            justify-content: center;
          }

          .watchOurExpertTxt {
            p {
              font-family: $poppinsFont;
              font-weight: 500;
              font-size: 26px;
              line-height: 36px;
              color: $whiteClr;
            }
          }
        }
      }
    }
  }
}


// our services css start

.ourServicesOuter {
  position: relative;

  &::after {
    content: "";
    background-image: url(../images/shape7.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 300px;
    display: inline-block;
    position: absolute;
    bottom: 130px;
    right: 0;
    z-index: -1;
  }
}

.ourServicesSliderSec {
  display: flex;
  gap: 20px;


  .ourServicesSlider {
    width: 40%;

    .ourServicesCarousel {
      .ourServicesImg {
        padding: 0px 60px 80px 0px;

        img {
          width: 100%;
          box-shadow: 30px 30px 30px 0px #0000001A;
          border-radius: 50px;
        }
      }
    }
  }

  .ourServicesContent {
    width: 58%;

    .ourServiceContentInner {
      width: 80%;
      margin-top: 20px;
      padding-bottom: 40px;

      .commonHeading {
        h2 {
          width: 70%;
        }
      }

      .btn1 {
        margin-top: 40px;
      }
    }

    .ourServiceLinkBtn {
      display: flex;
      justify-content: flex-end;
    }

    ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 0px;

      li {
        font-family: $robotoFont;
        font-weight: 500;
        font-size: 20px;
        line-height: 32px;
        color: #091723;
        display: flex;
        align-items: center;
        gap: 10px;


        &::before {
          content: '';
          background-image: url('../images/icons/check.png');
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          width: 35px;
          height: 35px;
          display: inline-block;
        }
      }
    }
  }
}

.ourServicesCarousel {
  .owl-nav {
    display: flex;
    gap: 20px;
    position: absolute;
    z-index: 1;
    bottom: 100px;
    right: 100px;

    button {
      svg {
        width: 14px;
        height: 14px;
      }

      &:hover {
        background: transparent !important;
      }
    }
  }
}

// top slider css start

.topSliderWrapper {
  padding-top: 50px;

  .topSliderOuter {
    .topSliderInner {
      display: flex;
      align-items: center;
      gap: 30px;

      .topSliderContent {
        width: 40%;

        .shape {
          margin-bottom: 20px;
        }

        h1 {
          font-family: $poppinsFont;
          font-weight: 400;
          font-size: 70px;
          line-height: 80px;
          color: #091723;
          margin-bottom: 20px;
        }

        p {
          font-family: $poppinsFont;
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          color: #95A0AD;
          margin-bottom: 20px;
        }

        .topSliderBtnGrp {
          display: flex;
          align-items: center;
          gap: 14px;

          .videoPlayBtn {
            display: flex;
            align-items: center;
            gap: 4px;

            span {
              font-family: $robotoFont;
              font-weight: 500;
              font-size: 16px;
              line-height: 26px;
              color: #091723;
            }
          }
        }
      }

      .topSliderImg {
        width: 60%;
        position: relative;
        z-index: 1;

        .mainImg {
          width: 100%;
        }

        .shareIcon {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
        }

        .shapStr {
          position: absolute;
          top: -35px;
          left: -38px;
          z-index: -1;
        }


      }

    }
  }
}

// top slider css end

.topSecWrapper {
  padding-top: 50px;

  .topSliderOuter {
    .topSliderInner {
      display: flex;
      align-items: center;
      gap: 30px;

      .topSliderContent {
        width: 40%;

        .shape {
          margin-bottom: 20px;
        }

        h1 {
          font-family: $poppinsFont;
          font-weight: 400;
          font-size: 70px;
          line-height: 80px;
          color: #091723;
          margin-bottom: 20px;
        }

        p {
          font-family: $poppinsFont;
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          color: #95A0AD;
          margin-bottom: 20px;
        }

        .topSliderBtnGrp {
          display: flex;
          align-items: center;
          gap: 14px;

          .videoPlayBtn {
            display: flex;
            align-items: center;
            gap: 4px;

            span {
              font-family: $robotoFont;
              font-weight: 500;
              font-size: 16px;
              line-height: 26px;
              color: #091723;
            }
          }
        }
      }

      .topSliderImg {
        width: 60%;
        position: relative;
        z-index: 1;

        .mainImg {
          width: 100%;
        }

        .shareIcon {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
        }

        .shapStr {
          position: absolute;
          top: -35px;
          left: -38px;
          z-index: -1;
        }
      }

    }
  }
}


// home page 2 css start

.topBannerWrapper {
  padding-top: 50px;
  padding-left: 150px;
  position: relative;
  z-index: 1;

  &:after {
    content: '';
    background-image: url(../images/bg4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50%;
    height: 100%;
    position: absolute;
    top: -120px;
    left: 0;
    z-index: -1;
  }

  .topSliderOuter {
    .topSliderInner {
      display: flex;
      align-items: center;
      gap: 30px;

      .topSliderContent {
        width: 45%;

        .shape {
          margin-bottom: 20px;
        }

        h1 {
          font-family: $poppinsFont;
          font-weight: 600;
          font-size: 86px;
          line-height: 110px;
          color: #091723;

          span {
            color: #FF4800;
          }
        }

        p {
          font-family: $poppinsFont;
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          color: #95A0AD;
          margin-bottom: 20px;
        }

        .topSliderBtnGrp {
          display: flex;
          align-items: center;
          gap: 14px;

          .videoPlayBtn {
            display: flex;
            align-items: center;
            gap: 4px;

            span {
              font-family: $robotoFont;
              font-weight: 500;
              font-size: 16px;
              line-height: 26px;
              color: #091723;
            }
          }
        }
      }

      .topSliderImg {
        width: 55%;
        position: relative;
        z-index: 1;

        .mainImg {
          width: 100%;
        }

        .shareIcon {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
        }

        .shapStr {
          position: absolute;
          top: -35px;
          left: -38px;
          z-index: -1;
        }

        .syneResrus {
          position: absolute;
          top: 50px;
          left: -38px;
          z-index: 1;
          width: 360px;

          .syneResrusInner {
            box-shadow: 10px 10px 30px 0px #00000026;
            background-color: $whiteClr;
            padding: 25px;
            border-radius: 25px;
            position: relative;
            text-align: start;

            .mathsImg {
              position: absolute;
              top: -40px;
              right: -30px;
            }

            h1 {
              font-family: $poppinsFont;
              font-weight: 500;
              font-size: 26px;
              line-height: 36px;
              color: #FF4800;
              text-align: start;
            }

            p {
              font-family: $poppinsFont;
              font-weight: 400;
              font-size: 16px;
              line-height: 26px;
              color: #95A0AD;
              margin-bottom: 0;
            }
          }
        }
      }

    }
  }
}




.blogTwo {
  margin-top: 60px;

  &.blogWithSidebar {
    .blogOuter {
      .blogInner {
        .blogCardGroup {
          &::after {
            content: unset;
          }
        }
      }
    }
  }

  .blogOuter {
    .blogInner {
      .commonHeading {
        margin-bottom: 40px;
        text-align: center;
      }

      .blogCardGroup {
        .blogCardItem {
          .blogCardImg {
            border-radius: 30px 30px 0 0;
          }

          .blogCard {
            border-radius: 0 0 20px 20px;
            margin-top: 0;
          }
        }
      }
    }
  }
}

.blogCardGroup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;

  &:after {
    content: "";
    background-image: url(../images/shape1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 140px;
    height: 140px;
    display: inline-block;
    position: absolute;
    top: -36px;
    right: -37px;
    z-index: -1;
  }

}



.categoriesFilter {
  padding: 100px 0;

  .categoriesFilterOuter {
    .categoriesFilterInner {
      .categoriesFilterGroup {
        background-color: $whiteClr;
        padding: 30px;
        border-radius: 25px;
        box-shadow: 15px 15px 20px 0px #0000001A;

        .categoriesFilterItem {
          form {
            display: flex;
            align-items: end;
            gap: 15px;

            .formGroup {
              width: 30%;

              .select2-container--default {
                .select2-selection--single {
                  height: 50px;
                  border: 1px solid #E2E2E2;
                  border-top-left-radius: 10px;
                  border-top-right-radius: 25px;
                  border-bottom-right-radius: 25px;
                  border-bottom-left-radius: 10px;

                  .select2-selection__rendered {
                    height: 50px;
                    display: flex;
                    align-items: center;
                  }


                  // .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable

                  .select2-selection__arrow {
                    background-image: url(../images/icons/down-angle-arrow.png);
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: 32%;
                    width: 40px;
                    right: 5px;
                    transform: translateY(-50%);
                    top: 50%;
                    height: 40px;
                    border: 1px solid #E2E2E2;
                    border-radius: 50px;

                    b {
                      display: none;
                    }

                  }

                }
              }

            }

            .formGroupBtn {
              margin-left: 20px;

              .filterFormBtn {
                border: 1px solid #FF4800;
                background-color: #FF4800;
                border-radius: 50px;
                width: 50px;
                height: 50px;
              }
            }
          }
        }
      }
    }
  }
}

.select2-container--default {
  .select2-results__option--highlighted {
    &.select2-results__option--selectable {
      background-color: #FF4800;
      color: white;
    }
  }

  .select2-search--dropdown {
    .select2-search__field {
      border: 1px solid #E2E2E2;

      &:focus-visible {
        outline: unset;
      }
    }
  }
}

span.select2-dropdown {
  border: 1px solid #E2E2E2;
}


.watchVideoExperts {
  padding-bottom: 100px;

  .watchVideoExpertsOuter {
    .watchVideoExpertsInner {
      position: relative;

      img {
        width: 100%;
        border-radius: 50px;
      }

      .watchVideoContent {
        background-color: #09172370;
        width: 50%;
        margin: 0 auto;
        padding: 50px;
        text-align: center;
        position: absolute;
        top: 0;
        transform: translateX(-50%);
        left: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;

        .VideoYoutubeBtn {
          img {
            width: 80px;
            border-radius: 0;
            margin-bottom: 200px;
          }
        }

        .watchVideoTxt {
          p {
            font-family: $poppinsFont;
            font-weight: 500;
            font-size: 26px;
            line-height: 36px;
            color: $whiteClr;
          }

          a.watchVideoBtn {
            font-family: $robotoFont;
            font-weight: 500;
            font-size: 20px;
            line-height: 32px;
            color: #091723;
            background: $whiteClr;
            box-shadow: 10px 10px 20px 0px #0000001A;
            display: flex;
            align-items: center;
            gap: 72px;
            padding: 10px 8px 10px 30px;
            border-radius: 50px;
            width: fit-content;
            margin: 0 auto;
            transition: all 0.4s ease;

            &:hover {
              background: #FF4800;
              color: $whiteClr;
            }

            span {
              width: 80px;
              height: 80px;
              border-radius: 50px;
              background-color: #FF4800;
              display: flex;
              align-items: center;
              justify-content: center;
              border: 2px solid $whiteClr;

              img {
                width: 30px;
              }
            }
          }
        }
      }
    }
  }
}

.boxForensicInner {
  background: #0d1b2a;
  border-radius: 40px;
  padding: 40px;
  color: #fff;
  font-family: $poppinsFont;
  font-weight: 600;
  font-size: 120px;
  line-height: 240px;
  padding-bottom: 150px;
  margin-bottom: 160px;
  position: relative;
}

.highlight-red {
  background: #f43b1c;
  padding: 5px 20px;
  border-radius: 200px;
  color: #fff;
  text-align: start;
}

.highlight-white {
  background: #fff;
  color: #f43b1c;
  padding: 5px 20px;
  border-radius: 200px;
  text-align: end;
}

.overlap {
  font-family: $poppinsFont;
  font-weight: 600;
  font-size: 150px;
  line-height: 210px;
  color: #fff;
  position: absolute;
  bottom: -104px;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff 50%, #0d1b2a 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  // mix-blend-mode: difference;
}

.howHelp {
  padding-top: 100px;

  .howHelpOuter {
    .howHelpInner {

      .commonHeading {
        margin-bottom: 50px;
      }

      .help-image {
        position: absolute;
        top: 50%;
        right: 200px;
        width: 480px;
        transform: translateY(-50%);
      }
    }
  }
}

.howHelpLinkGrpOuter {
  position: relative;
}

.howHelpLinkGrp {
  .howHelpLinkItm {
    &:last-child {

      a {
        .howHelpLinkInnerItm {
          border-bottom: 1px solid #091723;
        }
      }
    }

    a {
      font-family: $poppinsFont;
      font-weight: 500;
      font-size: 56px;
      line-height: 66px;
      color: #091723;

      .howHelpLinkInnerItm {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border-top: 1px solid #091723;
        padding: 50px 0;



        span {
          width: 80px;
          height: 80px;
          border-radius: 50px;
          background-color: #091723;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 2px solid $whiteClr;
        }
      }

      &:hover {
        span {
          background-color: #FF4800;
        }
      }
    }
  }
}




/* Image area */
.help-image {
  flex: 1;
  position: relative;
  min-height: 260px;
}

.help-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 70px;
  border: 2px solid #ff4c00;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.help-image img.active {
  opacity: 1;
  z-index: 1;
}

// home page 2 css end

.brandsSlider {
  margin-top: 40px;
}

.brandLogo a.ourTrustedPartnerLogoLink img {
  width: 140px;
  display: inline-block;
}