@import url("https://fonts.googleapis.com/css?family=Open+Sans:700");

body::before {
    display: block;
    content: '';
    height: 60px;
}

@media(min-width: 768px) {
    .news-input {
        width: 50%;
    }
}

/* The following are for the header background video */
header {
    position: relative;
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
  }
  
header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
  
header .container {
    position: relative;
    z-index: 2;
  }
  
header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
  }
 
  /* Media Query for devices with coarse pointers and no hover functionality */
  /* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */
  
  /* @media (pointer: coarse) and (hover: none) {
    header {
      background: url('../img/banner-img.PNG') black no-repeat center center scroll;
    }
  
    header video {
      display: none;
    }
  } */

 /* end CSS for background video */

 /* transition text + linear gradient */
 .nav-link {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #031D44;
  padding: 20px 0px;
  margin: 0px 20px;
  display: inline-block;
  position: relative;
  opacity: 0.75;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #031D44;
}

.nav-link-ltr::before {
  width: 0%;
  bottom: 10px;
}

.nav-link-ltr:hover::before {
  width: 100%;
}

/* end transition effect + linear gradient on menu items */

 /* this section is to activate the rolling wheel */

.img-rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* end rolling wheel */

/* hide inner image if less than large screen */
@media (max-width: 1300px) { 
  .innerwheelclass{
      display: none;
  }
}



