html, body {
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  font-size: 14px;
  -webkit-overflow-scrolling: touch;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: "Roboto", sans-serif;
}
html.is-hidden, body.is-hidden {
  overflow: hidden;
}

body::after {
  content: "";
  display: block;
  position: relative;
  clear: both;
}

.splide {
  width: 100%;
}
.splide__track {
  height: 100%;
}
.splide__list {
  height: 100%;
}
.splide__slide {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splide__arrow {
  background: transparent;
  opacity: 1;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 0;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--prev {
  left: 0.75rem;
  background-size: 2.5rem;
  background-image: url(../img/prev.png);
  background-repeat: no-repeat;
  background-position: center;
}
.splide__arrow--next {
  right: 0.75rem;
  background-size: 2.5rem;
  background-image: url(../img/next.png);
  background-repeat: no-repeat;
  background-position: center;
}
.splide__pagination__page {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
  transform: initial;
}
.splide__pagination__page.is-active {
  transform: initial;
  background-color: #000;
}

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

h1, h2, h3, h4, h5, h6, b, strong {
  margin: 0;
  font-weight: normal;
}

img {
  border: none;
  margin: 0;
  max-width: 100%;
  height: auto;
}

input, textarea, button {
  color: currentColor;
  padding: 0;
  margin: 0;
  background-color: transparent;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input:active, textarea:active, button:active,
input:focus, textarea:focus, button:focus {
  outline: 0;
}

.o-content {
  width: calc(100% - 10rem);
  max-width: 1920px;
  margin: 0 auto;
}
.o-content--xs {
  max-width: 800px;
}
@media (max-width: 900px) {
  .o-content {
    width: calc(100% - 4rem);
  }
}

.o-wrapper {
  min-height: calc(100dvh - 24rem);
}

.o-hidden {
  display: none;
}

.o-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 6rem;
}
@media (max-width: 1120px) {
  .o-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .o-grid {
    grid-gap: 3rem;
  }
}
@media (max-width: 620px) {
  .o-grid {
    grid-template-columns: 1fr;
  }
}

.o-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.o-gap {
  height: 6rem;
  display: block;
}

.o-nav {
  padding: 0.5rem 0;
  width: 100%;
}
@media (max-width: 900px) {
  .o-nav {
    padding: 0;
  }
}
.o-nav--fixed {
  top: 5.7rem;
  position: sticky;
  z-index: 3;
  background-color: #fff;
}
@media (max-width: 900px) {
  .o-nav--fixed {
    top: 0;
    position: relative;
  }
}
.o-nav__form {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  padding-bottom: 1rem;
}
.o-nav__form .js-search {
  margin-left: auto;
}
@media (max-width: 900px) {
  .o-nav__form .js-search {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .o-nav__form {
    flex-direction: column;
    gap: 1rem;
  }
}
.o-nav__list {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  padding-bottom: 1rem;
}
.o-nav:has(:nth-child(6)) .o-nav__form {
  gap: 1rem;
}
@media (max-width: 900px) {
  .o-nav--none .o-nav__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .o-nav--none .o-nav__form .o-btn--width {
    box-sizing: border-box;
  }
}
.o-nav:has(.c-search.is-active) {
  padding-bottom: 0;
}

.o-select {
  width: 100%;
  position: relative;
}
.o-select::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 3rem;
  background-image: url(../img/down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
  pointer-events: none;
}
.o-select select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0;
  border: 1px solid currentColor;
  background-color: transparent;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  appearance: none;
  line-height: 1rem;
}
.o-select select:not(option) {
  text-transform: uppercase;
}
.o-select select:focus {
  outline: none;
}

.o-btn--line {
  padding: 0.5rem 1rem;
  border: 1px solid currentColor;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}
.o-btn--menu {
  display: none;
}
@media (max-width: 900px) {
  .o-btn--menu {
    display: flex;
    color: #808080;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    padding: 0 0.5rem;
    margin-left: auto;
  }
}
.o-btn--filter {
  display: none;
}
.o-btn--icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.o-btn--close {
  padding-top: 1rem;
}
.o-btn--close .material-symbols-outlined {
  font-size: 1rem;
}

.o-break {
  background-color: #f6f6f5;
  width: 100%;
  padding: 4.5rem 0 9rem;
}

.s-text > * {
  margin: 1rem 0;
  line-height: 1.4em;
}
.s-text > *:first-child {
  margin-top: 0;
}
.s-text > *:last-child {
  margin-bottom: 0;
}
.s-text a {
  text-decoration: underline;
}
.s-text p {
  margin: 1rem 0;
}
.s-text hr {
  clear: both;
  margin: 0;
  height: 0;
  border: none;
  opacity: 0;
  display: block;
}
.s-text blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 1px solid currentColor;
  width: 100%;
  box-sizing: border-box;
}
.s-text .wp-caption {
  margin: 0;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 1rem;
  width: fit-content;
}
.s-text .wp-caption img {
  margin: 0;
  max-width: 100%;
}
.s-text .wp-caption p {
  margin: 0.3rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: #808080;
}
.s-text .aligncenter {
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 1rem auto;
  text-align: center;
}
.s-text .aligncenter.wp-caption {
  max-width: 100%;
}
.s-text .aligncenter.wp-caption p {
  text-align: center;
}
.s-text .alignleft {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  float: left;
  max-width: calc(100% - 1rem);
  position: relative;
}
.s-text .alignleft.wp-caption {
  max-width: calc(100% - 1rem);
}
.s-text .alignleft.wp-caption p {
  text-align: left;
}
.s-text .alignright {
  margin-left: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  float: right;
  max-width: calc(100% - 1rem);
  position: relative;
}
.s-text .alignright.wp-caption {
  max-width: calc(100% - 1rem);
}
.s-text .alignright.wp-caption p {
  text-align: right;
}
.s-text iframe {
  width: 100%;
  max-height: calc(100dvh - 24rem);
  aspect-ratio: 1/0.566;
  clear: both;
}
.s-text video {
  width: 100%;
  position: relative;
  clear: both;
}
.s-text audio {
  width: 100%;
  clear: both;
}
.s-text::after {
  content: "";
  display: block;
  clear: both;
}

.c-header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 2rem 0;
  background-color: #fff;
}
@media (max-width: 900px) {
  .c-header {
    padding: 0.5rem 0;
  }
}
.c-header__int {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.c-header__logo {
  font-weight: 800;
  font-size: 1.5rem;
}
.c-header__logo span {
  color: #808080;
}
.c-header__menu {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .c-header__menu {
    display: none;
  }
}
.c-header__menu-item {
  color: #808080;
  font-weight: 500;
}
.c-header__menu-item.is-active {
  color: #000;
}
@media (min-width: 1120px) {
  .c-header__menu-item:hover {
    color: #000;
  }
}

.is-menu {
  overflow: hidden;
}
.is-menu .o-btn--menu {
  color: #000;
}
.is-menu .c-header {
  background-color: #fff;
}
.is-menu .c-header__menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 3.8rem;
  background-color: #fff;
  left: 0;
  padding: 0 1rem 1.5rem;
  width: 100%;
  height: calc(100dvh - 3.8rem);
  box-sizing: border-box;
  align-items: flex-end;
  gap: 0;
}
.is-menu .c-header__menu-item {
  padding: 1rem 0;
}

.c-footer {
  position: relative;
  left: 0;
  width: 100%;
  padding: 3rem 0;
}
.c-footer img {
  display: block;
  margin: 0 auto 1rem;
  max-width: 6rem;
}
.c-footer__int {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 620px) {
  .c-footer__int {
    flex-direction: column;
  }
}
.c-footer__column {
  width: 100%;
}
.c-footer__column:nth-child(2) {
  text-align: center;
}
.c-footer__column:nth-child(3) {
  text-align: right;
}
@media (max-width: 620px) {
  .c-footer__column:nth-child(3) {
    text-align: center;
  }
}

.c-card {
  width: 100%;
  position: relative;
}
@media (min-width: 1120px) {
  .c-card:hover .c-card__img img {
    transform-origin: center;
    transition: 10s ease;
    transform: scale(1.5);
  }
}
.c-card__img {
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.c-card__img img {
  display: block;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-single {
  clear: both;
}
.c-single h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 4.5rem;
}
@media (max-width: 900px) {
  .c-single h1 {
    font-size: 3rem;
  }
}
.c-single__table {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  max-height: calc(100dvh - 5.7rem);
  position: relative;
  background-color: #000;
  margin-bottom: 5rem;
}
@media (max-width: 1120px) {
  .c-single__table {
    grid-template-columns: 2fr 1fr;
  }
  .c-single__table h1 {
    grid-column: 1/3;
  }
}
@media (max-width: 900px) {
  .c-single__table {
    grid-template-columns: 1fr;
  }
  .c-single__table h1 {
    grid-column: 1;
  }
}
.c-single__table-xtra {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 3rem;
  float: left;
  max-width: 10rem;
}
@media (max-width: 1120px) {
  .c-single__table-xtra {
    float: initial;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 900px) {
  .c-single__table-xtra {
    grid-row: 2;
    margin-bottom: 0;
    float: initial;
  }
}
.c-single__table .c-slider {
  grid-column: 2;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.6;
  top: 0;
  left: 0;
}
@media (max-width: 1120px) {
  .c-single__table .c-slider {
    grid-column: 1;
  }
}
.c-single .s-text > *:not(.c-single__table, img, iframe, .c-gallery, .wp-caption, .aligncenter, .alignleft, .alignright, .c-slider, h1, .c-single__table-xtra) {
  max-width: 50rem;
  margin: 1.5rem auto;
}
.c-single .s-text > p {
  max-width: 50rem;
  margin: 1.5rem auto;
}
.c-single .s-text blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.c-single .s-text blockquote ul {
  padding: 0;
  list-style: none;
  margin: 0;
  color: #808080;
}
.c-single .s-text blockquote ul b {
  color: #000;
  font-weight: 500;
}
.c-single .s-text h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1em;
}
.c-single .s-text h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem !important;
}
.c-single .s-text h2 + p {
  margin-top: 0 !important;
}
.c-single .s-text h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem !important;
}
.c-single .s-text h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem !important;
}
.c-single .s-text h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem !important;
}
.c-single .s-text img {
  cursor: pointer;
  width: 100%;
  max-height: calc(100vh - 13rem);
  object-fit: cover;
}
.c-single--error {
  min-height: calc(100dvh - 34rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.c-gallery {
  width: 100%;
  margin: 3rem auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}
.c-gallery:has(:nth-child(7)) {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1120px) {
  .c-gallery:has(:nth-child(7)) {
    grid-auto-flow: dense;
    grid-auto-columns: 22rem;
    grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
  }
}
@media (max-width: 620px) {
  .c-gallery:has(:nth-child(7)) {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.5rem;
  }
}
@media (max-width: 1120px) {
  .c-gallery {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-columns: 22rem;
    grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
  }
}
@media (max-width: 620px) {
  .c-gallery {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.5rem;
  }
}
.c-gallery__item {
  width: 100%;
}
.c-gallery__item img {
  width: 100%;
  aspect-ratio: 1/0.66;
  object-fit: scale-down;
}

.c-over {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: block;
  z-index: 10;
  padding: 0;
}
.c-over__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 3rem;
  height: 3rem;
  background-size: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/close.png);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  z-index: 3;
  font-size: 0;
}
.c-over__caption {
  margin: 0.3rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: #808080;
}
.c-over img {
  width: auto;
  height: auto;
  max-width: calc(100dvw - 3rem);
  max-height: calc(100dvh - 6rem);
  display: block;
}
.c-over .splide {
  width: 100%;
  height: 100dvh;
}

body:has(.c-over) {
  overflow: hidden;
}

.c-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  display: none;
}
.c-loader__imgs {
  position: relative;
  width: 13rem;
  height: 11.2rem;
}
.c-loader__img-01 {
  opacity: 0;
}
.c-loader__img-02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: fadeImg 3.6s ease-in-out forwards;
  animation-delay: 0.4s;
}
.c-loader__img-03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 47.1%;
  height: auto;
  opacity: 0;
  animation: fadeImg 3.6s ease-in-out forwards;
  animation-delay: 1.4s;
}
.c-loader__img-04 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 53.1%;
  height: auto;
  opacity: 0;
  animation: fadeImg 3.6s ease-in-out forwards;
  animation-delay: 2.4s;
}

body:has(.o-grid):not(body:has(.o-nav--fixed, .c-header__menu-item.is-active)) .c-loader {
  display: flex;
}

.is-load .c-loader {
  animation: loaderOut 800ms ease forwards;
  animation-delay: 3.6s;
}

@keyframes myAnimation {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loaderOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes fadeImg {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.c-slider {
  width: 100%;
  margin-bottom: 3rem;
}
.c-slider .splide {
  width: 100%;
  height: 100dvh;
  max-height: calc(100dvh - 5.7rem);
}
.c-slider .splide__slide img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
}
.c-slider .splide__pagination {
  bottom: initial;
  top: 100%;
  margin-top: 0.75rem;
}
.c-slider--gallery {
  height: auto;
  margin-bottom: 0;
}
.c-slider--gallery .splide {
  width: 100%;
  height: fit-content;
  max-height: initial;
  aspect-ratio: initial;
}
.c-slider--gallery .splide__track {
  height: fit-content;
}
.c-slider--gallery .splide__list {
  height: fit-content;
}
.c-slider--gallery .splide__slide {
  aspect-ratio: 3/2;
  height: fit-content;
}
.c-slider--gallery .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  position: relative;
  object-fit: cover;
}
.c-slider--gallery .splide__arrow:disabled {
  display: none;
}
.c-slider--gallery .splide__arrow--prev {
  left: 0;
}
.c-slider--gallery .splide__arrow--next {
  right: 0;
}
.c-slider--gallery .splide__pagination {
  bottom: initial;
  top: 100%;
}
.c-slider--gallery .is-none-slider .splide__arrow {
  display: none;
}
.c-slider--gallery .is-none-slider .splide__track {
  overflow: initial;
}
.c-slider--gallery .is-none-slider .splide__list {
  display: flex;
  flex-wrap: nowrap;
  transform: initial;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.5rem;
}
.c-slider--gallery .is-none-slider .splide__slide {
  aspect-ratio: 3/2;
  height: fit-content;
  width: 100%;
  margin: 0 !important;
  flex: 1;
}

.c-select {
  position: relative;
  width: 100%;
  max-width: 18rem;
}
@media (max-width: 900px) {
  .c-select {
    max-width: 100%;
  }
}
.c-select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem;
  background-color: #fff;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}
.c-select__btn .material-symbols-outlined:nth-child(3) {
  display: none;
}
.c-select__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  max-height: 25rem;
  overflow: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.c-select__list {
  display: flex;
  flex-direction: column;
}
.c-select__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 1px solid rgb(224, 224, 224);
  padding: 1.5rem;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 1120px) {
  .c-select__item:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
  }
}
.c-select.is-active .c-select__dropdown {
  display: block;
}
.c-select.is-active .c-select__btn .material-symbols-outlined:nth-child(2) {
  display: none;
}
.c-select.is-active .c-select__btn .material-symbols-outlined:nth-child(3) {
  display: block;
}

.c-search {
  background-color: #f6f6f5;
  border-bottom: 1px solid rgb(224, 224, 224);
  width: 100%;
  padding: 3rem 0;
  display: none;
}
.c-search__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
}
.c-search__content > .o-btn {
  margin-left: auto;
}
.c-search__form {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.c-search__form input {
  vertical-align: middle;
  border-bottom: 1px solid currentColor;
  font-size: 1rem;
  width: 17rem;
}
.c-search.is-active {
  display: block;
}

.splide__sr {
  display: none !important;
}

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