/* GLOBAL STYLES */
h1 {
  font-size: 30px;
  font-family: 'neutra';
  color: #6c6c6c;
  text-transform: capitalize;
}

h4 {
  font-family: 'trajan';
  color: #6c6c6c;
  font-size: 20px;
}

p,
a,
li,
h3 {

  font-size: 15px;
  font-family: 'neutra';
  color: #6c6c6c;
}

li {

  list-style: none;
  font-size: 20px;
}

p {

  font-size: 20px;
  margin: 0;
}

a:hover {
  color: #6c6c6c;
}

header {
  margin-bottom: 20px;
}

nav a {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 3px;
}

.logo img {
  display: block;
  margin: auto;
  max-width: 100%;
}

.navbar-collapse {
  justify-content: space-around;
  max-width: 100%;
}
.navbar-toggler {
    text-align:center;
}
.center {
    position: relative;          /* where the next element will be automatically positioned */
    display: inline-block;       /* causes element width to shrink to fit content */
    left: 50%;                   /* moves left side of image/element to center of parent element */
    transform: translate(-50%);  /* centers image/element on "left: 50%" position */
}

/* FONTS */
@font-face {
  font-family: neutra;
  src: url(fonts/NeutraDisplayTT-Medium.ttf);
}

@font-face {
  font-family: trajan;
  src: url(fonts/TrajanPro-Regular.ttf);
}

/* INDEX  */
video {
  width: 100%;
  max-width: 100%;
}

/* GALLERY */
.wrapper {
  position: relative;
  margin-bottom: 15px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  text-align: center;
}

.wrapper:hover .overlay {
  height: 100%;
}

.overlay p {
  text-transform: uppercase;
  color: white;
  font-size: 15px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-item {
  margin-bottom: 25px;
}

.gallery h3 {
  text-align: center;
}

.carousel-item img {
  display: block;
  margin: auto;
}

.flex-column img {
  margin-bottom: 15px;
}

.carousel-control-prev-icon {
  background-image: url('prev-button.png');
}

.carousel-control-next-icon {
  background-image: url('next-button.png');
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 34px;
  height: 34px;
}

.about img {
  height: 400px;
  width: auto;
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact a {
  font-size: 25px;
}

.contact img {
  display: block;
  width: 100%;
}

address {
  margin-top: 30%;
}

iframe {
  max-width: 100%;
}
  a#play-video img {
    width: 100%;
  }
/* MEDIA QUERIES ******************************************************/
@media (max-width: 575.98px) {}

@media (max-width: 767.98px) {
  .about img {
    display: block;
    margin: auto;
  }
}

@media (max-width: 991.98px) {}


@media screen and (max-width: 565px) {
  a#play-video img {
    width: 100%;
  }
}
