:root {
    --first-background: rgb(0, 0, 0);
    --second-background: rgb(236, 236, 236);
    --third-background: white;
    --fourth-background: #cea56c;
    --firs-textcolor: #00a99d;
    --second-textcolor: #cea56c;
}

.video-carousel{
    background-color:var(--first-background) ;
    padding-top: 100px;
    padding-bottom:50px ;
}
.success-carousel-video{
    border-radius: 15px;
    width: 270px;
}
.success-stories-panel{
    padding-bottom: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
    background-color: black;
  }
  
  .video-item {
    width: 100%;
    height: auto;
    border-radius: 8px;
    
    transition: transform 0.4s ease;
  }
  
  .video-item:hover {
    box-shadow: 0px 0px 10px var(--fourth-background);
  
  }
  

@media only screen and (max-width: 768px) {

    /* *{
    border: 2px solid red;
    } */


    
}