.info{
    padding: 0px 0 100px;
    background-color: #eeeeee;
}

nav {
    /* background-color: #a3a3a3; */
}

.info-header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    /* background: linear-gradient(90deg, #20112588, #00000065), url(../images/services/meet-our-caregivers/caregivers-1.jpeg);
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat; */
    background-color: #a114ff;
    color: white;
    width: 100%;
    height: 400px;
}

.info-header h1{
    /* font-weight: 200; */
    font-size: 3.2rem;
    text-align: center;
}

.info-content {
    width: 100%;
    padding: 40px 10%;
}

.info-content-holder {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.article{
    display: flex;
    justify-content: start;
    /* align-items: space-between;  */
    flex-direction: column;
    width: 250px;
    /* height: 300px; */
    padding: 15px 13px;
    gap: 10px;
    background-color: rgb(221, 221, 221);
    /* border-radius: 10px; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.article>div{
    width: 100%;
    height: 100%;
}


div.article-image {
    width: 100%;
    height: 200px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.article-image img{
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

div.article-text {
    width: 100%;
    /* height: 100px; */
    display: flex;
    gap: 10px;
    flex-direction: column;
    color: #000;
}

div.article-text h4{
    font-size: 1rem;
}
div.article-text h6{
    font-size: .7rem;
}

div.article-text p{
    font-size: .87rem;
    line-height: 1.5;
}

div.article-btn-grp{
    height: fit-content;
    /* background: #000; */
}
.article-btn-grp button{
    width: 100%;
    height: 40px;
    background-color: #a114ff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}
.article-btn-grp button:hover{
    background-color: #000;
    color: #fff;
    transform: scale(1.02);
}
.article-btn-grp button:active{
    transform: scale(0.95);
}