


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



.price {
  list-style-type: none;
  border: 0.5px solid #fff;
  background-color: #fbf0ce;
  margin: 0;
  padding: 0;
  transition: 0.3s;
  font-size: 0.9em;
}

.price:hover {
  transform: scaleY(1.05);
}

.price-header {
  background-color: #d8352e;
  color: #fefaee;
  font-size: 2em !important;
  font-weight: 500;
}

.price-price {
  font-size: 1.3em !important;
  font-weight: 600;
}

.price li {
  border-bottom: 1px solid #fff;
  padding: 10 0 10 0;
  text-align: center;
}

.price-footer {
  background-color: #000000;
  font-size: 1em;
  padding: 20px 20px;
}

.price-button {
  background-color: #d8352e;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  font-weight: 400;
  cursor: pointer;
}

.price-button:hover {
  background-color: #ea7974;
}



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

  .price li {
    font-size: 0.8em;
  }

}

















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


.topnav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  overflow: hidden;
  top: -1;
  width: 100%;
  background-color: #000000;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 13;
  text-decoration: none;
  font-size: 0.8em;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  font-weight: 300;
}

/* Add an active class to highlight the current page */
.active2 {
  color: #d8352e !important; 
  border-bottom: 3px solid #d8352e !important;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: right;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 0.8em;
  border: none;
  outline: none;
  color: white;
  padding: 13;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fefaee;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  color: d8352e;
  border-bottom: 3px solid #d8352e;
}

/* Add a background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ecebdb;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

.topnav.responsive .dropdown-content {
  display: block; /* Make sure dropdown is shown when responsive class is active */
}

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



  .topnav a, .dropdown .dropbtn {
    display: none;
  }

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

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  .topnav.responsive {
    position: relative;
    flex-direction: column;
  }

  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {
    float: none;
  }
  
  .topnav.responsive .dropdown-content {
    position: relative;
    display: none; /* Keep hidden by default */
  }
  
  /* Add hover effect for the dropdown button */
  .topnav.responsive .dropdown:hover .dropdown-content {
    display: block;
  }

  
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }

}














/*  */
/*  */
/* 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 */
/*  */
/*  */






