 /*-----Testimonial-------*/

 .testimonial {
    margin-top: 2rem;
    position: relative;
    padding: 20px 0;
}

#testimonial4 .carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
    overflow: hidden;
}

.testimonial4_control_button .carousel-control {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
    transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
    left: 7%;
    top: 50%;
    right: auto;
}

.testimonial4_control_button .carousel-control.right {
    right: 7%;
    top: 50%;
    left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
    color: #000;
    background: #000;
    border: 2px solid #000;
}

.carousel-item {
    position: relative;

    .boxes {
        display: flex !important;
        gap: 50px;

        .box {
            width: 33%;
            max-height: 400px;
            height: 350px;
            padding-bottom: 50px;
            overflow: hidden;
            position: relative;
            

        img{
            width: 100%;
            height: 100%;
            border-radius: 30px;
        }
        p{
            font-size: 16px;
            text-align: center;
            font-weight: 600;
            margin-top: 10px;
        }

    
        }


    }
    @media(max-width:991px){
        .boxes{
            flex-wrap: wrap;
        }
    }
}

.testimonial4_slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    margin: auto;
    /* padding: 20px; */
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial4_slide p {
    color: #000;
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    
}

.testimonial4_slide h4 {
    color: #3F397C;
    font-size: 22px;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.testimonial .carousel-control-next{
    width: 35px;
    height: 35px;
    background: var(--sec-color);
    position: absolute;
    top: 95%;
    right: 47%;
    transform: translateY(-50%);

    i {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    }
    @media(max-width:991px){
        top: 100%;
        right: 40%;
    }
}
.testimonial .carousel-control-prev {
    width: 35px;
    height: 35px;
    background: #1F4386;
    position: absolute;
    top: 95%;
    left: 47%;
    transform: translateY(-50%);

    i {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    }
    @media(max-width:991px){
        top: 100%;
        left: 40%;
    }
}

/* ------testimonial  close-------*/