main {
  margin-top: 50px;
}

.navbar {
  background-color: white;
  margin-top: 20px;
}

.nav-item {
  padding: 10px 70px 0 70px;
}

.navbar .navbar-nav .nav-link {
  color: #45007b;
  font-size: 1.1em;
}
.navbar .navbar-nav .nav-link:hover{
  color: #e6e2e6;
  background-color: #45007b;
}
.navbar-logo-centered .navbar-nav .nav-link{
  padding: .5em 1em;
}


a:link {
  color: #4ca8ff;
}

.featurette {
  padding: 35px 0 45px 0;
}

h1, h2, h3, nav {
  text-align: center;
  padding: 20px 0 20px 0;
  font-family: 'Merriweather', serif;
}

p {
  font-family: 'Open Sans', sans-serif;
}

.center-text {
  text-align: center;
}

.contact {
  background-color: #45007b;
}

.p-5 {
  padding: 6rem !important;
}

.py-5 {
  padding-top: 50rem !important;
  padding-bottom: 10rem !important;
}

.gallery-container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #45007b;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-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(69, 0, 123, 0.8);
}

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

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: url("images/hero-image.jpg");

  /* Set a specific height */
  height: 100%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
}

.image-container {
  position: relative;
  width: auto;
  padding: 20px;
}

.image {
  display: block;
  width: 375px;
  height: auto;
  padding: 0;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #45007b;

}

.image-container:hover .overlay {
  opacity: 0.75;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 75%;
}