.uslugi > aside {
    margin-top: 86px;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
}
.banner1 {
    background-image: url('img/03.jpg');
}
.banner2 {
    background-image: url('img/04.jpg');
}
.banner3 {
    background-image: url('img/02.jpg');
}
.uslugi > aside > h3 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    bottom: 60px;
    left: 10%;
    animation: uslugih 1s;
    text-shadow: 1px 1px 2px var(--blue02);
}
.uslugi > aside > span {
    color: white;
    font-weight: 500;
    position: absolute;
    bottom: 20px;
    left: 10%;
    text-shadow: 1px 1px 2px var(--blue02);
    animation: uslugispan 1s;
}
@media(min-width:1240px) {
    .banner1 {
        height: 507px;
    }
    .banner2 {
        height: 588px;
    }
    .banner3 {
        height: 541px;
    }
    .uslugi > aside > h3 {
        font-size: 56px;
    }
}
@media(min-width:710px) and (max-width:1239px) {
    .banner1 {
        height: 317px;
    }
    .banner2 {
        height: 367.5px;
    }
    .banner3 {
        height: 338px;
    }
    .uslugi > aside > h3 {
        font-size: 36px;
    }
}
@media(min-width:710px) {
    .uslugi > aside > span {
        font-size: 20px;
    }
}
@media(max-width:709px) {

    .banner1 {
        height: 450px;
    }
    .banner2 {
        height: 450px;
    }
    .banner3 {
        height: 450px;
    }
    .uslugi > aside > span {
        font-size: 16px;
    }
    .uslugi > aside {
        background-color: #0000cc30;
    }
}
@media(min-width:430px) {
    .uslugi > aside {
        margin-top: 86px;
    }
}
@media(max-width:429px) {
    .uslugi > aside {
        margin-top: 0;
    }
    .uslugi > aside > h3 {
        font-size: 36px;
    }
}
@keyframes uslugih {
    from{
        left: -50%;
    }
    to {
        left: 10%;
    }
}
@keyframes uslugispan {
    from{
        bottom: -50%;
    }
    to {
        bottom: 20px;
    }
}