/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.bodypage {
  max-width: 1140px;
  margin: 0 auto;
}

#top_header {
  display: block;
  clear: both;
  margin-bottom: 20px;
}

#menu_top {
  background: white;
  height: 80px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  border-bottom: 1px solid #bebebe;
}

#menu_top a.logo {
  color: #0082e6;
  font-size: 60px;
  line-height: 80px;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  vertical-align: middle;
}

.top_logo {
  max-width: 260px;
  max-height: auto;
  border: none;
}

#menu_top ul {
  float: right;
  margin-right: 20px;
}

#menu_top ul li {
  display: inline-block;
  line-height: 60px;
  margin: 0 5px;
}

#menu_top ul li a {
  color: #0082e6;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}

#menu_top ul li a.active,
#menu_top ul li a:hover {
  background: #0082e6;
  color: white;
  transition: .5s;
}

.checkbtn {
  font-size: 22px;
  color: #0082e6;
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}

#menu_top #check {
  display: none;
}

@media (max-width: 1160px) {
  #menu_top label.logo {
    padding-left: 20px;
  }

  #menu_top ul li a {
    font-size: 16px;
  }
}

/* Responsive media query code for small screen */
@media (max-width: 910px) {
  #menu_top .checkbtn {
    display: block;
  }

  #menu_top ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    z-index: 5;
  }

  #menu_top ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  #menu_top ul li a {
    font-size: 20px;
  }

  #menu_top a:hover,
  #menu_top a.active {
    background: none;
    color: #ffffff;
  }

  #menu_top #check:checked~ul {
    left: 0;
  }
}