/* ***** Navigation bar styles ***** */
#navbar {
  background-color: #d8d8d8;
  position: fixed;
  top: 0;
  left: 4%;
  width: 92vw;
  display: block;
  transition: top 0.3s;
  overflow: auto;
  z-index: 9999999999999;
}

#navbar a {
  float: left;
  display: block;
  color: #1b1b1b;
  text-align: center;
  padding: 5px 15px 1px 15px;
  text-decoration: none;
  font-size: 25px;
}

.nav-right {
  float: right;
}

#navbar a:hover {
  background-color: #858585;
  color: black;
}

.logo-image {
  width: 50px;
  height: 50px;
  border-radius: 5%;
  overflow: hidden;
  margin-top: -6px;
}

.img-fluid {
  width: 50px;
  height: 50px;
}

/* Mobile menu */
.hotMobNav {
  display: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 9999999;
}

.hotOverlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 99999999999;
}

.hotOverlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.hotOverlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.hotOverlay a:hover, .hotOverlay a:focus {
  color: #f1f1f1;
}

.hotOverlay .hotClosebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* ***** 75th Anniversary Homepage ***** */
#AnniversaryHtml {
  font-family: tahome;
  font-size: 30px;
  padding: 0;
  margin: 0;
}

/* Style the video: 100% width and height to cover the entire window */
.hot-iframe {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9;
}

/* Add some content at the bottom of the video/page */
.t0-content {
  left: 0;
  bottom: 0;
  background: #fffdfd;
  background: #ffffff00;
  color: #000000;
  width: 91.5vw;
  height: auto;
}
.t0-content p {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  text-align: center;
  background: white;
  padding: 100px;
  border: 10px solid #000000;
}
.t0-content p .hot-checkin {
  display: flex;
  font-size: 1.8rem;
  color: white;
  background: #be0000;
  width: 220px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;
}
.t0-content p .hot-checkin:hover, .t0-content p .hot-checkin:focus {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.hot-map {
  height: 500px;
  border: 1.5px solid #000;
}

/* ***** Timeline CSS ***** */
#timelineHtml {
  font-family: tahome;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

#timeline {
  display: flex;
  flex-direction: column;
  background-color: #031625;
}
#timeline:hover .t1-item {
  width: 100%;
  align-items: center;
}

.t1-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 100%;
  height: 100VH;
  min-width: 300px;
  color: white;
  overflow: hidden;
  transition: width 0.5s ease;
}
.t1-item::before, .t1-item::after {
  transform: translate3d(0, 0, 0);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.t1-item::after {
  background: rgba(3, 22, 37, 0.85);
  opacity: 1;
  transition: opacity 2.5s ease;
}
.t1-item::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%);
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.t1-item:hover {
  width: 25%;
}
.t1-item:hover::after {
  opacity: 0;
}
.t1-item:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateY(0);
  transition: opacity 1s ease, transform 1s ease 0.25s;
}
.t1-item:hover .t1-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.75s ease 0.5s;
}
.t1-item:hover .t1-bg {
  filter: grayscale(0);
}
.t1-item:hover .t1-btn1 {
  opacity: 1;
  transition: all 0.75s ease 0.5s;
}
.t1-item:hover .hot-img {
  opacity: 1;
  transition: all 0.75s ease 0.5s;
  cursor: pointer;
}

.t1-content {
  transform: translate(-50%, -50%);
  max-height: 36%;
  max-width: 60%;
  position: relative;
  overflow: auto;
  z-index: 1;
  text-align: left;
  margin: 0.1618em;
  top: 60%;
  left: 20%;
  opacity: 0;
  background-color: #83838342;
  background-image: linear-gradient(to bottom, transparent, black);
}
.t1-content h1 {
  font-family: tahoma;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: normal;
  text-align: center;
}
.t1-content p {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 0 0 0;
}
.t1-content ul {
  list-style-position: inside;
  font-size: 2rem;
}

.t1-year {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.t1-year p {
  position: relative;
  font-family: tahoma;
  text-shadow: 2px 2px #000000;
  transform: translateX(-50%) translateY(-50%);
  font-size: 2rem;
}
.t1-year p::before, .t1-year p::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(to right, black, white, black, white, black, white, black, white, black);
}
.t1-year p::before {
  top: 1px;
}
.t1-year p::after {
  bottom: 1px;
}

.t1-bg {
  transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: filter 0.5se ease;
  filter: grayscale(100%);
}

.t1-btn1 {
  position: absolute;
  top: 95%;
  left: 10%;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}

/* Popup setup is all located in _popup.sass */
#hot2-photoGallery {
  display: flex;
  position: absolute;
  background-size: 100% 100%;
  background: #020024;
  background-image: linear-gradient(0deg, #000000 0%, #7a7a7a 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hot2-app {
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
}

.hot2-item {
  position: relative;
  margin: auto;
  width: 90%;
  top: 124px;
  justify-content: center;
}

.hot2-h1 {
  font-family: monotype corsiva, bodoni MT, benard;
  font-weight: bold;
  font-size: 50px;
  text-align: center;
  color: white;
}

.hot2-gallery {
  display: inline-block;
  width: 320px;
  height: 240px;
  margin: auto;
  border: 3px solid #fffefe;
}
.hot2-gallery:hover {
  border: 3px solid #070670;
  pointer-events: finger;
}
.hot2-gallery .hot2-desc {
  color: white;
  font-size: 18px;
  text-align: center;
  text-transform: capitalize;
}

.hot2-gallery img {
  width: 320px;
  height: 200px;
}

/* css for the popup modal */
#hot-modal-img {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#hot-modal-img:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.hot-modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  overflow: auto;
  background-color: #505050;
  background-color: #5c5c5ce6;
  transform: translateX(-50%) translateY(-50%);
}

/* Modal Content (image) */
.hot-modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 700px;
}

/* Caption of Modal Image */
#hot-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  font-size: 25px;
  padding: 10px 0;
  height: 100px;
}

/* Add Animation */
.hot-modal-content, #hot-caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* The Close Button */
.hotClose {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.hotClose:hover,
.hotClose:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Click Me image */
.hot-img {
  position: absolute;
  top: 75%;
  left: 90%;
  width: 100%;
  max-width: 300px;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}

/* -------------------------------------------------------------------------------- */
/* Popup css setup for Smaller Screens  */
@media screen and (max-height: 1100px) {
  .hot-modal-content {
    max-width: 65vh;
  }
}
@media screen and (max-width: 750px) {
  .hot-modal-content {
    width: 100%;
    max-width: 180px;
  }

  .hot-img {
    max-width: 130px;
  }
}
/* -------------------------------------------------------------------------------- */
/* Navbar css setup for Smaller Screens */
@media screen and (max-width: 1100px) {
  #navbar a {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 750px) {
  #navbar {
    display: none;
  }

  a {
    font-size: 0.7rem;
  }

  .hotMobNav {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 28vw;
    background-color: #81818194;
  }

  .hotOverlay a {
    font-size: 20px;
  }

  .hotOverlay .hotClosebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
/* -------------------------------------------------------------------------------- */
/* Timeline css setup for Smaller Screens */
@media screen and (max-width: 1100px) {
  .t1-content {
    max-height: 36%;
    top: 55%;
    left: 10%;
  }
  .t1-content h1 {
    font-size: 1rem;
  }
  .t1-content p {
    font-size: 1rem;
  }
  .t1-content ul {
    font-size: 1px;
  }

  .t1-year p {
    font-size: 1.5rem;
  }

  .t1-btn1 {
    position: absolute;
    top: 95%;
    left: 40%;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .t1-content {
    max-height: 30%;
    top: 60%;
  }
}
/* CSS for campforms */
.hot-forms-tbl {
  display: block;
}

.hot-tbl-caption {
  display: block;
  text-align: center;
}

.hot-tbl-hdr-cell {
  display: block;
  text-align: center;
}

.hot-tbl-body-cell {
  display: block;
  text-align: center;
}

@media screen and (min-width: 1090px) {
  .hot-forms-tbl {
    column-count: 2;
    column-gap: 20px;
    width: 100vw;
  }

  .hot-tbl-hdr-cell {
    display: table-cell;
    border-bottom: 5px double #000000;
    padding: 2px;
    counter-reset: body-cnt;
    align-content: center;
  }

  .hot-tbl-body-cell {
    display: table-row;
    padding: 2px;
  }
  .hot-tbl-body-cell a::before {
    counter-increment: body-cnt;
    content: counter(body-cnt) ".) ";
  }
}

/*# sourceMappingURL=global.css.map */