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;
}
button:focus, a:focus, img:focus, li:focus, input:focus, div:focus {
  outline: none !important;
}
a {
  text-decoration: none;
  color: inherit;
}
body * {
  box-sizing: border-box;
}
input[type="text"] {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  font-weight: 400;
}
textarea {
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 38px;
  color: #fff;
  font-weight: 400;
}
button {
  border: none;
  font-family: inherit;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
}
::placeholder {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 38px;
}

::-ms-input-placeholder { /* Edge 12 -18 */
  font-family: "Inter", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 38px;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cover,
.contain {
  overflow: hidden;
}
.cover > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.contain > img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.flex-sb,
.flex-sa,
.flex-c,
.flex-r,
.flex-l,
.flex-t,
.flex-b,
.flex-m,
.flex-s {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.flex-sb {
  justify-content: space-between;
}
.flex-sa {
  justify-content: space-around;
}
.flex-c {
  justify-content: center;
}
.flex-fs {
  justify-content: flex-start;
}
.flex-r {
  justify-content: flex-end;
}
.flex-l {
  justify-content: start;
}
.flex-t {
  align-items: flex-start;
}
.flex-b {
  align-items: flex-end;
}
.flex-m {
  align-items: center;
}
.flex-s {
  align-items: stretch;
}
.container {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  width: 1740px;
}
.nowrap {
  flex-wrap: nowrap;
}


