.page .hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.page .hero--without-image {
  padding-top: 165px;
  height: auto;
}
.page .hero--without-image .hero__title {
  margin-bottom: 0;
  font-size: 40px;
}
.page .hero__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.page .hero__image::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}
.page .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: 25s linear 0s 1 normal forwards running zoom;
}
.page .hero__content {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 10vh;
  right: 0;
  color: #FAFAFA;
}
.page .hero__subtitle {
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
}
.page .hero__title {
  margin: 10px 0 20px;
  font-weight: 700;
  font-size: 50px;
}
.page .hero__text {
  margin-bottom: 30px;
}
.page .hero__buttons {
  display: flex;
  gap: 10px;
}
.page .hero__buttons .button {
  width: 220px;
}

@media screen and (max-width: 1024px) {
  .page .hero.hero--without-image {
    padding-top: 100px;
  }
  .page .hero.hero--without-image .container {
    padding: 0 10px;
  }
  .page .hero .container {
    padding: 0 20px;
  }
  .page .hero__content {
    bottom: 5vh;
    text-align: center;
  }
  .page .hero__title {
    font-size: 40px;
  }
  .page .hero__buttons {
    justify-content: center;
  }
  .page .hero__buttons .button {
    flex-grow: 1;
    width: auto;
  }
}
@keyframes zoom {
  0% {
    transform: none;
  }
  100% {
    transform: scale(1.2);
  }
}
body.home.admin-bar .hero {
  height: calc(100vh - 32px);
}

.home .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.home .hero__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.home .hero__image::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}
.home .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: 25s linear 0s 1 normal forwards running zoom;
}
.home .hero__content {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 10vh;
  right: 0;
  color: #FAFAFA;
}
.home .hero__subtitle {
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
}
.home .hero__title {
  margin: 10px 0 20px;
  font-weight: 700;
  font-size: 50px;
}
.home .hero__text {
  margin-bottom: 30px;
}
.home .hero__buttons {
  display: flex;
  gap: 10px;
}
.home .hero__buttons .button {
  width: 220px;
}
.home .home-banners {
  padding: 30px 0 50px;
}
.home .home-banners .banners__inner {
  display: flex;
  gap: 10px;
}
.home .home-banners .banners__inner .banner {
  width: 50%;
  position: relative;
}
.home .home-banners .banners__inner .banner__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 65.38%, rgba(0, 0, 0, 0.85) 100%);
}
.home .home-banners .banners__inner .banner__image img {
  display: block;
  width: 100%;
  height: 335px;
  object-fit: cover;
}
.home .home-banners .banners__inner .banner__content {
  position: absolute;
  z-index: 1;
  left: 35px;
  bottom: 35px;
  color: #FAFAFA;
}
.home .home-banners .banners__inner .banner__content .banner__title {
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 24px;
}
.home .home-banners .banners__inner .banner__content .banner__text {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
}
.home .home-banners .banners__inner .banner__content .banner__buttons {
  display: flex;
  gap: 10px;
}
.home .home-banners .banners__inner .banner__content .banner__buttons .button {
  width: 200px;
}
.home .home-icons .icons__inner {
  display: flex;
  gap: 10px;
}
.home .home-icons .icons__inner .icon {
  flex: 1;
  display: flex;
  padding: 15px 20px;
  align-items: center;
  gap: 20px;
  background-color: #FAFAFA;
}
.home .home-icons .icons__inner .icon__image {
  width: 60px;
}
.home .home-icons .icons__inner .icon__image img {
  width: 60px;
  height: 60px;
  object-position: center;
  object-fit: contain;
}
.home .home-icons .icons__inner .icon__title {
  margin: 0 0 5px;
  font-weight: 700;
  font-size: 16px;
}
.home .home-icons .icons__inner .icon__text {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
}
.home .home-icons .icons__inner .icon__link {
  display: inline-block;
  color: inherit;
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}
.home .services__inner {
  display: flex;
  gap: 10px;
}
.home .services__inner .service {
  position: relative;
  flex: 1;
}
.home .services__inner .service__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.home .services__inner .service__image img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.home .services__inner .service__content {
  position: absolute;
  z-index: 1;
  display: flex;
  height: 50%;
  left: 20px;
  right: 20px;
  bottom: 25px;
  color: #FAFAFA;
  text-align: center;
  flex-direction: column;
}
.home .services__inner .service__content .service__title {
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 24px;
}
.home .services__inner .service__content .service__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
}
.home .services__inner .service__content .service__buttons {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.home .services__inner .service__content .service__buttons .button {
  width: 100%;
}
.home .offerings__inner {
  display: flex;
  gap: 10px;
}
.home .offerings__inner .offering {
  flex: 0 0 calc(25% - 8px);
}
.home .offerings__inner .offering__image {
  position: relative;
  margin-bottom: 15px;
}
.home .offerings__inner .offering__image .offering__tag {
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 5px 10px;
  color: #FAFAFA;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #1E1E1E;
}
.home .offerings__inner .offering__image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.home .offerings__inner .offering__content .offering__title {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 16px;
}
.home .offerings__inner .offering__content .offering__text {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
}
.home .offerings__inner .offering__content .offering__link {
  display: inline-block;
  color: inherit;
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}
.home .area__map img {
  width: 100%;
}
.home .activities__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home .activities__inner .activity {
  display: flex;
  gap: 10px;
}
.home .activities__inner .activity:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.home .activities__inner .activity__image, .home .activities__inner .activity__content {
  width: 50%;
}
.home .activities__inner .activity__image img {
  display: block;
  width: 100%;
  height: 436px;
  object-fit: cover;
}
.home .activities__inner .activity__content {
  display: flex;
  padding: 30px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-color: #FAFAFA;
}
.home .activities__inner .activity__content .activity__tag {
  display: inline-block;
  padding: 5px 10px;
  color: #FAFAFA;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #1E1E1E;
}
.home .activities__inner .activity__content .activity__title {
  margin: 15px 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25em;
}
.home .activities__inner .activity__content .activity__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
}
.home .activities__inner .activity__content .activity__icons {
  display: flex;
  margin: 20px 0;
  gap: 30px;
  flex-wrap: wrap;
}
.home .activities__inner .activity__content .activity__icons .icon {
  max-width: 120px;
  text-align: center;
}
.home .activities__inner .activity__content .activity__icons .icon__image {
  display: flex;
  margin: 0 auto 5px;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  background: #F0F0F0;
  border-radius: 50%;
}
.home .activities__inner .activity__content .activity__icons .icon__image img, .home .activities__inner .activity__content .activity__icons .icon__image svg {
  width: 50px;
  height: 50px;
}
.home .activities__inner .activity__content .activity__icons .icon__image img {
  object-position: center;
  object-fit: contain;
}
.home .activities__inner .activity__content .activity__icons .icon__title {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3em;
}
.home .activities__inner .activity__content .button {
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
}
.home .news__inner {
  display: flex;
  gap: 10px;
}
.home .news__inner .article {
  flex: 0 0 calc(25% - 8px);
}
.home .news__inner .article__image {
  display: block;
  margin-bottom: 15px;
}
.home .news__inner .article__image img {
  display: block;
  width: 100%;
  height: 228px;
  object-fit: cover;
}
.home .news__inner .article__content .article__title {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 16px;
}
.home .news__inner .article__content .article__text {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
}
.home .news__inner .article__content .article__link {
  display: inline-block;
  color: inherit;
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}

@media screen and (max-width: 1240px) {
  .home .services__inner .service__content {
    height: auto;
  }
  .home .services__inner .service__content .service__text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  body.home.admin-bar .hero {
    height: calc(100vh - 36px);
  }
  .home .hero .container {
    padding: 0 20px;
  }
  .home .hero__content {
    bottom: 40vh;
    text-align: center;
  }
  .home .hero__title {
    font-size: 40px;
  }
  .home .hero__buttons {
    justify-content: center;
  }
  .home .hero__buttons .button {
    flex-grow: 1;
    width: auto;
  }
  .home .home-banners .banners__inner {
    flex-direction: column;
  }
  .home .home-banners .banners__inner .banner {
    width: 100%;
    text-align: center;
  }
  .home .home-banners .banners__inner .banner__image::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  }
  .home .home-banners .banners__inner .banner__image img {
    height: 250px;
  }
  .home .home-banners .banners__inner .banner__content {
    left: 10px;
    right: 10px;
    bottom: 20px;
  }
  .home .home-banners .banners__inner .banner__content .banner__title {
    margin-bottom: 10px;
  }
  .home .home-banners .banners__inner .banner__content .banner__text {
    margin-bottom: 20px;
  }
  .home .home-banners .banners__inner .banner__buttons {
    justify-content: center;
  }
  .home .home-icons .icons__inner {
    flex-wrap: wrap;
  }
  .home .home-icons .icons__inner .icon {
    width: calc(50% - 10px);
  }
  .home .home-icons .icons__inner .icon__image {
    width: 40px;
  }
  .home .home-icons .icons__inner .icon__image img {
    width: 40px;
    height: 40px;
  }
  .home .services__inner {
    flex-direction: column;
  }
  .home .services__inner .service__image img {
    height: 230px;
  }
  .home .services__inner .service__content {
    height: auto;
  }
  .home .services__inner .service__content .service__title {
    margin-bottom: 10px;
  }
  .home .services__inner .service__content .service__text {
    margin-bottom: 20px;
  }
  .home .services__inner .service__content .service__buttons {
    flex-direction: row;
  }
  .home .activities__inner {
    margin: 0 -10px;
    gap: 15px;
  }
  .home .activities__inner .activity {
    flex-direction: column !important;
    gap: 0;
    padding: 15px 10px;
    background-color: #FAFAFA;
  }
  .home .activities__inner .activity__image, .home .activities__inner .activity__content {
    width: 100%;
  }
  .home .activities__inner .activity__image img {
    height: 218px;
  }
  .home .activities__inner .activity__content {
    margin-top: 15px;
    padding: 0;
  }
  .home .activities__inner .activity__content .activity__icons {
    width: 100%;
    justify-content: center;
    column-gap: 0;
    row-gap: 15px;
  }
  .home .activities__inner .activity__content .activity__icons .icon {
    max-width: 50%;
    width: 50%;
  }
  .home .activities__inner .activity__content .activity__icons .icon__title {
    max-width: 120px;
    margin: 0 auto;
  }
  .home .activities__inner .activity__content .button {
    margin: 0 auto;
  }
}
.contact .faq {
  width: 780px;
  margin: 0 auto;
}
.contact .faq h3 {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: #1E1E1E !important;
}
.contact .faq__item {
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 10px;
}
.contact .faq__item__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.contact .faq__item__button .chevron {
  transition: transform 0.25s ease;
}
.contact .faq__item__button[aria-expanded=true] .chevron {
  transform: rotate(90deg);
}
.contact .faq__item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 16px;
}
.contact .faq__item__panel__content {
  padding: 0 15px 16px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #1E1E1E;
}
.contact .info h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 0;
  color: #1E1E1E;
  text-align: center;
  line-height: 1.25em;
}
.contact .info div {
  font-weight: 300;
  font-size: 16px;
  color: #1E1E1E;
  text-align: center;
  line-height: 1.7em;
}
.contact .info div p {
  margin: 0;
}
.contact .info div a {
  color: #1E1E1E;
}
.contact .info__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contact .info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 0 23%;
  background-color: #FAFAFA;
  min-height: 225px;
}
.contact .info__item:first-child {
  background-color: #1E1E1E;
}
.contact .info__item:first-child h3 {
  color: #FFFFFF;
}
.contact .info__item:first-child div {
  color: #FFFFFF;
}
.contact .info__item:first-child div a {
  color: #FFFFFF;
}
.contact .info-address h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 0;
  color: #1E1E1E;
  text-align: center;
  line-height: 1.25em;
}
.contact .info-address div {
  font-weight: 300;
  font-size: 16px;
  color: #1E1E1E;
  line-height: 1.35em;
  text-align: center;
}
.contact .info-address div p {
  margin-top: 0;
}
.contact .info-address div p:last-of-type {
  margin-bottom: 0;
}
.contact .info-address div a {
  color: #1E1E1E;
}
.contact .info-address__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contact .info-address__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 0 23%;
  background-color: #FAFAFA;
  min-height: 225px;
}
.contact .footer-contact {
  width: 780px;
  margin: 0 auto;
}
.contact .footer-contact__inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.contact .footer-contact__inner .section__title {
  margin-bottom: 15px;
}
.contact .footer-contact__form {
  width: 100%;
}
.contact .footer-contact__form .form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact .footer-contact__form .form__section {
  flex: 1;
}
.contact .footer-contact__form .form__section textarea {
  min-height: 136px;
}
.contact .footer-contact__form .form__controls {
  width: 100%;
}
.contact .footer-contact__map {
  width: 100%;
}
.contact .footer-contact__map iframe {
  width: 100%;
  height: 374px;
}
.contact .area__map img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .contact .faq {
    width: 400px;
    max-width: 100%;
    margin: 0px auto;
    padding: 0 10px;
  }
  .contact .faq h3 {
    font-size: 16px;
  }
  .contact .faq__item {
    padding: 5px;
  }
  .contact .faq__item__button {
    padding: 5px 5px 5px 16px;
  }
  .contact .faq__item__button .chevron {
    transition: transform 0.25s ease;
  }
  .contact .faq__item__button[aria-expanded=true] .chevron {
    transform: rotate(90deg);
  }
  .contact .faq__item__panel__content {
    padding: 0 15px 5px 0;
  }
  .contact .info__show-more-btn {
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #1E1E1E;
    border: 1px solid #1E1E1E;
    padding: 10px 25px;
    margin-top: 5px;
  }
  .contact .info__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
  }
  .contact .info__item {
    width: 400px;
    max-width: 100%;
    min-height: unset;
    padding: 25px 0;
  }
  .contact .footer-contact {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  .contact .footer-contact__form {
    width: 400px;
    margin: 0 auto;
    max-width: 100%;
  }
  .contact .footer-contact__form .form {
    gap: 0;
  }
  .contact .footer-contact__form .form__section {
    flex: unset;
    width: 100%;
  }
  .contact .footer-contact__form .form__section textarea {
    min-height: 100px;
  }
  .contact .footer-contact__map {
    width: 100%;
  }
  .contact .footer-contact__map iframe {
    width: 100%;
    height: 374px;
  }
  .contact .info-address {
    margin-top: 20px;
  }
  .contact .info-address__inner {
    flex-direction: column;
  }
  .contact .info-address__item {
    flex: unset;
    min-height: unset;
    max-width: 100%;
    width: 400px;
    padding: 25px 20px;
  }
}
.post .container {
  max-width: 900px;
  padding: 40px;
  text-align: center;
}
.post__content {
  padding-top: 185px;
  padding-bottom: 50px;
}
.post__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2em;
}
.post__html {
  line-height: 1.5em;
}

@media screen and (max-width: 1024px) {
  .post__content {
    padding-top: 120px;
  }
  .post__title {
    font-size: 30px;
  }
}
.articles {
  margin: 50px 0;
}
.articles__inner {
  display: flex;
  gap: 10px;
}
.articles__inner .article {
  flex: 0 0 calc(25% - 8px);
}
.articles__inner .article__image {
  display: block;
  margin-bottom: 15px;
}
.articles__inner .article__image img {
  display: block;
  width: 100%;
  height: 228px;
  object-fit: cover;
}
.articles__inner .article__content .article__title {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 16px;
}
.articles__inner .article__content .article__text {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
}
.articles__inner .article__content .article__link {
  display: inline-block;
  color: inherit;
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}

.slider {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider > * {
  cursor: grab;
  scroll-snap-align: start;
  user-select: none;
}
.slider > * img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .slider > * {
    flex: 0 0 85% !important;
    width: auto !important;
  }
}
.popup {
  cursor: default;
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  user-select: unset;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup--open {
  display: flex;
}
.popup__dialog {
  width: 100%;
  max-width: 800px;
  height: max-content;
  max-height: 95vh;
  background-color: #FFFFFF;
  overflow-y: auto;
}
.popup__header {
  position: relative;
  padding: 30px;
}
.popup__header .popup__subtitle {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
}
.popup__header .popup__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5em;
}
.popup__header .popup__close {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  appearance: unset;
  border: none;
  background: none;
  padding: 0;
}
.popup__body {
  padding: 30px;
}

@media (max-width: 768px) {
  .popup {
    padding: 10px;
  }
  .popup__header {
    padding: 20px 30px;
  }
  .popup__header .popup__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
  }
}
.text-image {
  margin: 10px 0 !important;
}
.text-image .section__title {
  margin: 50px 0 10px;
}
.text-image--right .text-image__inner {
  flex-direction: row-reverse;
}
.text-image__inner {
  display: flex;
  gap: 10px;
}
.text-image__image, .text-image__content {
  width: 50%;
}
.text-image__image {
  overflow: hidden;
}
.text-image__image img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 500px;
}
.text-image__content {
  display: flex;
  padding: 30px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.text-image__content .content__title {
  margin: 15px 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25em;
}
.text-image__content .content__text {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
}
.text-image__content .content__text p {
  margin: 0;
}
.text-image__content .content__buttons {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}
.text-image__content .content__buttons .button {
  padding-left: 22px;
  padding-right: 22px;
}

@media screen and (max-width: 1024px) {
  .text-image--right .text-image__inner {
    flex-direction: column;
  }
  .text-image__inner {
    margin: 0 -10px;
    gap: 0;
    flex-direction: column;
  }
  .text-image__image, .text-image__content {
    width: 100%;
  }
  .text-image__image {
    padding: 10px;
  }
  .text-image__image img {
    height: 218px;
  }
  .text-image__content {
    padding: 10px;
  }
  .text-image__content .content__title {
    margin: 0 0 10px;
  }
  .text-image__content .content__text {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5em;
  }
  .text-image__content .content__buttons {
    display: flex;
    gap: 10px;
  }
  .text-image__content .content__buttons .button {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.gallery__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gallery__inner .image {
  flex: 0 0 calc(33% - 3px);
}
.gallery__inner .image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery__buttons {
  width: 100%;
  margin-top: 10px;
}
.gallery__buttons .button {
  padding: 10px 30px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .gallery__inner {
    gap: 10px;
    margin: 0 -10px;
  }
  .gallery__inner .image {
    flex: 0 0 100%;
  }
  .gallery__inner .image img {
    height: 230px;
  }
}
.signpost {
  position: relative;
}
.signpost__inner {
  display: flex;
  gap: 10px;
}
.signpost__inner .article {
  flex: 0 0 calc(25% - 8px);
}
.signpost__inner .article__image {
  display: block;
  margin-bottom: 15px;
}
.signpost__inner .article__image img {
  display: block;
  width: 100%;
  height: 228px;
  object-fit: cover;
}
.signpost__inner .article__content .article__title {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 16px;
}
.signpost__inner .article__content .article__text {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
}
.signpost__inner .article__content .article__link {
  display: inline-block;
  color: inherit;
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}
.signpost.table-view .signpost__inner {
  flex-wrap: wrap;
  row-gap: 30px;
}
.signpost.table-view .signpost__navigation {
  display: none !important;
}
.signpost.table-view .signpost__navigation.active {
  display: none !important;
}
.signpost__navigation {
  display: none;
}
.signpost__navigation.active {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  width: 1400px;
}
.signpost__navigation img {
  width: 35px;
}
.signpost__navigation__prev {
  position: absolute;
  transform: rotate(90deg);
  left: -45px;
}
.signpost__navigation__next {
  position: absolute;
  transform: rotate(-90deg);
  right: -45px;
}

@media screen and (max-width: 1024px) {
  .signpost.table-view .signpost__inner article {
    flex: 0 0 100% !important;
    width: auto !important;
  }
}
.rooms__inner {
  display: flex;
  gap: 10px;
}
.rooms__inner .room {
  position: relative;
  flex: 1;
}
.rooms__inner .room__image {
  display: block;
  height: 180px;
  background-color: #C4C4C4;
}
.rooms__inner .room__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rooms__inner .room__content {
  display: flex;
  padding: 20px;
  height: calc(100% - 180px);
  color: #1E1E1E;
  flex-direction: column;
}
.rooms__inner .room__content .room__title {
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 16px;
}
.rooms__inner .room__content .room__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
}
.rooms__inner .room__content .room__buttons {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.rooms__inner .room__content .room__buttons .button {
  width: 100%;
}
.rooms .room-popup .popup__body {
  display: flex;
  gap: 30px;
}
.rooms .room-popup__info, .rooms .room-popup__images {
  width: 50%;
}
.rooms .room-popup__info div {
  line-height: 1.5em;
}
.rooms .room-popup__info div p {
  margin: 0 0 5px;
}
.rooms .room-popup__info div ul {
  margin-top: 0;
}
.rooms .room-popup__images .image__main {
  margin-bottom: 20px;
}
.rooms .room-popup__images .image__main a {
  display: block;
}
.rooms .room-popup__images .image__main img {
  width: 100%;
  height: 237px;
  object-fit: cover;
}
.rooms .room-popup__images .image__gallery .gallery__title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 16px;
}
.rooms .room-popup__images .image__gallery .gallery__inner {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto;
}
.rooms .room-popup__images .image__gallery .gallery__inner a {
  position: relative;
  display: block;
}
.rooms .room-popup__images .image__gallery .gallery__inner a img {
  display: block;
  width: 100%;
  height: 115px;
  object-fit: cover;
}
.rooms .room-popup__images .image__gallery .gallery__inner a .image__overlay {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #1E1E1E;
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.5);
}
.rooms .room-popup__buttons {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  gap: 10px;
}
.rooms .room-popup__buttons .button {
  width: 100%;
}

@media (max-width: 768px) {
  .rooms .room-popup .popup__body {
    gap: 0;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .rooms .room-popup__info {
    width: 100%;
  }
  .rooms .room-popup__images {
    width: 100%;
  }
  .rooms .room-popup__images .image__gallery {
    display: none;
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #1E1E1E;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #F0F0F0;
}
body.admin-bar .head {
  top: 32px;
}
body:has(.hero.hero--without-image) .head .header, body:not(:has(.hero)) .head .header {
  color: #1E1E1E;
  background-color: #FAFAFA;
}
body:has(.hero.hero--without-image) .head .header__logo img, body:not(:has(.hero)) .head .header__logo img {
  filter: unset;
}
body:has(.hero.hero--without-image) .head .header__nav ul li a, body:not(:has(.hero)) .head .header__nav ul li a {
  color: #1E1E1E;
}
body:has(.hero.hero--without-image) .head .header__buttons .buttons__button--outline, body:not(:has(.hero)) .head .header__buttons .buttons__button--outline {
  color: #1E1E1E;
  border-color: #1E1E1E;
}
body:has(.hero.hero--without-image) .head .header__buttons .buttons__button--primary, body:not(:has(.hero)) .head .header__buttons .buttons__button--primary {
  color: #FAFAFA;
  border-color: #1E1E1E;
  background-color: #1E1E1E;
}
body:has(.hero.hero--without-image) .head .header__toggle, body:not(:has(.hero)) .head .header__toggle {
  color: #1E1E1E;
}
body .head {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s ease;
}
body .head--scrolled .header {
  color: #1E1E1E;
  background-color: #FAFAFA;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
body .head--scrolled .header__logo img {
  filter: unset;
}
body .head--scrolled .header__nav ul li a {
  color: #1E1E1E;
}
body .head--scrolled .header__buttons .buttons__button--outline {
  color: #1E1E1E;
  border-color: #1E1E1E;
}
body .head--scrolled .header__buttons .buttons__button--primary {
  color: #FAFAFA;
  border-color: #1E1E1E;
  background-color: #1E1E1E;
}
body .head--scrolled .header__toggle {
  color: #1E1E1E;
}
body .top-bar {
  padding: 9px 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
body .top-bar__text p {
  margin: 0;
}
body .top-bar__text a {
  color: inherit;
  text-decoration: underline;
}
body .top-bar__text a:hover {
  text-decoration: none;
}
body .header {
  padding: 17px 0 0;
  color: #FAFAFA;
  transition: 0.3s ease;
}
body .header__top {
  display: flex;
  align-items: center;
}
body .header__side {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
body .header__contact {
  display: flex;
  align-items: center;
  gap: 30px;
}
body .header__contact .contact__link {
  display: block;
  color: inherit;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
}
body .header__contact .contact__link:hover {
  text-decoration: underline;
}
body .header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
body .header__buttons .buttons__button {
  display: block;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
body .header__buttons .buttons__button--outline {
  color: #FAFAFA;
  border-color: #FAFAFA;
}
body .header__buttons .buttons__button--primary {
  color: #1E1E1E;
  border-color: #FAFAFA;
  background-color: #FAFAFA;
}
body .header__toggle {
  cursor: pointer;
  display: block;
  padding: 8px 10px;
  color: #FAFAFA;
  outline: none;
  border: none;
  background: none;
}
body .header__toggle svg {
  width: 20px;
}
body .header__logo img {
  height: 40px;
  filter: invert(1);
  transition: 0.3s ease;
}
body .header__bottom {
  padding-top: 20px;
}
body .header__nav {
  position: relative;
}
body .header__nav ul {
  margin: 0;
  display: flex;
  padding: 0;
  align-items: center;
  gap: 30px;
  list-style-type: none;
}
body .header__nav ul li.menu-item-has-children {
  position: relative;
}
body .header__nav ul li.menu-item-has-children:hover .sub-menu {
  display: block;
}
body .header__nav ul li.menu-item-has-children .sub-menu {
  position: absolute;
  display: none;
  left: 0;
  top: calc(100% + 10px);
  width: max-content;
  padding: 5px 0;
  background-color: #FAFAFA;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
body .header__nav ul li.menu-item-has-children .sub-menu::before {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 20px;
  top: -20px;
  position: absolute;
}
body .header__nav ul li.menu-item-has-children .sub-menu::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 10px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FAFAFA;
}
body .header__nav ul li.menu-item-has-children .sub-menu li a {
  color: #1E1E1E;
  padding: 8px 15px;
}
body .header__nav ul li a {
  display: block;
  padding-bottom: 10px;
  color: #FAFAFA;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}
body .header__nav ul li a:hover {
  text-decoration: underline;
}
body .header__langs {
  display: none;
  position: absolute;
  right: 0;
  top: -15px;
  width: max-content;
  padding: 10px 20px;
  background-color: #FAFAFA;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
body .header__langs--open {
  display: block;
}
body .header__langs a {
  display: block;
  margin-bottom: 12px;
  color: #1E1E1E;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}
body .header__langs a:last-of-type {
  margin-bottom: 0;
}
body .header__langs a:hover {
  text-decoration: underline;
}
body .partners {
  padding: 30px 0;
  background-color: #DDDDDD;
}
body .partners__inner {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
body .partners__inner .partner {
  flex-grow: 1;
  max-width: calc(20% - 30px);
}
body .partners__inner .partner img {
  width: 100%;
  height: 40px;
  object-position: center;
  object-fit: contain;
}
body .footer {
  padding: 50px 0;
  color: #FAFAFA;
  background-color: #1E1E1E;
}
body .footer__top {
  display: flex;
  align-items: center;
}
body .footer__mid {
  display: flex;
  padding-top: 50px;
  gap: 100px;
}
body .footer__mid .footer__col:last-of-type {
  margin-left: auto;
}
body .footer__mid .footer__nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 15px;
  list-style-type: none;
}
body .footer__mid .footer__nav ul li a {
  color: #FAFAFA;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5em;
  text-decoration: none;
}
body .footer__mid .footer__accommodation .accommodation__heading {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 16px;
}
body .footer__mid .footer__accommodation .footer__nav ul {
  gap: 2px;
}
body .footer__mid .footer__accommodation .footer__nav ul li a {
  font-weight: 400;
}
body .footer__mid .footer__contact {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
}
body .footer__mid .footer__contact:not(:last-of-type) {
  margin-bottom: 40px;
}
body .footer__mid .footer__contact a {
  color: inherit;
  text-decoration: underline;
}
body .footer__bottom {
  display: flex;
  padding-top: 50px;
  font-weight: 400;
  font-size: 16px;
  align-items: center;
}
body .footer__logo img {
  height: 56px;
}
body .footer__socials {
  margin-left: auto;
  display: flex;
  gap: 15px;
}
body .footer__socials .social__link {
  display: block;
}
body .footer__socials .social__link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
body .footer__author {
  margin-left: auto;
}
body .footer__author a {
  color: inherit;
  text-decoration: underline;
}
body .footer__author a:hover {
  text-decoration: none;
}
body .container {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}
body .section {
  margin: 50px 0;
}
body .section__title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
}
body .button {
  cursor: pointer;
  display: block;
  padding: 10px 14px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  background-color: transparent;
}
body .button--outline {
  color: #1E1E1E;
  border-color: #1E1E1E;
}
body .button--primary {
  color: #ffffff;
  border-color: #1E1E1E;
  background-color: #1E1E1E;
}
body .button--secondary {
  color: #1E1E1E;
  border-color: #FAFAFA;
  background-color: #FAFAFA;
}
body .button--outline-secondary {
  color: #FAFAFA;
  border-color: #FAFAFA;
}
body .form__group {
  margin-bottom: 10px;
}
body .form__input {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-family: "Museo Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: #ffffff;
}
body .form__input.is-invalid {
  color: #ff0000;
  background-color: rgba(255, 0, 0, 0.1);
}
body .form__input::placeholder {
  color: #A3A3A3;
}
body .form__accept {
  margin-bottom: 20px;
  color: #A3A3A3;
  font-weight: 400;
  font-size: 14px;
}
body .form__submit {
  cursor: pointer;
  display: inline-block;
  padding: 10px 32px;
  color: #1E1E1E;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #1E1E1E;
}
body .footer-contact__inner {
  display: flex;
  gap: 50px;
}
body .footer-contact__inner .section__title {
  margin-bottom: 15px;
}
body .footer-contact__form {
  width: 40%;
}
body .footer-contact__map {
  width: 60%;
}
body .footer-contact__map iframe {
  width: 100%;
  height: 374px;
}
@media screen and (max-width: 1024px) {
  body body.admin-bar .head {
    top: 0;
  }
  body .section__title {
    margin: 0 0 10px;
    font-size: 16px;
  }
  body .head .top-bar {
    text-align: left;
  }
  body .head .header {
    padding: 5px 0;
  }
  body .head .header__side {
    gap: 5px;
  }
  body .head .header__contact .contact__link:first-of-type {
    display: none;
  }
  body .head .header__buttons {
    display: none;
  }
  body .head .header__logo img {
    height: 38px;
  }
  body .head .header__bottom {
    padding: 0;
  }
  body .head .header__nav {
    display: none;
    padding-top: 20px;
  }
  body .head .header__nav--open {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    width: 100%;
    padding: 6px 10px;
    background-color: #FAFAFA;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  body .head .header__nav--open ul li a {
    color: #1E1E1E;
  }
  body .head .header__nav ul {
    gap: 0;
    flex-direction: column;
  }
  body .head .header__nav ul .menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body .head .header__nav ul .menu-item-has-children .toggle-submenu {
    position: relative;
  }
  body .head .header__nav ul .menu-item-has-children .toggle-submenu:before {
    content: "";
    position: absolute;
    right: 5px;
    top: -5px;
    transform: rotate(270deg);
    z-index: 9;
    background-image: url(/wp-content/themes/koprivna/assets/images/icons/accordion-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
  }
  body .head .header__nav ul .menu-item-has-children .toggle-submenu.open:before {
    transform: rotate(0deg);
  }
  body .head .header__nav ul .menu-item-has-children .sub-menu {
    display: none !important;
  }
  body .head .header__nav ul .menu-item-has-children .sub-menu.active {
    position: relative;
    display: block !important;
    left: 0;
    top: calc(100% + 10px);
    padding: 5px 0;
    background-color: #FAFAFA;
    width: 100%;
    box-shadow: unset;
  }
  body .head .header__nav ul .menu-item-has-children .sub-menu li {
    background: #f1f1f1;
    margin: 0 -10px;
    padding: 0 10px;
	width: calc(100% + 20px);
  }
  body .head .header__nav ul li {
    width: 100%;
  }
  body .head .header__nav ul li a {
    padding: 10px 0;
  }
  body .head .header__langs {
    display: flex;
    position: unset;
    right: unset;
    top: unset;
    width: 100%;
    background-color: unset;
    box-shadow: unset;
    margin-top: 10px;
    padding: 20px 0 0;
    gap: 20px;
    border-top: 1px solid #eaeaea;
  }
  body .partners {
    padding: 20px 0;
  }
  body .partners__inner {
    flex-direction: column;
    gap: 10px;
  }
  body .partners__inner .partner {
    max-width: 100%;
  }
  body .footer__top {
    justify-content: center;
    flex-direction: column;
    gap: 40px;
  }
  body .footer__mid {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
    column-gap: 20px;
  }
  body .footer__bottom {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  body .footer__socials {
    margin-left: unset;
  }
  body .footer__socials .social__link img {
    width: 40px;
    height: 40px;
  }
  body .footer__col {
    width: auto;
    order: 3;
    margin-left: unset !important;
    text-align: center;
  }
  body .footer__col:nth-of-type(4) {
    width: 100%;
  }
  body .footer__author {
    margin-left: unset;
  }
  body .footer__accommodation {
    width: 100%;
    order: 2;
  }
  body .footer__contacts {
    width: 100%;
    order: 1;
  }
  body .container {
    padding: 0 10px;
  }
  body .section {
    margin: 40px 0;
  }
  body .footer-contact__inner {
    flex-direction: column;
    gap: 40px;
  }
  body .footer-contact__form {
    width: 100%;
  }
  body .footer-contact__map {
    width: 100%;
  }
}

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