/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #231f20;
  --sk-color-white: white;
  --sk-color-primary: #969469;
  --sk-color-primary-light: #c59454;
  --sk-color-primary-dark: #6b5538;
  --sk-color-second: #1890FF;
  --sk-color-second-light: #40A9FF;
  --sk-color-second-dark: #0050B3;
  --sk-color-third: #13C2C2;
  --sk-color-third-light: #5CDBD3;
  --sk-color-third-dark: #006D75;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-second);
  --sk-color-bg-second: #f2f6fd;
  /* Typography */
  --sk-color-text: #231f20;
  --sk-color-text-heading: #6b5538;
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #c8c8c8;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #231f20;
  --sk-color-white: white;
  --sk-color-primary: #969469;
  --sk-color-primary-light: #c59454;
  --sk-color-primary-dark: #6b5538;
  --sk-color-second: #1890FF;
  --sk-color-second-light: #40A9FF;
  --sk-color-second-dark: #0050B3;
  --sk-color-third: #13C2C2;
  --sk-color-third-light: #5CDBD3;
  --sk-color-third-dark: #006D75;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-second);
  --sk-color-bg-second: #f2f6fd;
  /* Typography */
  --sk-color-text: #231f20;
  --sk-color-text-heading: #6b5538;
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #c8c8c8;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

.hero-block {
  padding: 70px 30px 75px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1340px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block {
    padding: 129px 30px 143px;
  }
}
.hero-block__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block__content-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 23px 30px;
  width: 586px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block__content-wrapper {
    width: 780px;
    padding: 28px 60px 30px;
  }
}
.hero-block__subtitle {
  color: #fff;
  font-family: var(--sk-font-primary);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin-bottom: 31px;
  margin-top: 0;
  position: relative;
}
@media (min-width: 1200px) {
  .hero-block__subtitle {
    font-size: 28px;
    margin-bottom: 41px;
  }
}
.hero-block__subtitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #eadbac;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .hero-block__subtitle::after {
    width: 120px;
    bottom: -15px;
  }
}
.hero-block__title {
  color: #eadbac;
  font-family: var(--sk-font-secondary);
  font-size: 32.5px;
  font-weight: 400;
  font-style: normal;
  line-height: 32.5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 !important;
}
@media (max-width: 375px) {
  .hero-block__title {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .hero-block__title {
    font-size: 50px;
    line-height: 50px;
  }
}

.single-page__info {
  max-width: 890px;
  margin: 0 auto;
  padding: 25px 20px 10px;
  margin-bottom: 15px;
  position: relative;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
@media (max-width: 992px) {
  .single-page__info {
    flex-direction: column;
  }
}
.single-page__info::after {
  content: "";
  display: block;
  width: 850px;
  max-width: calc(100% - 40px);
  height: 1px;
  background-color: #6b5538;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single-page__info .info-item {
  margin-right: 12px;
  color: #231f20;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 27px;
  text-align: center;
}
@media (max-width: 992px) {
  .single-page__info .info-item {
    font-size: 18px;
    line-height: 24px;
  }
}
.single-page__info .info-item .info-title {
  color: #969469;
  font-family: var(--sk-font-secondary);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-right: 5px;
}
.single-page__info .info-item .info-title.town {
  padding-right: 0;
}
.single-page__content {
  padding: 20px 20px 10px;
  margin: 0 auto;
}
.single-page__content > p, .single-page__content > ul, .single-page__content > ol, .single-page__content > pre, .single-page__content > blockquote, .single-page__content > .wp-block-image, .single-page__content > .wp-block-file, .single-page__content > .wp-block-button, .single-page__content > .wp-block-table, .single-page__content > .wp-block-pullquote, .single-page__content > .wp-block-columns, .single-page__content > .wp-block-media-text, .single-page__content > .wp-block-calendar, .single-page__content > .wp-block-embed, .single-page__content > form, .single-page__content > iframe, .single-page__content > h1, .single-page__content > h2, .single-page__content > h3, .single-page__content > h4, .single-page__content > h5, .single-page__content > h6, .single-page__content > hr, .single-page__content > figure {
  max-width: 890px;
  margin: 0 auto 20px;
  padding: 0 0 5px;
}
.single-page__bottom-wrapper {
  max-width: 890px;
  margin: 0 auto;
  padding: 12px 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .single-page__bottom-wrapper {
    justify-content: space-between;
  }
}
.single-page__bottom-wrapper .left-side {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .single-page__bottom-wrapper .left-side {
    width: calc(50% - 10px);
    margin-bottom: 0;
  }
}
.single-page__bottom-wrapper .left-side .map-button {
  background-color: #969469;
  text-decoration: none;
  outline: none;
  border-radius: 0;
  color: #fff;
  transition: all 0.2s ease;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px 5px;
  border: 0;
  width: 100%;
}
.single-page__bottom-wrapper .left-side .acf-map {
  height: 320px;
  width: 100%;
  background-color: #eaedf0;
  overflow: hidden;
}
.single-page__bottom-wrapper .left-side .acf-map .gmnoprint {
  display: none;
}
.single-page__bottom-wrapper .right-side {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  .single-page__bottom-wrapper .right-side {
    width: calc(50% - 10px);
  }
}
.single-page__bottom-wrapper .right-side .nearby-button {
  background-color: #969469;
  text-decoration: none;
  outline: none;
  border-radius: 0;
  color: #fff;
  transition: all 0.2s ease;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px 5px;
  border: 0;
  width: 100%;
}
.single-page__bottom-wrapper .right-side .nearby {
  width: 100%;
  background-color: #eaedf0;
  padding: 25px 25px 13px;
  font-size: 17px;
  line-height: 19px;
}
@media (min-width: 1200px) {
  .single-page__bottom-wrapper .right-side .nearby {
    min-height: 320px;
  }
}
.single-page__bottom-wrapper .right-side .nearby p,
.single-page__bottom-wrapper .right-side .nearby a {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 19px;
  margin-top: 0;
}
.single-page__bottom-wrapper .right-side .nearby p strong,
.single-page__bottom-wrapper .right-side .nearby a strong {
  font-weight: 600;
}
.single-page__bottom-wrapper .right-side .nearby a {
  color: #231f20;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.single-page__bottom-wrapper .right-side .nearby a:hover {
  text-decoration: none;
}
.single-page__bottom-wrapper .right-side .nearby .title {
  font-weight: 600;
  margin-bottom: 0;
}
.single-page__bottom-wrapper .share-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 30px 0 40px;
}
.single-page__bottom-wrapper .share-buttons .btn {
  width: calc(50% - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  padding: 10px;
  transition: all 0.2s ease;
}
.single-page__bottom-wrapper .share-buttons .btn svg {
  height: 18px;
  margin-right: 10px;
}
.single-page__bottom-wrapper .share-buttons .btn svg path {
  fill: #fff;
}
.single-page__bottom-wrapper .share-buttons .btn img {
  height: 18px;
  width: 18px;
  margin-right: 10px;
  display: inline-block;
}
.single-page__bottom-wrapper .share-buttons .btn.facebook-share {
  background-color: #2c5f9b;
  border: 1px solid #2c5f9b;
}
.single-page__bottom-wrapper .share-buttons .btn.facebook-share svg {
  margin-bottom: 7px;
}
.single-page__bottom-wrapper .share-buttons .btn.facebook-share:hover {
  color: #2c5f9b;
  background-color: #fff;
}
.single-page__bottom-wrapper .share-buttons .btn.facebook-share:hover svg path {
  fill: #2c5f9b;
}
.single-page__bottom-wrapper .share-buttons .btn.instagram-share {
  background-color: #ded4b7;
  border: 1px solid #ded4b7;
}
.single-page__bottom-wrapper .share-buttons .btn.instagram-share:hover {
  color: #ded4b7;
  background-color: #fff;
}
.single-page__bottom-wrapper .button-wrapper {
  text-align: center;
  width: 100%;
}
.single-page__bottom-wrapper .button-wrapper .home-link {
  background-color: #969469;
  color: #fff;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px 13px;
}
.single-page__bottom-wrapper .button-wrapper .home-link:hover {
  background-color: #6b5538;
}
