/*************************
 general
*************************/
body.hidden {
  overflow: hidden;
}
.raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/**********************
  header
***********************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 420px;
  padding-top: 15px;
  padding-bottom: 20px;
  background: #fff;
  z-index: 90;
}
header .flex {
  display: flex;
  align-items: flex-end;
}
header h1 {
  margin-bottom: 0;
}
header img {
  max-width: 200px;
}
header .site-title {
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 5px;
  color: #9fb0c3;
  letter-spacing: 0.1em;
  font-size: 14px;
  padding-bottom: 5px;
  font-weight: bold;
}
@media (max-width: 540px) {
  header {
    max-width: 100%;
  }
}
/*********************
 bugger
*********************/
.bugger {
  position: fixed;
  left: 340px;
  top: 24px;
  z-index: 92;
  width: 40px;
  height: 40px;
}
.bugger span {
  display: block;
  width: 40px;
  height: 2px;
  background: #000;
}
.bugger span:nth-of-type(1) {
  transform: translate(0, 16px);
  transition: 0.5s all;
}
.bugger span:nth-of-type(2) {
  transform: translate(0, 20px);
  transition: 0.5s all;
}
.bugger span:nth-of-type(3) {
  transform: translate(0, 24px);
  transition: 0.5s all;
}
.bugger.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(17px, 14px);
  transition: 0.5s all;
}
.bugger.active span:nth-of-type(2) {
  opacity: 0;
  transition: 0.8s all;
}
.bugger.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(-10px, 15px);
  transition: 0.5s all;
}
@media (max-width: 420px) {
  .bugger {
    left: 320px;
  }
}
/***************************
 fixed_menu
****************************/
.fixed_menu {
  max-width: 420px;
  width: 100%;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 89;
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  transition: 0.5s all;
}
.fixed_menu nav ul {
  margin: 0;
  list-style: none;
}
.fixed_menu nav > ul li {
  margin-bottom: 15px;
}
.fixed_menu nav > ul li a {
  color: #000;
  text-decoration: none;
}
.fixed_menu nav > ul li > ul {
  margin-top: 15px;
  padding: 0;
}
.fixed_menu nav > ul li > ul li:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #ccc;
  vertical-align: 4px;
  margin-right: 15px;
}
@media (max-width: 540px) {
  .fixed_menu {
    max-width: 100%;
  }
}
/***********************
 mesh
***********************/
.mesh {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88;
  background: rgb(0, 0, 0, 0.5);
  display: none;
}
.mesh.active {
  display: block;
}
/**********************
 footer
**********************/
footer {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #000;
}
footer h2 img {
  max-width: 150px;
}
footer h2 {
  text-align: center;
  margin-bottom: 30px;
}
footer .site-service {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
footer .copyright {
  text-align: center;
  margin-top: 50px;
  color: #fff;
  font-size: 12px;
}
footer .group_link {
  text-align: center;
}
footer .group_link a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
/*************************
 breadcrumb
*************************/
.breadcrumb-bg {
  padding-top: 15px;
  padding-bottom: 15px;
}
.breadcrumb a {
  color: #000;
  text-decoration: none;
}
.breadcrumb {
  font-size: 14px;
  margin-bottom: 0;
}
