/* 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;
  }
}

.posts-listing-block {
  margin-top: 20px;
}
.posts-listing-block__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.posts-listing-block__search-wrapper {
  width: 1340px;
  max-width: calc(100% - 40px);
  text-align: center;
  padding: 28px 20px 25px;
  margin: 0 auto;
  background-color: #dadcd4;
}
.posts-listing-block__search-wrapper.hidden {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.posts-listing-block__title {
  margin-top: 0;
  color: #231f20;
  text-transform: uppercase;
  font-style: italic;
}
@media (min-width: 992px) {
  .posts-listing-block__title {
    font-size: 31px;
  }
}
.posts-listing-block__filter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 795px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .posts-listing-block__filter-form {
    flex-direction: row;
  }
}
.posts-listing-block__filter-form .filter-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .posts-listing-block__filter-form .filter-wrapper {
    flex-direction: row;
    margin-right: 22px;
    margin-bottom: 0;
  }
}
.posts-listing-block__filter-form .filter-wrapper .category-filter {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  outline: none;
  border: 4px solid #969469;
  color: #231f20;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  padding: 12px 15px 7px;
  max-width: 100%;
  width: 255px;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
  -moz-text-align-last: center;
       text-align-last: center;
}
.posts-listing-block__filter-form .filter-wrapper .category-filter:hover, .posts-listing-block__filter-form .filter-wrapper .category-filter:focus {
  background-color: #dddabe;
}
@media (min-width: 992px) {
  .posts-listing-block__filter-form .filter-wrapper .category-filter {
    font-size: 24px;
  }
}
.posts-listing-block__filter-form .filter-wrapper .category-filter option#item-1,
.posts-listing-block__filter-form .filter-wrapper .category-filter option#item-31,
.posts-listing-block__filter-form .filter-wrapper .category-filter option#item-56 {
  display: none;
}
.posts-listing-block__filter-form .filter-wrapper .category-filter option {
  color: #231f20;
  font: 16px var(--sk-font-primary);
  letter-spacing: normal;
  text-transform: capitalize;
  line-height: 20px;
  background-color: #eadbac;
  transition: all 0.2s ease;
  max-width: 100%;
}
.posts-listing-block__filter-form .filter-wrapper .category-filter option:hover, .posts-listing-block__filter-form .filter-wrapper .category-filter option:active, .posts-listing-block__filter-form .filter-wrapper .category-filter option:focus, .posts-listing-block__filter-form .filter-wrapper .category-filter option:checked {
  background: #6b5538 !important;
  color: #fff;
}
.posts-listing-block__filter-form .filter-wrapper .category-filter:first-of-type {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .posts-listing-block__filter-form .filter-wrapper .category-filter:first-of-type {
    margin-right: 17px;
    margin-bottom: 0;
  }
}
.posts-listing-block__filter-form .submit-btn {
  background-color: #969469;
  text-decoration: none;
  outline: none;
  border: none;
  border-radius: 0;
  color: #fff;
  transition: all 0.2s ease;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 255px;
  max-width: 100%;
  padding: 16px 30px 11px;
}
@media (min-width: 992px) {
  .posts-listing-block__filter-form .submit-btn {
    font-size: 24px;
  }
}
.posts-listing-block__filter-form .submit-btn:hover, .posts-listing-block__filter-form .submit-btn:focus {
  background-color: #6b5538;
}
.posts-listing-block__filter-form .clear-btn {
  background-color: transparent;
  border: 4px solid #969469;
  text-decoration: none;
  outline: none;
  border-radius: 0;
  color: #231f20;
  transition: all 0.2s ease;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  display: none;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: auto;
  max-width: 100%;
  padding: 12px 30px 7px;
  margin-top: 15px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .posts-listing-block__filter-form .clear-btn {
    font-size: 24px;
    margin-left: 22px;
    margin-top: 0;
  }
}
.posts-listing-block__filter-form .clear-btn:hover, .posts-listing-block__filter-form .clear-btn:focus {
  background-color: #eadbac;
}
.posts-listing-block__filter-form .clear-btn.active {
  display: inline-flex;
}
.posts-listing-block__posts {
  width: 1370px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 23px 0 20px;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .posts-listing-block__posts {
    max-width: calc(100% - 10px);
  }
}
.posts-listing-block__posts .no-posts {
  padding: 50px 20px;
  text-align: center;
  width: 100%;
}
.posts-listing-block__posts .listing-title {
  width: 100%;
  text-align: center;
  padding: 0 20px 5px;
}
.posts-listing-block__posts .item {
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .posts-listing-block__posts .item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media (min-width: 992px) {
  .posts-listing-block__posts .item {
    width: calc(33.33% - 20px);
    margin: 0 10px 20px;
  }
}
@media (min-width: 1200px) {
  .posts-listing-block__posts .item {
    width: calc(33.33% - 30px);
    margin: 0 15px 30px;
    height: 425px;
  }
}
.posts-listing-block__posts .sponsored {
  background-color: #d4d6cd;
  text-align: center;
  padding: 26px 27px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.posts-listing-block__posts .sponsored .title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.91px;
  font-style: italic;
  margin: 0 0 12px;
  line-height: 1;
}
.posts-listing-block__posts .sponsored .image {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
}
.posts-listing-block__posts .sponsored .image .slogan {
  padding: 15px 15px 10px;
  color: #fff;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  position: relative;
}
.posts-listing-block__posts .sponsored .image .slogan span {
  color: #fff;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
}
.posts-listing-block__posts .sponsored .image .slogan .mask {
  z-index: 0;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.posts-listing-block__posts .sponsored .description {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.71px;
  font-style: normal;
  margin: 12px 0 12px;
}
.posts-listing-block__posts .sponsored .link {
  background-color: #969469;
  text-decoration: none;
  outline: none;
  border-radius: 5px;
  color: #fff;
  transition: all 0.2s ease;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 23px;
  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;
  min-width: 175px;
  margin-top: auto;
}
.posts-listing-block__posts .sponsored .link:hover {
  background-color: #6b5538;
}
.posts-listing-block__posts .quotation {
  background-color: #a9cace;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 15px;
}
@media (min-width: 768px) {
  .posts-listing-block__posts .quotation {
    padding: 35px;
  }
}
.posts-listing-block__posts .quotation .author {
  color: #231f20;
  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: 0;
}
.posts-listing-block__posts .quotation .quote {
  color: #231f20;
  font-family: var(--sk-font-secondary);
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 30px;
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  .posts-listing-block__posts .quotation .quote {
    margin-bottom: 0;
    font-size: 27px;
    line-height: 27px;
    letter-spacing: 1px;
  }
}
@media (min-width: 1200px) {
  .posts-listing-block__posts .quotation .quote {
    font-size: 31px;
    line-height: 31px;
  }
}
.posts-listing-block__posts .general {
  display: flex;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 28px;
  transition: all 0.2s ease;
}
@media (min-width: 1200px) {
  .posts-listing-block__posts .general {
    padding: 35px;
  }
}
.posts-listing-block__posts .general::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}
.posts-listing-block__posts .general:hover::after {
  opacity: 0.5;
}
.posts-listing-block__posts .general .item-wrapper {
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 25px 19px;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1200px) {
  .posts-listing-block__posts .general .item-wrapper {
    padding: 0 30px 20px;
  }
}
.posts-listing-block__posts .general .item-wrapper .item-subtitle {
  color: #fff;
  font-family: var(--sk-font-primary);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin-bottom: 17px;
  position: relative;
}
@media (min-width: 992px) {
  .posts-listing-block__posts .general .item-wrapper .item-subtitle {
    font-size: 18px;
    margin-bottom: 27px;
  }
}
.posts-listing-block__posts .general .item-wrapper .item-subtitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  height: 1px;
  background-color: #eadbac;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
}
.posts-listing-block__posts .general .item-wrapper .item-title {
  color: #eadbac;
  font-family: var(--sk-font-secondary);
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: normal;
  margin: 0;
}
@media (min-width: 992px) {
  .posts-listing-block__posts .general .item-wrapper .item-title {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: 1px;
  }
}
@media (min-width: 1200px) {
  .posts-listing-block__posts .general .item-wrapper .item-title {
    font-size: 31px;
    line-height: 31px;
  }
}
.posts-listing-block__bottom-wrapper {
  max-width: 890px;
  margin: 0 auto;
  padding: 0 20px;
}
.posts-listing-block__bottom-wrapper .button-wrapper {
  text-align: center;
  width: 100%;
}
.posts-listing-block__bottom-wrapper .button-wrapper .load-more-link {
  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: 27px;
  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: 17px 30px 13px;
}
.posts-listing-block__bottom-wrapper .button-wrapper .load-more-link:hover {
  background-color: #6b5538;
}
