/* Vanta WebGL plugin effects */

#birdbox {
  position: absolute;
  width: 100%;
  height: 100% !important;
  z-index: -1;
  /*-webkit-filter: blur(1px);
  filter: blur(1px);*/
}

#dotsbox {
  position: absolute;
  width: 100%;
  height: 100% !important;
  z-index: -1;
  /*-webkit-filter: blur(1px);
  filter: blur(1px);*/
}

/*//////////////////////////////////////////*/


.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  border-radius: 20px;
  max-height: 90%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  overflow-y: scroll;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
      top: -300px;
      opacity: 0
  }

  to {
      top: 0;
      opacity: 1
  }
}

@keyframes animatetop {
  from {
      top: -300px;
      opacity: 0
  }

  to {
      top: 0;
      opacity: 1
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover {
  color: rgb(255, 0, 0);
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #111111;
  color: white;
}

.modal-body {
  padding: 2px 16px;
  color: black;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #111111;
  color: white;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.modal.show {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

.modal-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 640px;
}

/*//////////////////////////////////////////*/


/* IMAGE CAROUSEL SLIDESHOW */

.mySlides {
  display: none;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.carouselText {
  color: #ffffff;
  font-size: 64px;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-shadow: 2px 2px 8px rgb(0, 0, 0);
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.carouselActiveImage,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
      opacity: .4
  }

  to {
      opacity: 1
  }
}

@keyframes fade {
  from {
      opacity: .4
  }

  to {
      opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 400px) {

  .prev,
  .next,
  .text {
      font-size: 11px
  }
}

/*//////////////////////////////////////////*/


/*  progress-bars  */

.b_label {
  color: rgb(255, 255, 255);
  margin-bottom: 9px;
  font-weight: 500;
}

.bar_group {
  position: relative;
  z-index: 0;
  padding: 0;
}

.bar_group__bar.thin:before,
.bar_group__bar.thick {
  display: block;
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 6px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  background: #E4E4E4;
  border-radius: 6px;
}

.bar_group__bar.thin {
  width: 0%;
  height: 6px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  background: #006eff;
  margin-bottom: 2em;
  -webkit-transition: width 1s;
  transition: width 1s;
  -moz-transition: width 1s;
  border-radius: 6px;
}

/*//////////////////////////////////////////*/