.sections_wrapper .section-parent{
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    margin-top: 72px;
}
.sections_wrapper .items .section-parent:nth-child(1){
    margin-top: 0;
} 
.sections_wrapper .section-parent span{
    font-size: 14px;
    line-height: 20px;
}
.sections_wrapper .section-image{
    box-shadow: 0px 16px 40px rgba(105, 99, 96, 0.12);
    border-radius: 160px;
    background-color: var(--color-white);
    min-width: 142px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 56px;
}
.sections_wrapper .section-child .item{
    overflow: hidden;
    height: 320px;
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
}
.sections_wrapper .section-child .text-wrap{
    position: absolute;
    bottom: 0;
    padding: 0 32px 32px;
    z-index: 3;
}
.sections_wrapper .section-child .image-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    opacity: 1;
}
.sections_wrapper .section-child h3{
    margin-bottom: 16px;
    margin-top: 0;
    color: var(--color-white);
    text-transform: lowercase;
}
.sections_wrapper .section-child .description{
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    opacity: 0.6;
}
.sections_wrapper .section-child .animation-bg{
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 0%;
    z-index: 2;
    background-color: var(--color-dustybrown);
}

.sections_wrapper .section-child:hover .image-wrap{
    opacity: 0;
    transition: 0.8s;
}
.sections_wrapper .section-child:hover .animation-bg{
    height: 320px;
    transform:scaleX(2);
    transition: 0.8s;
}

.sections_wrapper .section-child.light:hover .description,
.sections_wrapper .section-child.light:hover h3{
    color: var(--color-white);
    opacity: 1;
}

.sections_wrapper .section-child.light .description,
.sections_wrapper .section-child.light h3{
    color: var(--color-black);
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .sections_wrapper .section-parent span:nth-child(2){
        display: none;
    }
}