.cards-container.contacts{
    grid-template-columns: 250px 400px auto;
    margin-bottom: 0!important;
}
.schools-img{
    width: 100%;
    height: 100%;
    position: relative;
}
.schools-img img{
    width: 100%;
    position: absolute;
    top: -30px;
    left: 0;
}
.number h4 {
    margin-bottom: 0;
}
.schools-numbers-container{
    max-width: 400px;
}
.bg-grey-half{
    background: linear-gradient(to right,#f2f2f2 70%,#ffffff 40%);
}
.signup h2{
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    font-size: 25px;
}
.steps {
    display: flex;
    align-items: center;
    padding-top: 50px;
    gap: 35px;
}
.step .number{
    border: solid var(--yellow-comics) 2px;
    padding: 10px 25px;
    width: 50px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.step .number img{
    width: 100%;
}
.step .number span{
    font-weight: 700;
    font-size: 23px;
}
.step .step-descr p{
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    min-height: 100px;
}
.schools-numbers {
    width: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1350px) {
    .cards-container.contacts{
        grid-template-columns: 250px 374px auto;
    }
    .bg-grey-half{
        background: linear-gradient(to right,#f2f2f2 68%,#ffffff 40%);
    }
    .schools-img img{
        width: 450px;
    }
}
@media screen and (max-width: 1200px) {
    .cards-container.contacts {
        grid-template-columns: 200px 295px auto;
    }
    .bg-grey-half{
        background: linear-gradient(to right,#f2f2f2 70%,#ffffff 40%);
    }
    .schools-img img{
        width: 88%;
    }
}
@media screen and (max-width: 1120px) {
    .schools-img img{
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .bg-grey-half{
        background: #f2f2f2;
    }
    .cards-container.contacts {
        grid-template-columns: auto;
    }
    .bg-grey-half .cards-container .title{
        display: unset;
        max-width: 500px;
    }
    .schools-numbers-container {
        max-width: 320px;
        justify-content: start;
    }
    .schools-img img{
        display: none;
    }
    .steps {
        display: grid;
        grid-template-columns: auto auto auto auto auto auto;
    }
}

@media screen and (max-width: 768px) {
    .steps {
        grid-template-columns: auto auto auto auto;
    }
}