.content-part2 {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    gap: 80px;
    height: auto;
    background-color: rgb(255, 255, 255);
    padding-block: 100px;
}


.content-part2-bottom{
    /* height: 650px; */
    width: 100%;
    /* border: 2px solid green; */
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.content-part2-bottom > div:first-child{
    /* height: 500px; */
    width: 30%;
    /* border: 2px solid yellow; */
}

.content-part2-bottom > div:last-child{
    /* height: 500px; */
    width: 70%;
    /* border: 2px solid purple; */
}

.content-part2-bottom > div:first-child {
    height: 560px;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    background-color: rgb(249, 236, 255);
    border-radius: 16px;
    position: relative;
}

.content-part2-bottom > div:first-child img{
    width: 150%;
    order: 1;
    transition: width 0.5s ease-in-out;
}

.content-part2-bottom > div:first-child > span:first-of-type{
    height: 50px;
    width: 50px;
    background-color: rgb(247, 184, 38);
    color: black;
    font-weight: 900;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40px;
    left: 40px;
}

.content-part2-bottom > div:first-child > span:last-of-type{
    font-size: 2rem;
    color: white;
    white-space: pre-line;
    position: absolute;
    bottom: 60px;
    left: 40px;
    letter-spacing: 1px;
    font-weight: 300;
}

.part2-card-box {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.part2-card-item{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 29%;

}

.part2-card-item > div:first-child{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.part2-card-item > div:first-child > :nth-child(1){
    font-size: 0.8rem;
    color: rgb(170, 170, 170);
    text-transform: capitalize;
}

.part2-card-item > div:first-child > :nth-child(2){
    font-size: 1.9rem;
    white-space: pre-line;
    font-weight: 500;
}

.part2-card-item > div:first-child > :nth-child(3){
    white-space: pre-line;
    line-height: 1.6;
}

.part2-card-item > div:last-child{
    border-top: 1px solid rgb(205, 205, 205);
}

.part2-card-item > div:last-child img{
    margin-top: 20px;
    width: 36px;
    border: 1px solid rgb(209, 209, 209);
    height: 30px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}


.content-part2-bottom:hover > div:first-child img{
    width: 180%;
}
