.keywords {
    padding: 0 16px ;
}

@media screen and (min-width: 1024px) {
    .keywords {
        padding: 0 80px;
    }
}

.keywords--list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .keywords--list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) {
    .keywords--list {
        gap: 120px;
        justify-content: space-between;
    }
}

.keywords--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media screen and (min-width: 768px) {
    .keywords--item {
        width: calc(50% - 60px);
    }
}

@media screen and (min-width: 1024px) {
    .keywords--item {
        flex: 1;
    }
}

.keywords img {
    width: 56px;
    height: 56px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.keywords .title {
    color: var(--green-dark);
    text-align: center;
    font-family: var(--inter);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.keywords .desc {
    padding-top: 16px;
    border-top: 2px dashed var(--grey);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-align: center;
}