@font-face {
  font-family: 'CoreSansG65Bold';
  src: url('../webfonts/36708F_0_0.eot');
  src: url('../webfonts/36708F_0_0.eot?#iefix') format('embedded-opentype'), url('../webfonts/36708F_0_0.woff2') format('woff2'), url('../webfonts/36708F_0_0.woff') format('woff'), url('../webfonts/36708F_0_0.ttf') format('truetype');
}

@font-face {
  font-family: 'CoreSansGNeon';
  src: url('../webfonts/36708F_1_0.eot');
  src: url('../webfonts/36708F_1_0.eot?#iefix') format('embedded-opentype'), url('../webfonts/36708F_1_0.woff2') format('woff2'), url('../webfonts/36708F_1_0.woff') format('woff'), url('../webfonts/36708F_1_0.ttf') format('truetype');
}

@font-face {
  font-family: 'CoreSansGR75ExtraBold-Italic';
  src: url('../webfonts/36708F_2_0.eot');
  src: url('../webfonts/36708F_2_0.eot?#iefix') format('embedded-opentype'), url('../webfonts/36708F_2_0.woff2') format('woff2'), url('../webfonts/36708F_2_0.woff') format('woff'), url('../webfonts/36708F_2_0.ttf') format('truetype');
}

@font-face {
  font-family: 'CoreSansGR75ExtraBold';
  src: url('webfonts/36708F_3_0.eot');
  src: url('webfonts/36708F_3_0.eot?#iefix') format('embedded-opentype'), url('webfonts/36708F_3_0.woff2') format('woff2'), url('webfonts/36708F_3_0.woff') format('woff'), url('webfonts/36708F_3_0.ttf') format('truetype');
}

/**
*  CSS RESET
**/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: 'CoreSansG65Bold', sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: yellow;
}

/**
*  CUSTOM STYLES
**/

:root {
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
  font-family: 'CoreSansG65Bold', sans-serif;
}

h1 {
  margin-top: .67rem;
  font-size: 3.5082rem;
  line-height: 1.1972;
  margin: 1.4rem 0;
}

h2 {
  margin-top: 2.1rem;
  font-size: 2.3125em;
  line-height: 1.15;
}

small+h2 {
  margin-top: 0;
}

h3 {
  font-size: 1.75em;
  line-height: 1;
}

body {
  background-color: #93c3f8;
}

article {
  max-width: 30em;
  margin: 0 auto;
}

figure {
  padding: .7rem 0;
}

.past {
  text-decoration: line-through;
}

input.btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: 1px solid #f7f9bd;
  background-color: #f7f9bd;
  border-radius: .25rem;
  width: 49%;
  font-size: 16px;
  line-height: 12px;
  color: purple;
  text-transform: uppercase;
  font-family: inherit;
  letter-spacing: 2px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s;
}
a.input-btn{
  color: #f7f9bd;
}
input.btn:hover {
  background-color: #f9f86e;
}
a.input-btn:hover{
  color: #f9f863;
}

.flex-item.text ul {
  list-style: circle;
}

.flex-item.text li,
h3,
h2 {
  padding-bottom: 1rem;
}

main {
  padding: 1rem;
}

.flex-item.text {
  margin-left: .7rem;
}

.btn-container {
  max-width: 500px;
  margin: auto;
  margin-bottom: 1.4rem;
}

footer {
  min-height: 2.1rem;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes riseUp {
  from {
    padding-top: 20px;
  }
  to {
    padding-top: 0;
  }
}

@keyframes riseUp {
  from {
    padding-top: 20px;
  }
  to {
    padding-top: 0;
  }
}

.rise-up {
  -webkit-animation: riseUp ease-in 1;
  animation: riseUp ease-in 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.fade-in-slow {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.fade-in.one {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fade-in.two {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.fade-in.three {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.hidden-sm {
  display: none;
}

.flex-item.text {
  text-align: left;
}

@media (min-width: 800px) {
  :root {
    font-size: 18px;
  }
  .hidden-lg {
    display: none;
  }
  .hidden-sm {
    display: inline-block;
  }
  .flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 1.4rem 0;
  }
  .flex-item {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }
  .flex-item.image {
    //flex-grow: 2;
  }
  main {
    padding: 2rem;
  }
  img {
    max-width: 500px;
  }
}

@media (min-width: 1200px) {
  :root {
    font-size: 1.25em;
    line-height: 1.45
  }
  h1 {
    line-height: 1.24;
    margin: 1.45rem;
  }
  h2 {
    font-size: 1.769em;
  }
  h3 {
    font-size: 1.33em;
  }
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  height: 100%;
  width: 100%;
  color: purple;
}

body {
  text-align: center;
}

.container {
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: inherit;*/
}

h1 {
  /*vertical-align: middle;*/
}

.CoreSansG65Bold {
  font-family: CoreSansG65Bold;
  font-weight: normal;
  font-style: normal;
}

.CoreSansGNeon {
  font-family: CoreSansGNeon;
  font-weight: normal;
  font-style: normal;
}

.CoreSansGR75ExtraBold-Italic {
  font-family: CoreSansGR75ExtraBold-Italic;
  font-weight: normal;
  font-style: normal;
}

.CoreSansGR75ExtraBold {
  font-family: CoreSansGR75ExtraBold;
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: CoreSansG65Bold;
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: CoreSansGR75ExtraBold;
  font-weight: normal;
  font-style: normal;
}
a:hover{
  opacity: .85;
}
input.btn{
  cursor: pointer;
}