#blogs {
  .col-12.col-md-3 {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .swiper {
    width: 100%;
    height: 100%;
  }
  h2 span {
    color: var(--color-text);
  }

  .blogscarousel::-webkit-scrollbar {
    display: none;
  }

  .blogscarousel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: scroll;
    max-height: 740px;
    scroll-behavior: smooth;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
    pointer-events: none;
  }

  .blogscarousel * {
    pointer-events: auto;
  }
  .content-swiper {
    height: 700px;
  }

  .blogCaru {
    height: 100%;

    h6 {
      font-size: 24px;
      font-weight: 700;
    }

    .col-md-4 {
      display: flex;
      justify-content: center;
      align-items: center;

      & svg {
        transition: 400ms;
        cursor: pointer;
        transform: translate(117.5px, 80.5px);
      }

      & svg:hover circle {
        fill: #fef4e6cf;
      }
    }

    .author {
      color: #333333;
      font-size: 20px;
    }

    .videoCont {
      border-radius: 16px;
      width: 300px;
      height: 226px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;

      video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      a {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        svg {
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }
      }
    }

    .videoTitle {
      font-size: 24px;
      color: var(--color-text);
      font-weight: 700;
    }

    .videoText {
      color: #33333380;
      font-size: 16px;
      margin: 10px 0 0 0;
      overflow: auto;
    }
  }

  @media screen and (max-width: 768px) {
    .blogscarousel {
      max-height: 426px;
    }

    .videoText {
      text-align: center;
    }

    .controls-rev {
      width: 100%;
      left: 0;
      bottom: -70px;
      top: unset;
    }
  }

  /***** controls ******/

  .controls-rev {
    position: absolute;
    width: auto;
    left: 16px;
    top: calc(50% - 65px);
  }

  .controls-rev .controls-revCarousel {
    display: flex;
    justify-content: end;
    position: absolute;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    transform: translateX(-60px);
  }

  .controls-revCarousel .item-controls-small {
    height: 45px;
    width: 45px;
    border: 1px var(--color-primary) solid;
    border-radius: 100%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.7s;
  }

  /* .next-blog {
            background-color: var(--color-primary);
            fill: white;
        } */

  .controls-revCarousel .item-controls-small svg {
    width: 20px;
    fill: var(--color-primary);
    transform: rotate(90deg);
  }

  /* .controls-revCarousel .item-controls-small.next-blog svg {
            width: 20px;
            fill: white;
        } */

  .controls-revCarousel .item-controls-small:hover svg {
    fill: var(--color-primary) !important;
  }

  .controls-revCarousel .item-controls-small:hover {
    background: var(--color-primary);
    transition: 400ms;
    opacity: 1;
  }

  /* .controls-revCarousel .item-controls-small.next-blog:hover {
            background-color: white;

            & svg {
                fill: var(--color-primary) !important;
            }

        } */

  .controls-revCarousel .item-controls-small:hover svg {
    fill: #fff !important;
    transition: 400ms;
  }

  @media screen and (max-width: 768px) {
    /* .controls-rev{
                position: absolute;
            } */

    .controls-rev .controls-revCarousel {
      transform: translateX(0);
      justify-content: center;
      flex-direction: row;
    }
  }
}
