


/*  */
/*  */
/* Pricing Table */
/*  */
/*  */




















/*  */
/*  */
/* Responsive Floating Menu With Sticky */
/*  */
/*  */


.topnav-sticky {
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: -1;
  width: 100%;
  align-items: center;
}


.topnav-sticky a {
  float: left;
  text-align: center;
  padding: 10 30 10 30;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.topnav-sticky a:hover {
  border-bottom: 3px solid;
}

.topnav-sticky .icon {
  display: none;
}

/* Mobile View */
@media (max-width: 800px) {

  .topnav-sticky {
    justify-content: right;
  }

  .topnav-sticky a {
    font-size: 0.6em;
    display: none;
  }

  .topnav-sticky a.icon {
    float: right;
    display: block;
  }

  .topnav-sticky.responsive {
    position: sticky;
    flex-direction: column;
  }
  .topnav-sticky.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .topnav-sticky.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }


}

































/*  */
/*  */
/* Text Blinking */
/*  */
/*  */

.blink {
  animation: blinker 5.0s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}















/*  */
/*  */
/* Image Carousel */
/*  */
/*  */

* {box-sizing: border-box;}
.mySlides {display: none;}

/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

/* Caption text */
.caption-text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #070705;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}













/*  */
/*  */
/* Video Pop Up */
/*  */
/*  */


/* Style for the images */
.videoimagecontainer {
    position: relative;
}

.videoimage {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
    cursor: pointer;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}

.videoimagecontainer:hover .videoimage {
    opacity: 0.6;
}

.videoimagecontainer:hover .middle {
    opacity: 0.8;
}

.trailertext {
    background-color: #393232;
    color: #fff;
    font-size: 1em;
    padding: 10px 10px;
    font-weight: 400;
}



/* Modal Style */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.modal-content {
    position: relative;
    max-width: 800px;
    max-height: 450px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.3em;
}






/*  */
/*  */
/* something New */
/*  */
/*  */






