.top-writers {
    background-color: #e7f0ee;
    padding: 30px 0;
}
.top-writers-title {
    text-align: center;
}
.top-writers-list {
    display: flex;
}
.top-writer {
    min-width: 300px;
    background-color: #fff;
    border-radius: 4px;
}
.writer-head {
    background-color: #0083c1;
    border-radius: 4px 4px 0px 0px;
    display: flex;
    padding: 10px;
}
.writer-photo {
    display: flex;
}
.writer-photo img {
    border-radius: 63px;
    width: 90px;
    height: 90px;
}
.writer-identity {
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: space-around;
    margin-left: 10px;
}
.writer-name {
    font-size: 24px;
}
.writer-rating {
    display: flex;
}
.writer-bottom {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}
.hire-writer-btn {
    background: #1c97d7;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 18px;
}
.hire-writer-btn:hover {
    background: #3aa5e5;
}
.writer-center {
    padding: 10px;
}
.writer-skills-title {
    font-weight: 600;
    color: #4b4b4b;
    text-decoration: underline;
    margin: 5px 0;
}

.writer-skills {
    list-style: circle;
    padding-left: 15px;
}
.writer-skill {
    font-weight: 400;
}
.top-writer:hover {
    box-shadow: 3px 7px 17px 0 rgb(138 138 138 / 42%);
}
.stars {
    background: url(/images/adapt/raiting5.png) no-repeat 50%;
    height: 15px;
    width: 80px;
    margin-left: 5px;
}
@media (max-width: 959px) {
    .top-writer {
        min-width: 280px;
    }
}
@media (max-width: 890px) {
    .top-writer {
        min-width: 260px;
    }
}
@media (max-width: 825px) {
    .top-writer {
        min-width: 240px;
    }
}
@media (max-width: 770px) {
    .top-writer {
        min-width: 220px;
    }
}
@media (min-width: 730px) {
    .top-writers-list {
        justify-content: space-between;
    }
}
@media (max-width: 730px) {
    .top-writers-list {
        flex-wrap: wrap;
    }
    .top-writer {
        flex-grow: 1;
        margin: 15px;
    }
}