@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

body {
  background-color: #F8F9FA;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-width: 375px;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 3rem;
  text-align: center;
}

footer a {
  color: #ffffff;
}

.custom-navbar {
  padding: 25px;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.8);
}

.custom-navbar .nav-link {
  color: #ffffff !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.custom-navbar .nav-link:hover {
  transform: scale(1.1);
  transition: all 1s;
}

.custom-navbar .navbar-brand:hover {
  transform: scale(1.1);
  transition: all 1s;
}


.banner {
  padding: 0;
  position: relative;
}

.full {
  min-height: 100vh;
  height: 100vh !important;
}

.banner article {
  -moz-transition: opacity 1.5s ease, visibility 1.5s;
  -webkit-transition: opacity 1.5s ease, visibility 1.5s;
  -ms-transition: opacity 1.5s ease, visibility 1.5s;
  transition: opacity 1.5s ease, visibility 1.5s;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  text-align: center;
  width: 100%;
  z-index: 0;
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  visibility: hidden;
  background-attachment: scroll;
  background-position: center 0px;
  display: flex;
  flex-direction: column;
  justify-content:space-evenly;
}

.banner > article.visible {
  opacity: 1;
  visibility: visible;
}

.banner > article:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.35;
}

.banner > article .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  color: #ffffff;
}

.banner article .inner .text {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: .25rem;
}

.banner article .inner hr {
  width: 30%;
  color: #ffffff;
  margin: 1.75rem auto;
}


.banner article .inner .title {
  font-size: 5rem;
  margin-bottom: 0;
  color: #FFF;
  font-weight: 500;
}

.controller {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.controller > div[role="radiogroup"] {
  width: 150px;
  display: flex;
  justify-content: space-around;
}

.controller input[type="radio"] {
  transform: scale(1.5)
}

.custom-control-label {
  display: none !important;
}

.content {
  max-width: 1390px;
  margin: auto;
  min-height: 300px;
}

.custom-card {
  border-radius: 4px;
  box-shadow: 5px 5px 9px 0px #888888;
  height: 100%;
}

.card-subtitle {
  letter-spacing: 0.25rem;
  margin-bottom: 0.5rem;
}

.card-title {
  margin-bottom: 1.5rem;
}

.card-text {
  color: #6c757d!important;
  text-align: justify;
  line-height: 1.6rem;
  margin-bottom: 1.5rem;
  min-height: 102px;
}

.custom-card .card-body  hr {
  width: 40%;
  color: #6c757d!important;
  margin: 1rem auto;
}

.custom-card .card-body  {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.custom-card .card-body .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0px;
  width: 200px;
}

.custom-card img {
  height: 35vh;
  object-fit: cover; 
  object-position: top;
  border-radius: 0px;
}

.imprint {
  background-color: #ffffff;
  box-shadow: 5px 5px 9px 0px #888888;
  width: 70vw;
  padding: 5rem;
  text-align: center;
}

.imprint p {
  letter-spacing: .1rem;
  text-align: justify;
}