.recent-works-section {
    display: flex;
    justify-content: center;
    width: calc(100% - 80px);
    padding: 0 40px;
    overflow: scroll;
    position: relative;
}

.recent-works-tiles {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 350px;
    max-width: calc(31%);
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 17px 7px 132px rgba(199, 115, 201, 0.1);
    border-radius: 25px;
    padding: 0;
    padding-bottom: 20px;
    margin-bottom: 30px;
    margin-left: 20px;
}


.recent-works-image {
    width: 100%;
    /* max-height: 400px; */
    object-fit: fill;
    display: flex;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.recent-works-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recent-works-name {
    font-family: 'DM Sans';
    font-size: 25px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    padding: 0px 20px;
    color: var(--black);
    margin-bottom: 0;
}

.recent-works-desc {
    font-family: 'Proxima Nova';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    padding: 10px 20px;
    padding-top: 0;
    text-align: left;
    color: var(--menu-grey);
}

.play-store-button {
    width: 140px;
    height: 45px;
}

.play-store-button:hover{
    cursor: pointer;
}

.visit-site-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* padding: 10px 30px; */
    width: 140px;
    height: 45px;
    background: #06071B;
    border: none;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 64px;
    color: white;

    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}