.use {
padding: 15px 0 30px;
} .use__content {
display: flex;
flex-direction: column;
gap: 30px;
} .use__list {
display: flex;
justify-content: space-between;
gap: 15px;
} .use__list > li {
max-width: 275px;
width: 100%;
display: flex;
flex-direction: column;
padding: 15px 10px;
background: #FFFFFF;
border: 1px solid #100909;
border-radius: 15px;
} .use__list .bottom {
justify-content: space-between;
} .use__list > li img {
margin-bottom: 15px;
} .use__list .bottom img {
margin-top: 15px;
margin-bottom: 0;
} .use__list-text {
display: flex;
flex-direction: column;
gap: 10px;
padding: 0 10px;
} .use__list > li ul > li {
display: flex;
gap: 10px;
font-size: 15px;
font-weight: 400;
line-height: 100%;
letter-spacing: 5%;
vertical-align: middle;
text-transform: uppercase;
color: var(--dark);
} .use__list > li ul > li::before {
content: '';
display: block;
min-width: 5px;
min-height: 5px;
width: 5px;
height: 5px;
background: var(--dark);
border-radius: 50%;
margin-top: 5px;
}
@media (max-width: 1420px) {
.use__list {
justify-content: center;
flex-wrap: wrap;
}
}