:root {
    /* Base */
    --white: #fff;
    --black: #000;
    
    /* Theme */
    --theme: #262261;
    --theme-rgb: 38, 34, 97;
    --theme-darker: #17143A;
    --theme-contrast: #f8f8f8;
    
    /* Theme alt */
    --theme-alt: #763BCC;
    --theme-alt-darker: #45217C;
    --theme-alt-contrast: #fff;
    
    /* Dark */
    --heading-dark: #262261;
    --text-dark: #000;
    --background-dark: #111;
    --background-dark-lighter: #161616;
    --border-dark: rgba(0, 0, 0, 0.08);
    
    /* Light */
    --heading-light: #fff;
    --text-light: rgba(255, 255, 255, 0.9);
    --background-light: #f9f9f9;
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Header */
    --selected-nav-item: #262261;
    --header-height: 120px;
    --logo-padding: 10px;
    --navigation-padding: 30px;
    --pre-top-height: 30px;
    --top-combo-calc: calc(var(--header-height) + var(--pre-top-height));
    
    /* Grid */
    --grid-width-small: 850px;
    --grid-width: 1300px;
    --grid-width-big: 1600px;
    --grid-gutter: 30px;
    --grid-gutter-half: calc(var(--grid-gutter) / 2);
    
    /* Buttons */
    --button-border-radius: 5px;
    
    /* Typography */
    --body-font: Open Sans;
    --heading-font: Open Sans Condensed;
    --font-size: 1.1rem;
    --font-size-big: 1.25rem;
    
    --font-weight-normal: normal;
    --font-weight-light: 300;
    --font-weight-bold: bold;
    --font-weight-bolder: bolder;
    
    --body-font-weight: var(--font-weight-normal);
    --heading-font-weight: var(--font-weight-bold);
    
    /* Validation */
    --success: #2ecc71;
    --error: #e74c3c;
}
@media only screen and (max-width: 1200px) {
  :root {
    --navigation-padding: 30px;
  }
}
@media only screen and (max-width: 992px) {
  :root {
    --header-height: 60px;
    --grid-gutter: 30px;
    --logo-padding: 5px;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --grid-gutter: 30px;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --grid-gutter: 30px;
  }
}

