.b_leasing_in_three_steps{
    margin: 50px 0;

    font-family: "Inter", sans-serif;

    h2{
        font-family: "Inter", sans-serif;

        font-size: 36px;
        line-height: 40px;
        font-weight: 900;

        color: var(--black-clr);

        text-align: center;
        text-wrap: balance;

        margin-bottom: 23px;
    }

    .description{
        font-size: 18px;
        line-height: 29px;
        color: var(--grey-clr);

        text-align: center;
        text-wrap: balance;

        margin-bottom: 40px;
    }

    .steps{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

        gap: 30px;

        .step{
            position: relative;

            width: 100%;
            padding: 32px;

            border: 1px solid var(--grey-light-clr);
            border-radius: 8px;

            @media(max-width: 1120px){
                &:last-of-type{
                    grid-column: 1 / -1;
                }
            }

            &:hover{
                box-shadow: 0px 2px 20px var(--grey-light-clr);
            }

            transition: 0.2s ease box-shadow;

            box-shadow: 0px 2px 4px var(--grey-light-clr);

            .step_title{
                font-size: 20px;
                line-height: 28px;
                font-weight: 700;

                color: var(--black-clr);

                margin-bottom: 15px;
            }

            .step_description{
                font-size: 14px;
                line-height: 23px;
                font-weight: 400;

                color: var(--grey-clr);

                margin-bottom: 24px;
            }

            .step_feutures{
                margin-bottom: 46px;

                padding-left: 12px;

                li{
                    &::marker{color: var(--green-clr);}

                    font-size: 14px;
                    line-height: 20px;
                    font-weight: 400;

                    color: var(--black-clr);

                    &:not(:last-of-type){margin-bottom: 8px;}
                }
            }

            .more_btn{
                position: absolute;
                bottom: 32px;
            }
        }
    }
}