/* Gloabl Styles */
/* Font Styles */
html {
  background: none;
  font-size: 1rem;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-family: "Merriweather", serif;
  background-color: #000000;
  color: #fff;
  position: relative;
}

h1 {
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 800;
  line-height: 3.625rem;
  margin: 0.25rem 0;
}

h2 {
  font-family: "Open Sans", sans-serif;
  margin: 0.25rem 0;
}

h3 {
  font-family: "Open Sans", sans-serif;
}

hr {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

p {
  line-height: 1.5rem;
}

.nowrap {
  white-space: nowrap;
}

/* Instagram Feed BG */
@keyframes fadeBG {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.instagramBG {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
  animation: 2.5s ease-out 0s 1 fadeBG;
}
.instagramBG::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.instagramBG .instaItem {
  width: 20%;
  height: auto;
  overflow: hidden;
  display: block;
  float: left;
  position: relative;
}
@media (max-width: 1600px) {
  .instagramBG .instaItem {
    width: 25%;
  }
}
@media (max-width: 900px) {
  .instagramBG .instaItem {
    width: 50%;
  }
}
.instagramBG .instaItem .instaImage {
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0 -5.5%;
}

/* Main Content Styles */
.mainContent {
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 100vh;
}
.mainContent .logo {
  text-align: center;
  animation: slide-down 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}
.mainContent .logo img {
  display: inline-block;
  max-width: 128px;
  border-radius: 1000px;
  box-shadow: 0px 0px 0 5px #ffffff;
  margin-bottom: 15px;
}
.mainContent .contentInner {
  text-align: center;
  padding: 20px 10px 0px 10px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 100px 100px rgba(0, 0, 0, 0.6);
  margin: 15px 15px 45px 15px;
  animation: slide-up 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}
.mainContent dt, .mainContent dd {
  display: inline-block;
}
.mainContent dt {
  font-weight: bold;
  margin-right: 5px;
}
.mainContent dd {
  margin-inline-start: 0;
}

.mainContent a, .mainContent a:link, .mainContent a:visited {
  color: #ffffff;
  text-decoration: underline;
}

.mainContent dl a:hover, .mainContent dl a:focus, .mainContent section.about a:hover, .mainContent section.about a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-shadow: 0 0.35px #fff, 0 -0.35px #fff, 0.35px 0 #fff, -0.35px 0 #fff;
}

.mainContent section.about {
  max-width: 800px;
  text-align: left;
}

.videoContainer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 20px;
}

.videoContainer iframe, .videoContainer object, .videoContainer embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.downloadHolder {
  text-align: center;
}

.btn {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  text-decoration: none !important;
  font-weight: 600;
}

.btn:hover {
  background-color: #004084;
}

/* Social Icons */
.socialIcons {
  list-style: none;
  font-size: 2rem;
  padding: 0;
  text-align: center;
  margin-block-start: 0;
  margin-block-end: 20px;
}
.socialIcons li {
  display: inline-block;
}
.socialIcons li a {
  margin: 0 10px;
  /*i {
    transition: all 250ms ease-out;
  }*/
}
.socialIcons li a:hover .facebook {
  color: #3b5998 !important;
}
.socialIcons li a:hover .twitter {
  color: #6cadde !important;
}
.socialIcons li a:hover .instagram {
  color: #125688 !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.socialIcons li a:hover .linkedin {
  color: #008cc9 !important;
}
.socialIcons li a:hover .youtube {
  color: #FF0000 !important;
}

.tawkto + div iframe {
  transform: translateX(-30px) !important;
}

/* Footer Styles */
footer {
  padding: 1.25rem 1.25rem 1.25rem 1.563rem;
  position: relative;
  z-index: 2;
}
footer .creativeCommons {
  width: 100%;
  text-align: left;
}
footer .creativeCommons img {
  width: 80px;
  display: block;
}

/**
 * ----------------------------------------
 * animations
 * ----------------------------------------
 */
@keyframes slide-up {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-400px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

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