.how__it__works{
    width: 100%;
    padding: 50px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container_steps{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step__work{
    width: 270px;
    max-width: 270px;
    min-width: 270px;
    height: 250px;
    background: #074cff;
    background: linear-gradient(90deg, #074cff 0%, #11a2ff 100%);
    border-radius: 36px;
    margin: 55px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    transform: translateY(150px);
}

.step__work h2{
    font-size: 19px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 1440px){
    .step__work{
        width: 240px;
        max-width: 240px;
        min-width: 240px;
        height: 220px;
        margin: 55px 20px;
        padding: 20px;
    }

    .step__work h2{
        font-size: 16px;
    }

    .how__it__works{
        width: 100%;
        padding: 50px 100px 0 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


}

@media (max-width: 1150px){
    .step__work{
        width: 200px;
        max-width: 200px;
        min-width: 200px;
        height: 180px;
        margin: 30px 12px;
        padding: 30px;
    }

    .step__work img{
        width: 50%;
    }

    .step__work h2{
        font-size: 14px;
    }
}

@media (max-width: 768px){
    .how__it__works{
        width: 100%;
        padding: 30px 20px 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .step__work{
        width: 170px;
        max-width: 170px;
        min-width: 170px;
        height: 150px;
        margin: 0;
        padding: 10px;
        border-radius: 20px;
        transform: translateY(50px);
    }

    .step__work h2{
        font-size: 10px;
    }

    .container_steps{
        width: 100%;
        margin: 30px 0;
        padding: 0 15px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
    }   
}

@media (max-width: 360px){
    .step__work{
        width: 150px;
        max-width: 150px;
        min-width: 150px;
        height: 130px;
    }
}