.my-flex-cont {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.my-flex-box {
    margin: 10px;
    padding: 10px;
    flex: 0 1 auto;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: rgba(243, 248, 255, 1);
}
.my-flex-box:hover {
    background-color: #E3FFFF;
}
.my-grid-cont{
    display: grid;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 40px;
}
.my-img {
    width: 100%;
    height: 100%;
    max-width: 510px;
    object-fit: contain;
    border-radius: 25px;
}
.my-a {
    text-decoration: none;
    color: inherit;
    font-family: Wix Madefor Display;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
}
.text_article{
    margin-top: 20px;
}
@media (max-width: 980px) {
    .my-a {
        font-size: 18px;
    }
}
@media (max-width: 670px) {
    .my-grid-cont{
        display: grid;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        grid-template-columns: 1fr ;
        justify-items: center;
    }
    .my-a {
        font-size: 16px;
    }
}