@charset "UTF-8";
input, button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="radio"] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}
input[type="checkbox"] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
div, section, h1, h2, p {
	box-sizing: border-box;
}
img {
	display: block;
	width: 100%;
}
html {
	height: 100%;
	width: 100%;
}
body {
	line-height: 1;
	font-size: 18px;
	margin: 0px;
	padding: 0px;
	min-height: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	background: #fff;
	color: #091f40;
	width: 100%;
	overflow-x: hidden;
}
::selection {
	background: #248cbc;
	color: #fff;
}
img::selection {
	background: #248cbc;
}
#selections {
  display: grid;
  width: 100%;
  height: 100vh;
  grid-template-rows: 5vh 1fr 1fr;
}
#selections-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5em;
  padding: 1em;
  text-align: center;
  background: linear-gradient(0deg, #334675 0%, #1a2f64 70%);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transform: scale(1);
  transition: filter 0.4s ease-out, transform 0.4s ease-out;
  z-index: 0;
}
#dotcom-background {
  background-image: url('images/selection-dotcom.jpg');
  border-bottom: 1px solid #fff;
}
#in-store-background {
  background-image: url('images/selection-in-store.jpg');
  border-top: 1px solid #fff;
}
.section-bar {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  padding: 1.5em;
  background: rgba(0,0,0,0.7);
  box-shadow: 0 8px 6px rgba(0,0,0,0.2), 0 -8px 6px rgba(0,0,0,0.2);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transform: translateY(-50%);
}
.button {
  display: inline-block;
  margin: 2em 0 0 0;
  padding: 1em 2em;
  background: #fff;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
	transition: border-radius 0.3s ease-out;
}
.section-bar .button + .button {
	margin-left: 2em;
}
.section-bar h2 {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 2.5em;
  text-transform: uppercase;
}
.section-bar h2 span, .section-bar .button {
  display: inline-block;
  position: relative;
  z-index: 10;
}
.section-bar:before {
  content: '';
  display: block;
  width: 120%;
  height: 100%;
  background: linear-gradient(0deg, #334675 0%, #1a2f64 70%);;
  position: absolute;
  bottom: 0em;
  left: -10%;
  z-index: 0;
  opacity: 1;
  transform: scaleX(1);
  transition: transform 0.4s ease-out, opacity 0.3s ease-out;
}
@media (hover:hover) {
  section:hover .section-background {
    filter: grayscale(0)!important;
    transition: filter 0.4s ease-out, transform 0.8s ease-out;
  }
  section:hover .section-bar:before {
    opacity: 0;
    transform: scaleX(0);
  }
  .button:hover {
    box-shadow: 0 10px 10px rgba(0,0,0,0.4);
		border-radius: 2em;
    transition: border-radius 0.3s ease-out;
  }
}
@media screen and (max-width:450px) {
  #selections {
    grid-template-rows: 8vh 1fr 1fr;
  }
  #selections-intro {
    font-size: 1.2em;
  }
  .section-bar h2 {
    font-size: 1.7em;
  }
  #dotcom-background {
    background-image: url('images/selection-dotcom.jpg') !important;
  }
  #in-store-background {
    background-image: url('images/selection-in-store.jpg') !important;
  }
  section .section-background {
    filter: grayscale(0)!important;
    transition: filter 0s, transform 0s;
  }
  section .section-bar:before {
    opacity: 0;
    transform: scaleX(0);
  }
}
