*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #ccc;
   /* background-color: #009999;
    display:flex ;
    justify-content: center;
    align-items: center; */
}

.logo{
    position: fixed;
    height: 90px;
    width: 100px;    
    z-index: 1;
}

.box nav {
    width: 100%;
    height: 90px; /*  8.3% reduces photo/video w/ no scrollbar */
    position: fixed; /*absolute*/ 
    padding: 20px 8%;
    display: flex;
} 

.box nav ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    list-style: none;
} 

.box nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: auto; /*300px;*/  /* Spreads the top links */
} 

.box nav ul li a{
    text-decoration: none;
    margin: 10px 10px;
    padding: 10px 10px;
    color: black; 
    font-size: 24px;
}

.box nav ul li a.active{
    text-decoration-line: underline; 
    text-decoration-color: rgb(0, 123, 255); 
    text-decoration-thickness: 8px; 
    border-radius: 3px;
    /* background-color: #009999; */
}

.hamburger-menu{
    visibility: collapse;
}
.sidebar {
    visibility: collapse;
}

.capStmt {
    text-align: center; position: fixed; margin-left: 40px;
}

.parag h1{
    margin-top: 10.4%;  /* 110px */
    /*margin-left: 480px; */
    margin-left: 29%; /* 28% 530px */
    /*color: rgb(3, 3, 8); */
    color: black;
  
 
   display: block ;
     
 }
 
  .parag p{
    /* 9.4% 100px */
    /* 100px */
    text-align: center;
    justify-content: center;
    position: fixed;   /* fixed */
    margin-top: 5%;       /* top: 40% */
    left: 40%; /* 42% */
     /* margin-top: 7%;  
     margin-left: 5.3%;  */
     font-size: 24px;
     font-weight: bolder;
     font-family: 'Poppins', sans-serif;
     color: black;
 
     display:flex ;
     justify-content: center;
     align-items: center;
 } 
 
.menu2 {
    position: fixed; /* fixed*/
    right: 4%;
    bottom: 2%;
  }

  .menu2 ul {
    list-style: none;
  }

  .menu2 ul li{
    color: black;
  }
  
.menu2 ul li a{
    text-decoration: none;
    color: black;
}
@media (max-width: 810px) {

    .box nav {
        visibility: collapse;
    }
    .logo {
        visibility: collapse;
    }

    .hamburger-menu{
        visibility: visible;
    }

    .sidebar {
        visibility: visible;
    }

    .parag p{
      
      text-align: center;
      justify-content: center;
      position: fixed;   /* fixed */
      margin-top: 18%;       /* top: 40% */
      left: 25%; 
       font-size: 24px;
       font-weight: bolder;
       font-family: 'Poppins', sans-serif;
       color: black;
   
       display:flex ;
       justify-content: center;
       align-items: center;
   } 
           
            *,
*::after,
*::before {
  box-sizing: border-box;
  color: white; /* added */
}

body {
  margin: 0;
}

:root {
  --bar-width: 60px;
  --bar-height: 8px;
  --hamburger-gap: 6px;
  --foreground: #333;
  --background: white;
  --hamburger-margin: 8px;
  --animation-timing: 200ms ease-in-out;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}

.hamburger-menu {
  --x-width: calc(var(--hamburger-height) * 1.41421356237);

  display: flex;
  flex-direction: column;
  gap: var(--hamburger-gap);
  width: max-content;
  position: absolute;
  top: var(--hamburger-margin);
  left: var(--hamburger-margin);
  z-index: 2;
  cursor: pointer;
  border: 1px solid black;
}

.hamburger-menu:has(input:checked) {
  --foreground: white;
  --background: #333;
}

.hamburger-menu:has(input:focus-visible)::before,
.hamburger-menu:has(input:focus-visible)::after,
.hamburger-menu input:focus-visible {
  border: 1px solid var(--background);
  box-shadow: 0 0 0 1px var(--foreground);
}

.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input {
  content: "";
  width: var(--bar-width);
  height: var(--bar-height);
  background-color: var(--foreground);
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing),
    rotate var(--animation-timing), translate var(--animation-timing),
    background-color var(--animation-timing);
}

.hamburger-menu input {
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}

.hamburger-menu:has(input:checked)::before {
  rotate: 45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / -2);
}

.hamburger-menu:has(input:checked)::after {
  rotate: -45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / 2);
}

.hamburger-menu input:checked {
  opacity: 0;
  width: 0;
}

.sidebar {
  transition: translate var(--animation-timing);
  translate: -100%;
  padding: 0.5rem 1rem;
  padding-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 1rem);
  background-color: var(--foreground);
  color: var(--background);
  max-width: 6rem;
  max-height: 20vh;
  border-radius: 0 25px;
  border: 1px solid black;
}

.sidebar a{
  justify-content: space-between;
  text-decoration: none;
}

.sidebar a.active{
  border: 2px solid red;
  text-decoration:none;
}

.hamburger-menu:has(input:checked) + .sidebar {
  translate: 0;
}

}
@media (max-width: 560px) {
  .parag h1 {
    /*color: #9c1dc0;*/
    color: red;
  }
  .parag p {
    margin-left: -75px;
    color: blue;
  }
}
/* @media (min-aspect-ratio: 16/9) {
    .home-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .home-video {
        width: auto;
        height: 100%;
    }
} */