.home-container{
    margin: 20px auto;
    width: 80vw;
}

.home-section{
    background: #f1f1f1;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.home-section::after{
    content: "";
    display: block;
    clear: both;
}

.home-title{
    text-align: center;
    margin: 20px 0;
    color : var(--title-color);
}

.hero-picture {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    float: left;
    shape-outside: margin-box;
    margin: 0 20px 5px 0;
    }


.hero-text{
    line-height: 1.8;
    padding-top: 5%;
    font-size: 1.5rem;
}

.screen-container{
    margin-top: 20px;
}

.step-item{
    display: flex;
    gap : 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.step-item:nth-child(even){
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.text-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 60%;
    ;
}

.step-item:nth-child(even) .text-item{
    justify-content: flex-end;
}


.picture-item,.text-item{
    padding: 30px;
}

.picture-item{
    width: 440px;
}

.screen-picture{
width: 440px;
}

@media screen and (max-width:1180px){
    .hero-picture {
        height: 200px;
        width: 200px;
    }

    .hero-text{
        line-height: 1.2;
        padding-top: 30px;
        font-size: 0.9rem;
    }

    .picture-item{
        width: 160px;
        padding: 10px;
    }

    .screen-picture{
        width: 200px;
    }

}

@media screen and (max-width:768px) {
    .hero-picture {
        display: none;
    }

    .hero-text{
        line-height: 1.2;
        padding-top: 25px;
        font-size: 1rem;
    }

    .screen-container{
        margin: 0 auto;
        display: flex;
    }

    .sreen-app{
        width: 100vw;
        overflow: hidden;
    }

    .step-item{
        width: 100%;
        gap: 6px;
    }

    .text-item{
        font-size: 9px;
        gap : 5px;
    }

    .picture-item{
        width: 160px;
    }

    .screen-picture{
        width: 140px;
    }
}
