html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #f4f4f4;
  font-family: Arial, Helvetica, sans-serif;
}

#navbar-container {
  background-color: #333;
  color: white;
  display: block;
  width: 100%;
  height: 110px;
  top: 0px;
  text-align: center;
  transition: top 0.3s;
}

.side-bar {
  background-color: #171717;
  color: white;
  width: 0px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

.side-bar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}

.side-bar a:hover {
  color: #f1f1f1;
  cursor: pointer;
}

.side-bar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 30px;
  margin-left: 50px;
}

.side-bar .closebtn:hover {
  color: #f1f1f1;
}

.column {
  float: left;
  width: 33.33%;
  margin-top: 10px;
}

.w-resize {
  cursor: w-resize;
}

.pointer {
  cursor: pointer;
}

.menu-text {
  font-size: 36px;
  cursor: pointer;
  text-align: center;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/media/wide_home.webp");
  height: 25%;
  margin-top: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  color: white;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 2px 6px;
  color: black;
  background-color: #ddd;
  text-align: center;
  border-radius: 25px;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

.a-in-btn {
  text-decoration: none;
  color: rgb(11, 11, 11);
}

.markdown {
  font-size: 20px;
  padding: 2px;
  border: 1px solid #3f3e3e;
  margin: 6px;
  color: #01473a;
  background-color: #bdbdbd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
  padding: 16px;
}

span.email {
  float: right;
  padding-top: 16px;
}

.caption-container {
  text-align: center;
  padding: 2px 16px;
  background-color: #222;
  color: white;
}

.gallery {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* The modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  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 */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #060606;
  margin: 2% auto 15% auto;
  /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s;
  /* Fade in the modal */
  -webkit-animation: fadeIn 0.5s;
  /* Safari, Chrome and Opera > 12.1 */
  opacity: 1.0;
  transition: opacity 0.5s ease-in-out;
}

/* Modal container */
input[type=text],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 16px;
  top: 0;
  color: #a3a1a1;
  font-size: 35px;
  font-weight: bold;
}
.close-btn {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.close-btn:hover,
.close-btn:focus {
  color: red;
  cursor: pointer;
}
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
/* .row > .col {
  padding: 2px 2px;
} */

/* .row:after {
  content: "";
  display: flex;
  clear: both;
} */

/* .col {
  float: left;
  width: 12%;
} */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.number-text {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.dropdown-container {
  display: none;
  margin-left: 24px;
  background-color: #1f1f1f;

}

.dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  margin-right: 2px;
  font-size: 24px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: left;
  padding-right: 6px;
}

/* Responsive layout - makes the side bar and hero image stack on top of each other on small screens */

@media screen and (max-height: 450px) {
  .side-bar {
    padding-top: 15px;
  }

  .side-bar a {
    font-size: 18px;
  }

  .hero-text {
    font-size: 16px;
  }

  span.email {
    display: block;
    float: none;
  }

  .cancelbtn {
    width: 100%;
  }

}