/* Testimonial */
.testimonials-wrapper{
	position: relative;
}
.testimonial-content {
    padding: 25px 20px;
    margin: 10px;
    border-radius: 20px;
    box-shadow: 0 0 15px 9px #f9f9f9;
}
.testimonial-txt {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}
.testimonial-name {
    text-align: center;
    margin-bottom: 0;
    margin-top: 20px;
}
.testimonial-pos {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
}
.testimonials-wrapper .slick-track{
    display: flex;
    align-items: center;
}
.slickarrowbtn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: -80px;
    background: #6d003e;
    color: #fff;
    z-index: 10;
    top: 50%;
    padding: 8px;
}
.slickarrowbtn:before{
	content: unset;
}
.slick-prev.slickarrowbtn {
    left: -15px;
}
.slick-next.slickarrowbtn {
    right: -15px;
}
.slickarrowbtn:hover {
    box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.12);
    background: #6d003e;
}
.slickarrowbtn span {
    font-size: 20px;
    line-height: 1;
}

/* Blog List */
.latest_blogs_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.latest_blogs_item {
    flex-basis: calc(33.33% - 20px);
    margin: 10px;
}
.blogitem_inner {
    max-width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px 4px #eee;
    overflow: hidden;
}
.blogitem_content{
	padding: 15px 20px;
}
.blogimgwrap img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blogtitle {
    margin: 0;
}
.blogtitle a, .bloglinkwrap a{
    color: #6d003e;
}
.blogexpertwrap {
    margin: 10px 0;
}
.bloglinkwrap a:hover{
	color: #d4af37;
}

@media(max-width: 768px){
    .latest_blogs_item {
        flex-basis: calc(50% - 20px);
    }
}
@media (max-width: 680px) {
    .latest_blogs_item {
        flex-basis: calc(100% - 20px);
    }
    .slickarrowbtn{
        width: 25px;
        height: 25px;
        padding: 6px;
    }
}