// Project breakpoints
$breakpoints: (
        smallMobile: 'only screen and (min-width: 449px)',
        mobile: 'only screen and (min-width: 480px)',
        bigMobile: 'only screen and (min-width: #{em(600px)})',
        onlyMobile: 'only screen and (max-width: #{em(1023px)})',
        tablet: 'only screen and (min-width: 768px)',
        bigTablet: 'only screen and (min-width: 900px)',
        desktop: 'only screen and (min-width: 1024px)',
        desktop-m: 'only screen and (min-width: 1199px)',
        desktop-l: 'only screen and (min-width: 1292px)',
        desktop-xl: 'only screen and (min-width: 1440px)',
        desktop-xxl: 'only screen and (min-width: 1600px)',
        desktop-big: 'only screen and (min-width: 2500px)',
);

// Brand Colors
$color-red: #DC141E;
$color-green: #41AF1E;

//Neutrals
$color-grey: #6E6E6E;
$color-dark-grey: #666666;
$color-medium-dark-grey: #969696;
$color-medium-grey: #BEBEBE;
$color-medium-light-grey: #DEDEDE;
$color-light-grey: #EDEDED;
$color-off-white: #F7F7F7;
$color-white: #FFFFFF;
$color-red: red;
$color-gray: #5c5c5c;

//Accent Colors
$color-blue: #0A2463;

//Alert Colors
$color-red-alert: #E61A2E;

// variables
$container-width-desktop: 1728px;
$padding-desktop: 0px;
$padding-mobile: 20px;
$border-radius-s: 8px;
$border-radius-xs: 4px;
$border-radius-m: 16px;


$font-size-title-accordion: 30px;
$font-size-title: 40px;
$font-weight-bold: 700;
$font-size-text: 18px;
$line-height-text: 33px;
