/* CSS styles for the page */
html,
body {
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
}

.section {
  height: 100vh;
}

header {
  z-index: 100;
  background-color: rgb(255, 255, 255);
  color: #fff;
  padding: 20px 0px 20px 0px;
  width: 100%;
  margin-top: 0;
  display: flex;
  align-items: center;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-color: #001e54;
  position: fixed;  
}

footer {
  background-color: rgb(255, 255, 255);
  color: #001e54;
  font-family: palatino linotype;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  height: 5vh;
  border-top-style: solid;
  border-top-width: 3px;
  border-color: #001e54;
}


main {
  padding-top: 83px;
  padding-bottom: 100px;

}


.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  width: 30px;
  height: 20px;
  padding-right: 30px;
  padding-left: 30px;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: #001e54;
  transition: transform 0.3s ease;
}

.bar.active {
  transform: rotate(45deg);
}

.bar.active:nth-child(2) {
  opacity: 0;
}

.bar.active:nth-child(3) {
  transform: rotate(-45deg);
}

.side-menu {
  z-index: 99;
  width: 185px;
  height: 100vh;
  background-color: #333;
  position: fixed;
  top: header.height;
  left: -250px;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.side-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 20px;
}

.side-menu ul li {
  margin-bottom: 10px;
}

.side-menu ul li a {
  color: #fff;
  text-decoration: none;
}

.show-menu {
  left: 0;
}

.logo {
  position: center;
  top: 20px;
  left: 20px;
}

.logo img {
  object-fit: cover;
  opacity: 1;
}

@media only screen and (orientation: portrait) {

}