/* 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: 90%;
  /* max-width:  1140px */
  margin: 0 auto;
}

#top_header {
  display: block;
  clear: both;
  margin-bottom: 20px;
}

#menu_top {
  background: transparent;
  height: 100px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  border-bottom: 1px solid #bebebe;
}

#menu_top a.logo {
  color: #0F2747;
  font-size: 60px;
  line-height: 80px;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  vertical-align: middle;
}

.top_logo {
  max-width: 400px;
  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: #0F2747;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}

#menu_top ul li a.active {
  background: #0F2747;
  color: white;
  transition: .5s;
}

#menu_top ul li a.btn_register {
  background: #0F2747;
  color: white;
  transition: .5s;
}

#menu_top ul li a.btn_login {
  background: #F85F11;
  color: white;
  transition: .5s;
}

#menu_top ul li a:hover {
  background: #163968;
  color: white;
  transition: .5s;
}

.checkbtn {
  font-size: 22px;
  color: #0F2747;
  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;
  }

  .top_logo {
    max-width: 300px;
    max-height: auto;
    border: none;
  }
}

@media (max-width: 970px) {
  .top_logo {
    max-width: 220px;
    max-height: auto;
    border: none;
  }
}

/* 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;
  }

  .top_logo {
    max-width: 270px;
    max-height: auto;
    border: none;
  }
}

@media (max-width: 400px) {
  .top_logo {
    max-width: 220px;
    max-height: auto;
    border: none;
  }
}

.container_top {
  display: flex;
  margin: 0;
  padding: 0;
}

.box_top {
  flex: 1;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

.box_top_body {
  margin: 40px;
  background-color: transparent !important;
  color: #fff !important;
  font-size: 14pt;
  line-height: 20pt;
}

.box_top.blue {
  border-top: 4px solid #072043;
  background-color: #072043 !important;
  color: #fff !important;
  min-height: 420px;
}

.box_top.orange {
  border-top: 4px solid #F85F11;
  background-color: #F85F11 !important;
  color: #fff !important;
  min-height: 420px;
}

.box_top a {
  color: #fff !important;
  border: 1px solid transparent;
}

.box_top a>span {
  color: #fff !important;
  font-size: 10pt;
  font-weight: bold;
}

.over_top {
  border: 2px solid transparent;
}

.over_top:hover {
  border: 2px solid #fff;
}

.header_top {
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
}

.search_div {
  margin: 0px;
  padding: 0px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#sub_title {
  display: block;
}

@media (max-width: 750px) {
  #sub_title {
    display: none;
  }
}

/* Mobile */
@media (max-width: 1100px) {
  .container_top {
    flex-direction: column;
  }

  .box_top {
    width: 100%;
  }
}