/*<editor-fold desc="Basic">*/
html, body {
  height: 100%;
}

body {
  font-size: 14px;
  color: #000;
  font-family: "Montserrat Regular", Arial, sans-serif;
  user-select: none;
  overflow-y: auto;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: #EEE;
}
body::-webkit-scrollbar-track {
  background-color: #CCC;
}
body::-webkit-scrollbar-thumb {
  height: 25%;
  background-color: #000;
}

/*</editor-fold>*/
/*<editor-fold desc="Header/Footer">*/
header {
  display: block;
  height: 50px;
  border-top: 5px solid #000;
  border-bottom: 1px solid #000;
}
header .well {
  display: flex;
  height: inherit;
  width: 1350px;
  margin: 0 auto;
}
header .well h1 {
  margin: auto 0;
}
header .well ul::after {
  content: "";
  display: block;
  clear: both;
}
header .well ul {
  margin: auto 10px auto auto;
}
header .well ul li {
  display: inline-block;
  float: left;
}
header .well ul li a {
  display: block;
  padding: 10px;
}

footer .well {
  display: block;
  max-width: 1350px;
  min-height: 50px;
  margin: 0 auto;
  padding: 1em 0;
}
footer .well ul::after {
  content: "";
  display: block;
  clear: both;
}
footer .well ul li {
  display: inline-block;
  float: left;
}
footer .well ul li a {
  display: inline-block;
  padding: 10px;
}
footer .well .disclaimer {
  display: block;
  padding: 10px;
  font-size: 10px;
  color: #CCC;
}
footer .foot-note {
  display: block;
  background: #000;
  color: #FFF;
  text-wrap: wrap;
  overflow: hidden;
  white-space: nowrap;
}
footer .foot-note p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  margin: 0 auto;
  white-space: nowrap;
  position: relative;
  left: -5%;
}

/*</editor-fold>*/
/*<editor-fold desc="Home Page">*/
.deck-home {
  display: block;
}
.deck-home .splash {
  display: block;
  height: 60vh;
}
.deck-home .splash .well {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-template-areas: "grid1 grid2";
  margin: 0 auto;
  max-width: 1350px;
  height: 100%;
}
.deck-home .splash .well .col {
  display: block;
  height: inherit;
}
.deck-home .splash .well .col:first-child {
  grid-area: grid2;
}
.deck-home .splash .well .col:last-child {
  grid-area: grid1;
  display: flex;
}
.deck-home .splash .well .col .image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  background: url("../images/brand/img-1.png") center no-repeat;
  background-size: contain;
}
.deck-home .splash .well .col .content {
  display: block;
  width: 100%;
  background: #FFF;
  padding: 1.5em;
  margin: auto 0;
}
.deck-home .splash .well .col .content h1 {
  font-size: 5em;
  text-transform: uppercase;
}
.deck-home .splash .well .col .content p {
  line-height: 19px;
  padding-top: 10px;
}
.deck-home .deck-layer {
  display: block;
  padding: 10px;
  min-height: 350px;
}
.deck-home .deck-layer .well {
  margin: 0 auto;
  max-width: 1350px;
  height: 100%;
}
.deck-home .deck-layer.info {
  display: block;
  min-height: 250px;
  background: #000;
  padding: 2em 0 4em;
}
.deck-home .deck-layer.info::after {
  content: "";
  display: block;
  clear: both;
}
.deck-home .deck-layer.info h2 {
  font-size: 28px;
  text-align: left;
  padding: 10px 0;
  color: #FFF;
  font-family: "Montserrat Thin", Arial, sans-serif;
}
.deck-home .deck-layer.info h2 span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.deck-home .deck-layer.info .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1em;
}
.deck-home .deck-layer.info .wrap .col {
  display: block;
  background: #FFF;
  min-height: 150px;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
}
.deck-home .deck-layer.info .wrap .col h3 {
  font-size: 18px;
  padding: 10px;
}
.deck-home .deck-layer.info .wrap .col p {
  line-height: 19px;
  padding: 5px 10px;
}
.deck-home .deck-layer.info .wrap .col a {
  display: table;
  margin: 10px;
  padding: 10px;
  background: #000;
  color: #FFF;
}

/*</editor-fold>*/
/*<editor-fold desc="Soon Page">*/
.deck-soon {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
}
.deck-soon .content {
  margin: auto;
  text-align: center;
}
.deck-soon .content .app-logo {
  display: table;
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.deck-soon .content .app-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/app-logo-1.png") center no-repeat;
  background-size: cover;
}
.deck-soon .content h1 {
  display: block;
  font-size: 28px;
  color: #FFF;
}
.deck-soon .content h1 span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}
.deck-soon .content .message {
  display: none;
  padding: 10px;
  margin-top: 10px;
  color: #FFF;
}
.deck-soon .content .message p {
  text-decoration: underline;
}
.deck-soon .content ul {
  display: table;
  margin: 10px auto;
}
.deck-soon .content ul::after {
  content: "";
  display: block;
  clear: both;
}
.deck-soon .content ul li {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.deck-soon .content ul li a {
  display: block;
  padding: 10px;
  font-size: 24px;
  color: #FFF;
}

/*</editor-fold>*/

/*# sourceMappingURL=clout.css.map */
