.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%;
}

input[type=text],
input[type=password],
textarea,
select {
  padding: 5px 10px;
  border: 2px solid;
  border-radius: 0;
  vertical-align: top;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  outline: none;
  line-height: 2;
  max-width: 100%;
}

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

input[type=submit],
input[type=reset] {
  transition: all 0.4s ease-in-out;
  padding: 0;
  -webkit-appearance: none;
}

button {
  -webkit-appearance: none;
}

.btn {
  --circle: calc(var(--arrow) * 2.5);
  --width: calc(var(--arrow) * 1.5);
  --pos: .5em;
  margin: 0;
  text-align: center;
  position: relative;
  line-height: calc(var(--arrow) * 2.5);
  font-weight: 650;
}
@media (min-width: 1025px) {
  .btn {
    --arrow: 1.25em;
    --padding: 1em;
  }
}
@media (min-width: 1025px) and (max-width: 1536px) {
  .btn {
    --arrow: 1.1em;
  }
}
@media (max-width: 1025px) {
  .btn {
    --arrow: 1em;
    --padding: .75em;
  }
}
.btn:before {
  content: "";
  display: block;
  width: var(--width);
  height: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: calc(var(--circle) - var(--width) + var(--pos));
  flex-shrink: 0;
  margin-top: 1px;
  z-index: 2;
}
.btn a, .btn span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  line-height: 1.5;
  letter-spacing: -0.02em;
  cursor: pointer;
  padding: var(--padding) calc(var(--circle) + var(--padding) * 2) var(--padding) 0;
  border-radius: calc(var(--width) * 2);
  color: currentColor;
  transition: all 0.4s ease-in-out;
}
.btn a:before, .btn a:after, .btn span:before, .btn span:after {
  position: absolute;
  flex-shrink: 0;
}
.btn a:before, .btn span:before {
  content: "";
  display: block;
  width: var(--circle);
  height: var(--circle);
  border: 1px solid;
  border-radius: 50%;
  top: 50%;
  right: var(--pos);
  transform: translateY(-50%);
}
.btn a:after, .btn span:after {
  content: "";
  display: block;
  width: calc(var(--arrow) * 0.5);
  height: calc(var(--arrow) * 0.5);
  z-index: 0;
  transform: rotate(45deg) translate(-50%);
  transform-origin: top center;
  border-top: 1px solid;
  border-right: 1px solid;
  top: calc(50% + 1px);
  right: calc(var(--arrow) * 1.5 * 0.5 + var(--pos));
}
.btn.wh a, .btn.wh span {
  color: #171C61;
  border-color: #ffffff;
  background: #ffffff;
}
.btn.fill {
  color: #ffffff;
}
.btn.fill a, .btn.fill span {
  background: #62b6e4;
}
.btn.fill:hover a {
  background: #62b6e4;
}
.btn.bigBtn {
  width: 100%;
  color: #ffffff;
}
@media (min-width: 1025px) {
  .btn.bigBtn {
    --padding: 3em;
    --padd: var(--padding) calc(var(--circle) + var(--padding) * .5) var(--padding) var(--padding);
    --pos: calc(var(--padding) * .5);
  }
}
@media (max-width: 1025px) {
  .btn.bigBtn {
    --arrow: .75em;
    --padding: 1em;
    --padd: var(--padding);
    --pos: calc(var(--padding) * .5);
    font-weight: 400;
  }
}
.btn.bigBtn a, .btn.bigBtn span {
  background-image: linear-gradient(225deg, #171C61 0%, #62b6e4 100%);
  padding: var(--padd);
}
@media (min-width: 1025px) {
  .btn.bigBtn.center a, .btn.bigBtn.center span {
    justify-content: center;
    padding: var(--padding) calc(var(--circle) + var(--padding) * 0.5);
  }
}
.btn:hover a {
  filter: brightness(1.2);
  will-change: filter;
}

.gBtn {
  --arrow: 2em;
  --circle: calc(var(--arrow) * 2.5);
  --width: calc(var(--arrow) * 1.5);
  width: var(--circle);
  height: var(--circle);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  cursor: pointer;
  border: 1px solid;
  border-radius: 50%;
}
.gBtn:before {
  content: "";
  display: block;
  width: var(--width);
  height: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
  flex-shrink: 0;
  margin-top: 1px;
  z-index: 2;
}
.gBtn:after {
  content: "";
  display: block;
  width: calc(var(--arrow) * 0.5);
  height: calc(var(--arrow) * 0.5);
  z-index: 0;
  transform: rotate(45deg) translate(-50%);
  transform-origin: top center;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: calc(50% + 1px);
  left: calc(var(--arrow) * 1.25);
}

.sBtn {
  margin: 0;
  position: relative;
}
.sBtn a {
  display: block;
  padding: 0.5em 1em;
  width: 100%;
  line-height: 1;
  transition: all 0.4s ease-in-out;
  border: 1px solid;
  border-radius: var(--rad3);
}
.sBtn:hover a {
  color: #ffffff;
  background: #171C61;
}
.sBtn.wh:hover a {
  color: #62b6e4;
  background: #ffffff;
}

.iconBtn {
  align-items: center;
}
.iconBtn.border {
  padding: 0.5em 1em;
  border: 1px solid;
  border-radius: var(--rad5);
  transition: all 0.4s ease-in-out;
}
.iconBtn.border:hover {
  background: #171C61;
  color: #ffffff;
}
.iconBtn i, .iconBtn dt {
  width: 0.8em;
  display: block;
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: auto 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0;
  -webkit-mask-size: auto 100%;
  background: currentColor;
  flex-wrap: nowrap;
}
.iconBtn i.iconMail, .iconBtn dt.iconMail {
  aspect-ratio: 1000/714;
  mask-image: url("../images/iconMail.svg");
  -webkit-mask-image: url("../images/iconMail.svg");
  width: 1.1em;
}
.iconBtn i.iconTel, .iconBtn dt.iconTel {
  aspect-ratio: 457/500;
  mask-image: url("../images/iconCall.svg");
  -webkit-mask-image: url("../images/iconCall.svg");
}
.iconBtn i.iconMap, .iconBtn dt.iconMap {
  aspect-ratio: 371/500;
  mask-image: url("../images/iconPin.svg");
  -webkit-mask-image: url("../images/iconPin.svg");
}
.iconBtn i.iconPdf, .iconBtn dt.iconPdf {
  aspect-ratio: 1/1;
  mask-image: url("../images/iconPdf.svg");
  -webkit-mask-image: url("../images/iconPdf.svg");
}
.iconBtn i.iconExternal, .iconBtn dt.iconExternal {
  aspect-ratio: 1/1;
  mask-image: url("../images/external.svg");
  -webkit-mask-image: url("../images/external.svg");
  margin-left: 1em;
}
.iconBtn i.iconPopup, .iconBtn dt.iconPopup {
  aspect-ratio: 1/1;
  mask-image: url("../images/iconPopup.svg");
  -webkit-mask-image: url("../images/iconPopup.svg");
  margin-left: 1em;
}
.iconBtn a, .iconBtn span {
  margin-left: 0.5em;
}

.btnArea {
  text-align: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
}
.btnArea .btn {
  margin: 0;
}
.btnArea .btn input {
  font-size: 1rem;
  width: 100%;
  background: #171C61;
  border-color: #171C61;
}

.wp-pagenavi {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 3rem 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;
  background: none;
  color: #171C61;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
  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: #171C61;
  color: #ffffff;
}
.wp-pagenavi span {
  line-height: 1.5;
}
.wp-pagenavi span.pages {
  letter-spacing: 0;
}
.wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid;
  background: #171C61;
  color: #ffffff;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
}
.wp-pagenavi span.extend {
  line-height: 2rem;
  margin: 0 0.5rem;
  text-decoration: none;
}

.notFoundPage {
  padding: calc(var(--pad) * 3) 0;
}
.notFoundPage #noItems {
  min-height: 75vh;
  justify-content: center;
  align-items: center;
}
.notFoundPage #noItems em {
  margin: 0 0 calc(var(--pad) * 1);
}
.notFoundPage #noItems strong {
  text-align: center;
  font-size: 1.5rem;
}
.notFoundPage #noItems .term {
  margin: 0;
  padding: calc(var(--pad) * 1) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notFoundPage #noItems .term .info-404 {
  display: block;
}
.notFoundPage #noItems .btn {
  margin: 3rem 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 {
  --bezier: cubic-bezier(0, 0.44, 0.13, 0.96);
  transform: translate(0, 3rem);
  opacity: 0;
  transition: transform 0.8s var(--bezier) 0.2s, opacity 0.8s var(--bezier) 0.2s;
}
.view img {
  transition: filter 0.6s ease-in-out 0.4s;
  filter: brightness(10) saturate(0) blur(1em);
}
.view.inView {
  transform: translate(0, 0);
  opacity: 1;
}
.view.inView img {
  filter: brightness(1) saturate(1) blur(0);
}

@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);
  }
}

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