.friend_title{
    font-size:18px; text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 0;
}

.friends h2 {
    margin-top: 0px;
}

.W70 {
    width: 70%;
}

.W85 {
    width: 85%;
}

.bg-friends {
    background: #f0eeef;
    border: 1px solid #a8a8a8;
}

.friends_single {
    display: flex;
    margin-bottom: 25px;
    align-items: baseline;
}

.friend_content {
    text-align: center;
    background: #eeeeee;
    padding: 30px 20px;
    position: relative;
}

.friend_content h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

.friend_content p {
    color: #444;

    line-height: 25px;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    font-style: italic;

}

.friend_content .but_brown2 {
    margin: 0 auto;
    display: block;
}

.but_brown2 {
    display: block;
    text-transform: uppercase;
    max-width: 175px;
    text-align: center;
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    cursor: pointer;
    position: relative;padding: 15px 20px;
}


.frnd_single img {
    position: relative;
    outline: 1px dashed #ffffff;
    outline-offset: -10px;
    object-fit: cover;
    object-fit: cover;
    object-position: center;
    height: 230px;
    width: 100%;
}

.frnd_single {
    transition: 0.5s ease;
    margin-top: 10px;
}

.frnd_single:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    transition: 0.5s ease;
    -webkit-box-shadow: 0px 1px 13px -4px rgba(128, 128, 128, 1);
    -moz-box-shadow: 0px 1px 13px -4px rgba(128, 128, 128, 1);
    box-shadow: 0px 1px 13px -4px rgba(128, 128, 128, 1);
}

@media (max-width: 1199px) {
    .frnd_single img {
        height: auto;
    }
}

@media (max-width: 991px) {
    .friends_single {
        flex-wrap: wrap;
    }
}

.frnd_disc2 {
    display: none;
}