.parents-container{
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
   
}

.parents-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
}
.parents-list :nth-child(3){
    width: 100%;
}

.parents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.parents .photos{
    display: flex;
}

.parents .photo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.parents .photo p{
    height: 40px;
    line-height: 1;
}


.parents .photo img{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid var(--items-color)
}

.parents-container p{
   width: 50%;
   text-align: center;
}

.vector-parents{
    margin-top: -14px;
    width: 290px;
}

.vector-long{
    margin-top: -40px;
    width: 260px;
}

@media (max-width:500px){
    .parents .photo img{
        width: 130px;
        height: 130px;
    }
    .vector-parents{
        margin-top: -14px;
        width: 65%;
    }
}