:root {
    /* Размеры */
    --size-3xs: 0.25rem;
    --size-2xs: 0.5rem;
    --size-xs: 0.75rem;
    --size-s: 0.875rem;
    --size-m: 1rem;
    --size-l: 1.125rem;
    --size-xl: 1.25rem;
    --size-2xl: 1.5rem;
    --size-3xl: 2rem;
    --size-4xl: 2.5rem;
    
    /* Контейнер */
    --container-width: 1920px;
    --container-padding: 60px;
    
    /* Цвета */
    --text-main: #363636;
    --text-secondary: #d2d2d2;
    --text-secondary-2: #b8b8b8;
    --primary-orange: #faaf18;
    --primary-blue: #0166b3;
    --background-light: #ebebeb;
    --white: #ffffff;
}

@media (max-width: 1199px) {
    :root {
        --container-padding: 20px;
    }
}

