@import url("https://fonts.googleapis.com/css2?family=Gemunu+Libre:wght@400;500;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gemunu Libre", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 50px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 30px;
}

.top {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #222;
  color: #fff;
  text-align: center;
}
.top a {
  color: #fff;
  text-decoration: none;
}
.top a:hover {
  color: #f58634;
  text-decoration: none;
}

.logo {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.bar1 {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 6px 0;
  margin-left: 30px;

  transition: 0.4s;
}

.bar1:hover {
  background-color: #f58634;
  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: #f58634;
  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: #f58634;
  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: 30px;
  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;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

.tit-box {
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.fontep {
  font-size: 14px;
}

.box {
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-item {
  width: 100%;
  height: auto;
  flex: 1;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn-pro {
  width: auto;
  height: 40px;
  border-radius: 5px;
  padding: 10px 40px;
  background-color: #f58634;
  color: #222;
  margin-top: 30px;
  border: none;
  outline: none;
  text-decoration: none;
  filter: drop-shadow(0 0 0.2rem #444);
}

.btn-pro:hover {
  background-color: #ce5905;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .box {
    flex-direction: column;
  }
}
