/*@font-face {*/
/*	font-family: 'TiroBangla';*/
/*	src: url('../font/TiroBangla-Regular.ttf');*/
/*}*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.comment-section{
    background:rgb(223, 134, 152);
    padding: 30px 25px;
    text-align: center;
}
.profile_slider_section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 0 35px;
   
}

.profile_box_section {
    max-width: 1450px;
    width: 100%;
    position: relative;
    margin:0 auto;

}

.profile_box_section i {
    height: 50px;
    width: 50px;

    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.5 rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    color:white;

}

.profile_box_section i:first-child {
    left: -22px;
    background: crimson;

}

.profile_box_section i:last-child {
    right: -22px;
    background: crimson;

}

.profile_box_section .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel :where(.card, .img) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel .card {
    scroll-snap-align: start;
    height: 100%;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    width: 98%;
   
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border:1px solid red;
}

.carousel .card{
    border-radius: 8px;
    padding: 25px 10px;
    cursor: pointer;
   
}

@media screen and (max-width: 900px) {
    .profile_box_section .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);

    }
}

@media screen and (max-width: 600px) {
    .profile_box_section .carousel {
        grid-auto-columns: 100%;

    }
}
