@charset "UTF-8";
/*MATERIALIZE BUTTON EFFECT*/
.wrap {
  margin-top: 20px;
  text-align: center;
}

.button {
  display: inline-block;
  margin: 0.3em;
  padding: 1.2em 5em;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 15px;
  text-align: center;
}

.ripple {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 100%;
  -webkit-transform: scale(0.2);
      -ms-transform: scale(0.2);
          transform: scale(0.2);
  opacity: 0;
  pointer-events: none;
  -webkit-animation: ripple 0.75s ease-out;
  animation: ripple 0.75s ease-out;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@keyframes ripple {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
.btn-dwd {
  background: #ff8000;
  padding: 8px 25px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
}
.btn-dwd:hover {
  background: #ce6700;
  color: #fff;
}

.btn-dwd-2 {
  background: #0a1840;
  margin-bottom: 40px;
  padding: 8px 25px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  display: inline-block;
}
.btn-dwd-2:hover {
  background: #101625;
  color: #fff;
}

.btn-primary {
  background: none !important;
  color: #000 !important;
  border: 1px solid black !important;
  margin-bottom: 20px;
}

.slick-next.slick-arrow {
  background: none;
  border: none;
  font-size: 0;
}
.slick-next.slick-arrow:after {
  font-size: 40px;
  color: white;
  overflow: hidden !important;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}

.slick-prev.slick-arrow {
  background: none;
  border: none;
  font-size: 0;
  z-index: 1;
}
.slick-prev.slick-arrow:after {
  font-size: 40px;
  color: white;
  overflow: hidden !important;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}

.slick-lightbox-close:before {
  font-size: 25px !important;
  opacity: 1 !important;
}