/* *
 * CSS files with the .module.css suffix will be treated as CSS modules
 * and scoped locally.
 */

html {
  background-color: #424242;
  background-image: url('/img/bodybg.png');
  background-repeat: repeat;
  padding-left: 0;
  padding-right: 0;
}

body {
  background: none;
  font-family: sans-serif;
}

.seo {
  display: none;
}

.section {
  background: #fcfcfc;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: center;
  color: #212529;
}

.img-border {
  padding: 2px;
}

/* Section Background */
section.info {
  background: #145468;
  color: #f0f0f0;
}

section.banner {
  padding: 0px;
  overflow: auto;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  text-align: left;
}

section.banner img {
  border-radius: 0px;
  vertical-align: middle;
}

section.banner p {
  font-size: 20px;
  font-weight: 350;
}

.section .title {
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.section .desc {
  font-size: 18px;
  font-weight: 350;
  color: #555454;
}

section.info .desc {
  color: #eaeaea;
}

.section img {
  border-radius: 6px;
  vertical-align: middle;
  width: 100%;
}

.text-success {
  color: rgb(51, 136, 132)
}

.text-info {
  color: rgb(50, 108, 133)
}

.slogan {
  font-size: 24px;
  font-weight: 500;
  color: rgb(22, 94, 88);
}

.slogan-desc {
  font-size: 16px;
  font-weight: 350;
  color: #555454;
}

section .content {
  margin: 26px;
}

section .button-host {
  margin-left: 10px;
  margin-right: 10px;
}

a .outline {
  appearance: button;
  border-color: #2898e8;
  height: 34px;
  font-weight: 400;
  font-size: 16px;
  background: none;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  color: #2898e8;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-font-smoothing: antialiased;
}

a:hover .outline { 
  background-color: #6e8312;
  color: white;
  border: none;
}

a .outline-secondary {
  appearance: button;
  border-color: #808080;
  height: 32px;
  font-weight: 400;
  font-size: 16px;
  background: none;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  color: #808080;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-font-smoothing: antialiased;
}

a:hover .outline-secondary { 
  background-color: #6e8312;
  color: white;
  border: none;
}

.m-4 {
  margin: 1.5rem !important;
}

.mx-3 {
  margin: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-2 {
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}