:root {
    /* Base */
    --white: #fff;
    --black: #000;
    
    /* Theme color */
    --theme: #00bb81;
    --theme-rgb: 0, 187, 129;
    --theme-darker: #00714F;
    --theme-contrast: #FFF;

    --theme-alt: #000000;
    --theme-alt-darker: #000000;
    --theme-alt-contrast: #fff;

    --heading-dark: #000000;
    --text-dark: #000000;
    --background-dark: #000000;
    --background-dark-lighter: #060606;
    --border-dark: rgba(0, 0, 0, 0.08);
    
    /* Light color */
    --heading-light: #FFF;
    --text-light: #FFF;
    --background-light: #F1F1F1;
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Header */
    --selected-nav-item: #000000;
    --header-height: 127px;
    --logo-padding: 15px;
    --navigation-padding: 10px;
    --pre-top-height: 30px;
    --top-combo-calc: calc(var(--header-height) + var(--pre-top-height));
    
    /* Grid */
    --grid-width-small: 750px;
    --grid-width: 1250px;
    --grid-width-big: 1500px;
    --grid-gutter: 13px;
    --grid-gutter-half: calc(var(--grid-gutter) / 2);
    
    /* Buttons */
    --button-border-radius: 0px;
    
    /* Typography */
    --body-font: Open Sans;
    --heading-font: Open Sans;
    --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;
    
    /* Validation */
    --success: #2ecc71;
    --error: #e74c3c;
}
@media only screen and (max-width: 1200px) {
  :root {
    --navigation-padding: 15px;
  }
}
@media only screen and (max-width: 992px) {
  :root {
    --header-height: 100px;
    --grid-gutter: 15px;
    --logo-padding: 15px;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --grid-gutter: 15px;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --grid-gutter: 15px;
  }
}
