div#rnd {
    width: 100%;
    background-color: rgb(243, 242, 242);
    padding: 10px 0;
    margin-bottom: 10px;
}
div#rnd > img {
    display: block;
    margin: auto;
    margin-bottom: 15px;
    width: 51%;
    border-radius: 30px;
    position: relative;
    left: 2.9%;
}
div#rnd > div:nth-of-type(n+2) {
    width: 70%;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
div#rnd > div:nth-of-type(n+2) > p {
    padding: 10px 15px;
    background-color: white;
    border-radius: 30px;
    margin: 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    text-align: justify;
}
div#rnd > div:nth-of-type(n+2) > img {
    width: 10.5%;
    padding: 10px;
    background-color: white;
    margin-right: 15px;
    border-radius: 40px;
}
@media screen and (max-width: 780px) {
    div#rnd > img {
        width: 95%;
        left: 0;
        margin: 20px auto;
    }
    div#rnd > div:nth-of-type(n+2) {
        width: 95%;
        flex-wrap: wrap;
        margin-bottom: 20px;
        padding: 10px;
        border: 2px solid #80C342;
        border-radius: 20px;
    }
    div#rnd > div:nth-of-type(n+2) > img {
        width: 32%;
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 550px) and (max-width: 780px) {
    div#rnd > div:nth-of-type(n+2) > img {
        width: 22%;
    }
}
@media screen and (min-width: 781px) and (max-width: 1300px) {
    div#rnd > img {
        width: 70%;
    }
    div#rnd > div:nth-of-type(n+2) {
        width: 82%;
    }
    div#rnd > div:nth-of-type(n+2) > img {
        width: 13%;
    }
}
