/**************************
 general
**************************/
body.hidden {
  overflow: hidden;
}
.mesh {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: rgb(0, 0, 0, 0.6);
  display: none;
}
.mesh.active {
  display: block;
}
/**************************
 header
***************************/
header h1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
}
header h1 img {
  width: 200px;
}
@media (max-width: 767px) {
  header h1 img {
    width: 100px;
  }
}
/**************************
 pc_menu
**************************/
.pc_menu {
  position: fixed;
  right: 0;
  top: 0px;
  z-index: 89;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
 background:#f8f4ee;
  padding-right: 30px;
}
.pc_menu ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.pc_menu ul li:not(:last-child) {
  margin-right: 30px;
}
.pc_menu ul li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}
@media (max-width: 767px) {
  .pc_menu {
    display: none;
  }
}
/*************************
 bugger_btn
**************************/
.bugger_btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: #04525c;
  z-index: 101;
  display: none;
}
.bugger_btn span {
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  margin: 0 auto;
  transition: 0.5s all;
}
.bugger_btn.active span {
  transition: 0.5s all;
}
.bugger_btn span:nth-of-type(1) {
  transform: translate(0, 46px);
}
.bugger_btn span:nth-of-type(2) {
  transform: translate(0, 50px);
}
.bugger_btn span:nth-of-type(3) {
  transform: translate(0, 54px);
}
.bugger_btn.active span:nth-of-type(1) {
  transform: translate(2px, 52px) rotate(45deg);
}
.bugger_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.bugger_btn.active span:nth-of-type(3) {
  transform: translate(0, 50px) rotate(-45deg);
}
@media (max-width: 767px) {
  .bugger_btn {
    display: block;
  }
}
/************************
 fixed_menu
************************/
.fixed_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #198492;
  z-index: 100;
  padding-top: 150px;
  transition: 0.5s all;
}
.fixed_menu.open {
  right: 0;
  transition: 0.5s all;
}
.fixed_menu ul {
  list-style: none;
}
.fixed_menu ul li {
  margin-bottom: 15px;
}
.fixed_menu ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
@media (max-width: 640px) {
  .fixed_menu {
    width: 100%;
  }
}
/*************************
 footer
*************************/
footer .footer_bg {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #004261;
}
footer h2 img {
  max-width: 300px;
  width: 100%;
}
footer .footer_info {
  font-size: 14px;
  color: #fff;
}
.copyright {
  margin-top: 50px;
  color: #fff;
  font-size: 14px;
}
footer .footer_menu {
  text-align: center;
}
footer .footer_menu ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}
footer .footer_menu ul li {
  padding-top: 15px;
}
footer .footer_menu a {
  color: #fff;
  text-decoration: none;
}
footer .bd {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 991px) {
  footer .bd {
    border-right: none;
    border-left: none;
  }
  footer .footer_menu {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/****************************
 breadcrumb
****************************/
.breadcrumb a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
.breadcrumb {
  font-size: 14px;
}
