h2 {
    margin: 0;
}
h5 {
    margin: 0;
}

.belt {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-block: 20px;
    background: #FFF;
    color: #414042;
}

.belt-icons {
    display: flex;
}

.belt h2 {
    font-weight: 600;
    font-size: 30px;
}h5 {
    font-weight: 500;
    font-size: 12px;
}

.belt-contents {
    width: fit-content;
    display: flex;
    align-items: center;
}

.belt-desc {
    margin-left: 10px;
}

@media (max-width: 600px) {
    .belt svg {
        width: 45px;
        height: 45px;
    }
    .belt-desc {
        margin-left: 5px;
    }
}

@media (max-width: 450px) {
    .belt svg {
        width: 40px;
        height: 40px;
    }
    .belt h2 {
        font-size: 20px;
    }h5 {
        font-size: 8px;
    }
    .belt-desc {
        margin: 0;
    }
    .belt-icons {
        width: 25px;
        margin-right: 10px;
    }
}