/* 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;
}

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;
}

@font-face {
  font-family: "MFred";
  src: url("/Assets/Fonts/MFred.woff2") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Heebo-Regular";
  src: url("/Assets/Fonts/Heebo-Regular.woff2") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Heebo-Bold";
  src: url("/Assets/Fonts/Heebo-Bold.woff2") format("opentype");
  font-weight: bold;
}
@font-face {
  font-family: "Heebo-Light";
  src: url("/Assets/Fonts/Heebo-Light.woff2") format("opentype");
  font-weight: lighter;
}
/* this smooths our fonts nicely on higher density screens */
html,
input {
  -webkit-font-smoothing: antialiased;
}

.valign-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px 1px 1px 1px 1px);
}

.text-eyebrow {
  font-family: Heebo-Bold;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  padding: 0px 0px 0px 20px;
}

/* Here I sequence the animation */
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
body {
  font-family: "Heebo-Regular", sans-serif;
}

section.store-content {
  width: 100vw;
  height: 100vh;
  flex-direction: column;
}

h2 {
  font-size: 12px;
  color: #2F62E0;
  line-height: 26px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  font-size: 30px;
  line-height: 36px;
  color: #020202;
  margin: 30px 0 45px 0;
}

a {
  width: 210px;
  height: 50px;
  border-radius: 100px;
  background-color: #F64040;
  color: #FFFFFF;
  font-family: "Heebo-Bold", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 30;
  transition: background-color 0.1s linear;
  position: relative;
  overflow: hidden;
}
a p {
  z-index: 10;
}
a img {
  display: inline-block;
  padding: 0 0 0 10px;
  z-index: 10;
}

.button-filler::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: #2F62E0;
  border-radius: 0%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.button-filler::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  border-radius: 50%;
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.button-filler:hover::before {
  transform: scale(1.2);
}

.button-filler:hover::after {
  transform: scale(1.1);
  opacity: 0;
}

section .window-store {
  padding-top: 100px;
}