.banner_index-moto {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.banner_index-moto-item {
    flex: 0 0 calc(33.333% - 14px);
    height: 230px;
    background-color: #FFDE5D;
    width: 100%;
    padding: 25px 45px;
    border-radius: 14px;
}

.banner_index-moto-item a {
    display: flex;
}

.banner_index-moto-item div {
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
    font-family: Arial;
}

.banner_index-moto-item svg {
    height: 190px;
}
.banner_index-moto-item:hover{
    background-color: #eccd56;
}
.banner_index-moto-item:nth-child(2) {
    background-color: #E8E8E8;
}
.banner_index-moto-item:nth-child(2):hover{
    background-color: #d8d8d8;
}
.banner_index-moto-item:nth-child(3) {
    background-color: #C3DAE8;
}
.banner_index-moto-item:nth-child(3):hover{
    background-color: #b0c4d0;
}
@media screen and (max-width: 2150px) {
    .banner_index-moto-item {
        height: 180px;
        padding: 20px 33px 20px 45px;
    }
    .banner_index-moto-item div{
        font-size: 20px;
        line-height: 120%;
    }
    .banner_index-moto-item svg {
        height: 140px;
    }
}
@media screen and (max-width: 1600px) {
    .banner_index-moto{
        margin-bottom: 26px;
    }
    .banner_index-moto-item {
        height: 126px;
        padding: 15px 19px;
    }
    .banner_index-moto-item svg {
        height: 100px;
    }
}
@media screen and (max-width: 1240px) {
    .banner_index-moto-item {
        height: 102px;
        padding: 11px 16px;

    }
    .banner_index-moto-item div{
        font-size: 16px;
    }
    .banner_index-moto-item svg {
        height: 80px;
    }
}
@media screen and (max-width: 750px) {
    .banner_index-moto{
        flex-direction: column;
        margin-bottom: 20px;
    }
    .banner_index-moto-item {
        padding: 11px 20px;
    }
}