/* CSS RESET */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
a,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

p {
  width: 100%; /* because IE does not understand boundaries */
}

/* CUSTOM FONTS */

@font-face {
  font-family: 'roboto';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/RobotoCondensed-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'robotoBold';
  font-weight: bold;
  font-style: bold;
  src: url('../fonts/RobotoCondensed-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'nutmeg';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/NutmetHeadline-Regular.otf') format('opentype');
}

/* PAGE STRUCTURE */

body {
  line-height: 1;
  height: 100%;
  width: 100%;
  background-color: #cccccc;
  color: #6d6e71;
  font-size: 15px;
  font: 15px Helvetica, sans-serif;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #fff;
}

section {
  display: flex;
  align-items: center;
  max-width: 532px;
  width: 100%;
  padding: 1rem 0;
}

section {
  flex-direction: column;
  justify-content: center;
}

/* DEFAULT STYLES */

a,
a:visited {
  color: #0e96ff;
}

p {
  line-height: 150%;
  text-align: center;
}

p.terms {
  font-size: 0.75rem;
}

h1 {
  font-size: 1.375rem;
  text-transform: capitalize;
  line-height: 150%;
  text-align: center;
}

h1.heading {
  text-transform: uppercase;
}

.cta {
  background: #c00;
  box-shadow: 0 1px 0 0 #000;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
  width: 292px;
  font-size: 1.625rem;
  border: 2px solid #e00;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}

.cta:hover {
  background: #e00000;
}

.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

img.logo {
  height: 2.5rem;
}

img.banner {
  max-width: 532px;
  width: 100%;
}

img.deposit {
  max-width: 526px;
  width: 100%;
  padding-bottom: 0.3rem;
}

img.deposit:last-child {
  padding-bottom: 0;
}

img.ico {
  max-width: 50px;
  width: 100%;
  padding: 10px 0;
}

.icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-top: 5px;
}

.icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.icon:nth-child(2),
.icon:nth-child(4) {
  border-left: 1px solid #0e96ff;
  height: 90px;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 532px) {
  img.deposit {
    padding: 0 0.3rem 0.3rem;
  }
}
