.team_wrapper {
    background-color: #49326B;
}

.team_img img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    border-radius: 10px ;
}

.moto_img,
.moto_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background-color: #FFF1E3;
}

.moto_img img {
    width: 100%;
    height: auto;
    background-color: #FFF1E3;
    object-fit: cover;
}

.moto_content {
    padding: 2rem;
    background-color: #F9E3FF;
}

.moto_content p {
    font-size: 16px;
    line-height: 27px;
    margin-top: 1rem;
}

.moto_content h3 {
    font-size: 30px;
    font-weight: 700;
}

/* associate_wrapper */

.associate_box {
    background-color: whitesmoke;
    padding: 2rem;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 10px;
    transition: .3s ease all;
    height: 100%;
}

.associate_box:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
    transition: .3s ease all;
}
.associate_box:hover h3{
    color: var(--white-color);
}

.associate_box h3 {
    font-weight: 700;
    font-size: 25px;
    color: var(--blue-color);
}

.associate_box p {
    margin-top: 1rem;
    font-size: 15px;
    margin-top: 1rem;
    line-height: 25px;
}

.studies_details__img{
    display: flex;
}

.studies_details__img img {
    /*width: 100%;*/
    /*height: auto;*/
    /*object-fit: cover;*/
    width: 60%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

.studies_details__content h3 {
    margin-top: 1rem;
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.studies_details__content p {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 30px;
}

@media(max-width:992px) {
    .moto_wrapper__flex {
        flex-direction: column-reverse;
    }

    .associate_box h3 {
        font-size: 20px;
    }

    .associate_box p {
        font-size: 14px;
    }
}

@media(max-width:768px) {
    .associate_box {
        margin-bottom: 1rem;
        height: auto;
        padding: 1rem;
    }

    .team_img {
        margin-bottom: 1rem;
    }

    .moto_content {
        padding: 1.5rem 1rem;
    }

    .moto_content h3 {
        font-size: 22px;
    }

    .moto_content p {
        font-size: 14px;
        margin-top: 10px;
        line-height: 25px;
    }

    .studies_details__content p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 7px;
    }

    .studies_details__content h3 {
        font-size: 20px;
    }

}