/*
        Theme Name: Decoria Child
        Theme URI: 
        Description: A child theme of Decoria
        Author: 
        Author URI: 
        Template: decoria
        Version: 1.0.0
        Text Domain: decoria-child
        */

        /* Add your custom styles below this line */
        

.process-section{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    position:relative;
    padding:20px 0;
}

.process-item{
    position:relative;
    flex:1;
    text-align:left;
}

.process-item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:40px;
    left:68px;
    width:calc(100% - 55px);
    border-top:2px dashed #d9d9d9;
    z-index:0;
}

.process-icon{
    width:80px;
    height:80px;
    border:2px solid #cfcfcf;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    position:relative;
    z-index:2;
}

.process-icon img{
    width:50px;
    height:50px;
    object-fit:contain;
    opacity:.8;
}

.step{
    display:block;
    margin-top:14px;
    font-size:18px;
    font-weight:600;
    color:#8AA63D;
}

.process-item p{
    margin-top:10px;
    font-size:15px;
    line-height:1.6;
    color:#555;
    max-width:180px;
}

@media(max-width:991px){

.process-section{
    flex-direction:column;
    gap:40px;
}

.process-item:not(:last-child)::after{
    display:none;
}

.process-item p{
    max-width:100%;
}

}