@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap');
*{
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;

}

<meta name="viewport" content="width=device-width, initial-scale=1.0">

body{

    
  height: 100%;
}
nav{
  background: #1b1b1b;

      border: 7px solid white;
      width: 100%;




}
nav:after{
  content: '';
  clear: both;
  display: table;
}
nav .logo{
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  line-height: 70px;
        position: absolute;
      top: 30px;
      left: 45px;
}
nav ul{
  float: right;
  margin-right: 40px;
  list-style: none;
  position: relative;
}

nav .test{
  float: right;
  margin-right: 40px;
  list-style: none;
  position: relative;
}



nav ul li{
  float: left;
  display: inline-block;
  background: #1b1b1b;
  margin: 0 5px;
}
nav ul li a{
  color: white;
  line-height: 70px;
  text-decoration: none;
  font-size: 20px;
  padding: 8px 15px;
}
 nav ul li a:hover{
  color: #00BFFF;

} 
nav ul ul li a:hover{
  box-shadow: none;
}
nav ul ul{
  position: absolute;

    border-top: 10px solid #FFFFFF;
    border-bottom: 10px solid black;
      border-radius: 10px;
  top: 90px;

  opacity: 0;
  visibility: hidden;
}
nav ul ul ul{
  border-top: none;
}
nav ul li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
}
nav ul ul li{
  position: relative;
  margin: 0px;
  width: 150px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);

}
nav ul ul li a{
  line-height: 50px;
}
nav ul ul ul li{
  position: relative;
  top: -60px;
  left: 150px;
}
.show,.icon,input{
  display: none;
}
.fa-plus{
  font-size: 15px;
  margin-left: 40px;
}
@media all and (max-width: 968px) {


  nav ul{
    margin-right: 0px;

    float: left;

  }
  nav .logo{
    padding-left: 30px;

    width: 100%;

  }
  .show + a, ul{
    display: none;
  }
  nav ul li,nav ul ul li{
    display: block;
    width: 100%;
  }
  nav ul li a:hover{
    box-shadow: none;
  }
  .show{
    display: block;
    color: white;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .show:hover{
    color: #00BFFF;
  }
  .icon{
    display: block;
    color: black;
    position: absolute;
    top: 0;
    right: 40px;
    line-height: 70px;
    cursor: pointer;
    font-size: 25px;

  }
  nav ul ul{
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;


  }
  nav ul ul a{
    padding-left: 40px;
  }
  nav ul ul ul a{
    padding-left: 80px;
  }
  nav ul ul ul li{
    position: static;
  }
  [id^=btn]:checked + ul{
    display: block;
  }
  nav ul ul li{
    border-bottom: 0px;
  }
  span.cancel:before{
    content: '\f00d';

  }
}
.content{
margin-left: auto;
margin-right: auto;
}
.header{
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 5px;
  color:#00688B;
  
}

.h2{
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
    color:#black;
  
}

.h3{
  color: white;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;

  margin: 20px;
  
}

strong{

  color:#00688B;
  
}

p{
  font-size: 30px;
  font-weight: 500;
}


table
{ 
margin-left: auto;
margin-right: auto;
padding: 10px 0;
border-color: #FFFFFF;
}

.cellspacing{
        margin: 25px;
}

.cellspacing2{
        margin: 13px;
}

a {
  color: black;
  text-decoration: none;
}

nav a {
  color: white;
  text-decoration: none;
}

html{
  scroll-behavior: smooth; }

section{
  width: 100%;
  height: 300vh;
  background: url(bg.jpg) no-repeat;
  background-size: cover;
}
.gotopbtn{
  border-radius: 25px;
  position: fixed;
  width: 150px;
  height: 50px;
  background: #1b1b1b;
  bottom: 10px;
  right: 50px;

  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 22px;
}

  /* Paralax effect */


.parallax {
  /* The image used */
  background-image: url("img_parallax.png");

  /* Set a specific height */
  min-height: 1000px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


}

