/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
 1. Grid
 2. Base Styles
 3. Typography
 4. Links
 5. Buttons
 6. Forms
 7. Lists
 8. Code
 9. Tables
10. Spacing
11. Utilities
12. Clearing
13. Misc
14. Media Queries
15. Shadows

Colors:
Font: #6c6c6c
Title: #333
Border: #ccc

Link Red: #f15f5e -> #db5656

Grey colors: f8f8f8, f2f2f2, e6e6e6, ccc, b3b3b3, 808080, [6c6c6c], 4d4d4d, 333
Red: fddbcc, fab8a1, f6977c, f4785d, [f0533f], b34a3b, 803e33, 55302a, 301f1d
Green: d8ecd4, b8dcae, 95cd8b, 70c167, [3eb549], 3e8b43, 35683a, 29482e, 1b2a1e

*/

/* 1. Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.container-fluid {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 1280px) {
  .container-fluid {
    width: 1280px;
  }
}
.container-full-width {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}


.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
  padding: 0 15px;
}

/* Devices:
    Phones: <768
    Tablets: ≥768
    Desktops: ≥992
    Large Desktops: ≥1200
*/
@media (min-width: 800px) {
  .container {
    width: 750px;
  }

  .one.column,
  .one.columns {
    width: 8.3333333333%;
  }

  .two.columns {
    width: 16.6666666667%;
  }

  .three.columns {
    width: 25%;
  }

  .four.columns {
    width: 33.3333333333%;
  }

  .five.columns {
    width: 41.6666666667%;
  }

  .six.columns {
    width: 50%;
  }

  .seven.columns {
    width: 58.3333333333%;
  }

  .eight.columns {
    width: 66.6666666667%;
  }

  .nine.columns {
    width: 75%;
  }

  .ten.columns {
    width: 83.3333333333%;
  }

  .eleven.columns {
    width: 91.6666666667%;
  }

  .twelve.columns {
    width: 100%;
  }

  .one-third.column {
    width: 30.6666666667%;
  }

  .two-thirds.column {
    width: 65.3333333333%;
  }

  .one-half.column {
    width: 50%;
  }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.3333333333%;
  }

  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 16.6666666667%;
  }

  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 25%;
  }

  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 33.3333333333%;
  }

  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 41.6666666667%;
  }

  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 50%;
  }

  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 58.3333333333%;
  }

  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 66.6666666667%;
  }

  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 75%;
  }

  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 83.3333333333%;
  }

  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 91.6666666667%;
  }

  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 33.3333333333%;
  }

  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 66.6666666667%;
  }

  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 50%;
  }
}

@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media (min-width: 1190px) {
  .container {
    width: 1140px;
  }
}

/* 2. Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.8em; /* currently ems cause chrome bug misinterpreting rems on body element */
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: #444444;
}

/* 3. Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  /*    font-family: 'Raleway', sans-serif;*/
}

h1 {
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: 0;
}

h3 {
  font-size: 3.2rem;
  line-height: 4rem;
  letter-spacing: 0;
}

h4 {
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: 0;
}

h5 {
  font-size: 2.0rem;
  line-height: 2.5rem;
  letter-spacing: 0;
}

p {
  margin: 0;
}



/* 4. Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  text-decoration: none;
  color: #ff7300;
  color: #3da3dc;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
  color: #e66800;
  color: #3b95c8;

}

a.social-link {
  color: #4d4d4d;
}
a.social-link:hover {
  text-decoration: none;
}
a.u-no-underline:hover {
  text-decoration: none;
}

/* 5. Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
  display: inline-block;
  padding: 0 4rem;
  text-align: center;
  font-weight: 400;
  line-height: 44px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 100px;
  cursor: pointer;
  box-sizing: border-box;
  border:1px solid #ccc;
  color: #ff7300;
  color: #9ad017;
  color: #7ba612;
  color: #8bbc15;
  color: #6c6c6c;
}

.button:hover {
  color: #444;
}

.button.small {
  line-height: 34px;
  border:1px solid #ccc;
  font-size: 14px;
}

.button:hover,
.button:focus {
  outline: 0;
  text-decoration: none;
  background-color: #eee;
}

.button.green {
  background-color: #9ad017;
  border-color: #9ad017;
  color: #fff;
}
.button.green:hover {
  background-color: #8bbc15;
  border-color: #8bbc15;
  color: #fff;
}

.button.blue {
  background-color: #3da3dc;
  border-color: #3da3dc;
  color: #fff;
}
.button.blue:hover {
  background-color: #3b95c8;
  border-color: #3b95c8;
  color: #fff;
}

.button.red {
  background-color: #ff7300;
  border-color: #ff7300;
  color: #fff;
}
.button.red:hover {
  background-color: #e66800;
  border-color: #e66800;
  color: #fff;
}

.button-video.play {
  color: #3da3dc;
  text-decoration: none;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  min-width: 1px;
  margin: 0;
  text-indent: 0;
  white-space: normal;
  height: auto;
  min-height: 1px;
  max-height: 999999px;
}

.button-video.play span {
  padding-left: 26px;
  padding-right: 10px;
}

.button-video.play:before {
  margin: auto 0;
  position: absolute;
  font-size: .611111111em;
  left: 4px;
  bottom: -6px;
  right: 0;
  width: 14px;
  height: 20px;
  content: "\25BA";
  max-height: 999999px;
}

.button-video.play:after {
  position: absolute;
  bottom: -1px;
  left: 0px;
  border-radius: 18px/18px;;
  border: solid 1px #3da3dc;
  width: 18px;
  height: 18px;
  content: "";
}

.button-video.play:before {
  background: none
}

.button-video.play:hover {
  color: #3b95c8;
}

.button-video.play:hover span {
  text-decoration: underline;
}

.button-video.play:hover:after {
  border: solid 1px #3b95c8;
  text-decoration: none;
}

.button-video.play:hover:before {
  background: none;
  color: #3b95c8;
  text-decoration: none;
}

/* 6. Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 46px;
  padding: 0 1rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: none;
  box-sizing: border-box;
  color: #333;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 6rem;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #ccc;
  outline: 0;
}

input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="text"]:disabled,
input[type="tel"]:disabled,
input[type="url"]:disabled,
input[type="password"]:disabled,
textarea:disabled,
select:disabled {
  cursor: default !important;
  opacity: 0.5;
  background-color: #fafafa;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

/* placeholder color */
::-webkit-input-placeholder {
  color: #6c6c6c;
  font-family: "Open Sans", sans-serif;
}

:-moz-placeholder { /* Firefox 18- */
  color: #6c6c6c;
  font-family: "Open Sans", sans-serif;
}

::-moz-placeholder {  /* Firefox 19+ */
  color: #6c6c6c;
  font-family: "Open Sans", sans-serif;
}

:-ms-input-placeholder {
  color: #6c6c6c;
  font-family: "Open Sans", sans-serif;
}

/* 7. Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol, ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
}

/* 8. Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 18px;
  white-space: nowrap;
  background: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 6px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* 9. Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  text-align: left;
  border-bottom: 1px solid #ccc;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* 10. Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
}

input,
textarea,
select,
fieldset {
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin:0;
}

/* 11. Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-hidden, .hidden {display:none}

.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-half-width {
  width: 50%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

.u-border {
  border:1px solid #ccc;
}

.u-border-rounded {
  border-radius: 6px;
}

/* spacing utilities */
.u-margin-top-eight {
  margin-top: 1rem;
}

.u-margin-top-quarter {
  margin-top: 2rem;
}

.u-margin-top-half {
  margin-top: 4rem;
}

.u-margin-top-three-quarters {
  margin-top: 6rem;
}

.u-margin-top {
  margin-top: 8rem;
}

.u-margin-top-five-quarters {
  margin-top: 10rem;
}

.u-margin-top-double {
  margin-top: 16rem;
}

.u-margin-top-tripple {
  margin-top: 24rem;
}

.u-margin-top-quad {
  margin-top: 32rem;
}

.u-margin-bottom-eight {
  margin-bottom: 1rem;
}

.u-margin-bottom-quarter {
  margin-bottom: 2rem;
}

.u-margin-bottom-half {
  margin-bottom: 4rem;
}

.u-margin-bottom-three-quarters {
  margin-bottom: 6rem;
}

.u-margin-bottom {
  margin-bottom: 8rem;
}

.u-margin-bottom-five-quarters {
  margin-bottom: 10rem;
}

.u-margin-bottom-double {
  margin-bottom: 16rem;
}

.u-margin-bottom-tripple {
  margin-bottom: 24rem;
}

.u-margin-bottom-quad {
  margin-bottom: 32rem;
}

.u-margin-left-eight {
  margin-left: 1rem;
}

.u-margin-left-quarter {
  margin-left: 2rem;
}

.u-margin-left-half {
  margin-left: 4rem;
}

.u-margin-left-three-quarters {
  margin-left: 6rem;
}

.u-margin-left {
  margin-left: 8rem;
}

.u-margin-left-five-quarters {
  margin-left: 10rem;
}

.u-margin-left-double {
  margin-left: 16rem;
}

.u-margin-left-tripple {
  margin-left: 24rem;
}

.u-margin-left-quad {
  margin-left: 32rem;
}

.u-margin-right-eight {
  margin-right: 1rem;
}

.u-margin-right-quarter {
  margin-right: 2rem;
}

.u-margin-right-half {
  margin-right: 4rem;
}

.u-margin-right-three-quarters {
  margin-right: 6rem;
}

.u-margin-right {
  margin-right: 8rem;
}

.u-margin-right-five-quarters {
  margin-right: 10rem;
}

.u-margin-right-double {
  margin-right: 16rem;
}

.u-margin-right-tripple {
  margin-right: 24rem;
}

.u-margin-right-quad {
  margin-right: 32rem;
}

.u-margin-none {
  margin: 0 0 0 0;
}

.u-padding-eight {
  padding: 1rem;
}

.u-padding-quarter {
  padding: 2rem;
}

.u-padding-half {
  padding: 4rem;
}

.u-padding-three-quarters {
  padding: 6rem;
}

.u-padding {
  padding: 8rem;
}

.u-padding-five-quarters {
  padding: 10rem;
}

.u-padding-double {
  padding: 16rem;
}

.u-padding-tripple {
  padding: 24rem;
}

.u-padding-quad {
  padding: 32rem;
}

.u-padding-top-eight {
  padding-top: 1rem;
}

.u-padding-top-quarter {
  padding-top: 2rem;
}

.u-padding-top-half {
  padding-top: 4rem;
}

.u-padding-top-three-quarters {
  padding-top: 6rem;
}

.u-padding-top {
  padding-top: 8rem;
}

.u-padding-top-five-quarters {
  padding-top: 10rem;
}

.u-padding-top-double {
  padding-top: 16rem;
}

.u-padding-top-tripple {
  padding-top: 24rem;
}

.u-padding-top-quad {
  padding-top: 32rem;
}

.u-padding-bottom-eight {
  padding-bottom: 1rem;
}

.u-padding-bottom-quarter {
  padding-bottom: 2rem;
}

.u-padding-bottom-half {
  padding-bottom: 4rem;
}

.u-padding-bottom-three-quarters {
  padding-bottom: 6rem;
}

.u-padding-bottom {
  padding-bottom: 8rem;
}

.u-padding-bottom-five-quarters {
  padding-bottom: 10rem;
}

.u-padding-bottom-double {
  padding-bottom: 16rem;
}

.u-padding-bottom-tripple {
  padding-bottom: 24rem;
}

.u-padding-bottom-quad {
  padding-bottom: 32rem;
}

.u-padding-left-eight {
  padding-left: 1rem;
}

.u-padding-left-quarter {
  padding-left: 2rem;
}

.u-padding-left-half {
  padding-left: 4rem;
}

.u-padding-left-three-quarters {
  padding-left: 6rem;
}

.u-padding-left {
  padding-left: 8rem;
}

.u-padding-left-five-quarters {
  padding-left: 10rem;
}

.u-padding-left-double {
  padding-left: 16rem;
}

.u-padding-left-tripple {
  padding-left: 24rem;
}

.u-padding-left-quad {
  padding-left: 32rem;
}

.u-padding-right-eight {
  padding-right: 1rem;
}

.u-padding-right-quarter {
  padding-right: 2rem;
}

.u-padding-right-half {
  padding-right: 4rem;
}

.u-padding-right-three-quarters {
  padding-right: 6rem;
}

.u-padding-right {
  padding-right: 8rem;
}

.u-padding-right-five-quarters {
  padding-right: 10rem;
}

.u-padding-right-double {
  padding-right: 16rem;
}

.u-padding-right-tripple {
  padding-right: 24rem;
}

.u-padding-right-quad {
  padding-right: 32rem;
}
.u-padding-none {
  padding: 0 0 0 0;
}

/* text position */
.u-text-left {
  text-align: left;
}

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

.u-text-right {
  text-align: right;
}

/* text color */
.u-text-red {
  color: #ff7300;
}

.u-text-green {
  color: #9ad017;
}

.u-text-blue {
  color: #33a3dc;
}

.u-text-white {
  color: #fff;
}

.u-text-normal {
  color: #6c6c6c;
}

.u-text-black {
  color: #000;
}

.u-text-dark {
  color: #353740;
}

.u-text-lighter {
  color: #ccc;
}

.u-text-light {
  color: #e6e6e6;
}

/* text size */
.u-text-smaller {
  font-size: 85%;
  line-height: 200%;
}

.u-text-larger {
  font-size: 125%;
}

/* overlays */
.u-overlay-light {
  background-color: rgba(0, 0, 0, .2);
}

.u-overlay-lighter {
  background-color: rgba(0, 0, 0, .35);
}

.u-overlay {
  background-color: rgba(0, 0, 0, .5);
}

.u-overlay-darker {
  background-color: rgba(0, 0, 0, .65);
}

.u-overlay-dark {
  background-color: rgba(0, 0, 0, .8)
}

/* backgrounds */
.u-bg-grey {
  background-color: #ccc;
}

.u-bg-light-grey {
  background-color: #f2f2f2;
}
.u-bg-light-blue {
  /*background-color: #d7e6f6;*/
  background-color: #eaf1fa;
}

.u-bg-dark {
  background-color: #4d4d4d;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-none {
  background-color: transparent;
}

/* 12. Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin: 0;
  padding: 0;
  border-width: 0;
  border-top: 1px solid #ccc;
}

.u-circle {border-radius:100%;overflow:hidden;}

/* 13. Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/* 14. Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
  html {
    font-size: 50%;
  }
}

/* Larger than desktop */
@media (min-width: 970px) {
  html {
    font-size: 50%;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}

@media (max-width: 768px) {
  .u-hide-mobile {
    display: none;
  }
}

/* 15. Shadows
–––––––––––––––––––––––––––––––––––––––––––––––––– */
