body {
  background-color: white;
}
body .content-wrapper {
  width: 1000px;
  margin: 0 auto;
}
body header#main-header {
  height: 110px;
}
body header#main-header > .content-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
body header#main-header > .content-wrapper .lang-select {
  -webkit-order: 1;
  order: 1;
}
body header#main-header > .content-wrapper .lang-select ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  list-style: none;
  padding: 0;
}
body header#main-header > .content-wrapper .lang-select ul li a {
  display: inline-block;
  height: 30px;
  width: calc(30px / var(--ratio));
  overflow: hidden;
  text-indent: -10000px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
body header#main-header > .content-wrapper .logo {
  padding-top: 20px;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
body header#main-header > .content-wrapper .logo .container a {
  display: block;
  height: 90px;
  width: calc(90px / var(--ratio));
  text-indent: -10000px;
  overflow: hidden;
  background-size: contain;
  background-position: center;
}
body nav#top-nav {
  height: 30px;
  background-image: url(../imgs/menu_bg.jpg);
  background-size: contain;
  background-repeat: repeat-x;
}
body nav#top-nav .content-wrapper ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  font-size: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}
body nav#top-nav .content-wrapper ul li {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  transition: color 0.3s ease-out;
}
body nav#top-nav .content-wrapper ul li::before {
  content: "";
  background-image: url(../imgs/menu_bg_active.jpg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
body nav#top-nav .content-wrapper ul li::after {
  position: absolute;
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  right: 0;
  top: 0;
  z-index: 2;
}
body nav#top-nav .content-wrapper ul li:last-child::after {
  display: none;
}
body nav#top-nav .content-wrapper ul li:hover, body nav#top-nav .content-wrapper ul li.active {
  color: #fb5;
  transition: color 0.3s ease-in;
}
body nav#top-nav .content-wrapper ul li:hover::before, body nav#top-nav .content-wrapper ul li.active::before {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
body nav#top-nav .content-wrapper ul li a {
  position: relative;
  line-height: 30px;
  -webkit-user-select: none;
  user-select: none;
  display: inline-block;
  text-decoration: none;
  color: white;
}
body nav#top-nav .content-wrapper ul li:not(.active) a {
  cursor: pointer;
}
body nav#top-nav .content-wrapper ul li.active a {
  pointer-events: none;
  color: #fb5;
}
body .body-container {
  min-height: calc(100vh - 110px - 30px - 50px - 20px - var(--wp-admin--admin-bar--height));
}
body .body-container > .content-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 230px 750px;
  grid-template-areas: "sub-menu content";
}
body .body-container > .content-wrapper > #sub-menu {
  grid-area: sub-menu;
  padding: 10px;
  color: #16b;
  background-image: url(../imgs/sub_menu_bg.png);
  background-repeat: repeat-x;
}
body .body-container > .content-wrapper > #sub-menu h4 {
  padding: 0;
  margin: 0;
}
body .body-container main#primary {
  margin: 0 auto;
}
body footer#main-footer {
  position: relative;
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}
body footer#main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #555;
}
body footer#main-footer > .content-wrapper {
  color: #555;
  display: grid;
  grid-template-columns: 60% 40%;
}
body footer#main-footer > .content-wrapper a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease-out;
}
body footer#main-footer > .content-wrapper a:hover {
  color: black;
  transition: color 0.3s ease-in;
}
body footer#main-footer > .content-wrapper > .cell {
  display: flex;
  height: 50px;
  align-items: center;
}
body footer#main-footer > .content-wrapper > .cell.left .icons {
  padding-top: 2px;
}
body footer#main-footer > .content-wrapper > .cell.left .icons span {
  display: block;
  height: 46px;
  width: calc(46px / var(--ratio));
  background-repeat: no-repeat;
  background-size: contain;
}
body footer#main-footer > .content-wrapper > .cell.right {
  justify-content: end;
}
body footer#main-footer > .content-wrapper #copyrights {
  font-size: 12px;
}
body form.wpcf7-form .input-row, body form.wpcf7-form .button-row, body form.wpcf7-form .captcha-row {
  margin-bottom: 20px;
}
body form.wpcf7-form .button-row, body form.wpcf7-form .captcha-row {
  width: 450px;
  padding-left: 150px;
}
body form.wpcf7-form .button-row .input-wrapper input[type=button], body form.wpcf7-form .button-row .input-wrapper input[type=reset], body form.wpcf7-form .button-row .input-wrapper input[type=submit], body form.wpcf7-form .button-row .input-wrapper button {
  font-size: 14px !important;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;
  cursor: pointer;
}
body form.wpcf7-form .button-row .input-wrapper input[type=button]:hover, body form.wpcf7-form .button-row .input-wrapper input[type=reset]:hover, body form.wpcf7-form .button-row .input-wrapper input[type=submit]:hover, body form.wpcf7-form .button-row .input-wrapper button:hover {
  color: black;
}
body form.wpcf7-form .input-row {
  display: grid;
  grid-template-columns: 150px auto;
}
body form.wpcf7-form .input-row label {
  font-size: 14px;
  font-weight: bold;
}
body form.wpcf7-form .input-row label.required::before {
  content: "* ";
}
body form.wpcf7-form .input-row .input-wrapper input, body form.wpcf7-form .input-row .input-wrapper textarea {
  font-size: 14px;
  padding: 3px;
  border: solid 1px gray;
  width: 400px;
}
body form.wpcf7-form .input-row .input-wrapper textarea {
  height: 150px;
}
body form.wpcf7-form .input-row .input-wrapper .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  user-select: none;
}

/** body */

/*# sourceMappingURL=site.css.map */
