.flexBox {
  display: flex;
  flex-wrap: wrap;
}

.column {
  display: flex;
  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%;
}

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

input[type=text],
input[type=password],
textarea,
select {
  padding: 0.75em;
  border: 1px solid var(--mainColor);
  border-radius: 0;
  vertical-align: top;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  outline: none;
  line-height: 2;
  max-width: 100%;
}

input[type=text]:focus,
select:focus,
textarea:focus {
  border: 1px solid #000000;
}

input[type=submit],
input[type=reset] {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  padding: 0;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  position: relative;
  display: inline-block;
  line-height: 1.75;
  cursor: pointer;
  padding: 0 0.25em 0 2em;
  letter-spacing: normal;
  width: 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 1em;
}
input[type=radio] + label:before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0.1em;
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: 0 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.65em;
}

input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.35em;
  margin: auto;
  width: 0.8em;
  height: 0.4em;
  border-left: 2px solid rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mwform-checkbox-field,
.mwform-radio-field {
  display: block;
}
.mwform-checkbox-field label,
.mwform-radio-field label {
  display: block;
}
.mwform-checkbox-field input[type=checkbox], .mwform-checkbox-field input[type=radio],
.mwform-radio-field input[type=checkbox],
.mwform-radio-field input[type=radio] {
  display: none;
}
.mwform-checkbox-field input[type=checkbox] + span, .mwform-checkbox-field input[type=radio] + span,
.mwform-radio-field input[type=checkbox] + span,
.mwform-radio-field input[type=radio] + span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  padding: 0.5em;
  letter-spacing: normal;
  width: 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 2em;
}
.mwform-checkbox-field input[type=checkbox] + span:before, .mwform-checkbox-field input[type=radio] + span:before,
.mwform-radio-field input[type=checkbox] + span:before,
.mwform-radio-field input[type=radio] + span:before {
  content: "";
  position: relative;
  display: block;
  margin: 0 0.5em 0 0;
  width: 1.5em;
  height: 1.5em;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}
.mwform-checkbox-field input[type=checkbox]:checked + span, .mwform-checkbox-field input[type=radio]:checked + span,
.mwform-radio-field input[type=checkbox]:checked + span,
.mwform-radio-field input[type=radio]:checked + span {
  background: #ffffff;
}
.mwform-checkbox-field input[type=checkbox]:checked + span:after, .mwform-checkbox-field input[type=radio]:checked + span:after,
.mwform-radio-field input[type=checkbox]:checked + span:after,
.mwform-radio-field input[type=radio]:checked + span:after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 1em;
  margin: auto;
  width: 1em;
  height: 0.5em;
  border-left: 2px solid rgba(0, 0, 0, 0.8);
  border-bottom: 2px solid rgba(0, 0, 0, 0.8);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn {
  margin: 0;
  text-align: center;
  position: relative;
  display: inline-block;
}
.btn a, .btn input, .btn button, .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  position: relative;
  z-index: 1;
  border: 1px solid;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  line-height: 1;
  border-radius: 3em;
}
.btn a:hover, .btn input:hover {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}
.btn.wh a, .btn.wh input, .btn.wh button, .btn.wh span {
  background: #ffffff;
  border-color: #ffffff;
}
.btn.wh a:hover, .btn.wh input:hover {
  color: #ffffff;
  background: #000000;
}
.btn.fill a, .btn.fill input, .btn.fill button, .btn.fill span {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}
.btn.fill a:hover, .btn.fill input:hover {
  background: #ffffff;
  border-color: #000000;
  color: #000000;
}

.sBtn {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 0.8em;
}
.sBtn a, .sBtn span {
  display: flex;
  align-items: center;
  color: currentColor;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: 1px solid;
  border-radius: 3em;
  padding: 0.5em 1em;
}

.arrowBtn {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 0.9em;
}
.arrowBtn a, .arrowBtn span {
  display: flex;
  align-items: center;
  color: currentColor;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.arrowBtn a:after, .arrowBtn span:after {
  content: "";
  display: block;
  width: 1em;
  height: 0.25em;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: skew(42.5deg);
  margin-left: 1em;
}

.btnArea {
  overflow: hidden;
  width: 100%;
  margin: 0 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1em;
}
.btnArea .btn {
  margin: 0;
}
.btnArea .btn:not(:last-of-type) {
  margin-right: 0.5em;
}
.btnArea .btn input {
  font-size: 1em;
  width: 100%;
  background: #000000;
  border-color: #000000;
  padding: 1em;
}

.btnWrap .btn {
  margin: 0 1em 1em 0;
}

*:not(.btn) a[target=_blank] {
  display: flex;
  align-items: center;
}
*:not(.btn) a[target=_blank]:after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  margin: 0 0 0 0.5em;
  display: block;
  line-height: 1;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z"/></svg>');
  -webkit-mask-size: cover;
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z"/></svg>');
  mask-size: cover;
  background-color: currentColor;
}

.modal {
  display: none;
  /*
  	cursor: pointer;
  	height: 100vh;
  	width: 100%;
  	top: 0;
  	left: 0;
  	position: fixed;
  	visibility: hidden;
  	align-items: center;
  	justify-content: center;
  	background: $white;
  	padding: 5vw calc(5vw + 3.5em);
  */
}

.close {
  z-index: 0;
  cursor: pointer;
}
.close.closeBtn i {
  text-indent: -9999em;
  outline: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.close.closeBtn i:before, .close.closeBtn i:after {
  content: "";
  display: block;
  width: 1px;
  height: 45%;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  margin: auto;
  z-index: 2;
  background: #000000;
}
.close.closeBtn i:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close.closeBtn i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.wp-pagenavi {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 3em 0;
  position: relative;
  letter-spacing: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: -webkit-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 #000000;
  background: none;
  color: #000000;
  line-height: 2em;
  width: 2em;
  height: 2em;
  transition: 0.4s all ease-in-out;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  border: none;
}
.wp-pagenavi a.last, .wp-pagenavi a.first {
  width: auto;
  border: none;
  padding: 0 0.5em;
}
.wp-pagenavi a:hover {
  background: #000000;
  color: #ffffff;
}
.wp-pagenavi span {
  line-height: 1.5;
}
.wp-pagenavi span.pages {
  color: #000000;
  letter-spacing: 0;
}
.wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  line-height: 2em;
  width: 2em;
  height: 2em;
}
.wp-pagenavi span.extend {
  line-height: 2em;
  margin: 0 0.5em;
  text-decoration: none;
}

.pageNav {
  padding: 1.5em 0 3em;
  align-items: center;
  justify-content: center;
}
.pageNav .btn {
  min-width: 12em;
  margin: 0 1em;
}
.pageNav .btn a, .pageNav .btn span {
  justify-content: center;
}
.pageNav .btn.empty {
  opacity: 0.2;
}
.pageNav.wh div a {
  color: #ffffff;
}
.pageNav.wh div.backArch {
  border-color: #ffffff;
}

.notFoundPage {
  padding: 6em 0;
}
.notFoundPage #noItems {
  min-height: 50vh;
  justify-content: center;
  align-items: center;
}
.notFoundPage #noItems strong {
  text-align: center;
  font-size: 1.5em;
}
.notFoundPage #noItems .message-404 {
  margin: 0;
  padding: 3em 0 0;
  text-align: center;
}
.notFoundPage #noItems .message-404 .info-404 {
  display: block;
}
.notFoundPage #noItems .btn {
  margin: 3em auto 0;
  text-align: center;
}

.singleNav {
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.singleNav .btn {
  margin: 0;
  padding: 0;
  width: 32%;
}
.singleNav .btn.next a, .singleNav .btn.next b {
  padding: 0 2em 0 1em;
}
.singleNav .btn.next a:before, .singleNav .btn.next b:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.singleNav .btn.prev a, .singleNav .btn.prev b {
  padding: 0 1em 0 2em;
}
.singleNav .btn.prev a:before, .singleNav .btn.prev b:before {
  right: auto;
  left: 1em;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.singleNav .backAcv {
  margin: 0;
}

.view {
  transform: translate(0, 3em);
  opacity: 0;
}
.view.inView {
  transform: translate(0, 0);
  opacity: 1;
  transition: 0.8s transform cubic-bezier(0, 0, 0.2, 1), 0.4s opacity linear;
  transition-delay: 0.2s, 0.2s;
}

@keyframes altBefore {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(calc(100% + 1px), 0);
    transform: translate(calc(100% + 1px), 0);
  }
}
@keyframes altAfter {
  0% {
    -webkit-transform: translate(calc(-100% - 1px), 0);
    transform: translate(calc(-100% - 1px), 0);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(calc(100% + 1px), 0);
    transform: translate(calc(100% + 1px), 0);
  }
}
@media screen and (min-width: 1025px) {
  .btn input:hover {
    background: #000000;
    color: #ffffff;
  }
}
@media screen and (max-width: 1024px) {
  .pageNav {
    padding: 1.5em 0;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  .pageNav div {
    max-width: 15em;
    width: 100%;
    padding: 0.5em 0;
  }
  .pageNav div a {
    width: 100%;
    background: #ffffff;
    color: #000000;
    border-radius: 1.5em;
    border: 1px solid #000000;
  }
  .pageNav div.backArch {
    border: none;
  }
  .pageNav.wh div a {
    background: #ffffff;
    color: #000000;
  }
}
@media screen and (max-width: 767px) {
  .btnArea .btn:not(:last-of-type) {
    margin-right: 0;
  }

  .notFoundPage {
    padding: 10vh 0;
  }
  .notFoundPage p {
    text-align: left;
  }
  .notFoundPage p br {
    display: none;
  }
}

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