/*
 * Base
 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
 * Variables
 */
/*
 * Mixins
 */
/**
 * @section Functions
 */
/**
 * rem/em Calculator
 *
 * target / context = result
 * @param {$target}  Target size in pixels (ie. 32px)
 * @param {$context} Font size providing context for proportion, defaults to $base-font)
 * @param {$unit} unit for rem/em output, defaults to 'em'
 */
/**
 * Exponent Calculator
 *
 * https://gist.github.com/scottkellum/1160816
 * @param {$base} base number
 * @param {$exponent} exponent/power number
 */
/**
 * Type Scale Calculator
 *
 * Create typographic scales
 * @param {$i} increment of scale; 0 is base
 * @param {$scale} scale ratio; defaults to 1.25
 */
/**
 * Typography
 */
html {
  font-size: 13px;
}

body {
  font-style: normal;
  font-variant: normal;
  font-weight: 150;
  font-size: 1em;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  text-align: center;
}

@media screen and (min-width: 600px) {
  body {
    font-size: 1.618em;
  }
}

/**
 * @section Headings
 */
h1,
h2,
h3,
h4
 {
  font-family: "Montserrat", sans-serif;
  font-weight: 250;
  color: #0000;
  text-align: center;
}

h1 {
  font-size: 6.85353em;
}

h2 {
  font-size: 4.2358em;
}

h3 {
  font-size: 2.61792em;
}

h4 {
  font-size: 1.618em;
}

/**
 * @section Inline
 */
p {
  margin-bottom: 0 0 1 + "em";
  text-align: center;
}

.form-example {
  padding: 3em 0;
}

form {
  width: 100%;
  text-align: left;
}
form input,
form textarea {
  display: block;
  border-radius: 4px;
   border: 2px solid #93DCFD;
   width: 100%;
   height: 2em;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="checkbox"],
input[type="radio"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
input[type="email"]:focus, input[type="email"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="text"]:focus,
input[type="text"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="checkbox"]:focus,
input[type="checkbox"]:active,
input[type="radio"]:focus,
input[type="radio"]:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
  outline: 0;
}

input[type="checkbox"],
input[type="radio"] {
  border: 1px solid #4BC6FD;
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: #48C4FC;
}

input[type="checkbox"] {
  border-radius: 0;
}
input[type="checkbox"]:checked {
  position: relative;
  background: transparent;
}
input[type="checkbox"]:checked::after {
  margin: 0;
  padding: 0;
  content: '\2713';
  display: block;
  color: #48C4FC;
  position: absolute;
  top: -1px;
  left: 1px;
}

/*
 * Layouts
 */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.row {
  margin-left: -1em;
  margin-right: -1em;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}

[class^="col-"] {
  width: 100%;
  float: left;
  min-height: 1px;
  padding: 0 1em;
}

@media screen and (min-width: 600px) {
  .col-1 {
    width: 8.33333%;
  }
}

@media screen and (min-width: 600px) {
  .col-2 {
    width: 16.66667%;
  }
}

@media screen and (min-width: 600px) {
  .col-3 {
    width: 25%;
  }
}

@media screen and (min-width: 600px) {
  .col-4 {
    width: 33.33333%;
  }
}

@media screen and (min-width: 600px) {
  .col-5 {
    width: 41.66667%;
  }
}

@media screen and (min-width: 600px) {
  .col-6 {
    width: 50%;
  }
}

@media screen and (min-width: 600px) {
  .col-7 {
    width: 58.33333%;
  }
}

@media screen and (min-width: 600px) {
  .col-8 {
    width: 66.66667%;
  }
}

@media screen and (min-width: 600px) {
  .col-9 {
    width: 75%;
  }
}

@media screen and (min-width: 600px) {
  .col-10 {
    width: 83.33333%;
  }
}

@media screen and (min-width: 600px) {
  .col-11 {
    width: 91.66667%;
  }
}

@media screen and (min-width: 600px) {
  .col-12 {
    width: 100%;
  }
}

/*
 * Modules
 */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0 none;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font: inherit;
  padding: 0.5em 1em;
  margin-bottom: 0.5em;
  background-color: #c7c7c7;
  border-radius: 4px;
  text-color: white;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background-color: #00Bfff;
}
.button:focus, .button:active,
button:focus,
button:active,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="reset"]:focus,
input[type="reset"]:active,
input[type="button"]:focus,
input[type="button"]:active {
  outline: none;
  box-shadow: 0 0 1px 3px rgba(76, 130, 246, 0.5);
}

/*
 * Pages
 */
.grid-example {
    padding: 3em 0;
}

.grid-example .row {
  margin-bottom: 1em;
}
.grid-example [class^='col-'] {
  min-height: 3em;
  text-align: center;
  background-color: #97DEFE;
  border-radius: 4px;
  padding: 1em 0;
}

.form-example form {
  margin: 2em auto 0;
  padding: 0 1em;
}
.form-example form input,
.form-example form textarea {
  margin: 0 0 0.5em;
}

.mq-example {
    padding: 3em 0;
}

.utilites-example {
    padding: 2em 0;
}

.button-example {
    padding: 3em 0;
}
/*# sourceMappingURL=style.css.map */
