* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  color: #303030;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-block: 0 2px;
  z-index: 2000;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .header {
    padding-block: 0 5px;
  }
}
.header::before {
  content: "";
  position: absolute;
  inset: 0 0 -4px;
  background-image: -webkit-gradient(linear, left top, right top, from(blue), color-stop(red), to(yellow));
  background-image: linear-gradient(to right, blue, red, yellow);
  z-index: -1;
}
.header__wrapper {
  width: 100%;
}
.header .custom-logo-link {
  max-width: 300px;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .header .custom-logo-link {
    max-height: 75px;
  }
}
.header .custom-logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__nav-wrapper {
  margin-left: auto;
}
@media screen and (max-width: 980px) {
  .header__nav-wrapper {
    position: absolute;
    inset: 80px 0 0 auto;
    width: 50%;
    height: calc(100svh - 92px);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-wrapper {
    width: 100%;
  }
}
.header__nav-wrapper.active {
  -webkit-transform: initial;
          transform: initial;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  width: 100%;
  height: 100%;
}
.header__hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger-icon {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__hamburger-icon span {
  display: block;
  width: 80%;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__hamburger-icon.active span:first-of-type {
  -webkit-transform: rotate(45deg) translate(6px, 3px);
          transform: rotate(45deg) translate(6px, 3px);
}
.header__hamburger-icon.active span:nth-of-type(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}
.header__hamburger-icon.active span:last-of-type {
  -webkit-transform: rotate(-45deg) translate(5px, -3px);
          transform: rotate(-45deg) translate(5px, -3px);
}
@media screen and (max-width: 980px) {
  .header__searchform-wrapper {
    margin-left: auto;
  }
}

.nav {
  height: 100%;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 1rem;
}
@media screen and (max-width: 980px) {
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 100%;
    padding: 30px 4%;
  }
}
.menu .menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  isolation: isolate;
}
@media screen and (max-width: 980px) {
  .menu .menu-item {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.menu .menu-item::after {
  content: "";
  position: absolute;
  inset: auto auto -5px 0;
  width: 0;
  height: 1px;
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .menu .menu-item::after {
    display: none;
  }
}
.menu .menu-item:hover::after {
  width: 100%;
}
.menu .menu-item-has-children.expanded a::after {
  -webkit-transform: rotate(226deg);
          transform: rotate(226deg);
}
.menu .menu-item-has-children::before {
  content: "";
  position: absolute;
  inset: -200% 0;
  margin: auto;
  z-index: -1;
}
@media screen and (max-width: 980px) {
  .menu .menu-item-has-children::before {
    display: none;
  }
}
@media screen and (min-width: 981px) {
  .menu .menu-item-has-children:hover .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu .menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 980px) {
  .menu .menu-item-has-children > a {
    display: block;
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.menu .menu-item-has-children > a::after {
  content: "+";
  position: relative;
  display: inline-block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .menu .menu-item-has-children > a::after {
    display: none;
  }
}
.menu .submenu-toggle {
  display: none;
}
@media screen and (max-width: 980px) {
  .menu .submenu-toggle {
    position: relative;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 45px;
    height: 25px;
    border: none;
  }
}
.menu .submenu-toggle__icon {
  position: absolute;
  inset: 0;
  margin: auto;
}
.menu .submenu-toggle__icon::before, .menu .submenu-toggle__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 15px;
  height: 1px;
  background-color: black;
}
.menu .submenu-toggle__icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu .submenu-toggle.expanded .submenu-toggle__icon::after {
  opacity: 0;
}
.menu .sub-menu {
  position: absolute;
  inset: 300% auto auto 0;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 2%;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 300px;
  padding: 20px;
}
@media screen and (max-width: 980px) {
  .menu .sub-menu {
    position: relative;
    inset: initial;
    display: none;
    width: 100%;
    min-width: initial;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.menu .sub-menu .menu-item {
  width: 48%;
  white-space: nowrap;
}
.menu .sub-menu.expanded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-wrapper {
  position: relative;
  overflow: hidden;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-field {
  position: absolute;
  right: -100%;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 0;
  border: 1px solid;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  visibility: hidden;
}
.search-field.visible {
  right: 0;
  opacity: 1;
  width: auto;
  visibility: visible;
}
.search-field::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
  display: none;
}

.search-submit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30.5px;
  border-radius: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}
.search-submit svg {
  -o-object-fit: contain;
     object-fit: contain;
  width: 60%;
  height: 60%;
  -o-object-position: center;
     object-position: center;
}

.footer__content {
  background-color: #e7e5e6;
  overflow: hidden;
}
.footer__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10%;
  padding: 45px 0;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__main {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .footer__main {
    padding: 45px 4%;
  }
}
@media screen and (max-width: 980px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}
.footer__main::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 100vw;
  height: 1px;
  background-color: #7a7a7a;
}
.footer__logo {
  width: 300px;
  height: 120px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .footer__nav {
    gap: 10px 20px;
  }
}
@media screen and (max-width: 980px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px 30px;
  }
}
.footer__nav .menu-item {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__nav .menu-item {
    font-size: 14px;
  }
}
.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}
.footer__copyright-text {
  color: #7a7a7a;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright-text {
    font-size: 14px;
  }
}

.content {
  line-height: 2em;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-block: 100px;
  /* stylelint-disable selector-not-notation */
  /* stylelint-enable selector-not-notation */
}
@media screen and (max-width: 767px) {
  .content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .content {
    padding-block: 90px;
  }
}
.content--single {
  max-width: calc(1000px + 8%);
}
.content--single .content__wrapper {
  max-width: 860px;
  margin: auto;
}
.content:not(.content--top) .wp-block-button .wp-block-button__link {
  padding-bottom: 1.3rem !important;
}
.content--widget {
  padding-block: 0 100px;
}
.content__before {
  border: 1px solid lightgray;
  border-radius: 10px;
}
.content.single .content__wrapper h1:not(.pagebanner__title),
.content.single .content__wrapper .content-heading-h1 {
  font-size: 1.625em;
}
.content.single .content__wrapper h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background-color: darkorange;
  border-left: 8px solid #ff6a00;
  color: #333;
  padding: 1em 12px 0.8em;
  line-height: 1em;
  border-radius: 3px;
  margin: 2em 0 1em;
}
.content.single .content__wrapper h3 {
  font-size: 1.4rem;
  font-weight: 700;
  border-bottom: 2px solid #ff6a00;
  padding: 0 2% 6px;
  margin: 1.5em 0 1em;
  color: #333;
}
.content.single .content__wrapper h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
  border-left: 4px solid #ff6a00;
  padding: 0 10px;
  margin: 1em 0 0.8em;
}
.content ol.wp-block-list,
.content ul.wp-block-list {
  padding-left: 10px;
}
.content ol.wp-block-list {
  list-style-position: inside;
  padding-left: 10px;
}
.content ul.wp-block-list {
  list-style: disc inside;
}
.content p > a {
  text-decoration: underline;
  color: #1d4dec !important;
}
.content a:not(.wp-block-button__link) {
  color: #1d4dec !important;
}
.content a[target=_blank]:not(.wp-element-button):not(:has(> img)):not(.bonus-button__inner a)::after {
  content: "";
  position: relative;
  top: 1px;
  margin-left: 2px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../public/img/icons/external-link.svg");
  background-size: contain;
  background-position: center;
}
.content__archive-content {
  margin-top: 30px;
}
.content__page-content {
  margin-top: 45px;
}
.content__pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto 0;
}
.content .wp-block-image.aligncenter {
  display: block !important;
  text-align: center;
}
.content .wp-block-image.aligncenter img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  max-width: 100%;
  margin-block: 15px;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.breadcrumbs__link:not(:last-of-type) {
  margin-right: 5px;
  color: #1d4dec;
  text-decoration: underline;
}
.breadcrumbs__link:not(:last-of-type)::after {
  content: "";
  display: block;
  position: relative;
  bottom: 1px;
  width: 5px;
  height: 5px;
  border-bottom: 1.5px solid #000;
  border-right: 1.5px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: -1;
}
.breadcrumbs__link:last-of-type a {
  color: #000 !important;
}

.wp-block-button:last-child {
  margin-top: 20px;
}
.wp-block-button .wp-block-button__link {
  position: relative;
  background-color: #1d4dec;
  font-weight: 700;
  line-height: 1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-block-button .wp-block-button__link {
    min-width: 170px;
  }
}
.wp-block-button .wp-block-button__link:hover {
  background-color: #7a7a7a;
}
.wp-block-button.plain .wp-block-button__link {
  background-color: #fff;
  border: 2px solid #7a7a7a;
  border-radius: 5px;
  color: #7a7a7a;
  font-size: 0.9375em;
}
@media screen and (max-width: 767px) {
  .wp-block-button.plain .wp-block-button__link {
    min-width: unset;
  }
}
.wp-block-button.plain .wp-block-button__link::after {
  content: none;
}
.wp-block-button.plain .wp-block-button__link:hover {
  background-color: #7a7a7a;
  color: #fff;
}

.button {
  position: relative;
  padding: 18px 42px;
  background-color: #1d4dec;
  border: 1px solid #e7e5e6;
  border-radius: 5px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    min-width: 170px;
    padding: 16px 26px;
    font-size: 15px;
  }
}
.button:hover {
  background-color: #fff;
  border-color: #1d4dec;
  color: #1d4dec;
}

.wp-block-table {
  position: relative;
}
@media screen and (max-width: 767px) {
  .wp-block-table {
    max-width: 100%;
    overflow: scroll;
    display: block !important;
  }
}
.wp-block-table::before {
  content: "Scroll >>>";
  position: sticky;
  top: 0;
  right: 0;
  display: none;
  text-align: end;
  font-size: inherit;
  color: #1d4dec;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .wp-block-table::before {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table table:has(td:nth-child(3)) {
    min-width: 980px;
  }
}
.wp-block-table.is-style-stripes thead {
  border-bottom: none;
}
.wp-block-table.is-style-stripes thead th {
  padding: 20px 15px;
  background-color: #7a7a7a;
  border-color: #2b3039 !important;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-weight: 400;
}
.wp-block-table.is-style-stripes tbody tr {
  background-color: #f0f0f0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #fff;
}
.wp-block-table.is-style-stripes tbody td {
  padding-left: 25px;
  border: none;
}

.pagebanner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.pagebanner__title {
  color: #161615;
  font-size: 2rem;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .pagebanner__title {
    font-size: 1.8rem;
  }
}
.pagebanner__title:not(:last-child) {
  margin-bottom: 20px;
}
.pagebanner__title--single {
  position: relative;
  margin-bottom: 25px !important;
  padding-bottom: 15px;
}
.pagebanner__title--single::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  margin: auto;
  height: 4px;
  background-color: darkorange;
}
.pagebanner__featured-image {
  margin: 0 auto 20px;
}
.pagebanner .post-date {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 5px;
  margin-bottom: 25px;
  line-height: 1rem;
}
.pagebanner .post-date::before {
  content: "";
  position: relative;
  top: 5px;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../public/img/icons/clock.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
}

.article__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .article__card-list {
    gap: 20px;
  }
}
.article__card-list--yarrp {
  gap: 10px;
}
.article__card {
  width: calc(33.33% - 20px);
}
@media screen and (max-width: 980px) {
  .article__card {
    width: 100%;
  }
}
.article__card--yarpp {
  width: calc(25% - 10px);
  padding: 0;
}
@media screen and (max-width: 767px) {
  .article__card--yarpp {
    width: 100%;
  }
}
.article__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-shadow: 0 6px 15px -2px rgba(16, 24, 40, 0.1);
          box-shadow: 0 6px 15px -2px rgba(16, 24, 40, 0.1);
  border-radius: 6px;
  text-decoration: none !important;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.article__card-content:hover {
  opacity: 0.7;
}
.article__card-content:hover .article__card-thumbnail img {
  scale: 1.1;
}
.article__card-content--yarpp {
  height: auto;
}
.article__card-thumbnail {
  height: auto;
  background-color: #cecece;
  overflow: hidden;
}
.article__card-thumbnail img {
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.article__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  padding: 24px 24px 30px;
}
@media screen and (max-width: 1200px) {
  .article__card-text {
    height: calc(100% - 200px);
  }
}
@media screen and (max-width: 980px) {
  .article__card-text {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .article__card-text {
    padding: 18px 18px 24px;
  }
}
.article__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin-bottom: 10px;
  color: #54595f !important;
  font-size: 1.25em;
  font-weight: 700;
  overflow: hidden;
}
.article__card-date {
  margin-top: auto;
  font-size: 0.8125em;
  font-weight: 700;
}
.article__card-btn {
  margin-top: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .article__card-btn {
    margin-top: 15px;
  }
}

.contact__form {
  font-weight: 700;
}
.contact__form span.required {
  color: #f00;
}
.contact__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.contact__form-item:not(:last-child) {
  margin-bottom: 20px;
}
.contact__form-item input,
.contact__form-item select,
.contact__form-item textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #1d4dec;
  border-radius: 3px;
  font-size: 1em;
  outline: #1d4dec;
}
.contact__form-item input:focus,
.contact__form-item select:focus,
.contact__form-item textarea:focus {
  border-color: #5fa1e2;
}
.contact__form-item textarea {
  height: 250px;
  font-family: "Overpass", sans-serif;
  resize: none;
}
.contact__form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .contact__form-submit {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.page-404 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-404 h1 {
  margin-bottom: 50px;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.container {
  margin: auto;
  padding: 0;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 4%;
  }
}

.custom-toc {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.custom-toc .lwptoc_items {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.custom-toc .lwptoc_itemWrap:has(a + .lwptoc_itemWrap) {
  min-height: 95px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.custom-toc .lwptoc_toggle {
  display: none;
}
.custom-toc::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  display: block;
  height: 40%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(white));
  background-image: linear-gradient(to bottom, transparent, white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.custom-toc .toc-see-more {
  position: absolute;
  inset: auto 0 0;
  margin: auto;
  padding: 10px;
  text-align: center;
  background-color: transparent;
  color: #1d4dec;
  border: transparent;
  font-size: 14px;
  font-weight: regular;
  z-index: 1;
  cursor: pointer;
}
.custom-toc.expanded {
  max-height: initial;
}
.custom-toc.expanded .lwptoc_items {
  grid-template-rows: 1fr;
}
.custom-toc.expanded::after {
  opacity: 0;
  pointer-events: none;
}

.wp-pagenavi {
  width: 80%;
  margin: 0 auto;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
    font-size: 14px;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .ellipsis {
  width: 40px;
  height: 40px;
  color: #000;
  line-height: 1em;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .ellipsis {
    width: 30px;
    height: 30px;
  }
}
.wp-pagenavi .page:hover,
.wp-pagenavi .current:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .ellipsis:hover {
  color: #1d4dec;
}
.wp-pagenavi .current {
  background-color: #e7e5e6;
  color: #000;
  cursor: text;
}
.wp-pagenavi .current:hover {
  color: #000;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: absolute;
  top: 50%;
  width: auto;
  translate: 0 -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .nextpostslink::after,
.wp-pagenavi .previouspostslink::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  background: url("../public/img/icons/arrow-next.svg") no-repeat center/contain;
  -webkit-filter: invert(1) brightness(0);
          filter: invert(1) brightness(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .nextpostslink::after,
  .wp-pagenavi .previouspostslink::after {
    width: 16px;
    height: 16px;
  }
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
  opacity: 0.8;
}
.wp-pagenavi .nextpostslink:hover::after,
.wp-pagenavi .previouspostslink:hover::after {
  -webkit-filter: none;
          filter: none;
}
.wp-pagenavi .nextpostslink {
  right: 0;
}
.wp-pagenavi .previouspostslink {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  left: 0;
}
.wp-pagenavi .previouspostslink::after {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .wpcf7-spinner {
    position: absolute;
    right: 20px;
  }
}
/*# sourceMappingURL=main.css.map */
