/* Custom Carousel */

.custom-wrapper  {
    overflow-y: hidden;
    white-space: nowrap;
    /* width: 1200px; */
    /* background-color: aquamarine; */
}
.custom-carousel{
    display: -webkit-box;
    overflow: scroll;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.custom-carousel-card{
    margin-right:1rem;
}

.custom-carousel::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .custom-carousel {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .custom-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .custom-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

.custom-carousel .custom-carousel-card img{
    height: 380px;
    object-fit: cover;
    width: auto;
}

.custom-carousel-arrow{
    background-color: #d5b658;
    color: #fff;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 46px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    border: solid 1px #e9e9e9;
}

.custom-carousel-arrow:hover{
    background-color: #002049;
}

.custom-wrapper i:first-child{
    left: -20px;
}  

.custom-wrapper i:last-child{
    right: -20px;
}    