/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');





body {
  overflow: hidden;
}

/* video style txt */
video {
  object-fit: fill;
  
}

.overlay{
  position:absolute;
  bottom: 0;
  width: 30%;
  height: 25%;
  z-index: 10;
  
  
}


/* overlay for rest of content vid/img */

.vid_1_text {
  display: block;
  color: #fff;
  
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  
  pointer-events: none; /* don’t block video clicks */
  position: absolute !important;
  transition: opacity 150ms linear;
  padding-left: 10%;
  
  background: linear-gradient(0deg, rgba(0,0,0,0.7805716036414566) 0%, rgba(0,0,0,0) 100%);
  box-sizing: border-box;
  
  top: 0; /* adjust "top" and "left" to taste */
}





/* stretch video when screen is big */
@media only screen and (min-width: 1100px) {
  .video-wrap {
    width: 100%;
    height: 100%;
    padding-left: 0;
  }
}







/* Hide Play button + controls on iOS */
video::-webkit-media-controls {
    display:none !important;
}


/* Preloader */

  /* Hide scrollbar for Chrome, Safari and Opera */
  .example::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .example {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* change if the mask should have another color then white */
    z-index: 99;
    /* makes sure it stays on top */
  }

  #status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 60%;
    /* centers the loading animation vertically one the screen */

    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
  }

/* fade in animation jquery */
.fadein-vid {
  opacity:0;
}


/* Nav bar css */

@media only screen and (max-width: 600px) {
  ul {
    list-style-type: none;
    margin: none!important;
    width: 100%;
    height: auto;
    padding-bottom: 10% !important;
    overflow: hidden;
    position: fixed !important;
    ;
    top: -30%;
    align-items: center;
    
  }

  .topnav-right {
    
    display: none;
    float:none !important;
    text-align: center !important;
  }

  .li-style {
    text-decoration: none;
    padding: none;
    margin-top: 3%;
    margin-left: -4%;
    
  }
  .logo-style{
    display:flex;
    text-align: center !important;
    margin-left: 43%;
    margin-top: 3%;
   
   
    width: 35px;
    height: auto;
    margin: none !important;
  }

  .topnav-centered a {
    padding-left: -30%;
    text-align: center !important;

  }



  /* video disscripton on small */
  .video-wrap .video-description {
    position: absolute;
    opacity: 0;
    z-index: 2;
    transition: 0.3s ease-out;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 15% !important;
    width:auto;
  }
}
/* big screen nav */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.li-style {
  text-decoration: none;
  padding: 14px 16px;
}

.topnav-right {
  padding-right: 30px;
  margin-bottom: 15px;
  float: right;
}

.topnav-centered a {

  text-align: center !important;
}

/* nav bar changed with js */
  .fancy-nav {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 2px -2px rgba(0,0,0,.2);
    z-index: 10;
  }

  /* removing link underline */
  a:visited,
  a:link,
  a:active {
    text-decoration: none;
  }



  

/* video wrap when hovering and text */
.video-wrap {
  position: relative;
  width: 100%;
}

video {
  max-width: 100%;
  height: auto;
}

.video-wrap ul {
  padding: 0;
}

.video-wrap li {
  position: relative;
}

.video-wrap .video-description {
  position: absolute;
  opacity: 0;
  z-index: 2;
  transition: 0.3s ease-out;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 10%;
  width:auto;
}

.video-wrap li .video-description h2 {
  color: #fff;
  margin-bottom: 50px;
}

.video-wrap li .video-description a {
  padding: 10px;
  color: #fff;
  border: 1px solid #fff;
}

.video-wrap li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9180327868852459) 37%, rgba(0,0,0,0) 89%);
  color: rgb(117, 0, 0);
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s, visibility .2s;
  height: 98.399%;
  width: 100%;
  content: "";
}

.video-wrap:hover li:after {
  visibility: visible;
  opacity: 1;
}

.video-wrap:hover .video-description {
  opacity: 1;
}

/* video wrap when hovering and text used li to section may clash with the nav bar*/








/* contact form style*/

  #fcf-form {
    display:block;
  }

  .fcf-body {
    margin: 0;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 100%;
  }

  .fcf-form-group {
    margin-bottom: 1rem;
  }

  .fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }

  .fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  .fcf-form-control:focus {
    border: 1px solid #313131;
  }

  select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
  }

  textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
  }

  label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
  }

  .fcf-credit a {
    color: #545b62;
    text-decoration: underline;
  }

  .fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  @media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
  }

  .fcf-btn:hover {
    color: #212529;
    text-decoration: none;
  }

  .fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }

  .fcf-btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }

  .fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
  }

  .fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  }

  .fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
  }

  .fcf-btn-block {
    display: block;
    width: 100%;
  }

  .fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
  }

  input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
  }