*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    color: #3d3c3d;
}
.bkgcor{background-color: #ebebeb;}


a {color: #3d3c3d; text-decoration: none;}
a:hover {color: #000; text-decoration: none; font-weight: bold;}

h1{font-size: 30px;}
h2{font-size: 24px;}

.top{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00AFEF;
}

.top-item{
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.top-item a {color: #3d3c3d; text-decoration: none;}
.top-item a:hover {color: #000; text-decoration: none; font-weight: bold;}

.logo{
    width: 100%;
    height: auto;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.bar1 {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 6px 0;
  margin-left: 30px;

  transition: 0.4s;
}

.bar1:hover {
  background-color: #329cd7;
  transform: rotate(360deg);
  transform-origin: center;
}

.bar2 {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 6px 0;
  margin-left: 30px;

  transition: 0.4s;
}

.bar2:hover {
  background-color: #329cd7;
  transform: rotate(360deg);
  transform-origin: center;
}

.bar3 {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 6px 0;
  margin-left: 30px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.bar3:hover {
  background-color: #329cd7;
  transform: rotate(360deg);
  transform-origin: center;
}

.hamburguer {
  margin-top: 30px;
  padding-top: 30px;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
}

/* The side navigation menu */
.sidenav {
  line-height: 20px;
  height: 100%;
  /* 100% Full-height */
  width: 0;
  /* 0 width - change this with JavaScript */
  position: fixed;
  /* Stay in place */
  z-index: 10000;
  /* Stay on top */
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  /* Black*/
  overflow-x: hidden;
  /* Disable horizontal scroll */
  padding-top: 60px;
  /* Place content 60px from the top */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover,
.offcanvas a:focus {
  color: #f1f1f1;
  text-decoration: none;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 36px;
  margin-left: 50px;
  font-size: 36px;
}

.sidenav .closebtn:hover {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 36px;
  margin-left: 50px;
  font-size: 36px;
  color: #329cd7;
  transform: scale(1.5);
}

.divisoria {
  width: 100%;
  height: 10px;
  background-color: #000;
}

@media screen and (max-height: 768px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}


#desk{display: block;}
#mob{display: none;}

nav ul{
    width: 100%;
    height: auto;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #d3d3d3;
}

nav ul li{list-style: none;}

nav ul li a {color: #3d3c3d; text-decoration: none;}
nav ul li a:hover {color: #000; text-decoration: none; font-weight: bold;}




@media (max-width: 768px) {

    .top{flex-direction: column;}

    #desk{display: none;}
    #mob{display: block;}
}



