.flexBox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.column {
  flex-direction: column;
}

.svgWrap {
  width: 100%;
  height: auto;
  position: relative;
  margin: auto;
}
.svgWrap:after {
  content: "";
  width: 100%;
  height: 0;
  padding-top: 100%;
  display: block;
}
.svgWrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

input[type=text],
input[type=password],
input[type=email],
textarea,
select {
  padding: 0.6em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  vertical-align: bottom;
  display: inline-block;
  outline: none;
  font-size: 16px;
  -webkit-appearance: none;
  max-width: 100%;
  line-height: 1;
  background: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

input[type=text],
input[type=email],
select {
  height: auto;
  -webkit-appearance: none;
}

textarea {
  min-height: 10em;
}

input[type=text]:focus,
input[type=email]:focus,
select:focus,
textarea:focus {
  border: 1px solid #93b900;
  background: #ffffff;
}

input[type=submit],
input[type=reset] {
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  padding: 0;
  -webkit-appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

:placeholder-shown {
  color: rgba(0, 0, 0, 0.2);
}

.btn {
  margin: 0;
  text-align: center;
  display: inline-block;
}
.btn a, .btn span, .btn input, .btn button, .btn b {
  color: #222222;
  display: inline-block;
  text-align: center;
  padding: 0.5em 2em;
  width: 100%;
  margin: 0;
  position: relative;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.8;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  box-shadow: 0 0 1px #222222;
}
.btn.gn {
  background: #dff2ef;
}
.btn.grd {
  position: relative;
}
.btn.grd a {
  background: none;
  overflow: hidden;
  color: #ffffff;
}
.btn.grd a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  background: #e36d00;
  background: -webkit-linear-gradient(45deg, #93b900 0%, #cce667 100%);
  background: linear-gradient(45deg, #93b900 0%, #cce667 100%);
}
.btn.external a:after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 0 0 1em;
}

.sBtn {
  margin: 0;
  display: inline-block;
  position: relative;
  font-weight: 600;
}
.sBtn a {
  color: #222222;
  display: block;
  padding: 0.5em 2.5em 0.5em 1em;
  width: 100%;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  position: relative;
  border: 1px solid rgba(34, 34, 34, 0.5);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.sBtn a:before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0.7em;
  margin: auto;
  z-index: 0;
  background: #222222;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: right;
}
.sBtn a:after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0.7em;
  margin: auto;
  z-index: 0;
  background: #222222;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.sBtn.nb a {
  padding: 0 2.5em 0 0;
  border: none;
}
.sBtn.wh a {
  border-color: #ffffff;
  color: #ffffff;
}
.sBtn.wh a:before, .sBtn.wh a:after {
  background: #ffffff;
}

.btnArea .btn input {
  min-width: 150px;
}

.modal {
  display: none;
}

.close {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.close i {
  background: transparent;
  text-indent: -9999em;
  outline: none;
  width: 6vh;
  height: 6vh;
  cursor: pointer;
  position: absolute;
  top: 3vh;
  right: 3vh;
  border: 2px solid #222222;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
}
.close i:before, .close i:after {
  content: "";
  display: block;
  width: 2px;
  height: 4vh;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  margin: auto;
  z-index: 2;
  background: #222222;
}
.close i:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.sticky:before, .sticky:after {
  content: "";
  display: table;
}

.view {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition-delay: 0.2s;
}
.view.slow {
  transition-delay: 0.8s;
}
.view.inView {
  opacity: 1;
}

.crop {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  clip-path: inset(0% 100% 0% 0%);
}
.crop.inView {
  clip-path: inset(0% 0% 0% 0%);
}

.wp-pagenavi {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  letter-spacing: normal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 14px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  padding: 0;
}
.wp-pagenavi a {
  text-decoration: none;
  border: 1px solid #222222;
  background: none;
  color: #222222;
  line-height: 30px;
  width: 2em;
  height: 2em;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  border: none;
}
.wp-pagenavi a.last, .wp-pagenavi a.first {
  width: auto;
  border-color: rgba(255, 255, 255, 0);
  padding: 0 0.2em;
}
.wp-pagenavi a:not(.first):not(.last):not(.previouspostslink):not(.nextpostslink) {
  padding: 0.2em 0 0;
}
.wp-pagenavi span.pages {
  color: #222222;
  letter-spacing: 0;
}
.wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid #93b900;
  background: #93b900;
  color: #ffffff;
  line-height: 30px;
  width: 2em;
  height: 2em;
  padding: 0.2em 0 0;
}
.wp-pagenavi span.extend {
  padding: 4px 8px;
  margin: 3px;
  text-decoration: none;
}
.wp-pagenavi.gn span.current {
  border: 1px solid #00380c;
  background: #00380c;
}

.pageNav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pageNav span {
  opacity: 0.5;
}
.pageNav .btn {
  margin: 0;
}

.notFoundPage {
  padding: 25vh 0;
  background: #f7f7f7;
  margin: 2em;
}
.notFoundPage #noItems {
  width: calc(100% - 6vh);
  margin: auto;
}
.notFoundPage #noItems h4 {
  text-align: center;
}
.notFoundPage #noItems .messeage-404 {
  margin: auto;
  padding: 3vh 0 0;
  text-align: center;
}
.notFoundPage #noItems .messeage-404 .info-404 {
  display: block;
}
.notFoundPage #noItems .btn {
  margin: 3vh auto 0;
  text-align: center;
}

.topicPath {
  z-index: 3;
  position: relative;
  width: 100%;
  margin: 0 0 -50px;
}
.topicPath ul {
  width: calc(100% - 10vw);
  height: 50px;
  margin: 0 auto;
  padding: 1em 0;
  font-size: 0.8em;
  font-weight: 600;
  justify-content: flex-end;
  align-items: center;
}
.topicPath ul li {
  margin: 0 0 0 1em;
}
.topicPath ul li span > a, .topicPath ul li span > span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.topicPath ul li span > a:before, .topicPath ul li span > span:before {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #222222;
  margin: 0 0.5em 0 0;
}
.topicPath ul li span > span {
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  input[type=text]:hover,
  input[type=password]:hover,
  input[type=email]:hover,
  textarea:hover,
  select:hover {
    background: #ffffff;
  }
  .close i:hover {
    border: 2px solid rgba(204, 230, 103, 0.5);
    border-radius: 0;
  }
  .close i:hover:before, .close i:hover:after {
    background: rgba(204, 230, 103, 0.5);
  }
  .topicPath ul li a:hover {
    opacity: 1;
    color: #cce667;
  }
  .topicPath ul li a:hover:before {
    background: #cce667;
  }
  .wp-pagenavi a:hover {
    border: 1px solid #cce667;
    background: #cce667;
    color: #ffffff;
  }
  .wp-pagenavi.gn a:hover {
    border: 1px solid #00380c;
    background: #00380c;
  }
  .btn a:hover, .btn span:hover, .btn input:hover, .btn button:hover, .btn b:hover {
    box-shadow: 0 0 0.5em rgba(34, 34, 34, 0.2);
  }
  .btn.grd a:hover {
    color: #222222;
  }
  .btn.grd a:hover:before {
    opacity: 0;
  }
  .sBtn a:hover {
    background: #ffffff;
  }
  .sBtn a:hover:after {
    width: 1.5em;
  }
  .sBtn.nb a:hover {
    color: #93b900;
    background: none;
  }
  .sBtn.wh a:hover {
    background: none;
  }
}
@media screen and (max-width: 1024px) {
  .topicPath {
    display: none;
  }
}
@media (max-width: 767px) {
  .notFoundPage {
    padding: 10vh 0;
  }
  .notFoundPage p {
    text-align: left;
  }
  .notFoundPage p br {
    display: none;
  }
  .pageNav {
    flex-wrap: wrap;
  }
  .pageNav .btn {
    order: 2;
    margin: 1em 0 0;
    width: 100%;
  }
}

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