html {
  scroll-padding-top: 7rem;
}

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
}

.wrapper {
  overflow-x:hidden;
  position: relative
}

.black-bg {
  background-color: rgb(0, 0, 0);
}

.white-bg {
  background-color: white;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery .col {
  padding: 0;
}

.fadein img {
  object-fit: cover; 
  z-index: -1;
  opacity: 0;
  -webkit-animation-name: fade;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
  animation-name: fade;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

@-webkit-keyframes fade {
  /* distributing times evenly */
  0% {
      opacity: 0; 
  }
  20% {
      opacity: 1;
  }
  33% {
      opacity: 0;
  }
  100% {
      opacity: 0;
  }
}
@keyframes fade {
  /* distributing times evenly */
  0% {
      opacity: 0;
  }
  20% {
      opacity: 1;
  }
  33% {
      opacity: 0;
  }
  100% {
      opacity: 0;
  }
}

#f1 {
  -webkit-animation-delay: 0s;
}

#f2 {
  -webkit-animation-delay: 6s;
}

#f3 {
  -webkit-animation-delay: 12s;
}

#f4 {
  -webkit-animation-delay: 18s;
}

#f5 {
  -webkit-animation-delay: 24s;
}

.oswald-regular {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}


.navbar {
  transition: all 0.5s;
  transition-delay: 500ms;
  padding: 50px;
}

.navbar-scrolled {
  background-color: black;
  padding: 15px;
}

.navbar-nav .active { 
  text-decoration: underline; 
}

hr {
  width:10%;
  margin:0 auto;
  color:gold;
}

.swiper {
  width: auto;
  height: 500px;
  display: block;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiperTwo {
  width: auto;
  height: 400px;
}

@media (min-width: 624px) {
  .playwrite-de-sas-regular {
    font-family: "Playwrite DE SAS", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 45px;
    font-style: normal;
  }
  .oswald-bigger {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
  }
}

@media (max-width: 623px) {
  .playwrite-de-sas-regular {
    font-family: "Playwrite DE SAS", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 30px;
    font-style: normal;
  }
  .oswald-bigger {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
  }
}

