.cont {
  position: relative;
  overflow: hidden;
  height: 80vh;
  padding: 20px 20px;
}
.cont__inner {
  position: relative;
  height: 100%;
}
.cont__inner:hover .el__bg:after {
  opacity: 1;
}

.el {
  position: absolute;
  left: 0;
  top: 0;
  width: 24.25%;
  height: 100%;
  background: #252525;
  transition: transform 0.6s 0.7s, width 0.7s, opacity 0.6s 0.7s, z-index 0s 1.3s;
}
.el:not(.s--active) {
  cursor: pointer;
}
.el__overflow {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.el__inner {
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: transform 1s;
}
.cont.s--inactive .el__inner {
  transform: translate3d(0, 100%, 0);
}
.el__bg {
  position: relative;
  width: calc(100vw - 40px);
  height: 100%;
  transition: transform 0.6s 0.7s;
}
.el__bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: transform 1s;
  transform: translate3d(0, 0, 0) scale(1);
}
.cont.s--inactive .el__bg:before {
  transform: translate3d(0, -100%, 0) scale(1);
}
.el.s--active .el__bg:before {
  transition: transform 0.8s;
}
.el__bg:after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s;
}
.cont.s--el-active .el__bg:after {
  transition: opacity 0.5s 1.4s;
  opacity: 1 !important;
}
.el__preview-cont {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s 1.1s;
}
.cont.s--inactive .el__preview-cont {
  opacity: 0;
  transform: translateY(10px);
}
.cont.s--el-active .el__preview-cont {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}
.el__heading {
  color: white;
  text-transform: uppercase;
  font-size: 2vw;
  text-shadow: 1px 1px #333;
  white-space: nowrap;
}
.el__content {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.1s;
}
.el.s--active .el__content {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.5s 1.4s;
}
.el__text {
  text-transform: uppercase;
  font-size: 8vw;
  text-shadow: 1px 1px #333;
  color: white;
  white-space: nowrap;
  font-weight: 700;
  width: 95%;
  height: 100%;
  cursor: pointer;
  opacity: 0.8;
  margin-top: 20px;
}
.el__close-btn {
  z-index: -1;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0s 0.45s;
  cursor: pointer;
}
.el.s--active .el__close-btn {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transition: all 0s 1.4s;
}
.el__close-btn:before, .el__close-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 8px;
  margin-top: -4px;
  background: #fff;
  opacity: 0;
  transition: opacity 0s;
}
.el.s--active .el__close-btn:before, .el.s--active .el__close-btn:after {
  opacity: 1;
}
.el__close-btn:before {
  transform: rotate(45deg) translateX(100%);
}
.el.s--active .el__close-btn:before {
  transition: all 0.3s 1.4s cubic-bezier(0.72, 0.09, 0.32, 1.57);
  transform: rotate(45deg) translateX(0);
}
.el__close-btn:after {
  transform: rotate(-45deg) translateX(100%);
}
.el.s--active .el__close-btn:after {
  transition: all 0.3s 1.55s cubic-bezier(0.72, 0.09, 0.32, 1.57);
  transform: rotate(-45deg) translateX(0);
}
.el__index {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 100%;
  min-height: 250px;
  text-align: center;
  font-size: 25vw;
  line-height: 0.85;
  font-weight: bold;
  transition: transform 0.5s, opacity 0.3s 1.4s;
  transform: translate3d(0, 1vw, 0);
}
.el:hover .el__index {
  transform: translate3d(0, 0, 0);
}
.cont.s--el-active .el__index {
  transition: transform 0.5s, opacity 0.3s;
  opacity: 0;
}
.el__index-back, .el__index-front {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.el__index-back {
  color: #2f3840;
  opacity: 0;
  transition: opacity 0.25s 0.25s;
}
.el:hover .el__index-back {
  transition: opacity 0.25s;
  opacity: 1;
}
.el__index-overlay {
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s 0.1s;
  color: transparent;
}
.el__index-overlay:before {
  content: attr(data-index);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.5s 0.1s;
}
.el:hover .el__index-overlay {
  transform: translate3d(0, 0, 0);
}
.el:hover .el__index-overlay:before {
  transform: translate3d(0, 0, 0);
}
.el:nth-child(1) {
  transform: translate3d(0%, 0, 0);
  transform-origin: 50% 50%;
}
.cont.s--el-active .el:nth-child(1):not(.s--active) {
  transform: scale(0.5) translate3d(0%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
}
.el:nth-child(1) .el__inner {
  transition-delay: 0s;
}
.el:nth-child(1) .el__bg {
  transform: translate3d(0%, 0, 0);
}
.el:nth-child(1) .el__bg:before {
  transition-delay: 0s;
  background-image: url("../img/buttons/0.jpg");
}
.el:nth-child(2) {
  transform: translate3d(104.1237113402%, 0, 0);
  transform-origin: 154.1237113402% 50%;
}
.cont.s--el-active .el:nth-child(2):not(.s--active) {
  transform: scale(0.5) translate3d(104.1237113402%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
}
.el:nth-child(2) .el__inner {
  transition-delay: 0.1s;
}
.el:nth-child(2) .el__bg {
  transform: translate3d(-24.25%, 0, 0);
}
.el:nth-child(2) .el__bg:before {
  transition-delay: 0.1s;
  background-image: url("../img/buttons/1.jpg");
}
.el:nth-child(3) {
  transform: translate3d(208.2474226804%, 0, 0);
  transform-origin: 258.2474226804% 50%;
}
.cont.s--el-active .el:nth-child(3):not(.s--active) {
  transform: scale(0.5) translate3d(208.2474226804%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
}
.el:nth-child(3) .el__inner {
  transition-delay: 0.2s;
}
.el:nth-child(3) .el__bg {
  transform: translate3d(-48.5%, 0, 0);
}
.el:nth-child(3) .el__bg:before {
  transition-delay: 0.2s;
  background-image: url("../img/buttons/2.jpg");
}
.el:nth-child(4) {
  transform: translate3d(312.3711340206%, 0, 0);
  transform-origin: 362.3711340206% 50%;
}
.cont.s--el-active .el:nth-child(4):not(.s--active) {
  transform: scale(0.5) translate3d(312.3711340206%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
}
.el:nth-child(4) .el__inner {
  transition-delay: 0.3s;
}
.el:nth-child(4) .el__bg {
  transform: translate3d(-72.75%, 0, 0);
}
.el:nth-child(4) .el__bg:before {
  transition-delay: 0.3s;
  background-image: url("../img/buttons/3.jpg");
}
.el:hover .el__bg:after {
  opacity: 0.5;
  border-bottom: 10px solid white;
}
.el.s--active {
  z-index: 1;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s, width 0.7s 0.7s, z-index 0s;
}
.el.s--active .el__bg {
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s;
}
.el.s--active .el__bg:before {
  transition-delay: 0.6s;
  transform: scale(1);
}

@media only screen and (max-width: 600px) {
  .cont {
    height: 30vh;
    padding: 0 0px;
  }

  .el__heading {
    font-size: 0.8rem;
  }

  .el__bg {
    width: 100vw;
  }
}
@media only screen and (max-width: 600px) and (orientation: portrait) {
  .cont {
    height: 50vh;
    padding: 0 0px;
  }

  .el__heading {
    font-size: 0.5rem;
  }
}
/* GLOBAL STYLES
    -------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
  padding-bottom: 40px;
  color: #5a5a5a;
  font-family: "Open Sans", sans-serif;
  background: #444;
  /*       font-family: 'Pacifico', cursive; */
}

.modal-backdrop {
  background-color: black;
}

@media only screen and (max-width: 600px) {
  .cv {
    padding: 20px;
  }

  .container {
    width: 100% !important;
  }
}
.cv {
  color: #aaa;
  /* 			color: gray; */
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 35px;
  text-align: justify;
  /*       background: green; */
}

.cv li {
  line-height: 35px;
  /* 4px +12px + 4px */
}

.cv h1,
h1 {
  text-shadow: 0px 1px 1px #4d4d4d;
  color: #000;
  font-size: 35px;
  text-align: center;
  padding: 50px;
  text-transform: uppercase;
}

h2 {
  text-shadow: 0px 1px 1px #4d4d4d;
  color: #000;
  font-size: 30px;
  text-align: center;
  padding: 30px;
  text-transform: uppercase;
}

h2 a:hover {
  color: #f0dc82;
  font-size: 30px;
  padding: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration-line: none;
}

video {
  max-width: 100%;
  height: auto;
}

#media .btn.btn-dark.btn-lg {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e0e0e;
  background-image: -moz-linear-gradient(top, #151515, #040404);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: -o-linear-gradient(top, #151515, #040404);
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff151515", endColorstr="#ff040404", GradientType=0);
  border-color: #040404 #040404 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #040404;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.navbar-inverse .btn-navbar:hover,
.navbar-inverse .btn-navbar:focus,
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active,
.navbar-inverse .btn-navbar.disabled,
.navbar-inverse .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #040404;
  *background-color: #000000;
}

.cv #facebook,
.cv #instagram {
  text-shadow: 0px 1px 1px #4d4d4d;
  color: #000;
  vertical-align: middle;
}

.cv .legend {
  font-size: 100%;
}

.cv a:hover #facebook,
.cv a:focus #facebook {
  color: #0088cc;
  vertical-align: middle;
}

.cv a:hover #instagram,
.cv a:focus #instagram {
  color: #e1306c;
  vertical-align: middle;
}

.cv a {
  color: #aaa;
  text-decoration: none;
}

.cv a:hover #facebook,
.cv a:focus #facebook {
  color: #0088cc;
  /* text-decoration: underline; */
}

.cv a:hover #instagram,
.cv a:focus #instagram {
  color: #e1306c;
  /* text-decoration: underline; */
}

/*TILT*/
.tilt {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* -webkit-backface-visibility: hidden; */
}

.tilt:hover {
  -webkit-transform: rotate(7deg);
  -moz-transform: rotate(7deg);
  -o-transform: rotate(7deg);
  -ms-transform: rotate(7deg);
  transform: rotate(7deg);
  /* -webkit-backface-visibility: hidden; */
}

/*BLUR*/
.blur {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.blur hover {
  filter: blur(5px);
}

/*B&W*/
.bw {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.bw:hover {
  filter: grayscale(100%);
}

/* CUSTOMIZE THE NAVBAR
  -------------------------------------------------- */
/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  margin-top: 20px;
  margin-bottom: -90px;
  /* Negative margin to pull up carousel. 90px is roughly margins and height of navbar. */
}

/* Remove border and change up box shadow for more contrast */
.navbar .navbar-inner {
  border: 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Downsize the brand/project name a bit */
.navbar .brand {
  color: #f0dc82;
  padding: 14px 20px 16px;
  /* Increase vertical padding to match navbar links */
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

/* Navbar links: increase padding for taller navbar */
.navbar .nav > li > a {
  padding: 15px 20px;
  text-transform: uppercase;
}

/* Offset the responsive button for proper vertical alignment */
.navbar .right {
  float: right;
  font-size: 20px;
}

.navbar .right span {
  display: none;
}

.navbar .btn-navbar {
  margin-top: 10px;
}

.dropdown .dropdown-menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.dropdown .dropdown-menu {
  background: #111111;
}

.navbar .nav > li > .dropdown-menu:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #111111;
  position: absolute;
  top: -6px;
  left: 10px;
}

.navbar .brand {
  padding-right: 0;
  padding-left: 0;
  margin-left: 20px;
  margin-right: 20px;
  float: left;
  font-weight: bold;
  color: #f0dc82;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.125);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  text-decoration: none;
  color: black;
  background-color: #f0dc82;
  background-image: -moz-linear-gradient(top, #f0dc82, #807546);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f0dc82), to(#807546));
  background-image: -webkit-linear-gradient(top, #f0dc82, #807546);
  background-image: -o-linear-gradient(top, #f0dc82, #807546);
  background-image: linear-gradient(to bottom, #f0dc82, #807546);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffF0DC82", endColorstr="#ff807546", GradientType=0);
}

/* RESPONSIVE CSS
  -------------------------------------------------- */
@media screen and (max-width: 979px) {
  .container.navbar-wrapper {
    margin-bottom: 0;
    width: auto;
  }

  .navbar-inner {
    border-radius: 0;
    margin: -20px 0;
  }

  .container.navbar-wrapper {
    margin-bottom: 0;
    width: auto;
  }

  .navbar-inner {
    border-radius: 0;
    margin: -20px 0;
  }

  .navbar-inner {
    margin: -20px;
  }

  .navbar .right {
    float: left;
    font-size: 0.875rem;
  }

  .navbar .right span {
    display: inline;
  }
}
#gallery-wrapper {
  margin: 0 0 0 0px;
}

#gallery {
  /*background: red;*/
  width: 100%;
  margin-bottom: 10px;
  /* height: auto; */
  top: 10px;
  left: 0px;
  right: 0px;
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .navbar .right span {
    display: inline;
  }
}
.btn-inverse {
  color: #ddd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  *background-color: #222222;
  background-image: -moz-linear-gradient(top, #444444, #222222);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
  background-image: -webkit-linear-gradient(top, #444444, #222222);
  background-image: -o-linear-gradient(top, #444444, #222222);
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  color: #ddd;
  background-color: #222222;
  *background-color: #151515;
}

#supersized img {
  max-width: none;
}

ul#supersized {
  padding: 0;
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #1f1f1f;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  /* font-family: 'Roboto', sans-serif; */
}

#invitationModal .modal-dialog,
.modal-content {
  height: 90%;
}

#invitationModal .modal-body {
  /* 100% = dialog height, 120px = header + footer */
  max-height: calc(100% - 120px);
  overflow-y: false;
}

#datepicker {
  height: 30px;
  vertical-align: baseline;
}

#errorMessage {
  font-size: small;
}

* {
  box-sizing: border-box;
}

/* ---- grid ---- */
/* clearfix */
.grid-sizer2 {
  width: 20%;
}

.grid-item2 {
  width: 20%;
  padding: 5px;
  border-radius: 7px;
}

.grid-item2 img {
  border-radius: 7px;
}

.is-loading {
  background-image: url("https://barahonapossollo.com/img/spinner.svg");
}

.is-broken {
  display: none;
}

.is-loading img,
.is-broken img {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  /* 5 columns for larger screens */
  .grid-sizer2 {
    width: 50%;
    /* background-color: red; */
    height: 5px;
  }

  .grid-item2 {
    width: 50%;
    padding: 5px;
  }

  .w2 {
    width: 100% !important;
  }
}
/* ---- grid-item ---- */
/* .grid-sizer, */
.grid-item {
  width: 20%;
  position: relative;
}

.w2 {
  width: 40%;
}

.w3 {
  width: 60%;
}

/* .w4{ width: 80%; }
.w5{ width: 100%; } */
.h2 {
  height: 400px;
}

/* .h2{ height: 40%; }
.h3{ height: 60%; }
.h4{ height: 80%; }
.h5{ height: 100%; } */
/* 2 columns */
/* grid-item--width2 { width: 40%; } */
/* .w2 { width: 320px; }
.w3 { width: 480px; }
.w4 { width: 640px; } */
/* .h2 { height: 20%; } */
/* .h2 { height: 200px; } */
.h3 {
  height: 260px;
}

.h4 {
  height: 360px;
}

.grid-item {
  /* border-radius: 10px; */
  /* border: 5px solid rgb(90, 90, 90); */
  /* padding: 0px; */
  padding: 5px;
}

.grid-item img {
  border-radius: 7px;
  /* border-radius: 10px; */
  /* border: 5px solid rgb(90, 90, 90); */
  /* padding: 0px; */
}

#loader,
.is-loading {
  /* position: relative; */
  position: relative;
  left: 50%;
  top: 0px;
  z-index: 1;
  width: 60px;
  height: 60px;
  /* margin: -76px 0 0 -76px; */
  border: 8px solid #111;
  border-radius: 50%;
  border-top: 8px solid #fff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: 1%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer-link {
  padding: 5px 10px;
  font-size: 15px;
  margin-right: 20px;
  color: white;
}

.footer-link:hover {
  padding: 5px 10px;
  font-size: 15px;
  margin-right: 20px;
  color: #f0dc82;
  text-decoration: none;
}

.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover,
li > a:hover {
  background-color: transparent;
  color: #f0dc82;
}

#media .links, #media .downloads {
  width: 80%;
  margin-left: 10%;
  list-style-type: none !important;
}

#media .links li:before {
  content: "\f08e" !important;
  text-shadow: 0px 1px 1px #4d4d4d;
  color: #000;
  font-family: "FontAwesome" !important;
  margin-right: 10px;
  margin-left: -14px;
  font-size: 1em;
}

#media .downloads li:before {
  content: "\f15b" !important;
  text-shadow: 0px 1px 1px #4d4d4d;
  color: #000;
  font-family: "FontAwesome" !important;
  margin-right: 10px;
  margin-left: -14px;
  font-size: 1.2em;
}

#media .buttons .fa {
  padding: 20px;
  font-size: 50px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0px 1px 1px #4d4d4d;
  color: #000;
}

#media .buttons .fa:hover {
  color: #f0dc82;
}

.minigallerywrapper {
  position: absolute;
  right: 0px;
  bottom: 20px;
  cursor: pointer;
  width: fit-content;
}

.minigallery {
  transition: 1s ease-in-out;
  position: relative;
  width: 200px;
  height: 245px;
  margin: 25px;
  float: right;
}

.minigallery:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  transition: 1s ease;
}

.minigallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid #00000099;
  border-radius: 50%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  -o-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  transition: 1s ease-in-out;
}

.minigallery img:hover {
  border: 5px solid #f0dc82ff;
  border-radius: 50%;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.6);
  -o-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.6);
}

.minigallery div {
  text-align: center;
  color: white;
  font-weight: 700;
  position: relative;
  font-size: 1vw;
  padding: 10px;
  text-shadow: 1px 1px #000000;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pos {
  position: absolute;
  font-size: 1vh;
  color: white;
  display: inline;
  z-index: 1;
  font-style: bold;
  font-family: sans-serif;
}

.poswarn {
  position: absolute;
  width: 100%;
  bottom: 10px;
  text-align: center;
  font-size: 1rem;
  color: white;
  display: inline;
  z-index: 1;
  font-style: italic;
  font-family: serif;
}

.warning {
  filter: blur(8px);
  z-index: 0;
}

.categoryclick {
  z-index: 99999;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.progressGal {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 5px;
  z-index: 9999;
  background-color: #444 !important;
}

.barGal {
  background-color: white !important;
  width: 0%;
  height: 5px;
}

.percentGal {
  position: absolute;
  display: inline-block;
  top: 3px;
  left: 48%;
}

.text {
  position: relative;
  color: #aaa;
  /* 			color: gray; */
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 35px;
  text-align: justify;
  margin: 0 5%;
}

.text li {
  line-height: 35px;
  /* 4px +12px + 4px */
}

.text h1 {
  text-shadow: 0px 1px 1px #4d4d4d;
  color: white;
  font-size: 35px;
  text-align: center;
  padding: 50px;
  width: 100%;
  text-transform: uppercase;
}

.text p {
  line-height: 1.5rem;
}

.collapsible {
  font-size: 2rem;
  text-shadow: 0px 1px 1px #4d4d4d;
  color: white;
  text-align: center;
  width: 100%;
  background-color: #444;
  cursor: pointer;
  width: 100%;
  border: black solid 1px;
  outline: none;
  line-height: 3rem;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsible:hover {
  background-color: white;
  color: black;
}

.collapsible:after {
  content: "-";
  /* Unicode character for "plus" sign (+) */
  font-size: 2rem;
  float: right;
  margin-left: 15px;
  margin-right: 15px;
  line-height: 2.5rem;
}

.collapsible.collapsed:after {
  font-size: 2rem;
  content: "+";
  /* Unicode character for "minus" sign (-) */
  margin-right: 15px;
  line-height: 2.5rem;
}

@media screen and (max-width: 768px) {
  /* 5 columns for larger screens */
  .minigallery {
    width: 125px;
    height: 145px;
    position: relative;
  }

  .minigallery img {
    width: 125px;
    height: 125px;
  }

  .minigallery div {
    font-size: 3vw;
  }

  .minigallerywrapper {
    bottom: 50px;
  }

  .modal-body {
    /* 100% = dialog height, 120px = header + footer */
    height: 40vh;
  }
}
/*

	Supersized - Fullscreen Slideshow jQuery Plugin
	Version : 3.2.7
	Site	: www.buildinternet.com/project/supersized

	Theme 	: Shutter 1.2
	Author	: Sam Dunn
	Company : One Mighty Roar (www.onemightyroar.com)
	License : MIT License / GPL License

*/
/* Controls Bar
	----------------------------*/
#controls-wrapper {
  margin: 0 auto;
  height: 42px;
  width: 100%;
  bottom: 0px;
  left: 0;
  z-index: 4;
  position: fixed;
}

#controls {
  overflow: hidden;
  height: 100%;
  position: relative;
  text-align: left;
  z-index: 5;
}

#slidecounter {
  float: left;
  color: #999;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: #000 0 -1px 0;
  margin: 0px 10px 0 15px;
  line-height: 42px;
}

#slidecaption {
  overflow: hidden;
  float: left;
  color: #fff;
  font: 400 24px "Open Sans", Helvetica, Arial, sans-serif;
  text-shadow: #000 1px 1px 2px;
  margin: 0 20px 0 20px;
  line-height: 42px;
}

#navigation {
  float: right;
  margin: 0px 20px 0 0;
}

#play-button {
  float: left;
  margin-top: 1px;
  border-right: 1px solid #333;
  background: url("../img/bg-hover.png") repeat-x 0 44px;
}

#play-button:hover {
  background-position: 0 1px;
  cursor: pointer;
}

#prevslide,
#nextslide {
  position: absolute;
  height: 43px;
  width: 43px;
  top: 50%;
  margin-top: -21px;
  opacity: 0.6;
  text-align: center;
  line-height: 20px;
}

#prevslide {
  left: 10px;
}

#nextslide {
  right: 10px;
}

#prevslide:active,
#nextslide:active {
  margin-top: -19px;
}

#prevslide:hover,
#nextslide:hover {
  cursor: pointer;
}

ul#slide-list {
  padding: 15px 0;
  float: left;
  position: absolute;
  left: 50%;
}

ul#slide-list li {
  list-style: none;
  width: 12px;
  height: 12px;
  float: left;
  margin: 0 5px 0 0;
}

ul#slide-list li.current-slide a,
ul#slide-list li.current-slide a:hover {
  background-position: 0 0px;
}

ul#slide-list li a {
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/nav-dot.png") no-repeat 0 -24px;
}

ul#slide-list li a:hover {
  background-position: 0 -12px;
  cursor: pointer;
}

#tray-button {
  float: right;
  margin-top: 1px;
  border-left: 1px solid #333;
  background: url("../img/bg-hover.png") repeat-x 0 44px;
}

#tray-button:hover {
  background-position: 0 1px;
  cursor: pointer;
}

/* Progress Bar
	----------------------------*/
#progress-back {
  z-index: 5;
  position: fixed;
  bottom: 42px;
  left: 0;
  height: 8px;
  width: 100%;
  background: url("../img/progress-back.png") repeat-x;
}

#progress-bar {
  position: relative;
  height: 8px;
  width: 100%;
  background: url("../img/progress-bar.png") repeat-x;
}

/* Thumbnail Navigation
	----------------------------*/
#nextthumb,
#prevthumb {
  z-index: 2;
  display: none;
  position: fixed;
  bottom: 61px;
  height: 75px;
  width: 100px;
  overflow: hidden;
  background: #ddd;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 5px #000;
}

#nextthumb {
  right: 12px;
}

#prevthumb {
  left: 12px;
}

#nextthumb img,
#prevthumb img {
  width: 150px;
  height: auto;
}

#nextthumb:active,
#prevthumb:active {
  bottom: 59px;
}

#nextthumb:hover,
#prevthumb:hover {
  cursor: pointer;
}

/* Thumbnail Tray
	----------------------------*/
#thumb-tray {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  background: url(../img/bg-black.png);
  height: 150px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -moz-box-shadow: 0px 0px 4px #000;
  -webkit-box-shadow: 0px 0px 4px #000;
  box-shadow: 0px 0px 4px #000;
}

#thumb-back,
#thumb-forward {
  position: absolute;
  z-index: 5;
  bottom: 42px;
  height: 108px;
  width: 40px;
}

#thumb-back {
  left: 0;
  background: url("../img/thumb-back.png") no-repeat center center;
}

#thumb-forward {
  right: 0;
  background: url("../img/thumb-forward.png") no-repeat center center;
}

#thumb-back:hover,
#thumb-forward:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
}

#thumb-back:hover {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

#thumb-forward:hover {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

ul#thumb-list {
  display: inline-block;
  list-style: none;
  position: relative;
  left: 0px;
  padding: 0 0px;
}

ul#thumb-list li {
  background: #111;
  list-style: none;
  display: inline;
  width: 150px;
  height: 108px;
  overflow: hidden;
  float: left;
  margin: 0;
}

ul#thumb-list li img {
  width: 200px;
  height: auto;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  -ms-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

ul#thumb-list li.current-thumb img,
ul#thumb-list li:hover img {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

ul#thumb-list li:hover {
  cursor: pointer;
}

#controls-wrapper {
  background: none;
}

#slidecaption,
#slidecaption-buttons:hover {
  font-size: 1.5vw;
  -webkit-animation: fadeInFromNone 0.5s ease-out;
  -moz-animation: fadeInFromNone 0.5s ease-out;
  -o-animation: fadeInFromNone 0.5s ease-out;
  animation: fadeInFromNone 0.5s ease-out;
}

@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-o-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
#prevslide,
#nextslide {
  font-size: 3vw;
  color: white;
  background: none;
}

@media screen and (min-width: 980px) and (max-width: 1200px) {
  .navbar .nav > li > a {
    font-size: 80%;
    padding: 15px 10px;
  }

  #prevslide,
#nextslide {
    font-size: 3vw;
    opacity: 0.3;
  }
}
@media screen and (max-width: 980px) {
  #prevslide,
#nextslide {
    font-size: 6vw;
    opacity: 0.3;
  }

  #slidecaption {
    font-size: 4vw;
  }
}

/*# sourceMappingURL=kp.css.map */
