.root {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: var(--content-max-width);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 20px 120px 20px;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    gap: 32px;
}

.icons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 12px;
}

.icon {
    align-items: center;
    display: flex;
    gap: 12px;
}

@media (width <= 1200px) {
    .container {
        padding: 64px 20px;
    }
    .icon {
        width: calc(50% - 6px);
        justify-content: center;
    }
}

@media (width <= 1000px) {
    .icon {
        justify-content: flex-start;
    }
}

@media (width <= 768px) {
    .container {
        padding: 48px 24px;
    }
    .content {
        gap: 24px;
    }
    .icons {
        flex-direction: column;
        align-items: flex-start;
    }
    .icon {
        width: 100%;
        justify-content: flex-start;
    }
}
