@font-face {
    font-family: "Gilroy Bold";
    src: url("../assets/fonts/gilroy/Gilroy-Bold.ttf");
  }
  
  @font-face {
    font-family: "Gilroy Medium";
    src: url("../assets/fonts/gilroy/Gilroy-Medium.ttf");
  }
  
  @font-face {
    font-family: "Gilroy Regular";
    src: url("../assets/fonts/gilroy/Gilroy-Regular.ttf");
  }
  
  @font-face {
    font-family: "Gilroy Light";
    src: url("../assets/fonts/gilroy/Gilroy-Light.ttf");
  }
/* writing the code to scroll the carousel vertically*/

/* .owl-carousel {
   
    display: block;
    overflow: hidden;
    position: relative;
  }
  
  .owl-carousel .item {
    
    display: block;
  } */




/*changes end here*/
.crsl-card-img-container{
    width:40%;
    /* background-image: url('carouselimg-1.jpg'); */
    border-radius: 15px;
    background-size:cover;
}
.crsl-card-text-container{
    width:55%;
}
.white-bg{
    background-color: #fff;
    border-radius: 15px;
}

#coustom-carousel .owl-carousel {
    position: relative;
}

#coustom-carousel .owl-dots {
    text-align: cetner;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px; /* Adjust this value to change the distance from the right side */
}

#coustom-carousel .owl-dot{
    display:block;
    height: 12px;
    width:12px;
    border-radius: 50%;
    cursor:pointer;
    outline:none;
    margin:5px 5px;
    border:0px solid black !important;
    background-color:#D9D9D9 !important;
    transition:all 0.3s ease;
}

#coustom-carousel .owl-dot:hover,
#coustom-carousel .owl-dot.active{
    background-image: linear-gradient(45deg, #FAB83E, #F9E632);
}

/* styling the carousel tex box */
.crsl-heading{
    color: #3F2E55;
    font-family: "Gilroy Bold";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.crsl-description{
    color: #2C2333;
    font-family: "Gilroy Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

/* making the carousel responsive in the mobile view */

@media only screen and (max-width: 768px) {
    
    .crsl-card-img-container{
        width:80% !important;
        border-radius: 15px;
        background-size:cover;
    }
    .crsl-card-text-container{
        width:95% !important;
        padding:5px !important;
    }
    .crsl-heading{
        margin-bottom: 5px !important;
    }

  }

@media screen and (min-width: 768px) and (max-width: 991px) {
    /* Your CSS rules for medium-sized devices go here */
    .crsl-card-img-container{
        width:50% !important;
        margin:auto;
        border-radius: 15px;
    }
    .crsl-card-text-container{
        width:95% !important;
        padding:5px !important;
    }
    
  }