@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.cdnfonts.com/css/rellyan-charlotte);
body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
}

.appMain {
  background-color: #000;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}

.topHeader {
  background: #000;
  position: relative;
  z-index: 2;
}

.navbar {
  white-space: nowrap;
  list-style: none;
  text-align: center;
  padding: 0;
  background: transparent;
  color: #999;
  z-index: 1;
}
.navbar .navbar-nav {
  margin: 0 auto;
  padding: 0;
}
.navbar .navbar-nav .nav-item {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  padding: 5px 10px;
  line-height: 30px;
  color: #999;
  transition: all 0.6s;
}
.navbar .navbar-nav .nav-item:hover {
  text-decoration: none;
  color: #000;
  background: #999;
}
.navbar .navbar-toggler {
  border: none;
  outline: 0;
  height: 40px;
}
.navbar .navbar-toggler:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}
.navbar .navbar-collapse.show {
  margin-bottom: 40px;
}

/* video background */
#background-video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

/* page content */
h1, h2, h3, h4 {
  font-weight: bold;
  text-align: center;
}

h1 {
  color: white;
  font-size: 30px;
  text-shadow: rgba(0, 0, 0, 0.5) -1px -1px 0px, rgba(0, 0, 0, 0.5) -1px 1px 0px, rgba(0, 0, 0, 0.5) 1px 1px 0px, rgba(0, 0, 0, 0.5) 1px -1px 0px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 25px;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.5) -1px -1px 0px, rgba(0, 0, 0, 0.5) -1px 1px 0px, rgba(0, 0, 0, 0.5) 1px 1px 0px, rgba(0, 0, 0, 0.5) 1px -1px 0px;
}

h3 {
  font-family: "Rellyan Charlotte", sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.5) -1px -1px 0px, rgba(0, 0, 0, 0.5) -1px 1px 0px, rgba(0, 0, 0, 0.5) 1px 1px 0px, rgba(0, 0, 0, 0.5) 1px -1px 0px;
}
@media (min-width: 468px) {
  h3 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  h3 {
    font-size: 75px;
  }
}

main {
  background-color: transparent;
  font-size: 2rem;
  padding: 10px;
  position: relative;
}
.slider {
  z-index: 1;
  position: relative;
}

.sliderContent {
  margin-top: 30vh;
}

.carousel-caption {
  top: 5%;
  right: 0%;
  left: 40%;
  bottom: unset;
}
@media (min-width: 468px) {
  .carousel-caption {
    top: 22%;
    right: 0%;
    left: 40%;
  }
}
@media (min-width: 768px) {
  .carousel-caption {
    top: 22%;
    right: 0%;
    left: 40%;
  }
}

.lightbox-carousel .carousel-inner .ratio {
  height: 100vh;
}

a.bigButton {
  text-decoration: none;
  display: inline;
  padding: 10px 20px;
  background: #EAAC1A;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}
@media (min-width: 768px) {
  a.bigButton {
    padding: 15px 30px;
  }
}
a.bigButton:hover {
  text-decoration: none;
  background: #d79d14;
}

.sliderButton {
  margin-top: 30px;
  text-align: center;
}
.sliderButton a.bigButton {
  font-size: 20px;
  padding: 10px 20px;
}

.challenge {
  margin-top: 40px;
}
.challenge .map img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.description {
  font-size: 20px;
  font-weight: 300;
  padding: 0 20px;
}

.challengeHeader {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  margin: 20px 0;
  color: #414141;
}

.challengeVideo {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.challengeVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.challengeForm {
  text-align: center;
  position: relative;
  width: 100%;
  height: 2000px;
}
.challengeForm iframe {
  width: 100%;
  height: 100%;
}

.completed {
  text-align: center;
  padding: 20px 0;
}
.completed .icon {
  width: 112px;
  height: 96px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
}
.completed .icon.cYes {
  background-image: url(/images/yes.jpg?5c80c3adda2ecfe7e2734aa8a56bec14);
}
.completed .icon.cNo {
  background-image: url(/images/no.jpg?3436f5761e2e6b816dd6103c63d5c74e);
}
.completed .icon.cWaiting {
  background-image: url(/images/waiting.jpg?b03646feb9512020ff3de1ce33e35e3d);
}
.completed .cText {
  padding: 0;
  font-family: "Rellyan Charlotte", sans-serif;
  font-size: 24px;
}
.completed .cText.cYes {
  color: #4e6636;
}
.completed .cText.cNo {
  color: #663636;
}
.completed .cText.cWaiting {
  color: #7fccf7;
}

.prices {
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
}
.prices .titleGiven {
  margin-top: 10px;
}
.prices .priceGiven {
  font-weight: bold;
}

.footer {
  padding: 40px 0;
  position: relative;
}
.footer .footerText {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-align: justify;
}
.footer .footerText a {
  color: #fff;
  text-decoration: underline;
}
.footer .footerLinks {
  text-align: right;
}
.footer .footerLinks a {
  display: inline-block;
  padding: 10px;
}

.chTitle {
  text-align: center;
  font-size: 24px;
}

.chImage img {
  width: 100%;
  min-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.chIframe {
  height: 650px;
  min-height: 650px;
}
.chIframe iframe {
  width: 100%;
  height: 100%;
}

.chIframeTitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.pImage {
  text-align: center;
}
.pImage img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}

.pName {
  text-align: center;
}

.pDesc {
  font-size: 18px;
  font-weight: 300;
}

.pDesc1 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.pDesc2 {
  text-align: justify;
  font-size: 18px;
  font-weight: 300;
}

.articleImages a {
  display: block;
  position: relative;
}
.articleImages img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .articleImages img {
    aspect-ratio: 1/1;
  }
}
.articleImages .articleImageText {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  text-align: center;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.5) -1px -1px 0px, rgba(0, 0, 0, 0.5) -1px 1px 0px, rgba(0, 0, 0, 0.5) 1px 1px 0px, rgba(0, 0, 0, 0.5) 1px -1px 0px;
  font-size: 20px;
  font-weight: 600;
  padding: 20px;
}

.articleFiles .articleFile {
  text-align: center;
}
.articleFiles img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .articleFiles img {
    aspect-ratio: 1/1;
  }
}
.articleFiles .articleFileText a {
  display: inline-block;
  text-align: center;
  color: #999;
  text-shadow: rgba(0, 0, 0, 0.5) -1px -1px 0px, rgba(0, 0, 0, 0.5) -1px 1px 0px, rgba(0, 0, 0, 0.5) 1px 1px 0px, rgba(0, 0, 0, 0.5) 1px -1px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px;
}
.articleFiles .articleFileText a:hover {
  color: #fff;
  text-decoration: none;
}
.articleFiles .articleFileText a i.i {
  font-size: 24px;
  vertical-align: top;
  margin-right: 10px;
}

.modal-backdrop.show {
  opacity: 1;
}

.bg-image {
  /* The image used */
  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(8px);
  /* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
