/* :root {
  --font-serif: 'Lora', serif;
  --font-sans-serif: 'Roboto', sans-serif;
  --color-black: #000;
  --color-dark: #222;
  --color-yellow: #FFD830;
  --color-burnt-orange: #CA4F0F;
  --color-white: #FFF;
  --gradient-yellow: linear-gradient(45deg, #FFD830 0%, #F8B000 100%);
  --gradient-orange: linear-gradient(45deg, #DD743D 0%, #983704 100%);
  --gradient-grey: linear-gradient(45deg, #F6F5F0 0%, #D5D3CA 100%);
} */

.font--serif {
  font-family: 'Lora', serif;
}

.font--sans-serif {
  font-family: 'Roboto', sans-serif;
}

.font-weight--medium {
  font-weight: 500;
}

.font-weight--bold {
  font-weight: 700;
}

.font-weight--extra-bold {
  font-weight: 800;
}

.font-weight--black {
  font-weight: 900;
}

.font-color--white {
  color: #FFF;
}

.font--uppercase {
  text-transform: uppercase;
}

.text-align--center {
  text-align: center;
}

.width--100vw {
  width: 100vw;
}

.width--100percent {
  width: 100%;
}

.height--100percent {
  height: 100%;
}

.width--max-1200px {
  max-width: 1200px;
}

.width--max-960px {
  max-width: 960px;
}

.margin--zero {
  margin: 0;
} 

.margin--vertical-4px {
  margin: 4px 0;
}

.margin--vertical-8px {
  margin: 8px 0;
}

.margin--vertical-12px {
  margin: 12px 0;
}

.margin--vertical-16px {
  margin: 16px 0;
}

.margin--vertical-20px {
  margin: 20px 0;
}

.padding--4px {
  padding: 4px;
}

.padding--8px {
  padding: 8px;
}

.padding--12px {
  padding: 12px;
}

.padding--16px {
  padding: 16px;
}

.padding--20px {
  padding: 20px;
}

.padding-bottom--60px {
  padding-bottom: 60px;
}

.flex--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex--col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex--col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex--center-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center
}

.flex--justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--justify-space-between {
  justify-content: space-between;
}

.flex--align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex--grow-1 {
  flex-grow: 1;
}

.flex--grow-2 {
  flex-grow: 2;
}

.display--none {
  display: none;
}

.position--relative {
  position: relative;
}

.position--absolute {
  position: absolute;
}

.size-proportionally--parent {
  position: relative;
}

.size-proportionally--child {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}