:root {
    --light: #ffffff;
    --lavender: #e9e9e9;
    --lightGray: #c7e0ee;
    --dark: #171717;
    --textLight: #1fe984;
    /* --overlay-color: #616161; */
    /* --overlay-color: #03a9f4; */
    /* --overlay-color: #3b2c01; */
  }
  
  @font-face {
    font-family: "Trebuchet";
    src: url(../font/trebuchet-ms/trebuc.woff);
  }
  
  * {
    font-family: "Trebuchet";
  }
  
  #navbar {
    transition: 0.2s ease;
  }
  
  .navbar_scroll {
    background-color: var(--lightGray);
    color: var(--dark);
    box-shadow: -11px -8px 1rem 0px #7d817f;
    padding: 12px;
  }
  
  #barsDrop {
    animation: fadeIn 0.4s;
    background: rgba(196, 165, 165, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  #head {
    animation: fadeInText 2s;
  }
  
  #para {
    animation: fadeInText 3s;
  }
  
  #startedBtn {
    animation: fadeInBtn 5s;
  }
  
  #underline {
    border-top: 5px solid;
    animation: fadeInText 6s;
  }
  
  #testimonial_div {
    background: rgba(23, 23, 23, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  .individual {
    background: rgba(23, 23, 23, 0.9);
  }
  
  #price {
    background: rgba(7, 6, 6, 0.7);
    backdrop-filter: blur(5px);
  }
  
  #enrol_info {
    /* background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px); */
    /* border-radius: 10px; */
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateX(3rem);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInText {
    0% {
      opacity: 0;
    }
    66% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeInBtn {
    0% {
      opacity: 0;
    }
    66% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Landing Page Style  */
  
  .showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark);
    color: var(--light);
    z-index: 2;
    transition: 0.5s ease-in-out;
  }
  
  .showcase.active {
    right: 300px;
  }
  
  .showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
    background: var(--overlay-color);
    mix-blend-mode: overlay;
  }
  
  .text {
    position: relative;
    z-index: 10;
  }
  
  .text h2 {
    font-size: 5em;
    font-weight: 800;
    line-height: 1em;
    text-transform: uppercase;
  }
  
  .text h3 {
    font-size: 4em;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
  }
  
  .text p {
    font-size: 1.1em;
    margin: 20px 0;
    font-weight: 400;
    max-width: 700px;
  }
  
  .text a {
    display: inline-block;
    font-size: 1em;
    background: var(--light);
    border-radius: 3px;
    padding: 10px 30px;
    text-decoration: none;
    color: var(--dark);
    margin-top: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.2s;
  }
  
  .text a:hover {
    letter-spacing: 6px;
  }
  
  /* About Us Styles */
  #divider {
    border-top: 5px solid var(--dark);
    border-radius: 50px;
  }
  
  #about_us_desktop {
    /* box-shadow: 30px 63px 0px -1px var(--dark); */
  }
  
  table,
  th,
  td {
    border: 1px solid black;
  }
  
  @media (max-width: 798px) {
    .showcase,
    .showcase header {
      padding: 40px;
    }
  
    .text h2 {
      font-size: 3em;
    }
  
    .text h3 {
      font-size: 2em;
    }
  }
  
  @media (min-width: 768px) {
    #bars {
      display: none;
    }
  }