.medication {
    display: flex;
    flex-direction: column;
    margin-top: 107px;
    margin-bottom: 89px;
}

.medication-title {
    font-family: Manrope;
    font-weight: 500;
    font-size: 50px;
    line-height: 60px;
    color: #444444;
    max-width: 848px;
    margin-bottom: 53px;
}

.medication-title span {
    font-family: Manrope;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    color: #444444;
}

.medication__container {
    display: flex;
    flex-direction: row;
    position: relative;
}

.medication__item {
    background-color: #EAF0FF;
    width: 369px;
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 45px 0 52px 30px;
    margin-right: 30px;
    border-radius: 20px;
    height: 180px;
}

.medication__item-text {
    font-family: Manrope;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #444444;
}

.medication__item:last-of-type {
    margin-right: 0;
}

.medication__item-image {
    max-width: 192px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.medication__item-image img {
    width: 100%;
}

.medication__item-caption {
    font-family: Manrope;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    position: absolute;
    background: linear-gradient(257.96deg, #52CA4F 14.25%, #13A210 86.96%);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 4px 14px 6px;
    top: 0;
    left: 0;
}

.medication__container-caption {
    position: absolute;
    top: -70px;
    right: 20px;
}

.medication__container-caption h4 {
    font-family: Manrope;
    font-weight: 700;
    font-size: 30px;
    line-height: 28px;
    color: #187F86;
}

@media (max-width: 1200px) {
    .medication__item-image {
        width: 100px;
    }
}

@media (max-width: 1000px) {
    .medication__item {
        height: 200px;
    }

    .medication__item-text {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    .medication__container {
        flex-direction: column;
        align-items: center;
    }

    .medication-title {
        line-height: 35px;
        font-size: 30px;
    }

    .medication-title span {
        font-size: 30px;
        line-height: 35px;    
    }

    .medication__item {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .medication__item-image {
        width: 150px;
    }
}

@media (max-width: 420px) {
    .medication__container-caption h4 {
        font-size: 25px;
    }

    .medication-title {
        margin-bottom: 75px;
    }

    .medication__item {
        width: 280px;
    }
}