* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0f1320;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

body{
    width: 100%;
}


/* navNar */
.nav-section{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.893);
    z-index: 999;
  
}

.nav-section button{
    opacity: 0%;
}

.nav{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
    font-size: 20px;
}

.nav li i{
    margin-right: 10px;
    color: greenyellow;
  }


.nav-section .nav a {
    font-weight: 700;
    text-decoration: none;
    color: greenyellow;
    padding: 10px 0;
    transition: 0.2s ease;
}

.nav-section .nav a:hover {
    color: whitesmoke;
}


.logo{
    font-size: 1.8rem;
    color: white;
}

.logo p{
    margin-left: 30px;
}

.logo span{
    color: greenyellow;
}


/* Hamburger menu styles */
#menu-toggle {
    display: none;
}
  
#hamburger-btn {
    font-size: 1.9rem;
    color: yellowgreen;
    cursor: pointer;
    display: none;
    order: 1;
}


/* sub nav */
.sub-menu{
    display: none;
  }
  
  .sub-menu ul{
    list-style: none;
  }
  
  .nav-section ul li:hover .sub-menu{
    display: block;
    position: absolute;
    background: rgb(27, 27, 27);
    padding-bottom: 20px;
    margin-top: 1px;
    margin-left: 15px;
    color: greenyellow;
  }
  
  .nav-section ul li:hover .sub-menu ul{
    display: block;
    margin: 10px;
  }
  
  .nav-section ul li:hover .sub-menu ul li{
    width: 100px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
  }



  /* Body */
.sectionWrap{
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    width: 80%;
    background-color: rgb(214, 249, 247);
}


  .waterBody{
    padding-top: 77px;
    /* display: flex; */
    width: 100%;

  }


  .wB{
    margin: 10px;
    padding: 20px;
    width: 100%;
  }

  .wB img{
    width: 60%;
  }

  .textWater{
    border-left: lawngreen solid 5px;
  }



  .wB h1{
    text-align: center;
    color: yellowgreen;
  }


  /* Section 2 */
  .videoSec{
    padding-top: 20px;
  }

  .videoFlex{
    display: flex;
    justify-content: center;
    padding: 40px;
  }

  .vidStyle{
    margin-right: 40px;
    border-radius: 20%;
  }

  video{
    border-radius: 20%;
    height: 90%;
    border-bottom: 7px solid rgba(153, 205, 50, 0.312);
    border-bottom: 7px solid rgba(153, 205, 50, 0.312);
  }

  video:hover{
    border: 10px solid rgba(153, 205, 50, 0.542);
    margin: 4px 2px;
    opacity: 0.6;
    transition: 0.3s;
  }

  /* Footer */

footer{

    background-color: #0f1320;
}

.foot{
    display: flex;
    justify-content: space-evenly;
    padding: 3pc;
}

.founder{
    display: flex;
    padding: 5px;
    justify-content: space-around;
}

.founder img{
    width: 110px;
    height: 180px;
    border-radius: 25px;
    border: 1px solid yellowgreen;
}

.founder-info{
    color: yellowgreen;
    margin-left: 10px;
    margin-top: 0px;
}

.founder-info p {
    padding: 10px;
}


iframe{
    filter: invert(100);
    border-radius: 20px;
}


.foot-info{
    padding: 5px;
    color: yellowgreen;
}

.foot-info p{
    padding: 8px;
}


.foot-logo{
    background-color: aliceblue;
    display: flex;
    justify-content: space-around;
}

.foot-logo img{
    width: 9%;
}

.social{
    font-size: 20px;
    margin-left: 10%;
    margin-top: 20px;
}

.social a{
    color: yellowgreen;
    margin-right: 25px;
    
}

.social a:hover{
    color: black;
}

.foot hr{
    opacity: 10%;
}