main#main1 {
  position: relative;
  width: 100%;
  height: 100vh;
}

#slider {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  position: relative;
}
#slider canvas {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 60%;
  left: 50%;
  -o-object-position: center !important;
     object-position: center !important;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: transparent;
}
@media screen and (min-width: 800px) {
  #slider canvas {
    width: 100% !important;
    height: 100% !important;
    top: 50% !important;
    left: 50% !important;
  }
}
#slider img {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: top;
  top: -50%;
}
#slider .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #003366;
  z-index: 100;
}

.slider-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 5;
}
@media (max-width: 800px) {
  .slider-inner {
    justify-content: center;
    width: 100%;
  }
}

#slider-content {
  padding: 0 10px;
  width: 100%;
}
#slider-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 3.2rem !important;
  letter-spacing: -1px;
  color: white;
  text-align: center;
  margin: 20px 0 0px;
  text-shadow: 0 0 20px #003366;
}
@media screen and (min-width: 800px) {
  #slider-content h2 {
    font-size: 110px;
    line-height: 100px;
  }
}
@media screen and (max-width: 800px) {
  #slider-content h2 {
    font-size: 2rem !important;
  }
}
@media screen and (max-width: 800px) {
  #slider-content {
    width: 90%;
  }
}
#slider-content span {
  display: none;
}
#slider-content .meta {
  display: inline-block;
  font-family: "Arial", sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: #fff;
  text-shadow: 0px 0px 10px #003366;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 800px) {
  #slider-content .meta {
    font-size: 13px;
  }
}
#slider-content .meta:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: -55px;
  width: 45px;
  height: 2px;
}
#slider-content .meta .sub-text {
  font-size: 15px !important;
}
#slider-content #slide-status {
  margin-top: 10px;
  font-family: "poppins", serif;
  font-weight: 400;
  font-size: 18px;
  color: white;
  text-align: center;
  text-shadow: 0 0 20px #003366;
}
@media screen and (min-width: 800px) {
  #slider-content #slide-status {
    font-size: 18px;
  }
}

.f-letter {
  font-size: 35px !important;
  color: #ffffff !important;
}

.f-letter::before {
  display: inline-block;
  content: "";
  border-top: 0.2rem solid rgb(255, 255, 255);
  width: 4rem;
  margin: 0 1rem;
  transform: translateY(-0.4rem);
}

#pagination {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  z-index: 6;
  width: 30%;
}
#pagination button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  width: 25px;
  height: 25px;
  font-size: 1.5VW;
  background-color: transparent;
  border-radius: 100%;
  padding: 0;
  margin: 30px 0;
  cursor: pointer;
  position: relative;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  outline: none;
  color: #3de210;
  text-shadow: 0 0 15px #000;
  font-weight: 600;
}
#pagination button:hover {
  opacity: 0.5;
}
#pagination button.active {
  opacity: 1;
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pagination button.active:before {
  width: 300%;
  height: 300%;
  opacity: 1;
}
@media screen and (max-width: 800px) {
  #pagination button.active:before {
    width: 100%;
    height: 100%;
  }
}
#pagination button:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease-in-out, width 0.4s ease-in-out, height 0.4s ease-in-out;
}
@media screen and (max-width: 800px) {
  #pagination button {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 800px) {
  #pagination {
    font-size: 1rem !important;
    top: 80%;
    left: 50%;
    flex-direction: row;
    transform: translateX(-50%);
  }
}

/* Page Loader */
.loading:before {
  content: "";
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loading:after {
  content: "";
  position: fixed;
  z-index: 100000;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.4;
  background: white;
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}/*# sourceMappingURL=carousel.css.map */