
.case-studies {
    padding: 50px calc((100% - 1190px)/ 2);
}

.case-studies .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.case-studies .wrapper .case {
    margin-bottom: 2%;
    width: 32%;
    background-color: #EFEFF4;
    border-radius: 8px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.20);
    min-height: 470px;
    position: relative;
}

.case-studies .wrapper .case .category {
    position: absolute;
    top: 15px;
    left: 0px;
    padding: 0.2em 0.5em;
    background-color: rgb(0 0 0 / 60%);
    border-radius: 5px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

.case-studies .wrapper .case .image {
    display: block;
    height: 200px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 8px 8px 0px 0px;
}

.case-studies .wrapper .case .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0px 0px;
}

.case-studies .wrapper .case .info {
    padding: 1em;
}

.case-studies .wrapper .case .info h2 {
    color: #292929;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    min-height: 60px;
}

.case-studies .wrapper .case .info .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 1em 0em;
}

.case-studies .wrapper .case .info .tags li {
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 0.2em 0.6em;
    background-color: white;
    color: #858787;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 5px;
    font-weight: 400;
    line-height: 20px;
}

.case-studies .wrapper .case .info a {
    text-decoration: underline;
    color: #32b4a6;
    font-weight: 600;
}

.case-studies .wrapper .case .info a.title-link {
    text-decoration: none;
}

