/******* INDEX VIEW RELATED CSS */


a.anchor {
    display: block;
    position: relative;
    top: -70px;
    visibility: hidden;
}

/*.jumboView p {
  color: white;
  font-weight: 400;
  font-size: 1.2rem;
  text-shadow: 1px 2px 5px rgba(0,0,0,.51);
  font-family: var(--mainFont);
}

.jumboView h4 {
  color: white;
  text-shadow: 1px 2px 5px rgba(0,0,0,.51);
  font-family: var(--secondFont);
  font-weight: 400;
  font-size: 1.5rem;
}

.jumboView h1 {
  color: white;
  text-shadow: 1px 2px 5px rgba(0,0,0,.51);
  font-family: var(--secondFont);
  font-weight: 700;
  font-size: 2.8rem;
}*/



.headerContainer{
  width: 80%;
  position: relative;
  z-index: 10;
}

.scroll-down:hover {
  background-color: white; 
}
.scroll-down:hover:before {
  /*color: var(--mainColor) !important; */
  /*background-color: white; */
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid var(--mainColor);
    border-width: 0px 0 2px 2px;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid #FFF;
  background-size: 14px auto;
  background-color: rgba(22,47,65,0.5);
  border-radius: 50%;
  z-index: 10;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.scroll-down:before {
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.jumboView{
 /* position: relative;
  z-index:1;*/
  padding-top: var(--mainNavbarHeight);
  overflow: hidden;
  height: 100vh;
}

.indexColor {
  background-color: #a8a8a8;
}

@media only screen and (max-width: 992px) {
  .indexColor {
    background-color: #cce3ee;
  }
}

#video-background { 
  position: absolute;
  left: 0;
  overflow: hidden;
  z-index: 3;
  width:100%;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.videoWrapper > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 20; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: black;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%; /* Could be more or less, depending on screen size */
  width: 800px
}

.modalContainer {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.modalVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content  {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important; 
    padding: 0;
    border:0;
}
